index.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /* pages/tabber/news/index.wxss */
  2. page {
  3. width: 750rpx;
  4. min-height: 100vh;
  5. background: #F4F4F4;
  6. }
  7. .nav {
  8. position: fixed;
  9. left: 0;
  10. top: 0;
  11. }
  12. .topBox {
  13. padding: 24rpx 30rpx;
  14. background: #FFFFFF;
  15. }
  16. .topBox .input {
  17. width: 524rpx;
  18. height: 80rpx;
  19. background: #F6F6F6;
  20. border-radius: 8rpx;
  21. padding: 0 30rpx;
  22. }
  23. .topBox .input .icon {
  24. font-size: 24rpx;
  25. color: #666666;
  26. width: 110rpx;
  27. position: relative;
  28. }
  29. .topBox .input .icon::after {
  30. content: '';
  31. position: absolute;
  32. right: 0;
  33. top: 50%;
  34. transform: translate(-50%, 0%);
  35. width: 0;
  36. height: 0;
  37. display: block;
  38. border-top: 10rpx solid #9B9B9B;
  39. border-bottom: 10rpx solid transparent;
  40. border-left: 10rpx solid transparent;
  41. border-right: 10rpx solid transparent;
  42. }
  43. .topBox .btn {
  44. width: 136rpx;
  45. height: 68rpx;
  46. line-height: 68rpx;
  47. background: #52A1FF;
  48. border-radius: 8rpx;
  49. }
  50. .menu {
  51. background-color: #FFFFFF;
  52. }
  53. .menu .box {
  54. width: 250rpx;
  55. height: 88rpx;
  56. background: #FFFFFF;
  57. font-size: 28rpx;
  58. color: #333333;
  59. }
  60. .list {
  61. padding: 24rpx 32rpx;
  62. }
  63. .list .item {
  64. width: 686rpx;
  65. height: 274rpx;
  66. background: #FFFFFF;
  67. border-radius: 8rpx;
  68. padding: 32rpx 24rpx;
  69. }
  70. .list .item .top .le {
  71. font-size: 28rpx;
  72. font-weight: 500;
  73. color: #333333;
  74. }
  75. .list .item .top .lr {
  76. font-size: 24rpx;
  77. color: #999999;
  78. }
  79. .list .item .time {
  80. font-size: 26rpx;
  81. color: #666666;
  82. }
  83. .list .item .contioner .box {
  84. width: 196rpx;
  85. height: 116rpx;
  86. background: #F8F8F8;
  87. border-radius: 8rpx;
  88. flex-direction: column;
  89. }
  90. .list .item .contioner .box .num {
  91. font-size: 28rpx;
  92. font-weight: 500;
  93. color: #333333;
  94. }
  95. .list .item .contioner .box .tips {
  96. font-size: 24rpx;
  97. color: #999999;
  98. }