mineSubscribe.wxss 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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. .content .activeTitle {
  28. position: fixed;
  29. z-index: 9;
  30. width: 100%;
  31. height: 60px;
  32. background-color: white;
  33. border-top: 1px solid lightgray;
  34. display: flex;
  35. justify-content: center;
  36. padding: 0 30px;
  37. font-size: 34rpx;
  38. }
  39. .content .activeTitle .active {
  40. position: relative;
  41. font-weight: bold;
  42. }
  43. .content .activeTitle .active .yun {
  44. width: 80rpx;
  45. height: 0rpx;
  46. position: absolute;
  47. left: 50%;
  48. top: 65%;
  49. -webkit-transform: translate(-50%, -50%);
  50. transform: translate(-50%, -50%);
  51. box-shadow: 0px 0px 10px 2px #4a97f2;
  52. }
  53. .content .activeTitle .left {
  54. width: 50%;
  55. height: 100%;
  56. display: flex;
  57. justify-content: center;
  58. align-items: center;
  59. }
  60. .content .activeTitle .right {
  61. width: 50%;
  62. height: 100%;
  63. display: flex;
  64. justify-content: center;
  65. align-items: center;
  66. }
  67. .content .scroll-view-height .activeClass {
  68. width: 100%;
  69. height: auto;
  70. }
  71. .content .scroll-view-height .activeClass .classBox {
  72. display: flex;
  73. justify-content: space-between;
  74. padding: 0 47rpx;
  75. background-color: #fff;
  76. height: 144rpx;
  77. }
  78. .content .scroll-view-height .activeClass .classBox .classLeft {
  79. display: flex;
  80. height: 100%;
  81. }
  82. .content .scroll-view-height .activeClass .classBox .classLeft .class_Img {
  83. display: flex;
  84. align-items: center;
  85. flex-grow: 1;
  86. }
  87. .content .scroll-view-height .activeClass .classBox .classLeft .class_Img image {
  88. width: 80rpx;
  89. height: 80rpx;
  90. }
  91. .content .scroll-view-height .activeClass .classBox .classLeft .class_Text {
  92. display: flex;
  93. justify-content: center;
  94. flex-grow: 2;
  95. flex-direction: column;
  96. }
  97. .content .scroll-view-height .activeClass .classBox .classLeft .class_Text .text_Title {
  98. display: flex;
  99. margin-bottom: 6px;
  100. }
  101. .content .scroll-view-height .activeClass .classBox .classLeft .class_Text .text_Title ._span:last-child {
  102. color: #000;
  103. font-size: 28rpx;
  104. font-weight: 600;
  105. }
  106. .content .scroll-view-height .activeClass .classBox .classLeft .class_Text .text_Title ._span.manage {
  107. border: 1px #00b2b6 solid;
  108. font-size: 10px;
  109. display: flex;
  110. white-space: nowrap;
  111. justify-content: center;
  112. align-items: center;
  113. padding: 1px 6px;
  114. border-radius: 3px;
  115. margin-right: 10rpx;
  116. color: #00b2b6;
  117. margin-left: 6px;
  118. font-weight: 600;
  119. }
  120. .content .scroll-view-height .activeClass .classBox .classLeft .class_Text .text_Intro {
  121. display: flex;
  122. }
  123. .content .scroll-view-height .activeClass .classBox .classLeft .class_Text .text_Intro ._span {
  124. font-size: 24rpx;
  125. font-weight: 400;
  126. color: #bfbfbf;
  127. margin-left: 6px;
  128. }
  129. .content .scroll-view-height .activeClass .classBox .classright {
  130. display: flex;
  131. height: 100%;
  132. align-items: center;
  133. }
  134. .content .scroll-view-height .activeClass .classBox .classright image {
  135. width: 38rpx;
  136. height: 42rpx;
  137. }