吃个甘蔗嚼一年 3 лет назад
Родитель
Сommit
751dd85fd2

+ 6
- 12
src/components/AlreadyUsedMolded/style.less Просмотреть файл

@@ -9,20 +9,15 @@
9 9
   filter: drop-shadow(0 0 0.9rem rgba(0, 0, 0, 0.12));
10 10
 
11 11
   .left-complete-one {
12
-
13 12
     padding-top: 87px;
14 13
     padding-bottom: 43px;
15 14
     position: relative;
16 15
     display: flex;
17 16
     background: @whiteColor;
18
-    background: radial-gradient(
19
-          circle at top right,
20
-          transparent 15px,
21
-          @whiteColor 0
22
-        )
23
-        top right,
24
-      radial-gradient(circle at bottom right, transparent 15px, @whiteColor 0)
25
-        bottom right;
17
+    background: radial-gradient(circle at top right, transparent 15px, #fff) top
18
+        right,
19
+      radial-gradient(circle at bottom right, transparent 15px, #fff) bottom
20
+        right;
26 21
     background-size: 100% 60%;
27 22
     background-repeat: no-repeat;
28 23
 
@@ -111,7 +106,6 @@
111 106
         font-size: 18px;
112 107
         padding-left: 10px;
113 108
         color: rgba(102, 102, 102, 0.8);
114
-
115 109
       }
116 110
 
117 111
       .title-time {
@@ -123,7 +117,6 @@
123 117
   }
124 118
 }
125 119
 
126
-
127 120
 //线条
128 121
 .right-complete-two::after {
129 122
   content: "";
@@ -132,4 +125,5 @@
132 125
   margin: 26px auto;
133 126
   height: 70%;
134 127
   border-left: 1px dashed #595959;
135
-}
128
+  opacity: 0.12;
129
+}

+ 7
- 16
src/components/BossCard/style.less Просмотреть файл

@@ -60,7 +60,6 @@
60 60
       font-size: 30px;
61 61
       font-weight: bold;
62 62
       color: #ffffff;
63
-
64 63
     }
65 64
   }
66 65
 
@@ -79,14 +78,10 @@
79 78
       position: relative;
80 79
       display: flex;
81 80
       background: @whiteColor;
82
-      background: radial-gradient(
83
-            circle at top right,
84
-            transparent 15px,
85
-            @whiteColor 0
86
-          )
81
+      background: radial-gradient(circle at top right, transparent 15px, #fff 0)
87 82
           top right,
88
-        radial-gradient(circle at bottom right, transparent 15px, @whiteColor 0)
89
-          bottom right;
83
+        radial-gradient(circle at bottom right, transparent 15px, #fff 0) bottom
84
+          right;
90 85
       background-size: 100% 60%;
91 86
       background-repeat: no-repeat;
92 87
 
@@ -162,7 +157,6 @@
162 157
           padding-left: 10px;
163 158
           text-decoration: line-through;
164 159
           color: rgba(102, 102, 102, 0.8);
165
-
166 160
         }
167 161
 
168 162
         .title-time {
@@ -176,14 +170,10 @@
176 170
 
177 171
   .right-complete-two {
178 172
     background: @whiteColor;
179
-    background: radial-gradient(
180
-          circle at top left,
181
-          transparent 15px,
182
-          @whiteColor 0
183
-        )
173
+    background: radial-gradient(circle at top left, transparent 15px, #fff 0)
184 174
         top left,
185
-      radial-gradient(circle at bottom left, transparent 15px, @whiteColor 0)
186
-        bottom left;
175
+      radial-gradient(circle at bottom left, transparent 15px, #fff 0) bottom
176
+        left;
187 177
     background-size: 100% 60%;
188 178
     background-repeat: no-repeat;
189 179
     width: 129px;
@@ -224,5 +214,6 @@
224 214
     margin: 26px auto;
225 215
     height: 70%;
226 216
     border-left: 1px dashed #595959;
217
+    opacity: 0.12;
227 218
   }
228 219
 }

+ 43
- 50
src/components/CollectList/MyCollect/index.jsx Просмотреть файл

@@ -22,58 +22,59 @@ export default (props) => {
22 22
 
23 23
   const targetType = item.targetType
24 24
 
25
-
26 25
   const star = parseFloat(((item.sweetScore + item.environmentScore + item.serviceScore) / 3).toFixed(1));
27 26
   return (
28 27
 
29
-    <View>
30
-      {
31
-        targetType === "shop_package" && (
32
-          <view class='wrapper'>
33
-            <view class='left-complete-one'   >
34
-              <image className='left-image-1' src={ProCard_hot} style={{ display: item.targetType === 'shop_package' ? '' : 'none' }} ></image>
35
-              <view className='left-viewText'  >
36
-                返现¥{formatPrice(item.cashback)}
37
-              </view>
38
-              {/* 评分 */}
39
-              <view className='card-box-star' style={{ display: item.targetType === 'shop_package' ? '' : 'none' }} >
40
-                <Star star={star} />
41
-                <text className='card-star-text' >{star}</text>
42
-              </view>
43
-              <view className='title-image' >
44
-                <image className='image-1' mode='scaleToFill' src={item.poster}></image>
45
-                <image className='image-2' src={item.targetType === 'tourist' ? Attractions : food}></image>
46
-              </view>
47
-              <view className='title-content'>
48
-                <view className='Pro-title'  >
49
-                  <view className='title-text'>{(item.title).toString().length > 25 ? (item.title).substring(0, 25) + '...' : (item.title)}</view>
28
+    <View className='View-box-LR'>
29
+      <View className='left-View-box'>
30
+        {
31
+          targetType === "shop_package" && (
32
+            <view class='wrapper'>
33
+              <view class='left-complete-one'   >
34
+                <image className='left-image-1' src={ProCard_hot} style={{ display: item.targetType === 'shop_package' ? '' : 'none' }} ></image>
35
+                <view className='left-viewText'  >
36
+                  返现¥{formatPrice(item.cashback)}
37
+                </view>
38
+                {/* 评分 */}
39
+                <view className='card-box-star' style={{ display: item.targetType === 'shop_package' ? '' : 'none' }} >
40
+                  <Star star={star} />
41
+                  <text className='card-star-text' >{star}</text>
42
+                </view>
43
+                <view className='title-image' >
44
+                  <image className='image-1' mode='scaleToFill' src={item.poster}></image>
45
+                  <image className='image-2' src={item.targetType === 'tourist' ? Attractions : food}></image>
50 46
                 </view>
51
-                <text className='title-money' >¥{formatPrice(item.actualPrice)}元<text className='title-money-2'>门市价{formatPrice(item.standardPrice)}元</text></text>
52
-                <view className='title-position-on'>
53
-                  <image className='title-position' src={position} />
54
-                  <text className='title-position-image'>
55
-                    {
56
-                      targetType === "shop_package" && (
57
-                        item.areaPName == null ? item.areaName : item.areaPName + '/' + item.areaName
58
-                      )
59
-                    }
60
-                  </text>
47
+                <view className='title-content'>
48
+                  <view className='Pro-title'  >
49
+                    <view className='title-text'>{(item.title).toString().length > 25 ? (item.title).substring(0, 25) + '...' : (item.title)}</view>
50
+                  </view>
51
+                  <text className='title-money' >¥{formatPrice(item.actualPrice)}元<text className='title-money-2'>门市价{formatPrice(item.standardPrice)}元</text></text>
52
+                  <view className='title-position-on'>
53
+                    <image className='title-position' src={position} />
54
+                    <text className='title-position-image'>
55
+                      {
56
+                        targetType === "shop_package" && (
57
+                          item.areaPName == null ? item.areaName : item.areaPName + '/' + item.areaName
58
+                        )
59
+                      }
60
+                    </text>
61
+                  </view>
61 62
                 </view>
62 63
               </view>
63
-            </view>
64
-            <view class='right-complete-two'>
65
-              <view className='right-content' onClick={() => { Taro.navigateTo({ url: `/pages/details/foodDetails/foodDetails?id=${item.shopId}` }); }}>
66
-                <image className='right-image' src={SeeDetails} />
67
-                <view className='right-title'>查看详情</view>
64
+              <view class='right-complete-two'>
65
+                <view className='right-content' onClick={() => { Taro.navigateTo({ url: `/pages/details/foodDetails/foodDetails?id=${item.shopId}` }); }}>
66
+                  <image className='right-image' src={SeeDetails} />
67
+                  <view className='right-title'>查看详情</view>
68
+                </view>
68 69
               </view>
69 70
             </view>
70
-          </view>
71
-        )
72
-      }
73
-      <View>
71
+          )
72
+        }
73
+      </View>
74
+      <View className='right-View-box'>
74 75
         {
75 76
           targetType !== "shop_package" && (
76
-            <view class='wrapper-tourist'>
77
+            <view class='wrapper'>
77 78
               <view class='left-complete-one'   >
78 79
                 <view className='title-image'>
79 80
                   <image className='image-1' mode='scaleToFill' src={item.poster}></image>
@@ -104,14 +105,6 @@ export default (props) => {
104 105
                   </view>
105 106
                 </view>
106 107
               </view>
107
-              {/* if (item.targetType === "tourist") {
108
-                    return Taro.navigateTo({ url: `/pages/details/mjDetails/sceneryDetails?id=${item.targetId}` });
109
-                  } else {
110
-                    console.log(item.targetType);
111
-
112
-                    return Taro.navigateTo({ url: `/pages/details/mjDetails/sceneryDetails?id=${item.targetId}` });
113
-
114
-                  } */}
115 108
               <view class='right-complete-two'>
116 109
                 <view className='right-content' onClick={() => { Taro.navigateTo({ url: `/pages/details/mjDetails/sceneryDetails?id=${item.targetId}` }) }}>
117 110
                   <image className='right-image' src={SeeDetails} />

+ 557
- 368
src/components/CollectList/MyCollect/style.less Просмотреть файл

@@ -1,401 +1,590 @@
1 1
 @whiteColor: #fff;
2
-.title-on{
3
-  width: 21px;
4
-  height: 21px;
5
-  padding-right: 10px;
6
-}
7
-.wrapper {
8
-  margin-top: 40px;
9
-  display: flex;
10
-  position: relative;
11
-  // margin-top: 600px;
12
-  // margin: 30px auto;
13
-  width: 100%;
2
+// .title-on {
3
+//   width: 21px;
4
+//   height: 21px;
5
+//   padding-right: 10px;
6
+// }
7
+// .wrapper {
8
+//   margin-top: 40px;
9
+//   display: flex;
10
+//   position: relative;
11
+//   // margin-top: 600px;
12
+//   // margin: 30px auto;
13
+//   width: 100%;
14 14
 
15
-  // box-shadow: 0px 8px 38px 0px rgba(0, 0, 0, 0.12);
16
-  // filter: drop-shadow(5px 8px 6px rgb(202, 202, 202));
17
-  filter: drop-shadow(0 0 0.9rem rgba(0, 0, 0, 0.12));
18
-  .card-box-star {
19
-    position: absolute;
20
-    width: auto;
21
-    height: 44.3px;
22
-    position: absolute;
23
-    left: 183px;
24
-    top: 28px;
25
-    font-size: 20px;
26
-    color: @whiteColor;
27
-    .card-star-image {
28
-      padding-left: 6px;
29
-      width: 21px;
30
-      height: 21px;
31
-    }
32
-    .card-star-text {
33
-      padding-left: 10px;
34
-      font-size: 20px;
35
-      color: #333;
36
-      font-weight: 700;
37
-    }
38
-  }
15
+//   // box-shadow: 0px 8px 38px 0px rgba(0, 0, 0, 0.12);
16
+//   // filter: drop-shadow(5px 8px 6px rgb(202, 202, 202));
17
+//   filter: drop-shadow(0 0 0.9rem rgba(0, 0, 0, 0.12));
18
+//   .card-box-star {
19
+//     position: absolute;
20
+//     width: auto;
21
+//     height: 44.3px;
22
+//     position: absolute;
23
+//     left: 183px;
24
+//     top: 28px;
25
+//     font-size: 20px;
26
+//     color: @whiteColor;
27
+//     .card-star-image {
28
+//       padding-left: 6px;
29
+//       width: 21px;
30
+//       height: 21px;
31
+//     }
32
+//     .card-star-text {
33
+//       padding-left: 10px;
34
+//       font-size: 20px;
35
+//       color: #333;
36
+//       font-weight: 700;
37
+//     }
38
+//   }
39 39
 
40
-  .left-complete-one {
41
-    padding-top: 85px;
42
-    padding-bottom: 43px;
43
-    position: relative;
44
-    display: flex;
45
-    background: @whiteColor;
46
-    background: radial-gradient(
47
-          circle at top right,
48
-          transparent 15px,
49
-          @whiteColor 0
50
-        )
51
-        top right,
52
-      radial-gradient(circle at bottom right, transparent 15px, @whiteColor 0)
53
-        bottom right;
54
-    background-size: 100% 60%;
55
-    background-repeat: no-repeat;
40
+//   .left-complete-one {
41
+//     padding-top: 85px;
42
+//     padding-bottom: 43px;
43
+//     position: relative;
44
+//     display: flex;
45
+//     background: @whiteColor;
46
+//     background: radial-gradient(circle at top right, transparent 15px, #fff) top
47
+//         right,
48
+//       radial-gradient(circle at bottom right, transparent 15px, #fff) bottom
49
+//         right;
50
+//     background-size: 100% 60%;
51
+//     background-repeat: no-repeat;
56 52
 
57
-    
58
-    width: 80%;
59
-    border-radius: 15px 0px 0px 15px;
60
-    // border-radius: 12px;
53
+//     width: 80%;
54
+//     border-radius: 15px 0px 0px 15px;
55
+//     // border-radius: 12px;
61 56
 
62
-    align-items: center;
63
-    .left-image-1 {
64
-      width: 145px;
65
-      height: 44px;
66
-      position: absolute;
67
-      top: 22px;
68
-    }
69
-    .left-viewText {
70
-      // background-image: url(@Image-ProCard_hot);
71
-      // width: 287px;
72
-      width: auto;
73
-      height: 44.3px;
74
-      position: absolute;
75
-      left: 1px;
76
-      top: 28px;
77
-      font-size: 20px;
78
-      color: @whiteColor;
79
-    }
80
-    //图片
81
-    .title-image {
82
-      height: 144px;
83
-      margin-left: 20px;
84
-      border-radius: 24px;
85
-      overflow: hidden;
86
-      position: relative;
87
-     
88
-      .image-1 {
89
-        width: 144px;
90
-        height: 144px;
91
-        margin: 0 ;
92
-      }
93
-      .image-2 {
94
-        width: 89px;
95
-        height: 34px;
96
-        position: absolute;
97
-        left: 0;
98
-        top: 0;
99
-      }
100
-    }
101
-    // 商品标题
102
-    .title-content {
103
-      // padding: 84px 0 56px 20px;
104
-      padding-left: 18px;
57
+//     align-items: center;
58
+//     .left-image-1 {
59
+//       width: 145px;
60
+//       height: 44px;
61
+//       position: absolute;
62
+//       top: 22px;
63
+//     }
64
+//     .left-viewText {
65
+//       // background-image: url(@Image-ProCard_hot);
66
+//       // width: 287px;
67
+//       width: auto;
68
+//       height: 44.3px;
69
+//       position: absolute;
70
+//       left: 1px;
71
+//       top: 28px;
72
+//       font-size: 20px;
73
+//       color: @whiteColor;
74
+//     }
75
+//     //图片
76
+//     .title-image {
77
+//       height: 144px;
78
+//       margin-left: 20px;
79
+//       border-radius: 24px;
80
+//       overflow: hidden;
81
+//       position: relative;
105 82
 
106
-      .Pro-title {
107
-        .title-text {
108
-          width: 375px;
109
-          overflow: hidden;
110
-          text-overflow: ellipsis;
111
-          // display: -webkit-box; //必须要
112
-          -webkit-line-clamp: 1;
113
-          -webkit-box-orient: vertical;
114
-          // word-break: break-all; /* 多出文本省略号代替 */
115
-          text-align: left;
116
-          font-size: 24px;
117
-          // padding-bottom: 10px;
118
-        }
119
-      }
120
-      .title-money {
121
-        // padding-top: 34px;
122
-        font-size: 24px;
123
-        // color: red;
124
-        font-weight: 800;
125
-      }
126
-      .title-money-2 {
127
-        font-size: 18px;
128
-        color: rgba(102, 102, 102, 0.8);
83
+//       .image-1 {
84
+//         width: 144px;
85
+//         height: 144px;
86
+//         margin: 0;
87
+//       }
88
+//       .image-2 {
89
+//         width: 89px;
90
+//         height: 34px;
91
+//         position: absolute;
92
+//         left: 0;
93
+//         top: 0;
94
+//       }
95
+//     }
96
+//     // 商品标题
97
+//     .title-content {
98
+//       // padding: 84px 0 56px 20px;
99
+//       padding-left: 18px;
129 100
 
130
-        padding-left: 10px;
131
-        text-decoration: line-through;
132
-      }
101
+//       .Pro-title {
102
+//         .title-text {
103
+//           width: 375px;
104
+//           overflow: hidden;
105
+//           text-overflow: ellipsis;
106
+//           // display: -webkit-box; //必须要
107
+//           -webkit-line-clamp: 1;
108
+//           -webkit-box-orient: vertical;
109
+//           // word-break: break-all; /* 多出文本省略号代替 */
110
+//           text-align: left;
111
+//           font-size: 24px;
112
+//           // padding-bottom: 10px;
113
+//         }
114
+//       }
115
+//       .title-money {
116
+//         // padding-top: 34px;
117
+//         font-size: 24px;
118
+//         // color: red;
119
+//         font-weight: 800;
120
+//       }
121
+//       .title-money-2 {
122
+//         font-size: 18px;
123
+//         color: rgba(102, 102, 102, 0.8);
133 124
 
134
-      .title-time {
135
-        font-size: 24px;
136
-        // padding-top: 20px;
137
-        color: #c0c8d3;
138
-      }
139
-      .title-position-on {
140
-        display: flex;
141
-        font-size: 20px;
142
-        .title-position {
143
-          width: 18px;
144
-          height: 24px;
145
-          padding-right: 10px;
146
-          padding-top: 5px;
147
-        }
148
-        .title-position-image {
149
-          align-items: center;
150
-          font-size: 20px;
151
-          color: #333;
152
-        }
153
-        // .title-on {
154
-        //   // margin-bottom: 10px;
155
-        //   padding-top: 5px;
156
-        //   padding-left: 40px;
157
-        //   width: 21px;
158
-        //   height: 21px;
159
-        //   padding-right: 10px;
160
-        // }
161
-        .title-on-text {
162
-          align-items: center;
125
+//         padding-left: 10px;
126
+//         text-decoration: line-through;
127
+//       }
163 128
 
164
-          font-size: 20px;
165
-          color: #333;
166
-        }
167
-      }
168
-    }
169
-  }
170
-  // .left-complete-one:nth-child(2) {
171
-  //   background: rgb(182, 0, 0);
172
-  //   padding-top: 10px;
173
-  // }
174
-}
129
+//       .title-time {
130
+//         font-size: 24px;
131
+//         // padding-top: 20px;
132
+//         color: #c0c8d3;
133
+//       }
134
+//       .title-position-on {
135
+//         display: flex;
136
+//         font-size: 20px;
137
+//         .title-position {
138
+//           width: 18px;
139
+//           height: 24px;
140
+//           padding-right: 10px;
141
+//           padding-top: 5px;
142
+//         }
143
+//         .title-position-image {
144
+//           align-items: center;
145
+//           font-size: 20px;
146
+//           color: #333;
147
+//         }
148
+//         // .title-on {
149
+//         //   // margin-bottom: 10px;
150
+//         //   padding-top: 5px;
151
+//         //   padding-left: 40px;
152
+//         //   width: 21px;
153
+//         //   height: 21px;
154
+//         //   padding-right: 10px;
155
+//         // }
156
+//         .title-on-text {
157
+//           align-items: center;
175 158
 
176
-.right-complete-two {
177
-  background: @whiteColor;
178
-  background: radial-gradient(
179
-        circle at top left,
180
-        transparent 15px,
181
-        @whiteColor 0
182
-      )
183
-      top left,
184
-    radial-gradient(circle at bottom left, transparent 15px, @whiteColor 0)
185
-      bottom left;
186
-  background-size: 100% 60%;
187
-  background-repeat: no-repeat;
188
-  width: 129px;
189
-  border-radius: 0 15px 15px 0;
190
-  position: relative;
191
-  //右面部分
192
-  .right-content {
193
-    // width: 50%;
194
-    height: 134px;
195
-    position: absolute;
196
-    top: calc(50% - 45px);
197
-    left: calc(50% - 30px);
198
-    .right-image {
199
-      width: 35px;
200
-      height: 34px;
201
-      margin-left: calc(50% - 41.5px);
202
-    }
159
+//           font-size: 20px;
160
+//           color: #333;
161
+//         }
162
+//       }
163
+//     }
164
+//   }
165
+//   // .left-complete-one:nth-child(2) {
166
+//   //   background: rgb(182, 0, 0);
167
+//   //   padding-top: 10px;
168
+//   // }
169
+// }
203 170
 
204
-    .right-title {
205
-      font-weight: 700;
206
-      width: 110px;
207
-      font-size: 24px;
208
-      padding-top: 15px;
209
-      text-align: center;
210
-      position: relative;
211
-      left: -22px;
212
-    }
213
-  }
214
-}
215
-//线条
216
-.right-complete-two::after {
217
-  content: "";
218
-  position: absolute;
219
-  top: 15px;
220
-  margin: 26px auto;
221
-  height: 70%;
222
-  border-left: 1px dashed #595959;
223
-}
171
+// .right-complete-two {
172
+//   background: @whiteColor;
173
+//   background: radial-gradient(circle at top left, transparent 15px, #fff) top
174
+//       left,
175
+//     radial-gradient(circle at bottom left, transparent 15px, #fff) bottom left;
176
+//   background-size: 100% 60%;
177
+//   background-repeat: no-repeat;
178
+//   width: 129px;
179
+//   border-radius: 0 15px 15px 0;
180
+//   position: relative;
181
+//   //右面部分
182
+//   .right-content {
183
+//     // width: 50%;
184
+//     height: 134px;
185
+//     position: absolute;
186
+//     top: calc(50% - 45px);
187
+//     left: calc(50% - 30px);
188
+//     .right-image {
189
+//       width: 35px;
190
+//       height: 34px;
191
+//       margin-left: calc(50% - 41.5px);
192
+//     }
224 193
 
194
+//     .right-title {
195
+//       font-weight: 700;
196
+//       width: 110px;
197
+//       font-size: 24px;
198
+//       padding-top: 15px;
199
+//       text-align: center;
200
+//       position: relative;
201
+//       left: -22px;
202
+//     }
203
+//   }
204
+// }
205
+// //线条
206
+// .right-complete-two::after {
207
+//   content: "";
208
+//   position: absolute;
209
+//   top: 15px;
210
+//   margin: 26px auto;
211
+//   height: 70%;
212
+//   border-left: 1px dashed #595959;
213
+// }
225 214
 
226
-.wrapper-tourist {
227
-  margin-top: 40px;
228
-  display: flex;
229
-  position: relative;
230
-  // margin-top: 600px;
231
-  // margin: 30px auto;
232
-  width: 100%;
215
+// .wrapper-tourist {
216
+//   margin-top: 40px;
217
+//   display: flex;
218
+//   position: relative;
219
+//   // margin-top: 600px;
220
+//   // margin: 30px auto;
221
+//   width: 100%;
233 222
 
234
-  // box-shadow: 0px 8px 38px 0px rgba(0, 0, 0, 0.12);
235
-  // filter: drop-shadow(5px 8px 6px rgb(202, 202, 202));
236
-  filter: drop-shadow(0 0 0.9rem rgba(0, 0, 0, 0.12));
237
-  .card-box-star {
238
-    position: absolute;
239
-    width: auto;
240
-    height: 44.3px;
241
-    position: absolute;
242
-    left: 183px;
243
-    top: 28px;
244
-    font-size: 20px;
245
-    color: @whiteColor;
246
-    .card-star-image {
247
-      padding-left: 6px;
248
-      width: 21px;
249
-      height: 21px;
250
-    }
251
-    .card-star-text {
252
-      padding-left: 10px;
253
-      font-size: 20px;
254
-      color: #333;
255
-      font-weight: 700;
256
-    }
257
-  }
223
+//   // box-shadow: 0px 8px 38px 0px rgba(0, 0, 0, 0.12);
224
+//   // filter: drop-shadow(5px 8px 6px rgb(202, 202, 202));
225
+//   filter: drop-shadow(0 0 0.9rem rgba(0, 0, 0, 0.12));
226
+//   .card-box-star {
227
+//     position: absolute;
228
+//     width: auto;
229
+//     height: 44.3px;
230
+//     position: absolute;
231
+//     left: 183px;
232
+//     top: 28px;
233
+//     font-size: 20px;
234
+//     color: @whiteColor;
235
+//     .card-star-image {
236
+//       padding-left: 6px;
237
+//       width: 21px;
238
+//       height: 21px;
239
+//     }
240
+//     .card-star-text {
241
+//       padding-left: 10px;
242
+//       font-size: 20px;
243
+//       color: #333;
244
+//       font-weight: 700;
245
+//     }
246
+//   }
258 247
 
259
-  .left-complete-one {
260
-    padding-top: 35px;
261
-    padding-bottom: 43px;
262
-    position: relative;
263
-    display: flex;
264
-    background: @whiteColor;
265
-    background: radial-gradient(
266
-          circle at top right,
267
-          transparent 15px,
268
-          @whiteColor 0
269
-        )
270
-        top right,
271
-      radial-gradient(circle at bottom right, transparent 15px, @whiteColor 0)
272
-        bottom right;
273
-    background-size: 100% 60%;
274
-    background-repeat: no-repeat;
248
+//   .left-complete-one {
249
+//     padding-top: 35px;
250
+//     padding-bottom: 43px;
251
+//     position: relative;
252
+//     display: flex;
253
+//     background: @whiteColor;
254
+//     background: radial-gradient(circle at top right, transparent 15px, #fff) top
255
+//         right,
256
+//       radial-gradient(circle at bottom right, transparent 15px, #fff) bottom
257
+//         right;
258
+//     background-size: 100% 60%;
259
+//     background-repeat: no-repeat;
275 260
 
276
-    width: 80%;
277
-    border-radius: 15px 0px 0px 15px;
278
-    // border-radius: 12px;
261
+//     width: 80%;
262
+//     border-radius: 15px 0px 0px 15px;
263
+//     // border-radius: 12px;
279 264
 
280
-    align-items: center;
281
-    .left-image-1 {
282
-      width: 145px;
283
-      height: 44px;
284
-      position: absolute;
285
-      top: 22px;
286
-    }
287
-    .left-viewText {
288
-      // background-image: url(@Image-ProCard_hot);
289
-      // width: 287px;
290
-      width: auto;
291
-      height: 44.3px;
292
-      position: absolute;
293
-      left: 1px;
294
-      top: 28px;
295
-      font-size: 20px;
296
-      color: @whiteColor;
297
-    }
298
-    //图片
299
-    .title-image {
300
-      // width: 145px;
301
-      // margin-left: 20px;
302
-      // overflow: hidden;
303
-      // position: relative;
304
-      height: 144px;
305
- margin-left: 20px;
306
- border-radius: 24px;
307
- overflow: hidden;
308
- position: relative;
309
-      .image-1 {
310
-        // width: 100%;
311
-        // height: 145px;
312
-        // border-radius: 10px;
265
+//     align-items: center;
266
+//     .left-image-1 {
267
+//       width: 145px;
268
+//       height: 44px;
269
+//       position: absolute;
270
+//       top: 22px;
271
+//     }
272
+//     .left-viewText {
273
+//       // background-image: url(@Image-ProCard_hot);
274
+//       // width: 287px;
275
+//       width: auto;
276
+//       height: 44.3px;
277
+//       position: absolute;
278
+//       left: 1px;
279
+//       top: 28px;
280
+//       font-size: 20px;
281
+//       color: @whiteColor;
282
+//     }
283
+//     //图片
284
+//     .title-image {
285
+//       // width: 145px;
286
+//       // margin-left: 20px;
287
+//       // overflow: hidden;
288
+//       // position: relative;
289
+//       height: 144px;
290
+//       margin-left: 20px;
291
+//       border-radius: 24px;
292
+//       overflow: hidden;
293
+//       position: relative;
294
+//       .image-1 {
295
+//         // width: 100%;
296
+//         // height: 145px;
297
+//         // border-radius: 10px;
313 298
 
299
+//         width: 144px;
300
+//         height: 144px;
301
+//         margin: 0;
302
+//       }
303
+//       .image-2 {
304
+//         width: 89px;
305
+//         height: 34px;
306
+//         position: absolute;
307
+//         left: 0;
308
+//         top: 0;
309
+//       }
310
+//     }
311
+//     // 商品标题
312
+//     .title-content {
313
+//       // padding: 84px 0 56px 20px;
314
+//       padding-left: 18px;
314 315
 
315
- width: 144px;
316
- height: 144px;
317
- margin: 0;
318
-      }
319
-      .image-2 {
320
-        width: 89px;
321
-        height: 34px;
322
-        position: absolute;
323
-        left: 0;
324
-        top: 0;
325
-      }
326
-    }
327
-    // 商品标题
328
-    .title-content {
329
-      // padding: 84px 0 56px 20px;
330
-      padding-left: 18px;
316
+//       .Pro-title {
317
+//         .title-text {
318
+//           width: 375px;
319
+//           overflow: hidden;
320
+//           text-overflow: ellipsis;
321
+//           // display: -webkit-box; //必须要
322
+//           -webkit-line-clamp: 1;
323
+//           -webkit-box-orient: vertical;
324
+//           // word-break: break-all; /* 多出文本省略号代替 */
325
+//           text-align: left;
326
+//           font-size: 24px;
327
+//           // padding-bottom: 10px;
328
+//         }
329
+//       }
330
+//       .title-money {
331
+//         // padding-top: 34px;
332
+//         font-size: 24px;
333
+//         // color: red;
334
+//         font-weight: 800;
335
+//       }
336
+//       .title-money-2 {
337
+//         font-size: 18px;
338
+//         color: rgba(102, 102, 102, 0.8);
331 339
 
332
-      .Pro-title {
333
-        .title-text {
334
-          width: 375px;
335
-          overflow: hidden;
336
-          text-overflow: ellipsis;
337
-          // display: -webkit-box; //必须要
338
-          -webkit-line-clamp: 1;
339
-          -webkit-box-orient: vertical;
340
-          // word-break: break-all; /* 多出文本省略号代替 */
341
-          text-align: left;
342
-          font-size: 24px;
343
-          // padding-bottom: 10px;
344
-        }
345
-      }
346
-      .title-money {
347
-        // padding-top: 34px;
348
-        font-size: 24px;
349
-        // color: red;
350
-        font-weight: 800;
351
-      }
352
-      .title-money-2 {
353
-        font-size: 18px;
354
-        color: rgba(102, 102, 102, 0.8);
340
+//         padding-left: 10px;
341
+//         text-decoration: line-through;
342
+//       }
355 343
 
356
-        padding-left: 10px;
357
-        text-decoration: line-through;
358
-      }
344
+//       .title-time {
345
+//         font-size: 24px;
346
+//         // padding-top: 20px;
347
+//         color: #c0c8d3;
348
+//       }
349
+//       .title-position-on {
350
+//         display: flex;
351
+//         font-size: 20px;
352
+//         .title-position {
353
+//           width: 18px;
354
+//           height: 24px;
355
+//           padding-right: 10px;
356
+//           padding-top: 5px;
357
+//         }
358
+//         .title-position-image {
359
+//           align-items: center;
360
+//           font-size: 20px;
361
+//           color: #333;
362
+//         }
363
+//         .title-on {
364
+//           // margin-bottom: 10px;
365
+//           padding-top: 5px;
366
+//           padding-left: 40px;
367
+//           width: 21px;
368
+//           height: 21px;
369
+//           padding-right: 10px;
370
+//         }
371
+//       }
372
+//       .title-on-text {
373
+//         align-items: center;
374
+//         font-size: 20px;
375
+//         color: #333;
376
+//       }
377
+//     }
378
+//   }
379
+// }
380
+.View-box-LR {
381
+  .left-View-box {
382
+    .wrapper {
383
+      display: flex;
384
+      position: relative;
385
+      margin: 30px auto;
386
+      width: 100%;
387
+      // box-shadow: 0px 8px 38px 0px rgba(0, 0, 0, 0.12);
388
+      // filter: drop-shadow(5px 8px 6px rgb(202, 202, 202));
389
+      filter: drop-shadow(0 0 0.9rem rgba(0, 0, 0, 0.12));
359 390
 
360
-      .title-time {
361
-        font-size: 24px;
362
-        // padding-top: 20px;
363
-        color: #c0c8d3;
364
-      }
365
-      .title-position-on {
366
-        display: flex;
391
+      .card-box-star {
392
+        position: absolute;
393
+        width: auto;
394
+        height: 44.3px;
395
+        position: absolute;
396
+        left: 183px;
397
+        top: 28px;
367 398
         font-size: 20px;
368
-        .title-position {
369
-          width: 18px;
370
-          height: 24px;
371
-          padding-right: 10px;
372
-          padding-top: 5px;
399
+        color: @whiteColor;
400
+        .card-star-image {
401
+          padding-left: 6px;
402
+          width: 21px;
403
+          height: 21px;
373 404
         }
374
-        .title-position-image {
375
-          align-items: center;
405
+        .card-star-text {
406
+          padding-left: 10px;
376 407
           font-size: 20px;
377 408
           color: #333;
409
+          font-weight: 700;
378 410
         }
379
-        .title-on {
380
-          // margin-bottom: 10px;
381
-          padding-top: 5px;
382
-          padding-left: 40px;
383
-          width: 21px;
384
-          height: 21px;
385
-          padding-right: 10px;
386
-        }
387
-   
388 411
       }
389
-      .title-on-text {
412
+
413
+      .left-complete-one {
414
+        padding-top: 87px;
415
+        padding-bottom: 43px;
416
+        position: relative;
417
+        display: flex;
418
+        background: @whiteColor;
419
+        background: radial-gradient(
420
+              circle at top right,
421
+              transparent 15px,
422
+              #fff 0
423
+            )
424
+            top right,
425
+          radial-gradient(circle at bottom right, transparent 15px, #fff 0)
426
+            bottom right;
427
+        background-size: 100% 60%;
428
+        background-repeat: no-repeat;
429
+
430
+        width: 573px;
431
+        border-radius: 15px 0px 0px 15px;
432
+        // border-radius: 12px;
433
+
390 434
         align-items: center;
391
-        font-size: 20px;
392
-        color: #333;
435
+        .left-image-1 {
436
+          width: 145px;
437
+          height: 44px;
438
+          position: absolute;
439
+          top: 22px;
440
+        }
441
+        .left-viewText {
442
+          // background-image: url(@Image-ProCard_hot);
443
+          // width: 287px;
444
+          width: auto;
445
+          height: 44.3px;
446
+          position: absolute;
447
+          left: 1px;
448
+          top: 28px;
449
+          font-size: 24px;
450
+          color: @whiteColor;
451
+          font-weight: 600;
452
+        }
453
+        //图片
454
+        .title-image {
455
+          height: 144px;
456
+          margin-left: 20px;
457
+          border-radius: 24px;
458
+          overflow: hidden;
459
+          position: relative;
460
+          .image-1 {
461
+            width: 144px;
462
+            height: 144px;
463
+            margin: 0;
464
+          }
465
+          .image-2 {
466
+            width: 89px;
467
+            height: 34px;
468
+            position: absolute;
469
+            left: 0;
470
+          }
471
+        }
472
+        // 商品标题
473
+        .title-content {
474
+          // padding: 84px 0 56px 20px;
475
+          padding-left: 18px;
476
+
477
+          .Pro-title {
478
+            .title-text {
479
+              width: 375px;
480
+              overflow: hidden;
481
+              text-overflow: ellipsis;
482
+              display: -webkit-box; //必须要
483
+              -webkit-line-clamp: 1;
484
+              -webkit-box-orient: vertical;
485
+              word-break: break-all; /* 多出文本省略号代替 */
486
+              text-align: left;
487
+              font-size: 24px;
488
+              padding-bottom: 10px;
489
+            }
490
+          }
491
+          .title-money {
492
+            padding-top: 34px;
493
+            font-size: 24px;
494
+            // color: red;
495
+            font-weight: 800;
496
+          }
497
+          .title-money-2 {
498
+            font-size: 18px;
499
+            padding-left: 10px;
500
+            text-decoration: line-through;
501
+            color: rgba(102, 102, 102, 0.8);
502
+          }
503
+
504
+          .title-time {
505
+            font-size: 24px;
506
+            padding-top: 20px;
507
+            color: #c0c8d3;
508
+          }
509
+          .title-position-on {
510
+            display: flex;
511
+            font-size: 20px;
512
+            .title-position {
513
+              width: 18px;
514
+              height: 24px;
515
+              padding-right: 10px;
516
+              padding-top: 5px;
517
+            }
518
+            .title-position-image {
519
+              align-items: center;
520
+              font-size: 20px;
521
+              color: #333;
522
+            }
523
+            // .title-on {
524
+            //   // margin-bottom: 10px;
525
+            //   padding-top: 5px;
526
+            //   padding-left: 40px;
527
+            //   width: 21px;
528
+            //   height: 21px;
529
+            //   padding-right: 10px;
530
+            // }
531
+            .title-on-text {
532
+              align-items: center;
533
+
534
+              font-size: 20px;
535
+              color: #333;
536
+            }
537
+          }
538
+        }
393 539
       }
394 540
     }
541
+
542
+    .right-complete-two {
543
+      background: @whiteColor;
544
+      background: radial-gradient(circle at top left, transparent 15px, #fff 0)
545
+          top left,
546
+        radial-gradient(circle at bottom left, transparent 15px, #fff 0) bottom
547
+          left;
548
+      background-size: 100% 60%;
549
+      background-repeat: no-repeat;
550
+      width: 129px;
551
+      border-radius: 0 15px 15px 0;
552
+      position: relative;
553
+      //右面部分
554
+      .right-content {
555
+        // width: 50%;
556
+        height: 134px;
557
+        position: absolute;
558
+        top: calc(50% - 45px);
559
+        left: calc(50% - 30px);
560
+        .right-image {
561
+          width: 35px;
562
+          height: 34px;
563
+          margin-left: calc(50% - 41.5px);
564
+        }
565
+
566
+        .right-title {
567
+          font-weight: 700;
568
+          width: 110px;
569
+          font-size: 24px;
570
+          padding-top: 15px;
571
+          text-align: center;
572
+          position: relative;
573
+          left: -22px;
574
+        }
575
+      }
576
+    }
577
+    //线条
578
+    .right-complete-two::after {
579
+      content: "";
580
+      position: absolute;
581
+      top: 15px;
582
+      margin: 26px auto;
583
+      height: 70%;
584
+      border-left: 1px dashed #595959;
585
+      opacity: 0.12;
586
+    }
587
+  }
588
+  .right-View-box {
395 589
   }
396
-  // .left-complete-one:nth-child(2) {
397
-  //   background: rgb(182, 0, 0);
398
-  //   padding-top: 10px;
399
-  // }
400 590
 }
401
-

+ 12
- 22
src/components/CompoentsOrder/complete/style.less Просмотреть файл

@@ -3,7 +3,7 @@
3 3
 .complete-boxs {
4 4
   margin: 40px auto;
5 5
   padding: 0 30px;
6
-  
6
+
7 7
   .OrderNumber {
8 8
     height: 19px;
9 9
     font-size: 20px;
@@ -47,14 +47,10 @@
47 47
       position: relative;
48 48
       display: flex;
49 49
       background: @whiteColor;
50
-      background: radial-gradient(
51
-            circle at top right,
52
-            transparent 15px,
53
-            @whiteColor 0
54
-          )
50
+      background: radial-gradient(circle at top right, transparent 15px, #fff)
55 51
           top right,
56
-        radial-gradient(circle at bottom right, transparent 15px, @whiteColor 0)
57
-          bottom right;
52
+        radial-gradient(circle at bottom right, transparent 15px, #fff) bottom
53
+          right;
58 54
       background-size: 100% 60%;
59 55
       background-repeat: no-repeat;
60 56
 
@@ -172,14 +168,9 @@
172 168
 
173 169
   .right-complete-two {
174 170
     background: @whiteColor;
175
-    background: radial-gradient(
176
-          circle at top left,
177
-          transparent 15px,
178
-          @whiteColor 0
179
-        )
180
-        top left,
181
-      radial-gradient(circle at bottom left, transparent 15px, @whiteColor 0)
182
-        bottom left;
171
+    background: radial-gradient(circle at top left, transparent 15px, #fff) top
172
+        left,
173
+      radial-gradient(circle at bottom left, transparent 15px, #fff) bottom left;
183 174
     background-size: 100% 60%;
184 175
     background-repeat: no-repeat;
185 176
     width: 129px;
@@ -218,6 +209,7 @@
218 209
     margin: 26px auto;
219 210
     height: 70%;
220 211
     border-left: 1px dashed #595959;
212
+    opacity: 0.12;
221 213
   }
222 214
   .foot {
223 215
     width: 100%;
@@ -232,7 +224,7 @@
232 224
   .AlreadyUsed-box {
233 225
     margin: 40px auto;
234 226
     padding: 0 30px;
235
-  
227
+
236 228
     .item-center-Number {
237 229
       .card-box-star {
238 230
         margin-top: 23px;
@@ -260,11 +252,11 @@
260 252
         }
261 253
       }
262 254
     }
263
-  
255
+
264 256
     .buy-button-box {
265 257
       width: 100%;
266 258
       margin: 40px 0 0 0;
267
-  
259
+
268 260
       .button-Cancel {
269 261
         display: inline-block;
270 262
         width: 236px;
@@ -278,7 +270,7 @@
278 270
       }
279 271
       .button-OK {
280 272
         display: inline-block;
281
-  
273
+
282 274
         width: 236px;
283 275
         height: 78px;
284 276
         background: #274291;
@@ -290,5 +282,3 @@
290 282
     }
291 283
   }
292 284
 }
293
-
294
-

+ 7
- 15
src/components/CompoentsOrder/complete/styleoen.less Просмотреть файл

@@ -105,14 +105,10 @@
105 105
       position: relative;
106 106
       display: flex;
107 107
       background: @whiteColor;
108
-      background: radial-gradient(
109
-            circle at top right,
110
-            transparent 15px,
111
-            @whiteColor 0
112
-          )
108
+      background: radial-gradient(circle at top right, transparent 15px, #fff)
113 109
           top right,
114
-        radial-gradient(circle at bottom right, transparent 15px, @whiteColor 0)
115
-          bottom right;
110
+        radial-gradient(circle at bottom right, transparent 15px, #fff) bottom
111
+          right;
116 112
       background-size: 100% 60%;
117 113
       background-repeat: no-repeat;
118 114
 
@@ -234,14 +230,9 @@
234 230
 
235 231
   .right-complete-two {
236 232
     background: @whiteColor;
237
-    background: radial-gradient(
238
-          circle at top left,
239
-          transparent 15px,
240
-          @whiteColor 0
241
-        )
242
-        top left,
243
-      radial-gradient(circle at bottom left, transparent 15px, @whiteColor 0)
244
-        bottom left;
233
+    background: radial-gradient(circle at top left, transparent 15px, #fff) top
234
+        left,
235
+      radial-gradient(circle at bottom left, transparent 15px, #fff) bottom left;
245 236
     background-size: 100% 60%;
246 237
     background-repeat: no-repeat;
247 238
     width: 129px;
@@ -296,6 +287,7 @@
296 287
     margin: 26px auto;
297 288
     height: 70%;
298 289
     border-left: 1px dashed #595959;
290
+    opacity: 0.12;
299 291
   }
300 292
   .foot {
301 293
     width: 100%;

+ 4
- 4
src/components/OrderMolded/style.less Просмотреть файл

@@ -12,10 +12,10 @@
12 12
     background: radial-gradient(
13 13
           circle at top right,
14 14
           transparent 15px,
15
-          @whiteColor 0
15
+          #fff
16 16
         )
17 17
         top right,
18
-      radial-gradient(circle at bottom right, transparent 15px, @whiteColor 0)
18
+      radial-gradient(circle at bottom right, transparent 15px, #fff)
19 19
         bottom right;
20 20
     background-size: 100% 60%;
21 21
     background-repeat: no-repeat;
@@ -110,10 +110,10 @@
110 110
   background: radial-gradient(
111 111
         circle at top left,
112 112
         transparent 15px,
113
-        @whiteColor 0
113
+        #fff
114 114
       )
115 115
       top left,
116
-    radial-gradient(circle at bottom left, transparent 15px, @whiteColor 0)
116
+    radial-gradient(circle at bottom left, transparent 15px, #fff)
117 117
       bottom left;
118 118
   background-size: 100% 60%;
119 119
   background-repeat: no-repeat;

+ 7
- 18
src/components/PayOrderCard/style.less Просмотреть файл

@@ -78,14 +78,10 @@
78 78
       position: relative;
79 79
       display: flex;
80 80
       background: @whiteColor;
81
-      background: radial-gradient(
82
-            circle at top right,
83
-            transparent 15px,
84
-            @whiteColor 0
85
-          )
81
+      background: radial-gradient(circle at top right, transparent 15px, #fff)
86 82
           top right,
87
-        radial-gradient(circle at bottom right, transparent 15px, @whiteColor 0)
88
-          bottom right;
83
+        radial-gradient(circle at bottom right, transparent 15px, #fff) bottom
84
+          right;
89 85
       background-size: 100% 60%;
90 86
       background-repeat: no-repeat;
91 87
 
@@ -101,8 +97,6 @@
101 97
         top: 22px;
102 98
       }
103 99
       .left-viewText {
104
-        // background-image: url(@Image-ProCard_hot);
105
-        // width: 287px;
106 100
         width: auto;
107 101
         height: 44.3px;
108 102
         position: absolute;
@@ -174,14 +168,9 @@
174 168
 
175 169
   .right-complete-two {
176 170
     background: @whiteColor;
177
-    background: radial-gradient(
178
-          circle at top left,
179
-          transparent 15px,
180
-          @whiteColor 0
181
-        )
182
-        top left,
183
-      radial-gradient(circle at bottom left, transparent 15px, @whiteColor 0)
184
-        bottom left;
171
+    background: radial-gradient(circle at top left, transparent 15px, #fff) top
172
+        left,
173
+      radial-gradient(circle at bottom left, transparent 15px, #fff) bottom left;
185 174
     background-size: 100% 60%;
186 175
     background-repeat: no-repeat;
187 176
     width: 129px;
@@ -222,6 +211,6 @@
222 211
     margin: 26px auto;
223 212
     height: 70%;
224 213
     border-left: 1px dashed #595959;
214
+    opacity: 0.12;
225 215
   }
226
-
227 216
 }

+ 6
- 6
src/pages/MineUserAll/ContactMe/style.less Просмотреть файл

@@ -3,26 +3,26 @@
3 3
     height: 254px;
4 4
     border: 1px solid #b5b5b5;
5 5
     box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
6
-    padding: 30px;    
6
+    padding: 30px;
7 7
     font-size: 24px;
8 8
     textarea {
9 9
       height: 100%;
10 10
     }
11 11
   }
12
-  button{
13
-    font-size: 30px; 
12
+  button {
13
+    font-size: 30px;
14 14
     border-radius: 12px;
15 15
     line-height: 88px;
16 16
   }
17 17
   .button-info {
18 18
     width: calc(100% - 60px);
19 19
     position: absolute;
20
-    bottom: 60px;
20
+    bottom: 10%;
21 21
     .button-box {
22
-      background: #274291;     
22
+      background: #274291;
23 23
       color: #fff;
24 24
     }
25
-    .button-box-Cancel {      
25
+    .button-box-Cancel {
26 26
       margin-top: 40px;
27 27
       color: #274291;
28 28
       border: 2px solid #274291;

+ 4
- 4
src/pages/MineUserAll/RefundMoney/CheckRefund/style.less Просмотреть файл

@@ -71,10 +71,10 @@
71 71
       background: radial-gradient(
72 72
             circle at top right,
73 73
             transparent 15px,
74
-            @whiteColor 0
74
+            #fff
75 75
           )
76 76
           top right,
77
-        radial-gradient(circle at bottom right, transparent 15px, @whiteColor 0)
77
+        radial-gradient(circle at bottom right, transparent 15px, #fff)
78 78
           bottom right;
79 79
       background-size: 100% 60%;
80 80
       background-repeat: no-repeat;
@@ -204,10 +204,10 @@
204 204
     background: radial-gradient(
205 205
           circle at top left,
206 206
           transparent 15px,
207
-          @whiteColor 0
207
+          #fff
208 208
         )
209 209
         top left,
210
-      radial-gradient(circle at bottom left, transparent 15px, @whiteColor 0)
210
+      radial-gradient(circle at bottom left, transparent 15px, #fff)
211 211
         bottom left;
212 212
     background-size: 100% 60%;
213 213
     background-repeat: no-repeat;

+ 7
- 15
src/pages/MineUserAll/RefundMoney/style.less Просмотреть файл

@@ -42,14 +42,10 @@
42 42
       position: relative;
43 43
       display: flex;
44 44
       background: @whiteColor;
45
-      background: radial-gradient(
46
-            circle at top right,
47
-            transparent 15px,
48
-            @whiteColor 0
49
-          )
45
+      background: radial-gradient(circle at top right, transparent 15px, #fff)
50 46
           top right,
51
-        radial-gradient(circle at bottom right, transparent 15px, @whiteColor 0)
52
-          bottom right;
47
+        radial-gradient(circle at bottom right, transparent 15px, #fff) bottom
48
+          right;
53 49
       background-size: 100% 60%;
54 50
       background-repeat: no-repeat;
55 51
 
@@ -178,14 +174,9 @@
178 174
 
179 175
   .right-complete-two {
180 176
     background: @whiteColor;
181
-    background: radial-gradient(
182
-          circle at top left,
183
-          transparent 15px,
184
-          @whiteColor 0
185
-        )
186
-        top left,
187
-      radial-gradient(circle at bottom left, transparent 15px, @whiteColor 0)
188
-        bottom left;
177
+    background: radial-gradient(circle at top left, transparent 15px, #fff) top
178
+        left,
179
+      radial-gradient(circle at bottom left, transparent 15px, #fff) bottom left;
189 180
     background-size: 100% 60%;
190 181
     background-repeat: no-repeat;
191 182
     width: 129px;
@@ -236,6 +227,7 @@
236 227
     margin: 26px auto;
237 228
     height: 70%;
238 229
     border-left: 1px dashed #595959;
230
+    opacity: 0.12;
239 231
   }
240 232
   //已过期logo
241 233
   .right-image-two {

+ 14
- 21
src/pages/PayOrder/style.less Просмотреть файл

@@ -67,7 +67,9 @@
67 67
     position: relative;
68 68
     // margin-top: 600px;
69 69
     margin: 30px auto;
70
-    width: calc(100% - 50px);    // box-shadow: 0px 8px 38px 0px rgba(0, 0, 0, 0.12);
70
+    width: calc(
71
+      100% - 50px
72
+    ); // box-shadow: 0px 8px 38px 0px rgba(0, 0, 0, 0.12);
71 73
     // filter: drop-shadow(5px 8px 6px rgb(202, 202, 202));
72 74
     filter: drop-shadow(0 0 0.9rem rgba(0, 0, 0, 0.12));
73 75
 
@@ -77,14 +79,10 @@
77 79
       position: relative;
78 80
       display: flex;
79 81
       background: @whiteColor;
80
-      background: radial-gradient(
81
-            circle at top right,
82
-            transparent 15px,
83
-            @whiteColor 0
84
-          )
82
+      background: radial-gradient(circle at top right, transparent 15px, #fff)
85 83
           top right,
86
-        radial-gradient(circle at bottom right, transparent 15px, @whiteColor 0)
87
-          bottom right;
84
+        radial-gradient(circle at bottom right, transparent 15px, #fff) bottom
85
+          right;
88 86
       background-size: 100% 60%;
89 87
       background-repeat: no-repeat;
90 88
 
@@ -173,14 +171,9 @@
173 171
 
174 172
   .right-complete-two {
175 173
     background: @whiteColor;
176
-    background: radial-gradient(
177
-          circle at top left,
178
-          transparent 15px,
179
-          @whiteColor 0
180
-        )
181
-        top left,
182
-      radial-gradient(circle at bottom left, transparent 15px, @whiteColor 0)
183
-        bottom left;
174
+    background: radial-gradient(circle at top left, transparent 15px, #fff) top
175
+        left,
176
+      radial-gradient(circle at bottom left, transparent 15px, #fff) bottom left;
184 177
     background-size: 100% 60%;
185 178
     background-repeat: no-repeat;
186 179
     width: 129px;
@@ -221,10 +214,10 @@
221 214
     margin: 26px auto;
222 215
     height: 70%;
223 216
     border-left: 1px dashed #595959;
217
+    opacity: 0.12;
224 218
   }
225 219
 
226 220
   .view-button {
227
-
228 221
     position: fixed;
229 222
     bottom: 0;
230 223
     left: 0;
@@ -243,7 +236,7 @@
243 236
         padding-bottom: 30px;
244 237
         line-height: 96px;
245 238
         background-color: @whiteColor;
246
-        .Radio-text{
239
+        .Radio-text {
247 240
           padding-left: 40px;
248 241
           position: relative;
249 242
           bottom: 6px;
@@ -252,10 +245,10 @@
252 245
           zoom: 70%;
253 246
         }
254 247
       }
255
-      .ptxy{
248
+      .ptxy {
256 249
         color: #274190;
257
-          text-decoration:underline;
258
-          font-size: 25px;
250
+        text-decoration: underline;
251
+        font-size: 25px;
259 252
       }
260 253
     }
261 254
     .button-box-button-box {

+ 4
- 4
src/pages/TobeShop/style.less Просмотреть файл

@@ -117,10 +117,10 @@
117 117
       background: radial-gradient(
118 118
             circle at top right,
119 119
             transparent 15px,
120
-            @whiteColor 0
120
+            #fff
121 121
           )
122 122
           top right,
123
-        radial-gradient(circle at bottom right, transparent 15px, @whiteColor 0)
123
+        radial-gradient(circle at bottom right, transparent 15px, #fff)
124 124
           bottom right;
125 125
       background-size: 100% 60%;
126 126
       background-repeat: no-repeat;
@@ -252,10 +252,10 @@
252 252
     background: radial-gradient(
253 253
           circle at top left,
254 254
           transparent 15px,
255
-          @whiteColor 0
255
+          #fff
256 256
         )
257 257
         top left,
258
-      radial-gradient(circle at bottom left, transparent 15px, @whiteColor 0)
258
+      radial-gradient(circle at bottom left, transparent 15px, #fff)
259 259
         bottom left;
260 260
     background-size: 100% 60%;
261 261
     background-repeat: no-repeat;