123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- @import '/miniprogram_npm/@vant/weapp/common/index.wxss';
- .container {
- position: relative;
- margin: 25rpx 0;
- }
- .card {
- height: 133rpx;
- margin: 0 40rpx 0 70rpx;
- padding: 25rpx 20rpx 25rpx 180rpx;
- background: #fff;
- border-radius: 10rpx;
- box-shadow: 0 0 10rpx 0rpx rgba(153, 153, 153, 0.21);
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- .card-img {
- position: absolute;
- left: 20rpx;
- top: 15rpx;
- }
- .card-title {
- width: 350rpx;
- font-size: 26rpx;
- font-weight: bold;
- color: #333333;
- }
- .tag {
- margin-right: 15rpx;
- padding: 0 5rpx;
- border-radius: 5rpx;
- font-size: 19rpx;
- text-align: center;
- }
- .tag1 {
- background: #FFEEEC;
- border: 1rpx solid #FF4330;
- color: #FF4330;
- }
- .tag2 {
- background: #F7FFE6;
- border: 1rpx solid #8FC31F;
- color: #8FC31F;
- }
- .tag3 {
- background: #EEEEEE;
- border: 1rpx solid #BFBFBF;
- color: #BFBFBF;
- }
- .ivlist_title {
- display: flex;
- align-items: center;
- justify-content: start;
- }
- .ivlist_subt {
- font-size: 19rpx;
- color: #989898;
- display: flex;
- align-items: center;
- justify-content: start;
- margin-top: 10rpx;
- }
- .sub-value {
- flex: 1;
- font-size: 19rpx;
- color: #666;
- }
- .btn {
- width: 136rpx;
- height: 40rpx;
- box-shadow: 0 0 10rpx 0 rgba(255, 82, 61, 0.4);
- font-size: 24rpx;
- }
- .img-tag {
- position: absolute;
- left: 15rpx;
- bottom: 25rpx;
- background: #FFFFFF;
- border: 2rpx solid;
- border-image: linear-gradient(0deg, #FF4330, #FF7B60) 10rpx 10rpx;
- border-radius: 15rpx;
- font-size: 19rpx;
- color: #FF4330;
- padding: 0 5rpx;
- }
|