No Description

index.css 5.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. * {
  2. color: #fff;
  3. font-size: .11rem;
  4. box-sizing: border-box;
  5. font-family: 'PingFang SC','Microsoft YaHei',SourceHanSansCN-Normal,HiraginoSansGB,HiraginoSans-W3,"Helvetica Neue",Helvetica,STHeiTi,sans-serif;
  6. }
  7. html {
  8. margin: 0;
  9. padding: 0;
  10. width: 100%;
  11. height: 100%;
  12. }
  13. body {
  14. min-height: 100vh;
  15. margin: 0;
  16. padding: 0;
  17. border: .01rem solid transparent;
  18. background-color: #A30D0F;
  19. background-image: url("../img/back.jpg");
  20. background-repeat: no-repeat;
  21. background-size: 100% 100%;
  22. text-align: center;
  23. }
  24. .title {
  25. width: 1.37rem;
  26. margin: 0 auto;
  27. margin-top: .7rem;
  28. display: block;
  29. }
  30. .alert-info {
  31. position: fixed;
  32. top: 1.74rem;
  33. right: 0;
  34. left: 0;
  35. bottom: 0;
  36. text-align: center;
  37. }
  38. .alert-info p {
  39. display: inline-block;
  40. height: 0.38rem;
  41. color: #fff;
  42. font-size: 0.14rem;
  43. line-height: 0.38rem;
  44. padding: 0 0.10rem;
  45. background-color: rgba(0, 0, 0, 0.7);
  46. border-radius: 5px;
  47. }
  48. .down {
  49. display: inline-block;
  50. width: 2.24rem;
  51. height: .27rem;
  52. line-height: .27rem;
  53. background: linear-gradient(90deg,#F73924,#FF4E3A);
  54. border-radius: .13rem;
  55. margin-top: .09rem;
  56. letter-spacing:.01rem;
  57. }
  58. #count,.count {
  59. font-weight: normal;
  60. }
  61. .main {
  62. width: 3.2rem;
  63. margin: 0 auto;
  64. margin-top: .26rem;
  65. padding: .28rem 0;
  66. background: linear-gradient(#F73924,#FF4E3A);
  67. border-radius: .4rem;
  68. }
  69. .tips {
  70. max-width: 2.64rem;
  71. text-align: left;
  72. margin: 0 auto;
  73. font-size: .13rem;
  74. line-height: .21rem;
  75. padding: 0 1em;
  76. position: relative;
  77. }
  78. .tips::before {
  79. content: "";
  80. width: .05rem;
  81. height: .05rem;
  82. background: #fff;
  83. border-radius: 50%;
  84. position: absolute;
  85. left: 0em;
  86. top: 0;
  87. margin-top: .07rem;
  88. }
  89. .num {
  90. font-weight: normal;
  91. }
  92. .dirList {
  93. display: inline-block;
  94. padding: 0 .05rem;
  95. height: .6rem;
  96. line-height: .3rem;
  97. background: #FFFFFF;
  98. border-radius: .15rem;
  99. }
  100. .active {
  101. position: relative;
  102. margin-top: .3rem;
  103. margin-bottom: .15rem;
  104. }
  105. .active::before {
  106. content: "";
  107. display: inline-block;
  108. position: absolute;
  109. left: 20%;
  110. top: 50%;
  111. transform: translateY(-50%);
  112. width: 20%;
  113. height: .01rem;
  114. background: #FFFFFF;
  115. }
  116. .active::after {
  117. content: "";
  118. display: inline-block;
  119. position: absolute;
  120. right: 20%;
  121. top: 50%;
  122. transform: translateY(-50%);
  123. width: 20%;
  124. height: .01rem;
  125. background: #FFFFFF;
  126. }
  127. .newFont {
  128. font-size: .13rem;
  129. color: #FFDEA7;
  130. margin-top: .11rem;
  131. margin-bottom: .05rem;
  132. }
  133. .radius {
  134. display: inline-block;
  135. padding: 0 .1rem;
  136. background: #700707;
  137. border-radius: .19rem;
  138. color: #FFDEA7;
  139. font-size: .15rem;
  140. }
  141. #count {
  142. font-weight: normal;
  143. }
  144. .mainOther {
  145. width: 3.2rem;
  146. margin: 0 auto;
  147. margin-top: .26rem;
  148. padding: .28rem 0;
  149. padding-right: .03rem;
  150. background: linear-gradient(#F73924,#FF4E3A);
  151. border-radius: .4rem;
  152. overflow: hidden;
  153. }
  154. #info {
  155. display:inline-flex;
  156. max-width: 100%;
  157. margin: 0 auto;
  158. background: #FFFFFF;
  159. border-radius: .15rem;
  160. border-radius: .4rem;
  161. }
  162. #info .avatar {
  163. width: .4rem;
  164. height: .4rem;
  165. }
  166. .img {
  167. display: table-cell;
  168. vertical-align: middle;
  169. }
  170. #info .right {
  171. height: .4rem;
  172. padding-left: .08rem;
  173. padding-right: .08rem;
  174. overflow-x: scroll;
  175. }
  176. #info .name,#info .descri {
  177. text-align: left;
  178. font-size: .13rem;
  179. display: block;
  180. line-height: .13rem;
  181. color: #A94400;
  182. }
  183. #info .descri {
  184. font-size: .13rem;
  185. line-height: .4rem;
  186. }
  187. .swiper-wrapper {
  188. display: inline-block;
  189. }
  190. .swiper-slide {
  191. color: #A94400;
  192. white-space: nowrap;
  193. width: 100%;
  194. height: .3rem;
  195. overflow: hidden;
  196. text-overflow:ellipsis;
  197. }
  198. .dirList span {
  199. color: #A94400;
  200. }
  201. .avatar {
  202. width: .22rem;
  203. height: .22rem;
  204. border-radius: 50%;
  205. vertical-align: middle;
  206. }
  207. .center {
  208. margin-top: 3%;
  209. }
  210. #button {
  211. width: 2.62rem;
  212. height: .44rem;
  213. border-radius: .22rem;
  214. line-height: .44rem;
  215. font-weight: bold;
  216. font-size: .15rem;
  217. margin: 0 auto;
  218. background: #FFF55A;
  219. color: #A50000;
  220. margin-top: .3rem;
  221. position: fixed;
  222. bottom: .25rem;
  223. left: 50%;
  224. margin-left: -1.31rem;
  225. }
  226. #buttonOne {
  227. width: 1.43rem;
  228. height: .44rem;
  229. border-radius: .22rem;
  230. line-height: .44rem;
  231. font-weight: bold;
  232. font-size: .15rem;
  233. margin: 0 auto;
  234. background: #FFF55A;
  235. color: #A50000;
  236. margin-top: .3rem;
  237. position: fixed;
  238. bottom: .25rem;
  239. left: 50%;
  240. margin-left: -1.51rem;
  241. }
  242. #buttonOne:last-child {
  243. width: 1.43rem;
  244. height: .44rem;
  245. border-radius: .22rem;
  246. line-height: .44rem;
  247. font-weight: bold;
  248. font-size: .15rem;
  249. margin: 0 auto;
  250. background: #FFF55A;
  251. color: #A50000;
  252. margin-top: .3rem;
  253. position: fixed;
  254. bottom: .25rem;
  255. right: 50%;
  256. margin-right: -1.51rem;
  257. }
  258. .smaIcon {
  259. width: .2rem;
  260. height: .2rem;
  261. vertical-align: middle;
  262. }
  263. #other,#newUser {
  264. display: none;
  265. margin-bottom: .9rem;
  266. }
  267. #notice {
  268. position: fixed;
  269. right: .2rem;
  270. bottom: .7rem;
  271. width: 1rem;
  272. height: 1rem;
  273. border: none;
  274. background-image: url("../img/fix.png");
  275. background-size: 100% 100%;
  276. -webkit-animation: start 2s infinite ease-in-out;
  277. }
  278. @-webkit-keyframes start {
  279. 0%{transform: scale(1); }
  280. 25%{transform: scale(1.1);}
  281. 50%{transform: scale(1);}
  282. 75%{transform: scale(1.1);}
  283. }
  284. @-moz-keyframes start {
  285. 0%{transform: scale(1); }
  286. 25%{transform: scale(1.1);}
  287. 50%{transform: scale(1);}
  288. 75%{transform: scale(1.1);}
  289. }
  290. @keyframes start {
  291. 0%{transform: scale(1); }
  292. 25%{transform: scale(1.1);}
  293. 50%{transform: scale(1);}
  294. 75%{transform: scale(1.1);}
  295. }