123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- .detailsCard-index {
- display: block;
- height: initial;
- }
- /* components/detailsCard/index.wxss */
- @import "../../styles/index.acss";
- .detailsCard-index .card-padding {
- padding: 10rpx;
- }
- .detailsCard-index .card-cont {
- position: relative;
- border: 1rpx solid #e4efff;
- border-radius: 8rpx;
- }
- /* 三角形icon */
- .detailsCard-index .triangle {
- position: absolute;
- top: 0;
- left: 50%;
- transform: translateX(-50%);
- width: 36rpx;
- height: 22rpx;
- }
- .detailsCard-index .audit {
- position: absolute;
- right: 48rpx;
- top: 21rpx;
- width: 113rpx;
- height: 106rpx;
- }
- /* 标题 */
- .detailsCard-index .title {
- margin-top: 50rpx;
- text-align: center;
- }
- .detailsCard-index .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;
- }
- .detailsCard-index .van-cell {
- line-height: 30rpx;
- }
- /* 内容 */
- .detailsCard-index .cont {
- margin-top: 64rpx;
- }
- .detailsCard-index .photo {
- width: 174rpx;
- height: 216rpx;
- background-color: #c4c4c4;
- }
- /* 二维码 */
- .detailsCard-index .qrcode-area {
- width: 100%;
- margin-top: 80rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- }
- .detailsCard-index .qrcode-area > image,
- .detailsCard-index .img {
- width: 320rpx;
- height: 320rpx;
- }
- .detailsCard-index .qrcode-area > text {
- color: #90bbec;
- font-size: 26rpx;
- margin-top: 12rpx;
- }
- /* 提示信息 */
- .detailsCard-index .tip {
- margin-top: 24rpx;
- font-size: 26rpx;
- color: #b7c7de;
- text-align: center;
- margin-bottom: 8rpx;
- }
- .detailsCard-index .flex-sm {
- flex: 2 !important;
- }
|