|
@@ -173,3 +173,86 @@ view.footer-fixed-bottom button[type='default'] {
|
|
|
font-size: 24rpx;
|
|
|
line-height: 36rpx;
|
|
|
}
|
|
|
+
|
|
|
+.customer-van-model {
|
|
|
+ width: 560rpx;
|
|
|
+ border-radius: 24rpx;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+
|
|
|
+.customer-van-model_body {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ padding: 48rpx 0;
|
|
|
+}
|
|
|
+
|
|
|
+.customer-van-model_body .content {
|
|
|
+ width: 480rpx;
|
|
|
+ color: #333333;
|
|
|
+ font-size: 32rpx;
|
|
|
+ line-height: 48rpx;
|
|
|
+ text-align: center;
|
|
|
+ word-break: break-all;
|
|
|
+ word-wrap: break-word;
|
|
|
+}
|
|
|
+
|
|
|
+.customer-van-model_body .content.cancel-order {
|
|
|
+ display: flex;
|
|
|
+ flex-flow: row wrap;
|
|
|
+ justify-content: center;
|
|
|
+}
|
|
|
+
|
|
|
+.customer-van-model_body .content.cancel-order text {
|
|
|
+ color: #333333;
|
|
|
+ font-size: 32rpx;
|
|
|
+ line-height: 48rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.customer-van-model_footer {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ border-top: 1rpx solid #EEEEEE;
|
|
|
+}
|
|
|
+
|
|
|
+.customer-van-model_footer button[type="default"].customer-van-model_cancel {
|
|
|
+ position: relative;
|
|
|
+ left: 0;
|
|
|
+ top: 0;
|
|
|
+ width: 50%;
|
|
|
+ height: 104rpx;
|
|
|
+ color: #666666;
|
|
|
+ font-size: 32rpx;
|
|
|
+ line-height: 48rpx;
|
|
|
+ background: transparent;
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+.customer-van-model_footer button[type="default"].customer-van-model_cancel:after {
|
|
|
+ position: absolute;
|
|
|
+ right: 0;
|
|
|
+ top: 0;
|
|
|
+ bottom: 0;
|
|
|
+ content: '';
|
|
|
+ border-right: 1rpx solid #EEEEEE;
|
|
|
+}
|
|
|
+
|
|
|
+.customer-van-model_footer button[type="primary"].customer-van-model_confirm {
|
|
|
+ width: 50%;
|
|
|
+ height: 104rpx;
|
|
|
+ color: #6b8559;
|
|
|
+ font-size: 32rpx;
|
|
|
+ font-weight: 500;
|
|
|
+ line-height: 48rpx;
|
|
|
+ background: transparent;
|
|
|
+}
|
|
|
+
|
|
|
+.customer-van-model_footer button[type="warn"].customer-van-model_confirm {
|
|
|
+ width: 50%;
|
|
|
+ height: 104rpx;
|
|
|
+ color: #DC4F3F;
|
|
|
+ font-size: 32rpx;
|
|
|
+ font-weight: 500;
|
|
|
+ line-height: 48rpx;
|
|
|
+ background: transparent;
|
|
|
+}
|