123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- /* pages/control/order/order.wxss */
- page {
- width: 750rpx;
- min-height: 100vh;
- background: #F6F6F6;
- }
- .contioner {
- padding: 24rpx 32rpx;
- background: #fff;
- }
- .top {
- padding: 24rpx 0;
- }
- .top .tit {
- font-size: 28rpx;
- font-weight: 600;
- }
- .top .tit2 {
- font-size: 36rpx;
- }
- .top .tips {
- font-size: 24rpx;
- }
- .black {
- color: #333333;
- }
- .gray {
- color: #666666;
- }
- .top .lr {
- width: 146rpx;
- height: 124rpx;
- background: #F8F8F8;
- border-radius: 8rpx;
- flex-direction: column;
- }
- .foot .le {
- font-size: 24rpx;
- font-weight: 600;
- color: #333333;
- }
- .foot .lr {
- font-size: 24rpx;
- color: #666666;
- }
- .boxs {
- width: 690rpx;
- background: #FFFFFF;
- border-radius: 8rpx;
- margin: auto;
- padding: 24rpx;
- }
- .boxs .tit {
- font-size: 28rpx;
- font-weight: 600;
- color: #333333;
- }
- .boxs .content {
- flex-wrap: wrap;
- }
- .boxs .item {
- width: 120rpx;
- height: 120rpx;
- border-radius: 10rpx;
- position: relative;
- z-index: 10;
- }
- .boxs .item image {
- width: 100%;
- height: 100%;
- }
- .boxs .item .icon {
- width: 24rpx;
- height: 24rpx;
- background: #F23131;
- border-radius: 50%;
- position: absolute;
- right: 5rpx;
- top: 5rpx;
- }
- .boxs .photo {
- width: 120rpx;
- height: 120rpx;
- background: #F6F6F6;
- border-radius: 4rpx;
- }
- .boxs .photo image {
- width: 40rpx;
- height: 40rpx;
- }
- .tipsBox {
- padding: 42rpx 24rpx;
- border-radius: 8rpx;
- width: 690rpx;
- margin: 25rpx auto;
- background: #FFFFFF;
- }
- .tipsBox .lr {
- width: 48rpx;
- height: 48rpx;
- }
- .tipsBox .tops {
- font-size: 28rpx;
- font-weight: 600;
- color: #333333;
- }
- .tipsBox .foots {
- font-size: 24rpx;
- color: #0F8800;
- }
- .footer {
- width: 750rpx;
- height: 148rpx;
- background: #FFFFFF;
- border-radius: 24rpx 24rpx 0px 0px;
- position: fixed;
- left: 0;
- bottom: 0;
- padding: 30rpx;
- }
- .footer .btn {
- width: 330rpx;
- height: 88rpx;
- border-radius: 8rpx;
- line-height: 88rpx;
- font-size: 30rpx;
- }
- .btn-border {
- border: 1rpx solid #52A1FF;
- color: #52A1FF;
- }
|