payment_combo.scss 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. .clear {
  2. clear: both;
  3. }
  4. .item-block {
  5. padding: 0 15px 1px;
  6. margin: 10px 0;
  7. border-radius: 0;
  8. border: none;
  9. background: #ffffff;
  10. .block-text {
  11. border-color: #eeeeee;
  12. color: $ns-text-color-black;
  13. padding: 7px 0;
  14. border-bottom: 1px;
  15. }
  16. .box{
  17. .liuyan-text{
  18. background-color: #F7F7F7;
  19. border: 2px solid #DADADA;
  20. height: 56px;
  21. width: 80%;
  22. padding: 10px;
  23. box-sizing: border-box;
  24. border-radius: 4px;
  25. }
  26. }
  27. }
  28. .padd-bom-10{
  29. padding-bottom: 10px;
  30. }
  31. .padd-bom-20{
  32. padding-bottom: 20px;
  33. }
  34. //收货地址
  35. .address-desc {
  36. overflow: hidden;
  37. text-overflow: ellipsis;
  38. display: -webkit-box;
  39. -webkit-box-orient: vertical;
  40. -webkit-line-clamp: 2;
  41. }
  42. .address-item {
  43. width: 23%;
  44. border: 3px solid #eee;
  45. box-sizing: border-box;
  46. margin: 1%;
  47. height: 150px;
  48. cursor: pointer;
  49. float: left;
  50. .add-address {
  51. padding: 10px;
  52. text-align: center;
  53. line-height: 120px;
  54. }
  55. .address-info {
  56. padding: 10px;
  57. height: 100%;
  58. box-sizing: border-box;
  59. position: relative;
  60. .options {
  61. position: absolute;
  62. right: 0;
  63. top: 10px;
  64. width: 50%;
  65. text-align: right;
  66. div {
  67. display: inline-block;
  68. margin-right: 10px;
  69. color: #999999;
  70. }
  71. }
  72. .address-name {
  73. color: $base-color;
  74. padding: 0px 0 6px;
  75. border-bottom: 1px solid #eee;
  76. width: 100%;
  77. overflow: hidden;
  78. text-overflow: ellipsis;
  79. white-space: nowrap;
  80. padding-right: 71px;
  81. box-sizing: border-box;
  82. line-height: 25px;
  83. }
  84. .address-mobile {
  85. padding: 10px 0 4px;
  86. }
  87. }
  88. }
  89. .address-item.active {
  90. background-color: #fffbf9;
  91. border-color: $base-color;
  92. }
  93. //支付方式
  94. .pay-type-list {
  95. padding: 20px 0;
  96. }
  97. .distribution{
  98. color: #ff547b;
  99. margin-left: 10px;
  100. }
  101. .pay-type-item {
  102. background-color: white;
  103. display: inline-block;
  104. border: 2px solid #eeeeee;
  105. padding: 5px 20px;
  106. margin-right: 20px;
  107. cursor: pointer;
  108. }
  109. .pay-type-item.active {
  110. border-color: $base-color;
  111. }
  112. .mobile-wrap {
  113. width: 300px;
  114. }
  115. .pay-password {
  116. width: 80%;
  117. }
  118. //商品列表
  119. .goods-list {
  120. padding: 15px 0;
  121. .store-icon {
  122. margin-right: 5px;
  123. font-size: 16px;
  124. }
  125. .shop-icon {
  126. font-size: 18px;
  127. }
  128. table {
  129. width: 100%;
  130. }
  131. .goods-info-left {
  132. width: 60px;
  133. height: 60px;
  134. float: left;
  135. .goods-img {
  136. width: 60px;
  137. height: 60px;
  138. }
  139. }
  140. .goods-info-right {
  141. float: left;
  142. height: 60px;
  143. margin-left: 10px;
  144. color: $base-color;
  145. width: 80%;
  146. .goods-name {
  147. line-height: 20px;
  148. padding-top: 10px;
  149. display: -webkit-box;
  150. -webkit-box-orient: vertical;
  151. -webkit-line-clamp: 2;
  152. overflow: hidden;
  153. }
  154. .goods-spec {
  155. color: #999;
  156. }
  157. }
  158. .goods-footer {
  159. background-color: #f3fbfe;
  160. padding: 10px;
  161. margin-top: 10px;
  162. .goods-footer-right {
  163. width: 50%;
  164. float: left;
  165. }
  166. .goods-footer-left {
  167. width: 50%;
  168. float: left;
  169. }
  170. .order-cell {
  171. cursor: pointer;
  172. .tit {
  173. padding: 5px 0 0 0;
  174. }
  175. }
  176. .express-item {
  177. margin-top: 5px;
  178. display: inline-block;
  179. border: 2px solid #eeeeee;
  180. padding: 3px 10px;
  181. margin-right: 20px;
  182. cursor: pointer;
  183. }
  184. .express-item.active {
  185. border-color: $base-color;
  186. }
  187. }
  188. }
  189. .promotion-show {
  190. color: #999;
  191. }
  192. .align-right {
  193. text-align: right;
  194. }
  195. //统计
  196. .order-statistics {
  197. float: right;
  198. padding: 10px;
  199. // color: #999;
  200. }
  201. .order-submit {
  202. float: right;
  203. padding: 10px;
  204. }
  205. .order-money {
  206. display: inline-block;
  207. margin-right: 20px;
  208. div {
  209. display: inline-block;
  210. font-size: $ns-font-size-lg;
  211. }
  212. }
  213. .buyer-message.el-textarea {
  214. width: 400px;
  215. margin-top: 10px;
  216. }
  217. .address-open {
  218. cursor: pointer;
  219. font-size: 13px;
  220. padding: 0 0 10px 10px;
  221. }
  222. .pay-password-item {
  223. margin-bottom: 10px;
  224. }
  225. .pay-password {
  226. width: 80%;
  227. }
  228. .pay-password.hide-password {
  229. position: fixed;
  230. top: -9999px;
  231. }
  232. .platform-coupon {
  233. cursor: pointer;
  234. }
  235. .forget-password {
  236. text-align: right;
  237. margin-right: 45px;
  238. cursor: pointer;
  239. }
  240. .disabled-selected-wrap {
  241. pointer-events: none;
  242. cursor: pointer;
  243. }
  244. .cursor-pointer {
  245. cursor: pointer;
  246. }