金诚优选前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

184 lines
3.9 KiB

  1. page{
  2. height: 100%;
  3. }
  4. #classification{
  5. /*background-color: #FFFFFF;*/
  6. height: 100%;
  7. &.hiddens {
  8. overflow: hidden;
  9. }
  10. .class__banner{
  11. width: 100%;
  12. //background: url("http://img1.imgtn.bdimg.com/it/u=3033504449,3572953986&fm=27&gp=0.jpg") no-repeat center;
  13. margin-bottom: 15px;
  14. swiper{
  15. //height: 100px;
  16. image {
  17. width: 100%;
  18. height: 100%;
  19. object-fit: cover;
  20. }
  21. }
  22. }
  23. .class__item_box{
  24. /* #ifdef H5 */
  25. padding-bottom: 50px;
  26. /* #endif */
  27. .class__item{
  28. .img_item{
  29. position: relative;
  30. width: 100%;
  31. height: 110px;
  32. .img_text{
  33. position: absolute;
  34. top: 40%;
  35. width: 100%;
  36. transform: translate(0, -50%);
  37. text-align: center;
  38. .text_top{
  39. //display: flex;
  40. text-align: center;
  41. line-height: 90px;
  42. //align-items: center;
  43. .text_line{
  44. display: inline-block;
  45. height: 1px;
  46. width: 40px;
  47. background: #D8D8D8;
  48. margin-bottom: 5px;
  49. }
  50. .text_content{
  51. display: inline-block;
  52. font-size: 18px;
  53. color: #ffffff;
  54. padding: 0 8px;
  55. font-weight: bold;
  56. }
  57. }
  58. .text_btn{
  59. text-align: center;
  60. margin-top: -30px;
  61. font-size: 11px;
  62. color: #ffffff;
  63. bottom: 20px;
  64. }
  65. }
  66. image {
  67. width: 100%;
  68. height: 110px;
  69. object-fit: cover;
  70. }
  71. }
  72. .class__tag{
  73. padding: 10px;
  74. .tag__item{
  75. display: inline-block;
  76. padding: 0 5px 5px 5px;
  77. height: 60px;
  78. width: 50%;
  79. .tag_flex{
  80. background: #fff;
  81. display: flex;
  82. .tag_img{
  83. width: 60px;
  84. height: 60px;
  85. image{
  86. width: 60px;
  87. height: 60px;
  88. }
  89. }
  90. .tag_text{
  91. white-space: nowrap;
  92. text-overflow: ellipsis;
  93. overflow: hidden;
  94. line-height: 60px;
  95. color: #4A4A4A;
  96. font-size: 13px;
  97. padding-left: 7px;
  98. }
  99. }
  100. }
  101. }
  102. }
  103. }
  104. // 新的分类页面
  105. .classifical{
  106. display: flex;
  107. height: 100%;
  108. overflow: hidden;
  109. .left-menu{
  110. width: 90px;
  111. text-align: center;
  112. background-color:#F3F3F3;
  113. height: 100%;
  114. overflow: auto;
  115. .item{
  116. position: relative;
  117. width: 90px;
  118. height: 50px;
  119. color:#4A4A4A ;
  120. font-size: 13px;
  121. line-height: 50px;
  122. &.active{
  123. color:#EA4448;
  124. background-color: #FFFFFF;
  125. &::after{
  126. content:"";
  127. position: absolute;
  128. height:50px;
  129. width:2px;
  130. background-color:#EA4448;
  131. left: 0;
  132. top: 0;
  133. }
  134. }
  135. }
  136. }
  137. .right-content{
  138. flex: 1;
  139. background-color: #FFFFFF;
  140. height: 100%;
  141. overflow: auto;
  142. .title{
  143. display:flex;
  144. align-items: center;
  145. justify-content: space-between;
  146. color:#4A4A4A;
  147. height: 50px;
  148. line-height: 50px;
  149. font-size: 13px;
  150. padding: 0 15px;
  151. .iconfont{
  152. font-size: 13px;
  153. color:#909090;
  154. }
  155. }
  156. .list{
  157. display: flex;
  158. flex-wrap: wrap;
  159. padding: 0 7px;
  160. .list-item{
  161. width:33%;
  162. padding: 7px;
  163. .photo{
  164. width: 100%;
  165. image{
  166. width: 100%;
  167. }
  168. }
  169. .txt{
  170. font-size: 12px;
  171. line-height: 17px;
  172. color:#909090;
  173. padding-top: 5px;
  174. text-align: center;
  175. }
  176. }
  177. }
  178. }
  179. }
  180. }