science.wxss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. .Search-box {
  12. padding-left: 20rpx;
  13. padding-right: 20rpx;
  14. height: 100rpx;
  15. background: #ffffff;
  16. display: -webkit-box;
  17. display: -webkit-flex;
  18. display: flex;
  19. -webkit-box-pack: justify;
  20. -webkit-justify-content: space-between;
  21. justify-content: space-between;
  22. -webkit-box-align: center;
  23. -webkit-align-items: center;
  24. align-items: center;
  25. }
  26. .Search-box .Search-box-sort {
  27. font-size: 30rpx;
  28. font-weight: 500;
  29. color: #666666;
  30. }
  31. .Search-box .Search-box-sort .sort-text {
  32. width: 57rpx;
  33. height: 29rpx;
  34. font-size: 30rpx;
  35. font-weight: 500;
  36. color: #333333;
  37. line-height: 58rpx;
  38. margin-right: 19rpx;
  39. }
  40. .Search-box .Search-box-sort .sort-img {
  41. width: 21rpx;
  42. height: 11rpx;
  43. margin-bottom: 4rpx;
  44. }
  45. .Search-box .Search-box-size {
  46. width: 630rpx;
  47. height: 65rpx;
  48. -webkit-border-radius: 32rpx;
  49. border-radius: 32rpx;
  50. background-color: #f1f1f1;
  51. padding-left: 36rpx;
  52. display: -webkit-box;
  53. display: -webkit-flex;
  54. display: flex;
  55. -webkit-box-align: center;
  56. -webkit-align-items: center;
  57. align-items: center;
  58. }
  59. .Search-box .Search-box-size .box-img {
  60. height: 32rpx;
  61. width: 32rpx;
  62. margin-right: 16rpx;
  63. }
  64. .Search-box .Search-box-size .box-word {
  65. width: 100%;
  66. font-size: 22rpx;
  67. font-weight: 500;
  68. color: #cdcbcb;
  69. line-height: 55rpx;
  70. }
  71. .content {
  72. line-height: 1;
  73. }
  74. .content .list-box {
  75. width: 725rpx;
  76. height: 200rpx;
  77. margin: 20rpx auto 0;
  78. background: #FFFFFF;
  79. -webkit-box-shadow: 0px 5rpx 5rpx 0px rgba(35, 24, 21, 0.06);
  80. box-shadow: 0px 5rpx 5rpx 0px rgba(35, 24, 21, 0.06);
  81. -webkit-border-radius: 7rpx;
  82. border-radius: 7rpx;
  83. padding: 0 20rpx;
  84. display: -webkit-box;
  85. display: -webkit-flex;
  86. display: flex;
  87. -webkit-box-align: center;
  88. -webkit-align-items: center;
  89. align-items: center;
  90. }
  91. .content .list-box .box-left {
  92. width: 230rpx;
  93. height: 145rpx;
  94. margin-right: 20rpx;
  95. }
  96. .content .list-box .box-left .left-img {
  97. width: 230rpx;
  98. height: 145rpx;
  99. }
  100. .content .list-box .box-right {
  101. width: 430rpx;
  102. height: 145rpx;
  103. }
  104. .content .list-box .box-right .right-top {
  105. font-size: 25rpx;
  106. font-weight: bold;
  107. color: #333333;
  108. margin-bottom: 24rpx;
  109. }
  110. .content .list-box .box-right .right-center {
  111. width: 362rpx;
  112. font-size: 21rpx;
  113. font-weight: bold;
  114. color: #999999;
  115. line-height: 33rpx;
  116. overflow: hidden;
  117. text-overflow: ellipsis;
  118. display: -webkit-box;
  119. -webkit-line-clamp: 2;
  120. -webkit-box-orient: vertical;
  121. }
  122. .content .list-box .box-right .right-foot {
  123. font-size: 21rpx;
  124. font-weight: bold;
  125. color: #999999;
  126. line-height: 31rpx;
  127. text-align: right;
  128. margin-top: 13rpx;
  129. }