1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- @import '/miniprogram_npm/@vant/weapp/common/index.wxss';
- .container {
- position: relative;
- margin: 25rpx 0;
- padding: 0 20rpx;
- }
- .card {
- height: 133rpx;
- margin: 0 0 0 55rpx;
- padding: 25rpx 0 25rpx 180rpx;
- 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: 600;
- color: #333333;
- }
- .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;
- }
- .sub-value2 {
- flex: 1;
- font-size: 22rpx;
- color: #FF4330;
- }
- .btn {
- width: 136rpx;
- height: 40rpx;
- box-shadow: 0 0 10rpx 0 rgba(255, 82, 61, 0.4);
- font-size: 24rpx;
- font-weight: 400;
- }
- .btn2 {
- width: 136rpx;
- height: 40rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- border-radius: 20rpx;
- font-size: 24rpx;
- line-height: 24rpx;
- font-weight: 400;
- color: #FFFFFF;
- background: #E5E5E5;
- box-shadow: 0 0 10rpx 0 rgba(174, 174, 174, 0.4);
- }
|