12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- /* components/detailsCard/index.wxss */
- @import '../../styles/index.wxss';
- .card-padding {
- padding: 10rpx;
- }
- .card-cont {
- position: relative;
- border: 1rpx solid #E4EFFF;
- border-radius: 8rpx;
- }
- /* 三角形icon */
- .triangle {
- position: absolute;
- top: 0;
- left: 50%;
- transform: translateX(-50%);
- width: 36rpx;
- height: 22rpx;
- }
- .audit {
- position: absolute;
- right: 48rpx;
- top: 21rpx;
- width: 113rpx;
- height: 106rpx;
- }
- /* 标题 */
- .title {
- margin-top: 50rpx;
- text-align: center;
- }
- .title>text {
- background: linear-gradient(180deg, #90BBEC 0%, #2074D6 100%);
- -webkit-background-clip: text;
- background-clip: text;
- color: transparent;
- font-weight: 700;
- font-size: 40rpx;
- }
- .van-cell {
- line-height: 30rpx;
- }
- /* 内容 */
- .cont {
- margin-top: 64rpx;
- }
- .photo {
- width: 174rpx;
- height: 216rpx;
- background-color: #C4C4C4;
- }
- /* 二维码 */
- .qrcode-area {
- width: 100%;
- margin-top: 80rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- }
- .qrcode-area>image,.img {
- width: 400rpx;
- height: 400rpx;
- }
- .qrcode-area>text {
- color: #90BBEC;
- font-size: 26rpx;
- margin-top: 12rpx;
- }
- /* 提示信息 */
- .tip {
- margin-top: 24rpx;
- font-size: 26rpx;
- color: #B7C7DE;
- text-align: center;
- margin-bottom: 8rpx;
- padding:0 30rpx;
- }
- .flex-sm {
- flex: 2 !important;
- }
- .qrcode-tit{
- font-size: 30rpx;
- font-weight: 700;
- text-align: center;
- color: rgba(51, 51, 51, 1);
- margin-bottom: 10rpx;
- }
|