index.wxss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. /* pages/main/component/PicturePanel/index.wxss */
  2. .picture-container {
  3. width: 100%;
  4. display: flex;
  5. flex-direction: column;
  6. align-items: center;
  7. justify-content: center;
  8. }
  9. .picture-container .picture-bottom {
  10. width:100%;
  11. height:134px;
  12. background:rgba(249,249,251,1);
  13. position: absolute;
  14. bottom: 0;
  15. display: flex;
  16. align-items: center;
  17. justify-content: center;
  18. padding-bottom: 20px;
  19. }
  20. .picture-bottom .btn-container {
  21. padding: 10px;
  22. display: flex;
  23. align-items: center;
  24. justify-content: center;
  25. flex-direction: column;
  26. }
  27. .picture-bottom .btn-container .btn {
  28. width:64px;
  29. height:64px;
  30. background:rgba(255,255,255,1);
  31. border-radius: 50%;
  32. border:2px solid #F98183;
  33. display: flex;
  34. align-items: center;
  35. justify-content: center;
  36. }
  37. .btn-label {
  38. height:20px;
  39. font-size:14px;
  40. font-family:PingFangSC-Regular;
  41. font-weight:400;
  42. color:rgba(44,58,81,1);
  43. line-height:20px;
  44. margin-top: 10px;
  45. }
  46. .grid-container {
  47. padding: 20px;
  48. display: flex;
  49. flex-direction: column;
  50. align-items: center;
  51. justify-content: center;
  52. }
  53. .grid-loading {
  54. height: 120px;
  55. padding: 20px;
  56. display: flex;
  57. align-items: center;
  58. justify-content: center;
  59. text-align: center;
  60. color:rgba(122,124,145,1);
  61. }
  62. .grid-container .submit {
  63. width:215px;
  64. height:48px;
  65. background:linear-gradient(180deg,rgba(125,218,153,1) 0%,rgba(71,179,96,1) 100%);
  66. border-radius:24px;
  67. font-size:18px;
  68. font-family:PingFangSC-Semibold;
  69. font-weight:600;
  70. color:rgba(255,255,255,1);
  71. line-height:48px;
  72. text-align: center;
  73. margin-top: 20px;
  74. }
  75. .disable {
  76. background:linear-gradient(180deg,rgba(125,218,153,0.4) 0%,rgba(71,179,96,0.4) 100%);
  77. }
  78. .grid-container .label {
  79. width: 100%;
  80. height:17px;
  81. font-size:12px;
  82. font-family:PingFangSC-Regular;
  83. font-weight:400;
  84. color:rgba(122,124,145,1);
  85. line-height:17px;
  86. margin-bottom: 10px;
  87. }
  88. .grid-container .grid {
  89. display: grid;
  90. background:rgba(249,249,251,1);
  91. border-radius:10px;
  92. padding: 10px;
  93. grid-template-columns: 1fr 1fr 1fr;
  94. grid-row-gap: 10px;
  95. grid-column-gap: 10px;
  96. }
  97. .grid .image-container {
  98. border-radius: 10px;
  99. position: relative;
  100. }
  101. .grid .image-container image {
  102. border-radius: 10px;
  103. }
  104. .grid .image-container .del {
  105. position: absolute;
  106. right: 0;
  107. top: 0;
  108. z-index: 99;
  109. }
  110. .grid .image-container .err {
  111. position: absolute;
  112. width: 100%;
  113. height: 36px;
  114. text-align: center;
  115. bottom: 2px;
  116. z-index: 99;
  117. font-size: 12px;
  118. background: crimson;
  119. line-height: 18px;
  120. color: white;
  121. border-bottom-left-radius: 10px;
  122. border-bottom-right-radius: 10px;
  123. }
  124. .grid .image-container .success {
  125. position: absolute;
  126. width: 100%;
  127. height: 20px;
  128. text-align: center;
  129. bottom: 2px;
  130. z-index: 99;
  131. font-size: 12px;
  132. background: green;
  133. line-height: 20px;
  134. color: white;
  135. border-bottom-left-radius: 10px;
  136. border-bottom-right-radius: 10px;
  137. }
  138. .grid .add {
  139. background:rgba(249,249,251,1);
  140. border-radius:10px;
  141. border:1px dashed rgba(202,202,204,1);
  142. display: flex;
  143. align-items: center;
  144. justify-content: center;
  145. }