index.scss 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. .content {
  2. min-height: 100%;
  3. background: #f3f3f3;
  4. padding-bottom: 41.21rpx;
  5. box-sizing: border-box;
  6. }
  7. .header-panel {
  8. height: 274.73rpx;
  9. background: rgba(0, 210, 195, 1);
  10. font-size: 27.47rpx;
  11. display: flex;
  12. align-items: center;
  13. color: #fff;
  14. .avatar {
  15. width: 123.63rpx;
  16. height: 123.63rpx;
  17. margin: 0 39.84rpx 0 53.57rpx;
  18. border-radius: 50%;
  19. }
  20. .btn {
  21. width: 151.1rpx;
  22. height: 54.95rpx;
  23. line-height: 52.2rpx;
  24. border: 1px solid #fff;
  25. border-radius: 2.75rpx;
  26. font-size: 27.47rpx;
  27. background: transparent;
  28. color: #fff;
  29. padding: 0;
  30. margin: 0;
  31. &::after {
  32. display: none;
  33. }
  34. }
  35. .info {
  36. flex: 1;
  37. line-height: 1;
  38. position: relative;
  39. padding-right: 82.42rpx;
  40. .name {
  41. font-size: 38.46rpx;
  42. margin-bottom: 16.48rpx;
  43. white-space: nowrap;
  44. overflow: hidden;
  45. text-overflow: ellipsis;
  46. }
  47. .company {
  48. white-space: nowrap;
  49. overflow: hidden;
  50. text-overflow: ellipsis;
  51. }
  52. .arrow {
  53. width: 23.35rpx;
  54. height: 43.96rpx;
  55. position: absolute;
  56. right: 53.57rpx;
  57. top: 50%;
  58. transform: translateY(-50%);
  59. }
  60. }
  61. }
  62. .menu-panel {
  63. display: flex;
  64. background: #fff;
  65. position: relative;
  66. font-size: 27.47rpx;
  67. &::after {
  68. content: '';
  69. position: absolute;
  70. left: 0%;
  71. bottom: 0%;
  72. right: 0;
  73. height: 1rpx;
  74. background: #e0e0e0;
  75. transform: scaleY(.5);
  76. }
  77. .item {
  78. flex: 1;
  79. height: 151.1rpx;
  80. display: flex;
  81. flex-direction: column;
  82. align-items: center;
  83. justify-content: center;
  84. position: relative;
  85. &:before {
  86. content: '';
  87. width: 1rpx;
  88. position: absolute;
  89. left: 0%;
  90. top: 0;
  91. bottom: 0%;
  92. background: #e0e0e0;
  93. transform: scaleX(.5);
  94. }
  95. &:first-child::before {
  96. display: none;
  97. }
  98. .icon {
  99. width: 54.95rpx;
  100. height: 54.95rpx;
  101. margin-bottom: 13.74rpx;
  102. }
  103. .badge{
  104. position: absolute;
  105. left: 50%;
  106. top: 13.74rpx;
  107. margin-left: 13.74rpx;
  108. line-height: 27.47rpx;
  109. min-width: 27.47rpx;
  110. text-align: center;
  111. border-radius: 13.74rpx;
  112. background: #f97631;
  113. color: #fff;
  114. font-size: 19.23rpx;
  115. font-weight: bold;
  116. padding: 0 5.49rpx;
  117. box-sizing: border-box;
  118. }
  119. }
  120. }
  121. .nav-panel {
  122. margin-top: 13.74rpx;
  123. .item {
  124. background: #fff;
  125. display: flex;
  126. align-items: center;
  127. height: 96.15rpx;
  128. position: relative;
  129. font-size: 27.47rpx;
  130. &:before {
  131. content: '';
  132. position: absolute;
  133. left: 0%;
  134. right: 0%;
  135. top: 0;
  136. height: 1rpx;
  137. background: #e0e0e0;
  138. transform: scaleY(.5);
  139. }
  140. &:first-child::before {
  141. display: none;
  142. }
  143. &.sapce {
  144. margin-top: 13.74rpx;
  145. &:before {
  146. display: none;
  147. }
  148. }
  149. .icon {
  150. width: 43.96rpx;
  151. height: 43.96rpx;
  152. margin: 0 20.6rpx 0 31.59rpx;
  153. display: flex;
  154. align-items: center;
  155. justify-content: center;
  156. &-img{
  157. width: 43.96rpx;
  158. height: 43.96rpx;
  159. &-4{
  160. width: 38.46rpx;
  161. }
  162. }
  163. }
  164. .label{
  165. flex: 1;
  166. }
  167. .arrow{
  168. width: 27.47rpx;
  169. height: 27.47rpx;
  170. margin-right: 27.47rpx;
  171. }
  172. .tag{
  173. font-size: 24.73rpx;
  174. color: #fff;
  175. background: #f97631;
  176. line-height: 43.96rpx;
  177. border-radius: 5.49rpx;
  178. min-width: 193.68rpx;
  179. text-align: center;
  180. padding: 0 13.74rpx;
  181. box-sizing: border-box;
  182. }
  183. .sub{
  184. color: #515151;
  185. }
  186. .active{
  187. color: #F97631;
  188. }
  189. }
  190. }