customization.scss 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381
  1. @font-face {
  2. font-family: OPPOSans-R ;
  3. src: url('@/font/OPPOSans-R-2.ttf');
  4. }
  5. @font-face {
  6. font-family: OPPOSans-M ;
  7. src: url('@/font/OPPOSans-M-2.ttf');
  8. }
  9. page {
  10. height: 100%;
  11. background-color: #F4F8FF;
  12. font-family: OPPOSans-R;
  13. }
  14. .container {
  15. position: relative;
  16. width: 100%;
  17. height: 100%;
  18. background: linear-gradient(180deg, #1763E7 0%, #DCE9FF 56%, #F4F8FF 100%);
  19. }
  20. .cards-list {
  21. position: absolute;
  22. top: 100px;
  23. left: 4%;
  24. width: 92%;
  25. height: 86%;
  26. }
  27. .card {
  28. position: relative;
  29. width: 100%;
  30. min-height: 200rpx;
  31. margin-bottom: 32rpx;
  32. padding: 0 40rpx 40rpx;
  33. box-sizing: border-box;
  34. background-color: #fff;
  35. border-radius: 40rpx;
  36. overflow: hidden;
  37. .special-item {
  38. width: 100%;
  39. min-height: 136rpx;
  40. padding: 0 34rpx;
  41. background: linear-gradient(112deg, #113EF0 0%, #8C49FF 100%, #E7F0FF 100%);
  42. box-shadow: 0rpx -36rpx 44rpx -34rpx rgba(0, 25, 121, 0.3);
  43. border-radius: 24rpx;
  44. .card-name-text {
  45. color: #fff !important;
  46. }
  47. .card-name-description {
  48. color: #fff !important;
  49. }
  50. }
  51. .card-name {
  52. display: flex;
  53. justify-content: space-between;
  54. align-items: flex-start;
  55. width: 100%;
  56. min-height: 84rpx;
  57. padding: 10rpx 0;
  58. border-bottom: 2rpx solid #D8D8D8;
  59. }
  60. .card-name-title {
  61. display: flex;
  62. align-items: center;
  63. .card-name-description {
  64. min-width: 160rpx;
  65. font-size: 36rpx;
  66. font-weight: 400;
  67. color: #9E9E9E;
  68. }
  69. }
  70. .card-name-text {
  71. font-size: 36rpx;
  72. font-weight: 500;
  73. color: #343437;
  74. word-break: break-all;
  75. }
  76. .card-item{
  77. display: flex;
  78. justify-content: space-between;
  79. align-items:flex-start;
  80. position: relative;
  81. margin-top: 25rpx;
  82. .card-item-name {
  83. min-width: 160rpx;
  84. font-size: 32rpx;
  85. font-weight: 400;
  86. color: #9E9E9E;
  87. }
  88. .card-item-content {
  89. font-size: 32rpx;
  90. font-weight: 400;
  91. color: #343437;
  92. word-break: break-all;
  93. }
  94. .card-item-description {
  95. display: flex;
  96. align-items: center;
  97. font-size: 32rpx;
  98. color: #343437;
  99. }
  100. .remind-text{
  101. color:#D8D8D8;
  102. }
  103. .card-item-input {
  104. margin: auto 0;
  105. text-align: right;
  106. font-size: 32rpx;
  107. color: #343437;
  108. }
  109. .center-input{
  110. text-align: center;
  111. }
  112. .card-item-textarea {
  113. width: 100%;
  114. height: 168rpx;
  115. padding: 20rpx;
  116. box-sizing: border-box;
  117. background: #EAF0FA;
  118. border-radius: 20rpx;
  119. }
  120. .card-item-unit{
  121. min-width: 64rpx;
  122. margin:auto 0 auto 15rpx;
  123. font-size: 32rpx;
  124. line-height: 32rpx;
  125. color: #343437;
  126. }
  127. .can-click{
  128. color: #1869F6;
  129. font-weight: 700
  130. }
  131. .card-item-range{
  132. display:flex;
  133. }
  134. .card-item-announcement{
  135. color:#343437;
  136. font-size: 36rpx;
  137. overflow:hidden;
  138. text-overflow:ellipsis;
  139. white-space:nowrap;
  140. }
  141. .card-item-announcement-detail{
  142. color:#343437;
  143. font-size: 36rpx;
  144. }
  145. .card-item-announcement-content{
  146. color:#9E9E9E;
  147. font-size: 32rpx;
  148. }
  149. }
  150. .first-card-item {
  151. margin: 0;
  152. }
  153. .card-btn {
  154. display: flex;
  155. flex-direction: column;
  156. justify-content: center;
  157. width: 45%;
  158. height: 66rpx;
  159. text-align: center;
  160. color: #fff;
  161. font-size: 32rpx;
  162. background: #1869F6;
  163. border-radius: 16rpx;
  164. }
  165. .thin-btn{
  166. width: 32.5%;
  167. }
  168. .fat-btn{
  169. width: 100%;
  170. }
  171. .empty-btn {
  172. color: #1869F6;
  173. border: 2rpx solid #1869F6;
  174. background: #fff;
  175. }
  176. .text-btn {
  177. display: flex;
  178. flex-direction: row;
  179. justify-content: flex-start;
  180. align-items: center;
  181. width: 22.5%;
  182. color: #1869F6;
  183. border: 2rpx solid #fff;
  184. background: #fff;
  185. image {
  186. margin-right: 26rpx;
  187. width: 36rpx;
  188. height: 40rpx;
  189. }
  190. }
  191. .report-btn{
  192. color:#1869F6;
  193. background-color:#E2ECFF;
  194. font-size: 24rpx;
  195. }
  196. .card-icon{
  197. position:absolute;
  198. top: 15rpx;
  199. right: 30rpx;
  200. width:182rpx;
  201. height:182rpx;
  202. background: url("@/static/inputed.png");
  203. background-size: 100% 100%;
  204. transform: rotate(30deg);
  205. opacity:0.3;
  206. }
  207. .no-input{
  208. background: url("@/static/notInput.png");
  209. background-size: 100% 100%;
  210. }
  211. .question-closed{
  212. background: url("@/static/question-closed.png");
  213. background-size: 100% 100%;
  214. }
  215. .question-not-close{
  216. background: url("@/static/question-notClose.png");
  217. background-size: 100% 100%;
  218. }
  219. }
  220. .only-card{
  221. padding: 40rpx;
  222. }
  223. .confirm-btn{
  224. width: 100%;
  225. height: 84rpx;
  226. margin-top: 50rpx;
  227. line-height: 84rpx;
  228. font-size: 36rpx;
  229. color: #fff;
  230. text-align: center;
  231. background: #1869F6;
  232. border-radius: 16rpx;
  233. }
  234. .ban-submit{
  235. background:#9acafc;
  236. }
  237. .upload-file-area{
  238. width: 100%;
  239. min-height:160rpx;
  240. font-size: 32rpx;
  241. color:#343437;
  242. .upload-file-name{
  243. margin-bottom: 20rpx;
  244. word-break:break-all
  245. }
  246. }
  247. .gap-bottom{
  248. width: 100%;
  249. height: 60rpx;
  250. }
  251. .card-fold-option {
  252. position: absolute;
  253. display: flex;
  254. justify-content: space-between;
  255. align-items: center;
  256. left: 0;
  257. bottom: 0;
  258. width: 100%;
  259. height: 38rpx;
  260. padding: 0 40rpx;
  261. box-sizing: border-box;
  262. background: linear-gradient(270deg, #CADDFF 4%, rgba(219, 232, 255, 0) 100%);
  263. z-index: 999;
  264. .card-fold-count {
  265. flex: 1;
  266. font-size: 28rpx;
  267. color: #1869F6;
  268. }
  269. .card-fold-center {
  270. flex: 1;
  271. .card-fold-btn {
  272. width: 32rpx;
  273. height: 20rpx;
  274. margin: 0 auto;
  275. background-image: url("@/static/icon-fold.png");
  276. background-size: 100% 100%;
  277. }
  278. .card-unfold-btn {
  279. transform: rotate(180deg);
  280. }
  281. }
  282. .card-fold-chaos {
  283. flex: 1;
  284. }
  285. }
  286. .order-by {
  287. display: flex;
  288. align-items: center;
  289. justify-content: space-between;
  290. width: 100%;
  291. height: 106rpx;
  292. margin-bottom: 34rpx;
  293. padding: 0 40rpx;
  294. border-radius: 40rpx;
  295. background: #FFF;
  296. .order-by-item {
  297. flex: 1;
  298. display: flex;
  299. justify-content: center;
  300. align-items: center;
  301. font-size: 32rpx;
  302. color: #343437;
  303. .order-by-icon {
  304. width: 22rpx;
  305. height: 46rpx;
  306. margin-left: 24rpx;
  307. background-image: url("@/static/orderBy-none.png");
  308. background-size: 100% 100%;
  309. }
  310. .desc {
  311. background-image: url("@/static/orderBy-desc.png");
  312. }
  313. .asc {
  314. background-image: url("@/static/orderBy-asc.png");
  315. }
  316. }
  317. }
  318. // 以下为单项设置
  319. .flex{
  320. display: flex;
  321. }
  322. .flex-align-start{
  323. align-items: flex-start;
  324. }