123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- .row {
- width: 100vw;
- padding-left: 30rpx;
- background-color: #fff;
- box-sizing: border-box;
- >view {
- width: 720rpx;
- display: flex;
- justify-content: space-between;
- padding: 20rpx 0;
- border-bottom: 1rpx solid #EEEEEE;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- .label {
- color: #666666;
- width: 176rpx;
- }
- .text {
- margin-right: 30rpx;
- max-width: 500rpx;
- }
- }
- }
- .title {
- font-size: 28rpx;
- color: #333333;
- padding-top: 30rpx;
- padding-left: 30rpx;
- }
- .card {
- width: 690rpx;
- background: #FFFFFF;
- border-radius: 16rpx;
- margin: 20rpx auto 0;
- box-sizing: border-box;
- padding: 20rpx 30rpx;
- .label {
- line-height: 42rpx;
- font-size: 30rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #333333;
- margin-top: 0;
- }
- view {
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #666666;
- line-height: 34rpx;
- margin-top: 10rpx;
- }
- .price {
- color: #FF3B30;
- }
- }
- .footer {
- display: flex;
- justify-content: space-between;
- padding: 0 30rpx;
- position: fixed;
- width: 100vw;
- height: 130rpx;
- background: #FFFFFF;
- box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
- bottom: 0;
- box-sizing: border-box;
- z-index: 9999;
- padding-top: 10rpx;
- .left {
- flex: 1;
- display: flex;
- justify-content: space-between;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- line-height: 86rpx;
- .price {
- font-size: 32rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 500;
- color: #FF3B30;
- margin-right: 20rpx;
- }
- }
- .but-box {
- .but {
- min-width: 156rpx;
- height: 90rpx;
- background: var(--warning);
- border-radius: 8rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- }
- .delete {
- background: var(--error) !important;
- }
- }
- }
|