cart.wxss 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. page {
  12. background-color: #f3afad;
  13. }
  14. .content {
  15. padding-top: 44rpx;
  16. background-color: #f3afad;
  17. }
  18. .content .buttom {
  19. width: 660rpx;
  20. height: 100rpx;
  21. background: -webkit-linear-gradient(bottom, #C90F1B, #F14D33);
  22. background: linear-gradient(0deg, #C90F1B, #F14D33);
  23. border-radius: 50rpx;
  24. margin: 50rpx auto;
  25. font-size: 36rpx;
  26. font-weight: 400;
  27. color: #FFFFFF;
  28. line-height: 100rpx;
  29. text-align: center;
  30. }
  31. .content .buttom.action {
  32. background: #999999;
  33. }
  34. .content .box {
  35. width: 690rpx;
  36. margin: 20rpx auto 0;
  37. background-color: #FFFFFF;
  38. border-radius: 10rpx;
  39. padding: 28rpx 20rpx 32rpx 20rpx;
  40. position: relative;
  41. }
  42. .content .box .red-box {
  43. width: 405rpx;
  44. line-height: 66rpx;
  45. text-align: center;
  46. background: -webkit-linear-gradient(bottom, #C90F1B, #F14D33);
  47. background: linear-gradient(0deg, #C90F1B, #F14D33);
  48. border-radius: 10rpx;
  49. font-size: 30rpx;
  50. font-weight: 500;
  51. color: #FFFFFF;
  52. position: absolute;
  53. top: -36rpx;
  54. left: 50%;
  55. -webkit-transform: translateX(-50%);
  56. transform: translateX(-50%);
  57. z-index: 1;
  58. }
  59. .content .box .box-check {
  60. font-size: 28rpx;
  61. font-weight: 500;
  62. color: #666666;
  63. line-height: 100rpx;
  64. }
  65. .content .box .imp {
  66. color: red;
  67. margin-left: 5rpx;
  68. }
  69. .content .box .box-1 {
  70. display: -webkit-box;
  71. display: -webkit-flex;
  72. display: flex;
  73. -webkit-box-orient: vertical;
  74. -webkit-box-direction: normal;
  75. -webkit-flex-direction: column;
  76. flex-direction: column;
  77. -webkit-box-align: center;
  78. -webkit-align-items: center;
  79. align-items: center;
  80. width: 100%;
  81. margin-top: 32rpx;
  82. }
  83. .content .box .box-1 .box-left {
  84. padding-left: 2rpx;
  85. width: 100%;
  86. text-align: left;
  87. color: #E63931;
  88. }
  89. .content .box .box-1 input {
  90. height: 66rpx;
  91. line-height: 66rpx;
  92. margin-top: 32rpx;
  93. }
  94. .content .box .box-1 .list-input {
  95. padding-left: 24rpx;
  96. display: -webkit-box;
  97. display: -webkit-flex;
  98. display: flex;
  99. -webkit-box-align: center;
  100. -webkit-align-items: center;
  101. align-items: center;
  102. width: 100%;
  103. font-size: 36rpx;
  104. -webkit-box-flex: 1;
  105. -webkit-flex: 1;
  106. flex: 1;
  107. color: #FF9797;
  108. border: 1rpx solid #f3afad;
  109. border-radius: 22rpx;
  110. text-align: left;
  111. padding-right: 24rpx;
  112. }
  113. .content .box .box-1 .list-input .input-placeholder {
  114. height: 70rpx;
  115. color: #FF9797;
  116. }
  117. .content .box .box-1 .box-right {
  118. display: -webkit-box;
  119. display: -webkit-flex;
  120. display: flex;
  121. -webkit-box-align: center;
  122. -webkit-align-items: center;
  123. align-items: center;
  124. padding-left: 24rpx;
  125. height: 66rpx;
  126. line-height: 66rpx;
  127. border: 1rpx solid #f3afad;
  128. border-radius: 22rpx;
  129. margin: 32rpx 36rpx 0 36rpx;
  130. width: 96%;
  131. font-size: 36rpx;
  132. color: #FF9797;
  133. text-align: left;
  134. }
  135. .content .box .upload-box {
  136. width: 100%;
  137. height: 247rpx;
  138. background: #FFFFFF;
  139. border-radius: 27rpx;
  140. display: -webkit-box;
  141. display: -webkit-flex;
  142. display: flex;
  143. -webkit-box-orient: vertical;
  144. -webkit-box-direction: normal;
  145. -webkit-flex-direction: column;
  146. flex-direction: column;
  147. padding: 30rpx 40rpx 30rpx 0;
  148. margin: 0 auto 30rpx;
  149. }
  150. .content .box .upload-box .upload-left {
  151. font-weight: 400;
  152. color: #E63931;
  153. }
  154. .content .box .upload-box .upload-right {
  155. -webkit-box-flex: 1;
  156. -webkit-flex: 1;
  157. flex: 1;
  158. display: -webkit-box;
  159. display: -webkit-flex;
  160. display: flex;
  161. -webkit-box-align: center;
  162. -webkit-align-items: center;
  163. align-items: center;
  164. -webkit-box-pack: center;
  165. -webkit-justify-content: center;
  166. justify-content: center;
  167. }
  168. .content .box .upload-box .upload-right .upload-img {
  169. width: 103rpx;
  170. height: 103rpx;
  171. margin-top: 24rpx;
  172. }