index.module.less 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446
  1. .form {
  2. --van-notice-bar-background-color: var(--tag-bg-color);
  3. --van-notice-bar-text-color: var(--van-tag-primary-color);
  4. min-height: 100%;
  5. background: url('./images/banner-bg.png') no-repeat center top;
  6. background-size: contain;
  7. background-color: #BEEBFD;
  8. }
  9. .uploadMessage {
  10. position: absolute;
  11. top: -100px;
  12. right: -14px;
  13. z-index: 101;
  14. font-weight: 500;
  15. font-size: 12px;
  16. color: #FFFFFF;
  17. line-height: 17px;
  18. border-radius: 12px 0px 0px 12px;
  19. background: rgba(0, 0, 0, 0.3);
  20. padding: 3px 4px 3px 6px;
  21. cursor: pointer;
  22. }
  23. .titleImg {
  24. position: absolute;
  25. top: -58px;
  26. left: 17px;
  27. width: 129px;
  28. height: 31px;
  29. }
  30. .bridSection {
  31. position: relative;
  32. .iconBrid {
  33. position: absolute;
  34. right: 23px;
  35. width: 131px;
  36. height: 135px;
  37. top: -30px;
  38. }
  39. }
  40. .area {
  41. position: relative;
  42. padding: 34px 0 12px;
  43. margin: 22px 14px 12px;
  44. border-radius: 16px;
  45. &.topArea {
  46. margin-top: 70px;
  47. }
  48. .section-title {
  49. position: absolute;
  50. top: -10px;
  51. left: 50%;
  52. margin-left: -72.5px;
  53. width: 145px;
  54. height: 36px;
  55. background: url('./images/title-bg.png') no-repeat center;
  56. background-size: contain;
  57. &.section-title2 {
  58. top: -8px;
  59. background: url('./images/title-bg2.png') no-repeat center;
  60. background-size: contain;
  61. }
  62. }
  63. :global {
  64. .van-field {
  65. padding: 14px 12px;
  66. }
  67. .van-field__label {
  68. font-weight: 500;
  69. font-size: 16px;
  70. color: #000;
  71. margin-right: 0;
  72. flex: initial;
  73. }
  74. .van-field__value {
  75. font-size: 16px;
  76. flex: 1 auto;
  77. }
  78. .van-field__control--min-height {
  79. --van-field-text-area-min-height: 80px;
  80. }
  81. .van-cell:after {
  82. --van-padding-md: 12px;
  83. }
  84. }
  85. .hideValue {
  86. :global {
  87. .van-field__value {
  88. display: none;
  89. }
  90. }
  91. }
  92. .fieldTypeBottom {
  93. flex-direction: column;
  94. &.musicTrack {
  95. padding-top: 0px;
  96. .fieldTitle {
  97. font-weight: 500;
  98. font-size: 14px;
  99. color: #131415;
  100. }
  101. .titleTip {
  102. font-weight: 400;
  103. font-size: 14px;
  104. color: #F71D1D !important;
  105. }
  106. }
  107. :global {
  108. .van-field__value {
  109. padding-top: 12px;
  110. }
  111. .van-field__label {
  112. width: 100%;
  113. margin-right: 0;
  114. }
  115. }
  116. .fieldTitle {
  117. display: flex;
  118. justify-content: space-between;
  119. .titleName {
  120. display: flex;
  121. align-items: center;
  122. }
  123. i {
  124. color: #ee0a24;
  125. }
  126. .iconQuestion {
  127. display: inline-block;
  128. width: 16px;
  129. height: 16px;
  130. margin-left: 6px;
  131. background: url('./images/icon-question.png') no-repeat center;
  132. background-size: contain;
  133. }
  134. .titleTip {
  135. font-weight: 400;
  136. font-size: 12px;
  137. color: #AAAAAA;
  138. }
  139. }
  140. }
  141. .textareaType {
  142. :global {
  143. .van-field__value {
  144. margin-top: 12px;
  145. background: #F6F8F9;
  146. border-radius: 10px;
  147. padding-left: 10px;
  148. padding-right: 10px;
  149. }
  150. .van-field__word-limit {
  151. position: absolute;
  152. top: -35px;
  153. right: 0;
  154. font-size: 12px;
  155. color: #AAAAAA;
  156. }
  157. }
  158. }
  159. .inputControl {
  160. :global {
  161. .van-field__body {
  162. justify-content: flex-end;
  163. }
  164. }
  165. input {
  166. background: #F6F8F9;
  167. border-radius: 6px;
  168. height: 32px;
  169. text-align: center;
  170. width: 70px;
  171. }
  172. }
  173. }
  174. .container {
  175. background-color: var(--col-background-color);
  176. min-height: 100vh;
  177. margin: 14px 0;
  178. .select {
  179. font-size: 14px;
  180. padding: 6px 12px;
  181. }
  182. }
  183. .btnSection {
  184. position: relative;
  185. width: 100%;
  186. .iconDelete {
  187. cursor: pointer;
  188. position: absolute;
  189. right: -2px;
  190. top: -2px;
  191. display: inline-block;
  192. width: 18px;
  193. height: 18px;
  194. background: url('./images/icon-delete.png') no-repeat center;
  195. background-size: contain;
  196. }
  197. }
  198. .clear-px {
  199. padding-left: 0;
  200. padding-right: 0;
  201. }
  202. .rule {
  203. font-size: 14px;
  204. line-height: 27px;
  205. color: var(--tips-color);
  206. margin: 0 14px;
  207. >p>span {
  208. color: var(--strong--color);
  209. font-weight: bold;
  210. font-size: 16px;
  211. display: inline-flex;
  212. align-items: center;
  213. span {
  214. font-size: 14px;
  215. padding-left: 4px;
  216. }
  217. }
  218. }
  219. .tagMore {
  220. :global {
  221. .van-field__control {
  222. visibility: hidden;
  223. opacity: 0;
  224. }
  225. }
  226. }
  227. .showField {
  228. padding-top: 0 !important;
  229. :global {
  230. .van-field__label {
  231. display: none;
  232. }
  233. .van-field__control {
  234. display: flex;
  235. flex-wrap: wrap;
  236. }
  237. }
  238. }
  239. .button-area {
  240. padding: 10px 14px;
  241. // background-color: var(--white);
  242. // box-shadow: 0 0 10px var(--box-shadow-color);
  243. :global {
  244. .van-button {
  245. // background: url('');
  246. background: transparent;
  247. padding: 0;
  248. border: 0;
  249. height: 50px;
  250. }
  251. .van-button:active:before {
  252. opacity: 1;
  253. }
  254. .van-button__text {
  255. height: 100%;
  256. }
  257. }
  258. img {
  259. width: 100%;
  260. max-height: 100%;
  261. }
  262. }
  263. .radio-group {
  264. display: flex;
  265. .radio:first-child {
  266. :global {
  267. .van-radio__label {
  268. margin-left: 0;
  269. }
  270. }
  271. }
  272. }
  273. .radio {
  274. :global {
  275. .van-radio__icon {
  276. display: none;
  277. }
  278. .van-tag--large {
  279. width: 80px;
  280. height: 30px;
  281. padding-left: 0;
  282. padding-right: 0;
  283. font-size: 16px;
  284. text-align: center;
  285. display: flex;
  286. align-items: center;
  287. justify-content: center;
  288. border-radius: 6px;
  289. }
  290. .van-tag {
  291. box-sizing: border-box;
  292. }
  293. .van-tag--default {
  294. color: var(--van-tag-text-default-color);
  295. }
  296. .van-tag--primary {
  297. background-color: var(--tag-bg-color);
  298. }
  299. }
  300. }
  301. .tags {
  302. margin-right: 5px;
  303. margin-bottom: 5px;
  304. // margin-top: 5px;
  305. background: #F2FFFC !important;
  306. border-radius: 4px;
  307. height: 28px;
  308. font-size: 14px;
  309. color: #00B2A7 !important;
  310. padding-top: 0 !important;
  311. padding-bottom: 0 !important;
  312. border: 1px solid #9FE2DE !important;
  313. }
  314. .file {
  315. display: flex;
  316. width: 100%;
  317. >div {
  318. flex: 1;
  319. >span {
  320. display: inline-block;
  321. margin-left: 5px;
  322. }
  323. }
  324. .delbtn {
  325. padding: 0;
  326. height: auto;
  327. border: none;
  328. }
  329. }
  330. .upbtn {
  331. border: 1px solid #cfcfcf;
  332. width: 100%;
  333. color: #666666;
  334. height: 48px;
  335. background: #F6F8F9;
  336. border-radius: 6px;
  337. border-style: dashed;
  338. i {
  339. font-size: 24px;
  340. }
  341. :global {
  342. .van-button__text {
  343. max-width: 90%;
  344. text-overflow: ellipsis;
  345. overflow: hidden;
  346. white-space: nowrap;
  347. }
  348. }
  349. }
  350. .tips {
  351. font-size: 12px;
  352. color: #e0945a;
  353. line-height: 18px;
  354. padding: 15px 11px;
  355. background: #fff3eb;
  356. border-radius: 10px;
  357. margin: 0 14px 12px;
  358. .tipsTitle {
  359. font-size: 14px;
  360. font-weight: 600;
  361. color: #e0945a;
  362. line-height: 20px;
  363. padding-bottom: 6px;
  364. }
  365. span {
  366. color: #5aa9e0;
  367. }
  368. }
  369. .imgContainer {
  370. width: 101px !important;
  371. height: 101px !important;
  372. border-radius: 10px;
  373. overflow: hidden;
  374. margin: 0 0 12px;
  375. margin-top: 0 !important;
  376. position: relative;
  377. }