网站
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

393 行
7.1 KiB

  1. /*公共主题参数*/
  2. :root{
  3. --color:'';
  4. --icon:'';
  5. --logo:'';
  6. /*--color:#e8041f;*/
  7. }
  8. #page{
  9. height: 100vh;
  10. overflow: hidden;
  11. background: url("../images/page_bg.jpg") no-repeat center;
  12. background-size: 100% 100%;
  13. }
  14. .header{
  15. text-align: center;
  16. height: 15vh;
  17. width: 90%;
  18. margin: 0 auto;
  19. }
  20. .header p{
  21. color: #b6c8ff;
  22. margin-top: 5px;
  23. }
  24. .header i{
  25. display: block;
  26. width: 2.7vh;
  27. height: 2.7vh;
  28. margin: 0 auto;
  29. position: relative;
  30. top: 50%;
  31. transform: translateY(-50%);
  32. transition: all 0.4s ease-in-out;
  33. }
  34. #titContent{
  35. font-size: 4vh;
  36. font-weight: bold;
  37. color: #ffffff;
  38. font-style: italic;
  39. }
  40. .active .i1{
  41. background: url("../images/nav_5.png") no-repeat center;
  42. background-size: 100% 100%;
  43. }
  44. .active .i2{
  45. background: url("../images/nav_6.png") no-repeat center;
  46. background-size: 100% 100%;
  47. }
  48. .active .i3{
  49. background: url("../images/nav_7.png") no-repeat center;
  50. background-size: 100% 100%;
  51. }
  52. .active .i4{
  53. background: url("../images/nav_8.png") no-repeat center;
  54. background-size: 100% 100%;
  55. }
  56. .header .active{
  57. position: relative;
  58. }
  59. .header .header_nav div{
  60. width: 5vh;
  61. height: 5vh;
  62. margin: 0 auto;
  63. position: relative;
  64. }
  65. .header .header_nav:hover .i1{
  66. background: url("../images/nav_5.png") no-repeat center;
  67. background-size: 100% 100%;
  68. transition: all 0.4s ease-in-out;
  69. }
  70. .header .header_nav:hover .i2{
  71. background: url("../images/nav_6.png") no-repeat center;
  72. background-size: 100% 100%;
  73. transition: all 0.4s ease-in-out;
  74. }
  75. .header .header_nav:hover .i3{
  76. background: url("../images/nav_7.png") no-repeat center;
  77. background-size: 100% 100%;
  78. transition: all 0.4s ease-in-out;
  79. }
  80. .header .header_nav:hover .i4{
  81. background: url("../images/nav_8.png") no-repeat center;
  82. background-size: 100% 100%;
  83. transition: all 0.4s ease-in-out;
  84. }
  85. .header .header_nav{
  86. cursor: pointer;
  87. }
  88. .header .header_nav:hover p{
  89. color: #46cdf3;
  90. transition: all 0.4s ease-in-out;
  91. }
  92. .header .header_nav p{
  93. transition: all 0.4s ease-in-out;
  94. }
  95. .header .header_nav .i_bg{
  96. cursor: pointer;
  97. display: none;
  98. transition: all 0.4s ease-in-out;
  99. width: 5vh;
  100. height: 5vh;
  101. }
  102. .header .active .i_bg{
  103. display: block!important;
  104. position: absolute;
  105. top: 0;
  106. }
  107. .header .active p{
  108. color: #46cdf3;
  109. }
  110. .i1{
  111. background: url("../images/nav_1.png") no-repeat center;
  112. background-size: 100% 100%;
  113. }
  114. .i2{
  115. background: url("../images/nav_2.png") no-repeat center;
  116. background-size: 100% 100%;
  117. }
  118. .i3{
  119. background: url("../images/nav_3.png") no-repeat center;
  120. background-size: 100% 100%;
  121. }
  122. .i4{
  123. background: url("../images/nav_4.png") no-repeat center;
  124. background-size: 100% 100%;
  125. }
  126. .search{
  127. /*background-color: #e1e4ef;*/
  128. width: 75%;
  129. margin: 0 auto;
  130. }
  131. .search input[type="search"]{
  132. padding: 2vh 20px 2vh 4%;
  133. width: 40%;
  134. border-radius: 15px;
  135. font-size: 16px;
  136. background: #e1e4ef url("../images/search_icon.png") no-repeat left;
  137. background-position-x: 4%;
  138. }
  139. .new{
  140. width: 75%;
  141. margin: 0 auto;
  142. background: rgba(225,228,238,0.9);
  143. height: 50vh;
  144. margin-top: 3vh;
  145. border-radius: 15px;
  146. padding: 3vh;
  147. display: flex;
  148. /*align-items: center;*/
  149. }
  150. .personalTit-banner {
  151. width: 45%;
  152. height: 100%;
  153. border-radius: 15px;
  154. overflow: hidden;
  155. }
  156. .new_list{
  157. margin-left: 2%;
  158. width: 53%;
  159. padding: 1vh 0;
  160. }
  161. .new_list_tit{
  162. display: flex;
  163. justify-content: space-between;
  164. align-items: center;
  165. }
  166. .new_list_tit p:first-child{
  167. font-size: 18px;
  168. color: #1663ff;
  169. border-left: 3px solid #1663ff;
  170. padding-left: 10px;
  171. font-weight: bold;
  172. line-height: 1;
  173. }
  174. .new_list_tit p:last-child{
  175. color: #848484;
  176. padding-left: 20px;
  177. line-height: 1;
  178. background: url("../images/date.png") no-repeat left;
  179. }
  180. .new_list_li{
  181. display: flex;
  182. justify-content: space-between;
  183. align-items: center;
  184. margin-top: 2.5vh;
  185. cursor: pointer;
  186. }
  187. .new_list_li:hover p{
  188. color: #1663ff!important;
  189. transition: all 0.4s ease-in-out;
  190. }
  191. .new_list_li:hover a{
  192. color: #1663ff!important;
  193. transition: all 0.4s ease-in-out;
  194. }
  195. .new_list_li p{
  196. transition: all 0.4s ease-in-out;
  197. }
  198. .new_list_li a{
  199. font-size: 16px;
  200. display: -webkit-box;
  201. -webkit-box-orient: vertical;
  202. -webkit-line-clamp: 1;
  203. word-break: break-all;
  204. overflow: hidden;
  205. transition: all 0.4s ease-in-out;
  206. }
  207. .new_list_li p:last-child{
  208. color: #848484;
  209. flex-shrink: 0;
  210. }
  211. .footer{
  212. height: 20vh;
  213. background: #e1e4ef;
  214. margin-top: 6.3vh;
  215. display: flex;
  216. flex-direction: column;
  217. justify-content: space-between;
  218. padding: 1.5vh 12.5%;
  219. }
  220. .footer_link_tit{
  221. background: url("../images/footer_icon_1.png") no-repeat left;
  222. padding-left: 18px;
  223. color: #939393;
  224. font-size: 16px;
  225. }
  226. .footer_link{
  227. display: flex;
  228. align-items: center;
  229. }
  230. .footer_link img{
  231. display: block;
  232. }
  233. .footer_link .link_tt{
  234. position: absolute;
  235. top: 50%;
  236. left: 50%;
  237. transform: translate(-50%,-50%);
  238. color: #ffffff;
  239. font-size: 18px;
  240. font-weight: bold;
  241. }
  242. .footer_link a{
  243. color: #6d6d6d;
  244. font-size: 16px;
  245. margin-left: 20px;
  246. position: relative;
  247. }
  248. .footer_link_filings{
  249. display: flex;
  250. }
  251. .footer_link_filings_left{
  252. display: flex;
  253. }
  254. .footer_link_filings_right{
  255. display: flex;
  256. margin-left: 40px;
  257. }
  258. .footer_link_filings_left p{
  259. background: url("../images/footer_filings.png") no-repeat left;
  260. padding-left: 25px;
  261. }
  262. .footer_link_filings p{
  263. color: #939393;
  264. font-size: 16px;
  265. }
  266. .footer_link_filings a{
  267. color: #6d6d6d;
  268. font-size: 16px;
  269. margin-left: 20px;
  270. }
  271. .footer_link_company{
  272. display: flex;
  273. align-items: center;
  274. }
  275. .footer_link_company div{
  276. display: flex;
  277. align-items: center;
  278. margin-right: 40px;
  279. }
  280. .footer_link_company p{
  281. color: #939393;
  282. font-size: 16px;
  283. }
  284. .footer_link_company a{
  285. color: #6d6d6d;
  286. font-size: 16px;
  287. margin-left: 20px;
  288. }
  289. .xuanzhuan {
  290. -webkit-transition-property: -webkit-transform;
  291. -webkit-transition-duration: 1s;
  292. -moz-transition-property: -moz-transform;
  293. -moz-transition-duration: 1s;
  294. -webkit-animation: opacity2 2s linear infinite;
  295. -moz-animation: opacity2 2s linear infinite;
  296. -o-animation: opacity2 2s linear infinite;
  297. animation: opacity2 2s linear infinite;
  298. }
  299. @-webkit-keyframes rotate {
  300. from {
  301. -webkit-transform: rotate(0deg)
  302. }
  303. to {
  304. -webkit-transform: rotate(360deg)
  305. }
  306. }
  307. @-moz-keyframes rotate {
  308. from {
  309. -moz-transform: rotate(0deg)
  310. }
  311. to {
  312. -moz-transform: rotate(359deg)
  313. }
  314. }
  315. @-o-keyframes rotate {
  316. from {
  317. -o-transform: rotate(0deg)
  318. }
  319. to {
  320. -o-transform: rotate(359deg)
  321. }
  322. }
  323. @keyframes rotate {
  324. from {
  325. transform: rotate(0deg)
  326. }
  327. to {
  328. transform: rotate(359deg)
  329. }
  330. }
  331. @keyframes opacity2 {
  332. 0% {
  333. opacity: 1;
  334. }
  335. 50% {
  336. opacity: 0.5;
  337. }
  338. 100% {
  339. opacity: 1;
  340. }
  341. }
  342. .hotFile{
  343. text-transform:uppercase;
  344. background: -webkit-linear-gradient(45deg,#e95616,#56e916,#e716e9,#1616e9);
  345. -moz-linear-gradient(45deg,#e95616,#56e916,#e716e9,#1616e9);
  346. -ms-linear-gradient(45deg,#e95616,#56e916,#e716e9,#1616e9);/* 渐变背景 */
  347. color:transparent;
  348. /*设置字体颜色透明*/
  349. -webkit-background-clip: text;
  350. /*背景裁剪为文本形式*/
  351. animation: ran 5s linear infinite;
  352. /*动态20s展示*/
  353. }
  354. @keyframes ran {
  355. from {
  356. backgroud-position: 0 0;
  357. }
  358. to {
  359. background-position: 1000px 0;
  360. }
  361. }