user.css 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  1. @charset "UTF-8";
  2. /*主色调*/
  3. /*文字文本*/
  4. /*单行省略号*/
  5. /*多行省略号*/
  6. /*箭头*/
  7. /**a标签hoverboder效果**/
  8. /**使用vw适配**/
  9. body {
  10. background: #f5f5f5;
  11. }
  12. .policy {
  13. padding: 0;
  14. }
  15. @media (min-width: 768px) {
  16. .policy {
  17. padding-left: 15px;
  18. padding-right: 15px;
  19. }
  20. }
  21. @media (min-width: 768px) {
  22. .user-box {
  23. margin-top: 40px;
  24. margin-bottom: 100px;
  25. }
  26. }
  27. .left, .right {
  28. padding: 0;
  29. }
  30. @media (min-width: 768px) {
  31. .left, .right {
  32. padding-left: 15px;
  33. padding-right: 15px;
  34. }
  35. }
  36. .user {
  37. background: #fff;
  38. text-align: center;
  39. padding: 30px 20px;
  40. position: relative;
  41. }
  42. @media (min-width: 768px) {
  43. .user {
  44. padding: 50px 20px;
  45. }
  46. }
  47. .user img {
  48. width: 90px;
  49. }
  50. .user p {
  51. color: #111;
  52. margin-top: 10px;
  53. font-size: 16px;
  54. }
  55. @media (min-width: 768px) {
  56. .user p {
  57. font-size: 18px;
  58. }
  59. }
  60. .user .logout-icon {
  61. width: 20px;
  62. position: absolute;
  63. right: 30px;
  64. top: 20px;
  65. }
  66. .user-tab {
  67. margin-top: 10px;
  68. background: #fff;
  69. }
  70. .user-tab:after {
  71. content: '';
  72. display: block;
  73. clear: both;
  74. }
  75. .user-tab a {
  76. display: block;
  77. padding: 12px;
  78. color: #111;
  79. font-size: 16px;
  80. -webkit-transition: all .5s ease;
  81. transition: all .5s ease;
  82. width: 50%;
  83. float: left;
  84. text-align: center;
  85. }
  86. @media (min-width: 768px) {
  87. .user-tab a {
  88. padding: 20px 40px;
  89. font-size: 18px;
  90. width: 100%;
  91. text-align: left;
  92. }
  93. }
  94. .user-tab a.cur {
  95. background: #ed4747;
  96. color: #fff;
  97. }
  98. .user-tab a:hover, .user-tab a:active {
  99. padding-left: 45px;
  100. }
  101. .con {
  102. background: #fff;
  103. padding: 0 15px 60px;
  104. }
  105. @media (min-width: 768px) {
  106. .con {
  107. padding: 0 60px 80px;
  108. }
  109. }
  110. .con .title-h {
  111. position: relative;
  112. padding-top: 40px;
  113. border-bottom: 1px solid #e0e0e0;
  114. background-repeat: no-repeat;
  115. background-position: 70% top;
  116. padding-bottom: 20px;
  117. }
  118. .con .title-h:after {
  119. content: '';
  120. display: block;
  121. clear: both;
  122. }
  123. @media (min-width: 768px) {
  124. .con .title-h {
  125. padding-bottom: 35px;
  126. }
  127. }
  128. .con h2 {
  129. color: #ed4747;
  130. font-size: 24px;
  131. }
  132. @media (min-width: 768px) {
  133. .con h2 {
  134. float: left;
  135. font-size: 30px;
  136. }
  137. }
  138. .con .policy-num {
  139. color: #333;
  140. font-size: 16px;
  141. margin-top: 10px;
  142. }
  143. @media (min-width: 768px) {
  144. .con .policy-num {
  145. float: right;
  146. }
  147. }
  148. .con table {
  149. margin-top: 10px;
  150. }
  151. @media (min-width: 768px) {
  152. .con table {
  153. margin-top: 20px;
  154. }
  155. }
  156. .con table tr, .con table th, .con table td {
  157. border: 0 !important;
  158. }
  159. .con .base-info {
  160. margin-top: 10px;
  161. }
  162. @media (min-width: 768px) {
  163. .con .base-info {
  164. margin-top: 20px;
  165. }
  166. }
  167. .con .base-info .table > tbody > tr > td, .con .policy-detail .table > tbody > tr > td {
  168. padding-top: 12px;
  169. padding-bottom: 12px;
  170. color: #333;
  171. font-size: 14px;
  172. width: 33.33%;
  173. }
  174. .con .base-info .table > tbody > tr > td span, .con .policy-detail .table > tbody > tr > td span {
  175. color: #cea2a2;
  176. }
  177. @media (min-width: 768px) {
  178. .con .base-info .table > tbody > tr > td, .con .policy-detail .table > tbody > tr > td {
  179. padding-top: 15px;
  180. padding-bottom: 15px;
  181. }
  182. }
  183. .con .policy-list .table > thead > tr > th {
  184. color: #666;
  185. font-size: 14px;
  186. font-weight: normal;
  187. padding-top: 18px;
  188. padding-bottom: 18px;
  189. }
  190. .con .policy-list .table > tbody > tr > td {
  191. padding-top: 18px;
  192. padding-bottom: 18px;
  193. color: #333;
  194. font-size: 14px;
  195. }
  196. .con .policy-list .table > tbody > tr > td.color a {
  197. color: #ed4747;
  198. }
  199. .con .policy-list .table > tbody > tr > td.color a:hover {
  200. text-decoration: underline;
  201. }
  202. .con .tips {
  203. margin-top: 50px;
  204. }
  205. .con .tips h6 {
  206. color: #333;
  207. font-size: 14px;
  208. margin-bottom: 15px;
  209. }
  210. .con .tips p {
  211. color: #666;
  212. font-size: 14px;
  213. margin-top: 6px;
  214. }
  215. .con .tips p a {
  216. font-size: 20px;
  217. color: #ed4747;
  218. }
  219. @media (min-width: 768px) {
  220. .con .tips p a {
  221. font-size: 24px;
  222. }
  223. }
  224. .policy-detail {
  225. padding: 10px 0;
  226. border-bottom: 1px solid #e0e0e0;
  227. }
  228. @media (min-width: 768px) {
  229. .policy-detail {
  230. padding: 20px 0;
  231. }
  232. }
  233. .policy-detail h4 {
  234. color: #111;
  235. padding: 10px 10px;
  236. font-size: 18px;
  237. }
  238. @media (min-width: 768px) {
  239. .policy-detail h4 {
  240. font-size: 24px;
  241. }
  242. }
  243. .policy-detail h4 a {
  244. float: right;
  245. font-size: 16px;
  246. color: #ed4747;
  247. }
  248. .policy-detail h4 a:hover {
  249. text-decoration: underline;
  250. }
  251. .policy-detail .table-box {
  252. display: none;
  253. }
  254. .back-nav {
  255. margin-bottom: 25px;
  256. margin-top: 15px;
  257. }
  258. @media (min-width: 768px) {
  259. .back-nav {
  260. margin-top: 0;
  261. }
  262. }
  263. .policy .title-h {
  264. padding: 50px 0 25px;
  265. }
  266. @media (min-width: 768px) {
  267. .policy .title-h {
  268. padding: 50px 0;
  269. }
  270. }
  271. .policy .table-box h6 {
  272. margin-top: 10px;
  273. margin-bottom: -20px;
  274. font-size: 15px;
  275. padding: 10px;
  276. }
  277. @media (min-width: 768px) {
  278. .policy .table-box h6 {
  279. margin-top: 20px;
  280. margin-bottom: -20px;
  281. font-size: 18px;
  282. }
  283. }
  284. .download {
  285. position: absolute;
  286. right: 0;
  287. top: 20px;
  288. }