style.less 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. .HomePage {
  2. padding: 16px;
  3. height: 100%;
  4. padding-bottom: 36px;
  5. background: #fff;
  6. overflow-y: scroll;
  7. .tabWrap {
  8. display: flex;
  9. flex-direction: row;
  10. justify-content: space-between;
  11. background: #F7F9FC;
  12. border-radius: 4px;
  13. padding: 16px 28px;
  14. margin-top: 16px;
  15. .tab {
  16. position: relative;
  17. display: flex;
  18. flex-direction: column;
  19. justify-content: center;
  20. align-items: center;
  21. width: 88px;
  22. height: 88px;
  23. cursor: pointer;
  24. .index {
  25. position: relative;
  26. width: 32px;
  27. height: 32px;
  28. border-radius: 8px;
  29. text-align: center;
  30. line-height: 32px;
  31. font-size: 16px;
  32. font-family: Roboto-Bold, Roboto;
  33. font-weight: bold;
  34. color: #FFF;
  35. margin-bottom: 16px;
  36. background: #CFD6E6;
  37. .point {
  38. position: absolute;
  39. width: 8px;
  40. height: 8px;
  41. top: -2px;
  42. right: -2px;
  43. background: #FFC34D;
  44. border-radius: 2px;
  45. border: 2px solid #FFF;
  46. }
  47. &.active {
  48. background: #37F;
  49. }
  50. }
  51. .name {
  52. font-size: 12px;
  53. font-family: SourceHanSansCN-Medium, SourceHanSansCN;
  54. font-weight: 500;
  55. color: #7A8599;
  56. }
  57. // &::after {
  58. // right: -79%;
  59. // top: -1px;
  60. // position: absolute;
  61. // display: block;
  62. // content: '...';
  63. // font-size: 33px;
  64. // color: #DAE2F2;
  65. // }
  66. &.on {
  67. background: #FAFCFF;
  68. border-radius: 8px;
  69. border: 1px solid #DAE2F2;
  70. }
  71. &.active {
  72. &::after {
  73. color: #37F;
  74. }
  75. }
  76. &:last-child {
  77. &::after {
  78. display: none;
  79. }
  80. }
  81. }
  82. .point {
  83. position: relative;
  84. top: -7px;
  85. // right:-22.5px;
  86. font-size: 33px;
  87. color: #DAE2F2;
  88. }
  89. }
  90. .tabRelaContent {
  91. margin-top: 24px;
  92. min-height: 80px;
  93. .step {
  94. padding: 0 8px;
  95. cursor: pointer;
  96. .title {
  97. display: flex;
  98. flex-direction: row;
  99. justify-content: flex-start;
  100. align-items: center;
  101. height: 17px;
  102. font-size: 16px;
  103. cursor: pointer;
  104. font-family: SourceHanSansCN-Medium, SourceHanSansCN;
  105. font-weight: 500;
  106. color: #17181A;
  107. line-height: 17px;
  108. margin-bottom: 10px;
  109. &>span {
  110. display: inline-block;
  111. font-size: 14px;
  112. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  113. font-weight: 400;
  114. cursor: pointer;
  115. margin-left: 8px;
  116. }
  117. }
  118. .detail {
  119. height: 42px;
  120. font-size: 14px;
  121. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  122. font-weight: 400;
  123. color: #525866;
  124. line-height: 21px;
  125. word-break: break-all;
  126. text-overflow: ellipsis;
  127. display: box;
  128. -webkit-box-orient: vertical;
  129. -webkit-line-clamp: 2;
  130. /* 这里是超出几行省略 */
  131. overflow: hidden;
  132. }
  133. &.active {
  134. &:hover {
  135. .title {
  136. color: rgb(51 119 255 / 100%);
  137. &>span {
  138. color: rgb(51 119 255 / 100%);
  139. }
  140. }
  141. }
  142. }
  143. }
  144. .multiStep {
  145. display: flex;
  146. flex-direction: row;
  147. justify-content: space-between;
  148. align-items: flex-start;
  149. padding: 0 8px;
  150. .block {
  151. width: 28%;
  152. cursor: pointer;
  153. .title {
  154. cursor: pointer;
  155. display: flex;
  156. flex-direction: row;
  157. justify-content: flex-start;
  158. align-items: center;
  159. height: 17px;
  160. font-size: 16px;
  161. font-family: SourceHanSansCN-Medium, SourceHanSansCN;
  162. font-weight: 500;
  163. color: #17181A;
  164. line-height: 17px;
  165. margin-bottom: 10px;
  166. &>span {
  167. display: inline-block;
  168. font-size: 14px;
  169. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  170. font-weight: 400;
  171. cursor: pointer;
  172. margin-left: 8px;
  173. }
  174. }
  175. .detail {
  176. font-size: 14px;
  177. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  178. font-weight: 400;
  179. color: #525866;
  180. line-height: 21px;
  181. word-break: break-all;
  182. text-overflow: ellipsis;
  183. display: box;
  184. -webkit-box-orient: vertical;
  185. -webkit-line-clamp: 2;
  186. /* 这里是超出几行省略 */
  187. overflow: hidden;
  188. }
  189. &.active {
  190. &:hover {
  191. .title {
  192. color: rgb(51 119 255 / 100%);
  193. &>span {
  194. color: rgb(51 119 255 / 100%);
  195. }
  196. }
  197. }
  198. }
  199. }
  200. }
  201. }
  202. .map {
  203. display: flex;
  204. justify-content: center;
  205. align-items: center;
  206. // border:1px solid red;
  207. background: url('../../../static/shouyechatu.png');
  208. // background-size: 50vw 25vw;
  209. background-size: 850px 425px;
  210. background-repeat: no-repeat;
  211. background-position: center;
  212. &>img {
  213. }
  214. }
  215. }