123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- @import '/miniprogram_npm/@vant/weapp/common/index.wxss';
- .card {
- background: #FFFFFF;
- box-shadow: 0 6rpx 24rpx 0 rgba(0, 0, 0, 0.1);
- border-radius: 20rpx;
- margin: 25rpx;
- }
- .top {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- }
- .space {
- flex: 1;
- }
- .tag {
- font-size: 24rpx;
- font-weight: 400;
- border-radius: 20rpx;
- width: 104rpx;
- height: 40rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- margin-right: 20rpx;
- }
- .tag-start {
- border: 1rpx solid #FF4330;
- color: #FF4330;
- }
- .tag-end {
- border: 1px solid #D2D2D2;
- color: #999999;
- }
- .line {
- padding: 0 24rpx;
- }
- .content {
- padding: 10rpx 24rpx 30rpx 30rpx;
- }
- .title {
- font-size: 24rpx;
- font-weight: 400;
- display: flex;
- margin-top: 15rpx;
- align-items: center;
- }
- .key {
- color: #0B0B0B;
- }
- .key-bold {
- font-weight: bold;
- }
- .txt {
- width: 550rpx;
- }
- .unit {
- color: #0B0B0B;
- margin-left: 10rpx;
- }
- .value {
- color: #FF4330;
- font-weight: bold;
- }
- .half {
- flex: 1;
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .flex-bw {
- justify-content: space-between;
- }
- .time {
- font-size: 24rpx;
- font-weight: 400;
- color: #999999;
- }
- .btn {
- font-size: 20rpx;
- font-weight: 400;
- width: 120rpx;
- height: 48rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .btn-end {
- opacity: 0.4;
- }
|