brandInfor.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /* brandInfor.wxss */
  2. page{
  3. background-color: #fff;
  4. }
  5. .container{
  6. display: flex;
  7. /* max-height: 100vh; */
  8. /* overflow: hidden; */
  9. }
  10. ::-webkit-scrollbar{
  11. width: 0;
  12. height: 0;
  13. color: #fff;
  14. }
  15. ::-webkit-scrollbar-thumb{
  16. color:transparent;
  17. }
  18. ::-webkit-scrollbar-track-piece{
  19. color: transparent;
  20. }
  21. /* 列表 */
  22. .list{
  23. display: flex;
  24. justify-content: space-between;
  25. flex-wrap: wrap;
  26. background-color: #fff;
  27. }
  28. .list_item_wrap{
  29. width: 50%;
  30. box-sizing: border-box;
  31. border-bottom:1px solid #f0f0f0;
  32. }
  33. .list_item_wrap:nth-child(odd){
  34. border-right:1px solid #f0f0f0;
  35. }
  36. .list_item_wrap:nth-child(even){
  37. border-left:1px solid #f0f0f0;
  38. }
  39. .list_item{
  40. width: 100%;
  41. /* height:340rpx; */
  42. overflow: hidden;
  43. position: relative;
  44. margin: 0 auto;
  45. }
  46. .full_image{
  47. display: block;
  48. width: 100%;
  49. }
  50. .full_img_footer{
  51. width:100%;
  52. height:50rpx;
  53. font-size: 24rpx;
  54. line-height: 50rpx;
  55. color:#fff;
  56. text-align: center;
  57. background-color: rgba(0,0,0,0.6);
  58. position: absolute;
  59. left: 0;
  60. bottom: 0;
  61. }
  62. .full_title{
  63. height:72rpx;
  64. font-size: 30rpx;
  65. line-height: 36rpx;
  66. color:#444;
  67. text-overflow: ellipsis;
  68. overflow: hidden;
  69. display: -webkit-box;
  70. -webkit-line-clamp: 2;
  71. -webkit-box-orient: vertical;
  72. padding: 23rpx 20rpx 0 32rpx ;
  73. }
  74. .full_price{
  75. font: bold 30rpx "Microsoft Yahei";
  76. color:#b4a078;
  77. padding: 34rpx 0 30rpx 32rpx;
  78. }
  79. .full_price_unit{
  80. font: normal normal 22rpx Arial;
  81. text-decoration: line-through;
  82. color:#c8c8c8;
  83. padding-left:26rpx;
  84. }
  85. /* 列表结束 */
  86. .list_banner{
  87. width: 100%;
  88. height: 376rpx;
  89. position: relative;
  90. overflow: hidden;
  91. }
  92. .list_banner_img{
  93. display: block;
  94. width: 100%;
  95. height: 376rpx;
  96. }
  97. .list_banner_cont_wrap{
  98. width: 100%;
  99. height: 100%;
  100. position: absolute;
  101. top: 0;
  102. left: 0;
  103. z-index: 2;
  104. }
  105. .list_banner_cont_wrap:before {
  106. content: '';
  107. display: inline-block;
  108. height: 100%;
  109. vertical-align: middle;
  110. }
  111. .list_banner_cont{
  112. display: inline-block;
  113. vertical-align: middle;
  114. width: 100%;
  115. background-color: rgba(255,255,255,0.81);
  116. border: 1px rgba(255,255,255,0.18) 4rpx;
  117. }
  118. .cont_wrap{
  119. padding:24rpx 40rpx;
  120. }
  121. .cont_cont{
  122. font-size: 30rpx;
  123. color: #2c2e2f;
  124. padding: 20rpx 28rpx;
  125. border: 1px dashed #f5c01f;
  126. border-radius: 4rpx;
  127. word-wrap:break-word;
  128. }