customize-gift.css 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. page {
  2. background: linear-gradient(180deg, #FF7F6C, #FBC3BA);
  3. min-height: 100%;
  4. }
  5. .header-btn-box {
  6. display: flex;
  7. justify-content: flex-end;
  8. padding: 0 24rpx;
  9. box-sizing: border-box;
  10. position: relative;
  11. }
  12. .gua-btn {
  13. color: #FFFFFF;
  14. font-size: 32rpx;
  15. display: flex;
  16. align-items: center;
  17. }
  18. .container-wrap {
  19. width: 100%;
  20. display: flex;
  21. flex-direction: column;
  22. padding: 0 24rpx;
  23. box-sizing: border-box;
  24. }
  25. .top {
  26. width: 100%;
  27. padding: 0 200rpx 0 0;
  28. box-sizing: border-box;
  29. color: #FFFFFF;
  30. font-size: 26rpx;
  31. }
  32. .module {
  33. width: 100%;
  34. margin-top: 26rpx;
  35. background-color: #fff;
  36. border-radius: 16rpx;
  37. padding: 40rpx 52rpx;
  38. box-sizing: border-box;
  39. margin-bottom: 60rpx;
  40. position: relative;
  41. }
  42. .module-bg {
  43. width: 205rpx;
  44. position: absolute;
  45. right: 0;
  46. top: -110rpx;
  47. }
  48. .title {
  49. width: 100%;
  50. margin-bottom: 20rpx;
  51. color: #333333;
  52. font-size: 28rpx;
  53. }
  54. .title text {
  55. color: #F2501A;
  56. margin-left: 30rpx;
  57. }
  58. .row {
  59. width: 100%;
  60. height: 74rpx;
  61. line-height: 74rpx;
  62. background-color: #F6F6F6;
  63. border-radius: 100rpx;
  64. box-sizing: border-box;
  65. display: flex;
  66. align-items: center;
  67. padding: 0 30rpx;
  68. margin-bottom: 20rpx;
  69. }
  70. .row:last-child {
  71. margin-bottom: 0;
  72. }
  73. .input {
  74. font-size: 28rpx;
  75. flex: 1;
  76. }
  77. .placeholder {
  78. color: #777777;
  79. }
  80. .back-icon {
  81. width: 15rpx;
  82. }
  83. .selected {
  84. font-size: 28rpx;
  85. }
  86. .gray {
  87. color: #777777;
  88. font-size: 28rpx;
  89. }
  90. .rightsidebar {
  91. flex: 1;
  92. display: flex;
  93. align-items: center;
  94. }
  95. .picker {
  96. width: calc(100% - 20rpx);
  97. }
  98. .upload-box {
  99. width: 100%;
  100. display: flex;
  101. flex-wrap: wrap;
  102. color: #FFCCB2;
  103. font-size: 20rpx;
  104. margin: 8rpx 0 20rpx;
  105. }
  106. .upload-box image {
  107. width: 180rpx;
  108. height: 180rpx;
  109. border-radius: 8rpx;
  110. }
  111. .radio-box {
  112. width: 100%;
  113. display: flex;
  114. justify-content: space-between;
  115. flex-wrap: wrap;
  116. }
  117. .radio-row {
  118. width: calc(50% - 9rpx);
  119. display: flex;
  120. flex-direction: column;
  121. margin-bottom: 20rpx;
  122. position: relative;
  123. }
  124. .circle-img {
  125. width: 40rpx;
  126. height: 40rpx;
  127. position: absolute;
  128. right: 12rpx;
  129. top: 12rpx;
  130. }
  131. .radio-img {
  132. width: 100%;
  133. height: 224rpx;
  134. border-radius: 12rpx;
  135. }
  136. .tabList {
  137. width: 100%;
  138. display: flex;
  139. flex-wrap: wrap;
  140. }
  141. .child {
  142. width: 62rpx;
  143. height: 62rpx;
  144. background-color: #E63D23;
  145. border-radius: 6rpx;
  146. position: relative;
  147. margin-right: 22rpx;
  148. margin-bottom: 22rpx;
  149. z-index: 9999;
  150. }
  151. .child:last-child {
  152. margin-right: 0;
  153. }
  154. .child:nth-child(2) {
  155. background-color: #F28A1A;
  156. }
  157. .child:nth-child(3) {
  158. background-color: #FFCE47;
  159. }
  160. .child:nth-child(4) {
  161. background-color: #4A8900;
  162. }
  163. .child:nth-child(5) {
  164. background-color: #32FF17;
  165. }
  166. .child:nth-child(6) {
  167. background-color: #00C4FF;
  168. }
  169. .child:nth-child(7) {
  170. background-color: #B100FF;
  171. }
  172. .child:nth-child(8) {
  173. background-color: #E200FF;
  174. }
  175. .child.selected::before {
  176. content: "";
  177. position: absolute;
  178. width: 58rpx;
  179. height: 58rpx;
  180. left: 50%;
  181. top: 50%;
  182. background-color: #FFFFFF;
  183. transform: translate(-50%, -50%);
  184. }
  185. .child.selected::after {
  186. content: "";
  187. position: absolute;
  188. width: 54rpx;
  189. height: 54rpx;
  190. left: 50%;
  191. top: 50%;
  192. background-color: #F54D36;
  193. transform: translate(-50%, -50%);
  194. }
  195. .child:nth-child(2).selected::after {
  196. background-color: #F28A1A;
  197. }
  198. .child:nth-child(3).selected::after {
  199. background-color: #FFCE47;
  200. }
  201. .child:nth-child(4).selected::after {
  202. background-color: #4A8900;
  203. }
  204. .child:nth-child(5).selected::after {
  205. background-color: #32FF17;
  206. }
  207. .child:nth-child(6).selected::after {
  208. background-color: #00C4FF;
  209. }
  210. .child:nth-child(7).selected::after {
  211. background-color: #B100FF;
  212. }
  213. .child:nth-child(8).selected::after {
  214. background-color: #E200FF
  215. }
  216. .textarea {
  217. width: 100%;
  218. height: 178rpx;
  219. background-color: #F6F6F6;
  220. border-radius: 16rpx;
  221. padding: 16rpx 26rpx;
  222. box-sizing: border-box;
  223. font-size: 28rpx;
  224. }
  225. .customer-service {
  226. width: 100%;
  227. padding: 20rpx 0;
  228. background-color: #fff;
  229. border-radius: initial;
  230. display: flex;
  231. justify-content: center;
  232. align-items: center;
  233. color: #F2501A;
  234. font-size: 26rpx;
  235. }
  236. .customer-service image {
  237. width: 29rpx;
  238. margin-right: 8rpx;
  239. }
  240. .btn-box {
  241. width: 100%;
  242. display: flex;
  243. justify-content: center;
  244. align-items: center;
  245. padding: 60rpx 0 0;
  246. }
  247. .btn-box button {
  248. width: 100%;
  249. height: 90rpx;
  250. line-height: 90rpx;
  251. display: flex;
  252. align-items: center;
  253. justify-content: center;
  254. background-color: #E0E0E0;
  255. color: #919191;
  256. font-size: 34rpx;
  257. border-radius: 100rpx;
  258. }
  259. .active {
  260. background-color: #F2501A !important;
  261. color: #fff !important;
  262. }
  263. .head-bg {
  264. width: 176rpx;
  265. position: absolute;
  266. left: 0;
  267. top: 0;
  268. opacity: 0.7;
  269. }