index.scss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. .outerBox{
  2. .upload{
  3. padding: 20px 15px 0 15px;
  4. .tipTxt{
  5. margin-bottom: 20rpx;
  6. }
  7. }
  8. }
  9. .topBox {
  10. height: 500rpx;
  11. display: flex;
  12. justify-content: center;
  13. align-items: center;
  14. }
  15. ::v-deep .buttonCalss {
  16. margin-top: 40px !important;
  17. }
  18. ::v-deep .u-upload__wrap__preview:nth-of-type(4n) {
  19. margin-right: 0!important;
  20. }
  21. ::v-deep .u-upload__button {
  22. width: 20vw!important;
  23. height: 20vw!important;
  24. }
  25. ::v-deep .u-upload__wrap__preview__image{
  26. width: 20vw!important;
  27. height: 20vw!important;
  28. }
  29. .imagesRow {
  30. width: 80px;
  31. height: 80px;
  32. margin-left: 5px;
  33. }
  34. .textBorder {
  35. width: 70%;
  36. height: 130px;
  37. border-radius: 50% 50% 0 0;
  38. }
  39. .images {
  40. margin: 40px 0px 0px 20px;
  41. width: 70%;
  42. height: 130px;
  43. border-radius: 50% 50% 0 0;
  44. }
  45. .text-area {
  46. display: flex;
  47. justify-content: center;
  48. }
  49. .title {
  50. font-size: 36rpx;
  51. color: #8f8f94;
  52. }
  53. .borders {
  54. border: black 2px solid;
  55. }
  56. .btnBox{
  57. position: fixed;
  58. bottom: 20px;
  59. right: 10px;
  60. width: 80px;
  61. height: 80px;
  62. border-radius: 50%;
  63. display: flex;
  64. justify-content: center;
  65. align-items: center;
  66. .btn{
  67. width: 80px;
  68. height: 80px;
  69. border-radius: 50%;
  70. display: flex;
  71. justify-content: center;
  72. align-items: center;
  73. color: white;
  74. font-weight: bold;
  75. }
  76. .b1{
  77. background: green;
  78. }
  79. .b2{
  80. background: orange;
  81. }
  82. }
  83. ::v-deep .u-tabbar{
  84. width: 80%;
  85. position: fixed;
  86. bottom: 10px;
  87. left: 50%;
  88. transform: translateX(-50%);
  89. border-radius: 25px;
  90. }
  91. ::v-deep .u-tabbar__content{
  92. border-radius: 25px;
  93. background:white;
  94. }
  95. .examplePic{
  96. display: flex;
  97. justify-content: space-around;
  98. padding: 0 20rpx 0 20rpx;
  99. .item{
  100. display: flex;
  101. flex-direction: column;
  102. align-items: center;
  103. width: 22%;
  104. .imagesRow{
  105. width: 100%;
  106. }
  107. }
  108. }
  109. .botTipTxtBox{
  110. padding: 0 20px;
  111. }
  112. .currModel{
  113. display: flex;
  114. align-items: center;
  115. margin-bottom: 20rpx;
  116. .left{
  117. font-weight: bold;
  118. }
  119. .right{
  120. margin-left: 10rpx;
  121. width: 0;
  122. height: 0;
  123. border-left: 5px solid transparent;
  124. border-right: 5px solid transparent;
  125. border-top: 5px solid orange;
  126. }
  127. }
  128. .modelBox{
  129. height: 250px;
  130. padding: 0 20rpx;
  131. padding-top: 10px;
  132. .mName{
  133. display: flex;
  134. align-items: center;
  135. justify-content: space-between;
  136. font-weight: bold;
  137. }
  138. .top1{
  139. margin-top: 30px;
  140. }
  141. .bot1{
  142. max-height: 180px;
  143. overflow-y: scroll;
  144. display: flex;
  145. flex-wrap: wrap;
  146. align-items: flex-start;
  147. padding-top: 50rpx;
  148. // background: green;
  149. // padding-bottom: 50rpx;
  150. .pos{
  151. height: 50rpx;
  152. width: 100%;
  153. }
  154. .item1{
  155. width: 29%;
  156. height: 40px;
  157. // background: red;
  158. margin-right: 20rpx;
  159. margin-bottom: 20rpx;
  160. border-radius: 12rpx;
  161. display: flex;
  162. align-items: center;
  163. justify-content: center;
  164. border: 1rpx solid #999;
  165. }
  166. }
  167. }
  168. .at{
  169. border-color: orange!important;
  170. color: white;
  171. background:orange ;
  172. }