| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- .cell-item{
- width: calc((100% - 20rpx) / 2);
- height: 340rpx;
- margin:30rpx 20rpx 0rpx 0;
- background: #FFFFFF;
- box-shadow: 0rpx 8rpx 40rpx 1rpx rgba(51,51,51,0.06);
- border-radius: 20rpx 20rpx 20rpx 20rpx;
- padding: 26rpx 27rpx 30rpx 30rpx;
- box-sizing: border-box;
- position: relative;
- }
- .cell-item:nth-child(2n){
- margin-right: 0;
- }
- .cell-item-num{
- font-size: 28rpx;
- font-family: Source Han Sans CN-Bold, Source Han Sans CN;
- font-weight: bold;
- color: #666464;
- line-height: 41rpx;
- }
- .cell-item-info{
- line-height: 41rpx;
- font-size: 28rpx;
- font-family: SourceHanSansCN-Regular-Regular, SourceHanSansCN-Regular;
- font-weight: 400;
- color: #A8A5A5;
- }
- .cell-item-info-item{
- justify-content: space-between;
- }
- .cell-item-option{
- line-height: 56rpx;
- background: #FFFFFF;
- border-radius: 10rpx 10rpx 10rpx 10rpx;
- opacity: 1;
- border: 2rpx solid #EB5C20;
- margin: 37rpx 0rpx 0;
- font-size: 24rpx;
- font-family: SourceHanSansCN-Regular-, SourceHanSansCN-Regular;
- font-weight: normal;
- color: #EB5C20;
- text-align: center;
- position: absolute;
- bottom: 30rpx;
- left: 30rpx;
- right: 30rpx;
- }
- .kongcang{
- width: 112rpx;
- height: 112rpx;
- opacity: 1;
- border: 1px solid #A8A5A5;
- margin: auto;
- border-radius: 100%;
- text-align: center;
- line-height: 112rpx;
- color: #A8A5A5;
- }
- .error-sta{
- text-align: center;
- color: #A8A5A5;
- }
- .cell-item .error-sta{
- margin-top: 20rpx;
- }
- /* 按钮 */
- .bottom-btns{
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- background: #FFFFFF;
- box-shadow: 0rpx -5rpx 15rpx 1rpx rgba(0,0,0,0.05);
- border-radius: 0rpx 0rpx 0rpx 0rpx;
- opacity: 1;
- z-index: 10;
- }
- .btn1{
- width: 250rpx;
- line-height: 76rpx;
- background: #EB5C20;
- border-radius: 10rpx 10rpx 10rpx 10rpx;
- opacity: 1;
- color: #fff;
- text-align: center;
- font-weight: 500;
- font-size: 28rpx;
- }
- .btn2{
- width: 160rpx;
- line-height: 76rpx;
- background: #0FCB27;
- border-radius: 10rpx 10rpx 10rpx 10rpx;
- opacity: 1;
- color: #fff;
- text-align: center;
- font-weight: 500;
- font-size: 28rpx;
- }
|