article.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. page {
  2. background: #fff;
  3. height: 100%;
  4. }
  5. .search .wux-search-bar {
  6. /* background-color: transparent; */
  7. background-color: #FA7D22;
  8. }
  9. .search .wux-search-bar .wux-search-bar__form {
  10. height: 72rpx;
  11. box-sizing: border-box;
  12. overflow: hidden;
  13. background: rgba(255, 255, 255, 0.8);
  14. border-radius: 36rpx;
  15. border: 2rpx solid #FA7D22;
  16. }
  17. .search .wux-search-bar .wux-search-bar__label {
  18. background-color: transparent;
  19. }
  20. .search .wux-search-bar .wux-search-bar__input {
  21. height: 72rpx;
  22. line-height: 72rpx;
  23. margin-top: -2rpx;
  24. }
  25. .search .wux-search-bar .wux-search-bar__search {
  26. top: 22rpx;
  27. }
  28. .search .wux-search-bar .index--wux-search-bar__clear {
  29. top: 22rpx;
  30. }
  31. .tabs {
  32. /* padding: 30rpx; */
  33. }
  34. .tabs-bgc {
  35. padding: 30rpx;
  36. }
  37. .tabs-wrap {
  38. /* height: 96rpx; */
  39. /* background: #fff; */
  40. /* justify-content: space-around; */
  41. /* width: 100%; */
  42. white-space: nowrap;
  43. display: flex;
  44. /* overflow-x: auto; */
  45. }
  46. .tabs-wrap .item {
  47. /* width: 33.33%; */
  48. height: 100%;
  49. box-sizing: border-box;
  50. display: inline-block;
  51. font-size: 28rpx;
  52. color: #666666;
  53. position: relative;
  54. margin-right: 48rpx;
  55. }
  56. .tabs-wrap .item.active {
  57. font-size: 36rpx;
  58. font-family: PingFangSC-Medium, PingFang SC;
  59. font-weight: 500;
  60. color: #333333;
  61. border-bottom: 4rpx solid #FA7D22;
  62. }
  63. /* 美丽秘籍瀑布流布局 */
  64. .main {
  65. display: flex;
  66. align-items: flex-start;
  67. background: linear-gradient(180deg, #FFFFFF 0%, #f7f8fa 100%);
  68. }
  69. .column {
  70. /* width: 50%; */
  71. }
  72. .column_item {
  73. margin-left: 30rpx;
  74. margin-top: 20rpx;
  75. }
  76. .column_pic {
  77. display: block;
  78. width: 330rpx;
  79. height: 330rpx;
  80. border-radius: 10px 10px 0 0;
  81. }
  82. .hide {
  83. display: none;
  84. }
  85. .main-content {
  86. height: 172rpx;
  87. width: 330rpx;
  88. background-color: #FFFFFF;
  89. border-radius: 0 0 10px 10px;
  90. padding: 20rpx;
  91. box-sizing: border-box;
  92. }
  93. .main-title {
  94. color: #222222;
  95. font-size: 28rpx;
  96. height: 80rpx;
  97. overflow: hidden;
  98. text-overflow: ellipsis;
  99. display: -webkit-box;
  100. -webkit-line-clamp: 2;
  101. -webkit-box-orient: vertical;
  102. }
  103. .main-bottom {
  104. margin-top: 20rpx;
  105. display: flex;
  106. justify-content: space-between;
  107. font-size: 24rpx;
  108. color: #666;
  109. }