问星数据小程序

followAccount.wxss 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. /* pages/followVideo/followVideo.wxss */
  2. page{
  3. background: #fff;
  4. }
  5. .follow {
  6. padding: 0 22rpx 22rpx 22rpx;
  7. }
  8. .fixed {
  9. width: 100%;
  10. position: fixed;
  11. left: 0;
  12. background: #fff;
  13. z-index: 999;
  14. }
  15. .flex {
  16. padding: 0rpx 22rpx 20rpx;
  17. display: flex;
  18. font-size: 28rpx;
  19. justify-content: space-between;
  20. position: relative;
  21. color: #222;
  22. }
  23. .item {
  24. padding: 0 10rpx;
  25. height: 46rpx;
  26. line-height: 42rpx;
  27. text-align: center;
  28. border-radius: 12rpx;
  29. font-size: 24rpx;
  30. color: #2A84FC;
  31. border: 2rpx solid #2A84FC;
  32. }
  33. .sort {
  34. display: inline-block;
  35. border-right: 13rpx solid transparent;
  36. border-left: 13rpx solid transparent;
  37. border-top: 13rpx solid #2A84FC;
  38. }
  39. .box {
  40. width: 170rpx;
  41. height: auto;
  42. font-size: 24rpx;
  43. background: #fff;
  44. box-shadow: 0 4rpx 8rpx 0 #E9E7E7;
  45. position: absolute;
  46. top: 64rpx;
  47. left: 22rpx;
  48. padding: 20rpx 0;
  49. z-index: 99;
  50. }
  51. .box .info {
  52. padding-left: 20rpx;
  53. width: 100%;
  54. height: 50rpx;
  55. line-height: 50rpx;
  56. text-align: left;
  57. }
  58. .box .info.active {
  59. color: #2A84FC;
  60. }
  61. .btn {
  62. /* display: flex;
  63. justify-content: space-between;
  64. align-items: center; */
  65. text-align: right;
  66. position: relative;
  67. padding-bottom: 20rpx;
  68. margin-bottom: 20rpx;
  69. }
  70. .button {
  71. display: inline-block;
  72. width: 140rpx;
  73. height: 46rpx;
  74. line-height: 46rpx;
  75. border-radius: 20rpx;
  76. background: #2562FF;
  77. color: #fff;
  78. font-size: 24rpx;
  79. text-align: center;
  80. }
  81. .normal {
  82. background: transparent;
  83. color: #9480E4;
  84. }
  85. .videoItem {
  86. width: 100%;
  87. height: 264rpx;
  88. margin-bottom: 20rpx;
  89. border-bottom: 2rpx solid rgba(229, 229, 229, 0.5);
  90. }
  91. .ul {
  92. display: flex;
  93. justify-content: space-between;
  94. width: 100%;
  95. padding: 16rpx 0 0 0;
  96. }
  97. .li {
  98. text-align: center;
  99. color: #89899C;
  100. font-size: 24rpx;
  101. width: 33.333%;
  102. }
  103. .li:first-child {
  104. text-align: left;
  105. }
  106. .videoItem {
  107. display: flex;
  108. align-items: center;
  109. padding: 24rpx 16rpx 30rpx;
  110. }
  111. .right {
  112. flex: 1;
  113. padding-left: 32rpx;
  114. }
  115. .video {
  116. width: 100rpx;
  117. height: 216rpx;
  118. background-size: 100% 100%;
  119. position: relative;
  120. border-radius: 10rpx;
  121. overflow: hidden;
  122. }
  123. .videoImg {
  124. position: absolute;
  125. top: 0;
  126. left: 0;
  127. right: 0;
  128. margin: auto;
  129. width: 88rpx;
  130. height: 88rpx;
  131. border-radius: 50%;
  132. }
  133. .desc {
  134. display: inline-block;
  135. max-width: 206rpx;
  136. overflow: hidden;
  137. text-overflow: ellipsis;
  138. white-space: nowrap;
  139. color: #000;
  140. font-size: 26rpx;
  141. }
  142. .auth {
  143. width: 34rpx;
  144. height: 34rpx;
  145. margin: 0 10rpx;
  146. }
  147. .auth_text {
  148. display: inline-block;
  149. width: 200rpx;
  150. overflow: hidden;
  151. text-overflow: ellipsis;
  152. white-space: nowrap;
  153. color: #000;
  154. font-size: 26rpx;
  155. }
  156. .num {
  157. display: block;
  158. color: #000;
  159. font-size: 28rpx;
  160. line-height: 40rpx;
  161. font-weight: bold;
  162. margin-bottom: 6rpx;
  163. }
  164. .none {
  165. margin-top: 100rpx;
  166. width: 100%;
  167. color: #000;
  168. font-size: 24rpx;
  169. text-align: center;
  170. }
  171. .none image {
  172. width: 280rpx;
  173. height: auto;
  174. margin-bottom: 20rpx;
  175. }
  176. .button {
  177. margin-top: 40rpx;
  178. width: 200rpx;
  179. height: 60rpx;
  180. line-height: 60rpx;
  181. background: #2562FF;
  182. color: #fff;
  183. border-radius: 10rpx;
  184. }
  185. .follwImg {
  186. float: right;
  187. width: 40rpx;
  188. height: 40rpx;
  189. }
  190. .follwImg image {
  191. display: inline-block;
  192. width: 100%;
  193. height: 100%;
  194. }
  195. @keyframes remindMessage {
  196. 0% {
  197. -webkit-transform: translateX(0%);
  198. }
  199. 100% {
  200. -webkit-transform: translateX(-35%);
  201. }
  202. }
  203. .tongzhitext {
  204. margin-right:80rpx;
  205. margin-left: 20rpx;
  206. overflow: hidden;
  207. white-space: nowrap;
  208. text-overflow: ellipsis;
  209. }
  210. .tongzhi-text {
  211. font-size: 24rpx;
  212. line-height: 52rpx;
  213. animation: remindMessage 5s linear infinite 3s;
  214. width: 100%;
  215. color: #FF7500;
  216. display: block;
  217. }
  218. .notice-wrap {
  219. background: #ffebda;
  220. width: 100%;
  221. height: 52rpx;
  222. line-height: 52rpx;
  223. color: #FEF6EA;
  224. font-size: 28rpx;
  225. position: relative;
  226. /* margin-top: 80rpx; */
  227. /* border: 0.5px solid #FF8426; */
  228. }
  229. .closeView {
  230. width: 34rpx;
  231. height: 34rpx;
  232. position: absolute;
  233. right: 10rpx;
  234. top: 50%;
  235. transform: translateY(-50%);
  236. }