index.wxss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .yuan {
  28. font-size: 24rpx;
  29. font-family: PingFang SC, PingFang SC;
  30. font-weight: 400;
  31. color: #87898B;
  32. line-height: 48rpx;
  33. }
  34. .data {
  35. font-size: 32rpx;
  36. font-family: DIN Alternate, DIN Alternate;
  37. font-weight: bold;
  38. color: #F64016;
  39. line-height: 48rpx;
  40. }
  41. .money {
  42. font-size: 24rpx;
  43. font-family: PingFang SC, PingFang SC;
  44. font-weight: bold;
  45. color: #F64016;
  46. line-height: 105rpx;
  47. }
  48. .list {
  49. width: 335rpx;
  50. margin-top: 30rpx;
  51. height: 400rpx;
  52. }
  53. .title {
  54. font-size: 36rpx;
  55. font-family: PingFang SC, PingFang SC;
  56. font-weight: 500;
  57. color: #323337;
  58. line-height: 0rpx;
  59. }
  60. .look {
  61. font-size: 22rpx;
  62. font-family: PingFang SC, PingFang SC;
  63. font-weight: 400;
  64. color: #5881C1;
  65. line-height: 0rpx;
  66. margin-left: 74rpx;
  67. margin-right: 14rpx;
  68. }
  69. .zhibo {
  70. font-size: 36rpx;
  71. font-family: DOUYU;
  72. font-weight: normal;
  73. line-height: 48rpx;
  74. color: #3B3C5B;
  75. margin-right: 20rpx;
  76. }
  77. .button {
  78. width: 174rpx;
  79. height: 60rpx;
  80. background: #57c2f4;
  81. opacity: 1;
  82. border-radius: 30rpx;
  83. font-size: 28rpx;
  84. font-family: PingFang SC;
  85. font-weight: 400;
  86. line-height: 60rpx;
  87. color: #FFFFFF;
  88. text-align: center;
  89. }
  90. .page {
  91. padding: 0 28rpx;
  92. width: 750rpx;
  93. min-height: 100vh;
  94. background: white;
  95. }
  96. .foreshow {
  97. width: 702rpx;
  98. height: 464rpx;
  99. background: linear-gradient(135deg, #CFF4FE 0%, #D5E5FF 41%, #8FCCF1 100%);
  100. padding: 22rpx 19rpx;
  101. margin: 66rpx 0 22rpx;
  102. border-radius: 16rpx;
  103. }
  104. .describe {
  105. font-size: 24rpx;
  106. font-family: PingFang SC;
  107. font-weight: 400;
  108. line-height: 34rpx;
  109. color: #26303A;
  110. margin-top: 18rpx;
  111. }
  112. .swiper-item {
  113. height: 324rpx;
  114. }
  115. .swiper_box {
  116. width: 694rpx;
  117. height: 324rpx;
  118. background: rgba(255, 255, 255, 0.39);
  119. opacity: 1;
  120. border-radius: 10rpx;
  121. }
  122. .index-navbar {
  123. position: -webkit-sticky;
  124. position: sticky;
  125. top: 0;
  126. left: 0;
  127. width: 750rpx;
  128. z-index: 100;
  129. overflow: hidden;
  130. }
  131. .index-navbar .back {
  132. position: absolute;
  133. top: 0;
  134. left: 0;
  135. z-index: -1;
  136. width: 750rpx;
  137. height: 542rpx;
  138. background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 46%, white 100%);
  139. }