网站
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.css 12 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652
  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/index_bg.png") 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. }
  22. .header i{
  23. display: block;
  24. width: 2.7vh;
  25. height: 2.7vh;
  26. margin: 0 auto;
  27. position: relative;
  28. top: 50%;
  29. transform: translateY(-50%);
  30. transition: all 0.4s ease-in-out;
  31. }
  32. #titContent{
  33. font-size: 4vh;
  34. font-weight: bold;
  35. color: #262D31;
  36. background: url("../images/tt_icon.png") no-repeat left center;
  37. background-size: auto 50px;
  38. padding-left: 70px;
  39. }
  40. #titContent span{
  41. line-height: 1;
  42. }
  43. #titContent span:nth-child(2){
  44. font-size: 1.5vh;
  45. font-weight: normal;
  46. color: #8C979C;
  47. display: block;
  48. }
  49. .header .active{
  50. position: relative;
  51. }
  52. .header .header_nav div{
  53. width: 5vh;
  54. height: 5vh;
  55. margin: 0 auto;
  56. position: relative;
  57. }
  58. .header .header_nav{
  59. display: flex;
  60. align-items: center;
  61. }
  62. .header .user_box{
  63. display: flex;
  64. align-items: center;
  65. }
  66. .header .user_box p{
  67. margin-right: 10px;
  68. }
  69. .header .header_nav:hover p{
  70. transition: all 0.4s ease-in-out;
  71. }
  72. .header .header_nav p{
  73. transition: all 0.4s ease-in-out;
  74. margin-right: 20px;
  75. }
  76. .header .header_nav .i_bg{
  77. cursor: pointer;
  78. display: none;
  79. transition: all 0.4s ease-in-out;
  80. width: 5vh;
  81. height: 5vh;
  82. }
  83. .header .active .i_bg{
  84. display: block!important;
  85. position: absolute;
  86. top: 0;
  87. }
  88. .header .active p{
  89. color: #46cdf3;
  90. }
  91. .i1{
  92. background: url("../images/nav_1.png") no-repeat center;
  93. background-size: 100% 100%;
  94. }
  95. .i2{
  96. background: url("../images/nav_2.png") no-repeat center;
  97. background-size: 100% 100%;
  98. }
  99. .i3{
  100. background: url("../images/nav_3.png") no-repeat center;
  101. background-size: 100% 100%;
  102. }
  103. .i4{
  104. background: url("../images/nav_4.png") no-repeat center;
  105. background-size: 100% 100%;
  106. }
  107. .i5{
  108. background: url("../images/nav_9.png") no-repeat center;
  109. background-size: 100% 100%;
  110. }
  111. .search{
  112. /*background-color: #e1e4ef;*/
  113. width: 75%;
  114. margin: 0 auto;
  115. }
  116. .search input[type="search"]{
  117. padding: 2vh 20px 2vh 4%;
  118. width: 40%;
  119. border-radius: 15px;
  120. font-size: 16px;
  121. background: #e1e4ef url("../images/search_icon.png") no-repeat left;
  122. background-position-x: 4%;
  123. }
  124. .new{
  125. width: 75%;
  126. margin: 0 auto;
  127. height: 65vh;
  128. border-radius: 15px;
  129. display: flex;
  130. /*align-items: center;*/
  131. }
  132. .new_list_main{
  133. width: 75%;
  134. margin: 0 auto;
  135. height: 50vh;
  136. margin-top: 3vh;
  137. display: flex;
  138. justify-content: space-between;
  139. /*align-items: center;*/
  140. }
  141. .new_list_left{
  142. background: rgba(225,228,238,0.9);
  143. border-radius: 15px;
  144. padding: 3vh;
  145. width: 30%;
  146. }
  147. .new_list_right{
  148. background: rgba(225,228,238,0.9);
  149. border-radius: 15px;
  150. padding: 3vh;
  151. width: 68%;
  152. }
  153. .login_form_main{
  154. display: flex;
  155. align-items: center;
  156. height: 100%;
  157. /*background: linear-gradient(to bottom right, rgb(168, 249, 252), rgb(105, 119, 249));*/
  158. }
  159. .login_form_main img{
  160. width: 50%;
  161. margin: 0 auto;
  162. display: block;
  163. }
  164. .login_from {
  165. width: 25%;
  166. background: #ffffff;
  167. background-size: 100% 100%;
  168. padding: 3.2vh;
  169. border-radius: 20PX 20PX 20PX 20PX;
  170. margin-left: 9vh;
  171. }
  172. .btn{
  173. width: 100%;
  174. height: 4vh;
  175. margin:0 auto;
  176. font-size: 16px;
  177. color: #fff;
  178. line-height: 4vh;
  179. text-align: center;
  180. border: none;
  181. background: linear-gradient(to right , #47a5ff , #2a39fb);
  182. border-radius: 5vh;
  183. cursor: pointer;
  184. }
  185. .login_from .flex_block {
  186. margin-bottom: 2vh;
  187. display: flex;
  188. justify-content: space-between;
  189. }
  190. .login_from .flex_block .flex_input_main {
  191. position: relative;
  192. display: flex;
  193. flex: 1;
  194. align-items: center;
  195. background: #E7F0FF;
  196. border-radius: 10PX;
  197. height: 5vh;
  198. }
  199. .login_from .flex_block .flex_input_main .icon_wrap.user {
  200. background: url('../images/login_icon_1.png') no-repeat;
  201. background-size: 100% 100%;
  202. margin-left: 30px;
  203. }
  204. .login_from .flex_block .flex_input_main .icon_wrap.password {
  205. background: url('../images/login_icon_2_code.png') no-repeat;
  206. height: 40%;
  207. background-size: 100% 100%;
  208. margin-left: 30px;
  209. }
  210. .login_from .flex_block .flex_input_main .icon_wrap.valid {
  211. background: url('../images/login_icon_3.png') no-repeat;
  212. background-size: 100% 100%;
  213. margin-left: 30px;
  214. }
  215. .login_from .flex_block .flex_input_main .icon_wrap {
  216. width: 2.5vh;
  217. height: 2.5vh;
  218. }
  219. .login_from .flex_block .flex_input_main .input_wrap {
  220. flex: 1;
  221. margin-left: 16px;
  222. padding-right: 30px;
  223. }
  224. .login_from .flex_block .flex_input_main .input_wrap .ipt {
  225. width: 100%;
  226. height: 4vh;
  227. background: transparent;
  228. font-size: 16px;
  229. color: #3f3d56;
  230. }
  231. .login_from .flex_block .flex_input_main .showHidden {
  232. width: 32px;
  233. height: 32px;
  234. background: url('../images/login_icon_4.png') no-repeat;
  235. background-size: 100% 100%;
  236. position: absolute;
  237. right: 38px;
  238. cursor: pointer;
  239. }
  240. .login_from .flex_block .flex_input_main .showHidden.ico_hide {
  241. background: url('../images/login_icon_5.png') no-repeat;
  242. background-size: 100% 100%;
  243. }
  244. .login_from .flex_block .flex_input_main.valid {
  245. flex: 0 0 380px;
  246. }
  247. .login_from .flex_block .valid_main {
  248. width: 165px;
  249. height: 62px;
  250. border-radius: 30px;
  251. }
  252. .login_from .flex_block .valid_main img {
  253. width: 100%;
  254. height: 100%;
  255. border-radius: 30px;
  256. }
  257. .personalTit-banner {
  258. width: 45%;
  259. height: 100%;
  260. border-radius: 15px;
  261. overflow: hidden;
  262. }
  263. .new_list{
  264. background: url("../images/index_nav_bg.png") no-repeat center;
  265. background-size: 100% 100%;
  266. width: 33%;
  267. padding: 4%;
  268. display: flex;
  269. flex-direction: column;
  270. justify-content: space-between;
  271. cursor: pointer;
  272. transition: all 0.4s ease-in-out;
  273. }
  274. .new_list:hover{
  275. background: url("../images/index_nav_bg_active.png") no-repeat center;
  276. background-size: 100% 100%;
  277. transition: all 0.4s ease-in-out;
  278. }
  279. .new_list:hover .new_list_tit p:nth-child(1){
  280. color: #ffffff;
  281. transition: all 0.4s ease-in-out;
  282. }
  283. .new_list:hover .new_list_tit p:last-child{
  284. color: #187CF4;
  285. background: #ffffff;
  286. transition: all 0.4s ease-in-out;
  287. }
  288. .new_list:hover .new_list_con{
  289. color: #ffffff;
  290. transition: all 0.4s ease-in-out;
  291. }
  292. .new_list:hover .new_list_img i{
  293. background: url("../images/index_nav_go_active.png") no-repeat center;
  294. background-size: 100% 100%;
  295. transition: all 0.4s ease-in-out;
  296. }
  297. .new_list_img{
  298. display: flex;
  299. align-items: center;
  300. justify-content: space-between;
  301. }
  302. .new_list_img i{
  303. display: block;
  304. width: 64px;
  305. height: 64px;
  306. background: url("../images/index_nav_go.png") no-repeat center;
  307. background-size: 100% 100%;
  308. transition: all 0.4s ease-in-out;
  309. }
  310. .new_list_tit{
  311. display: flex;
  312. align-items: center;
  313. margin-bottom: 15px;
  314. justify-content: space-between;
  315. }
  316. .new_list_tit p:nth-child(1){
  317. font-weight: bold;
  318. font-size: 28px;
  319. color: #262D31;
  320. line-height: 39px;
  321. text-align: left;
  322. transition: all 0.4s ease-in-out;
  323. }
  324. .new_list_tit p:last-child{
  325. font-size: 14px;
  326. color: #ffffff;
  327. background: linear-gradient( 270deg, #187CF4 0%, #2538FE 100%);
  328. border-radius: 17px 17px 17px 17px;
  329. width: 66px;
  330. height: 34px;
  331. line-height: 34px;
  332. text-align: center;
  333. transition: all 0.4s ease-in-out;
  334. }
  335. .new_list_con{
  336. font-size: 16px;
  337. color: #ABBACC;
  338. line-height: 22px;
  339. margin-bottom: auto;
  340. transition: all 0.4s ease-in-out;
  341. }
  342. .new_list_li{
  343. display: flex;
  344. justify-content: space-between;
  345. align-items: center;
  346. line-height: 4.5vh;
  347. cursor: pointer;
  348. }
  349. .new_list_li a{
  350. width: 50%;
  351. }
  352. .new_list_li:first-child{
  353. /*margin-top: 2.5vh;*/
  354. }
  355. .new_list_li:hover p{
  356. color: #1663ff!important;
  357. transition: all 0.4s ease-in-out;
  358. }
  359. .new_list_li:hover a{
  360. color: #1663ff!important;
  361. transition: all 0.4s ease-in-out;
  362. }
  363. .new_list_li p{
  364. transition: all 0.4s ease-in-out;
  365. flex: 1;
  366. }
  367. .new_list_li p:last-child{
  368. text-align: right;
  369. }
  370. .new_list_li a{
  371. font-size: 16px;
  372. display: -webkit-box;
  373. -webkit-box-orient: vertical;
  374. -webkit-line-clamp: 1;
  375. word-break: break-all;
  376. overflow: hidden;
  377. transition: all 0.4s ease-in-out;
  378. }
  379. .new_list_li p:last-child{
  380. color: #848484;
  381. flex-shrink: 0;
  382. }
  383. .footer_main{
  384. height: 20vh;
  385. background: #ffffff;
  386. display: flex;
  387. padding: 1.5vh 20%;
  388. align-items: center;
  389. }
  390. #ewm{
  391. width: 15vh;
  392. height: 15vh;
  393. }
  394. .footer{
  395. display: flex;
  396. flex-direction: column;
  397. justify-content: center;
  398. height: 17vh;
  399. flex: 1;
  400. }
  401. .footer_link_tit{
  402. background: url("../images/footer_icon_1.png") no-repeat left;
  403. padding-left: 18px;
  404. color: #939393;
  405. font-size: 16px;
  406. }
  407. .footer_link{
  408. display: flex;
  409. align-items: center;
  410. }
  411. .footer_link img{
  412. display: block;
  413. transition:all 0.4s ease-in-out;
  414. }
  415. .footer_link a:hover img{
  416. transform: scale(1.1);
  417. transition:all 0.4s ease-in-out;
  418. }
  419. .footer_link a:hover{
  420. box-shadow: 0 0 50px #000000 inset;
  421. background-size: 110% 110%!important;
  422. transition:all 0.4s ease-in-out;
  423. }
  424. .footer_link .link_tt{
  425. position: absolute;
  426. top: 50%;
  427. left: 50%;
  428. transform: translate(-50%,-50%);
  429. color: #ffffff;
  430. font-size: 18px;
  431. font-weight: bold;
  432. }
  433. .footer_link a{
  434. color: #6d6d6d;
  435. font-size: 16px;
  436. margin-left: 20px;
  437. position: relative;
  438. overflow: hidden;
  439. border-radius: 8px;
  440. display: block;
  441. height: 74px;
  442. width: 472px;
  443. transition:all 0.4s ease-in-out;
  444. }
  445. .footer_link_filings{
  446. display: flex;
  447. align-items: center;
  448. }
  449. .footer_link_filings_left{
  450. margin-right: 15px;
  451. }
  452. .footer_link_filings_left p:nth-child(2){
  453. font-size: 14px;
  454. text-align: center;
  455. }
  456. .footer_link_filings_left p:nth-child(1){
  457. color: #626363;
  458. }
  459. .footer_link_filings p{
  460. color: #939393;
  461. font-size: 16px;
  462. }
  463. .footer_link_filings a{
  464. color: #6d6d6d;
  465. font-size: 16px;
  466. margin-left: 20px;
  467. }
  468. .footer_link_company{
  469. display: flex;
  470. align-items: center;
  471. }
  472. .footer_link_company div{
  473. }
  474. .footer_link_company p{
  475. color: #939393;
  476. font-size: 16px;
  477. line-height: 48px;
  478. }
  479. .footer_link_company a{
  480. color: #6d6d6d;
  481. font-size: 16px;
  482. }
  483. .xuanzhuan {
  484. -webkit-transition-property: -webkit-transform;
  485. -webkit-transition-duration: 1s;
  486. -moz-transition-property: -moz-transform;
  487. -moz-transition-duration: 1s;
  488. -webkit-animation: opacity2 2s linear infinite;
  489. -moz-animation: opacity2 2s linear infinite;
  490. -o-animation: opacity2 2s linear infinite;
  491. animation: opacity2 2s linear infinite;
  492. }
  493. @-webkit-keyframes rotate {
  494. from {
  495. -webkit-transform: rotate(0deg)
  496. }
  497. to {
  498. -webkit-transform: rotate(360deg)
  499. }
  500. }
  501. @-moz-keyframes rotate {
  502. from {
  503. -moz-transform: rotate(0deg)
  504. }
  505. to {
  506. -moz-transform: rotate(359deg)
  507. }
  508. }
  509. @-o-keyframes rotate {
  510. from {
  511. -o-transform: rotate(0deg)
  512. }
  513. to {
  514. -o-transform: rotate(359deg)
  515. }
  516. }
  517. @keyframes rotate {
  518. from {
  519. transform: rotate(0deg)
  520. }
  521. to {
  522. transform: rotate(359deg)
  523. }
  524. }
  525. @keyframes opacity2 {
  526. 0% {
  527. opacity: 1;
  528. }
  529. 50% {
  530. opacity: 0.5;
  531. }
  532. 100% {
  533. opacity: 1;
  534. }
  535. }
  536. .hotFile{
  537. text-transform:uppercase;
  538. background: -webkit-linear-gradient(45deg,#e95616,#56e916,#e716e9,#1616e9);
  539. -moz-linear-gradient(45deg,#e95616,#56e916,#e716e9,#1616e9);
  540. -ms-linear-gradient(45deg,#e95616,#56e916,#e716e9,#1616e9);/* 渐变背景 */
  541. color:transparent;
  542. /*设置字体颜色透明*/
  543. -webkit-background-clip: text;
  544. /*背景裁剪为文本形式*/
  545. animation: ran 5s linear infinite;
  546. /*动态20s展示*/
  547. }
  548. @keyframes ran {
  549. from {
  550. backgroud-position: 0 0;
  551. }
  552. to {
  553. background-position: 1000px 0;
  554. }
  555. }
  556. .tab_box{
  557. display: flex;
  558. flex-wrap: wrap;
  559. justify-content: space-between;
  560. align-items: center;
  561. }
  562. .tab_box img{
  563. display: block;
  564. width: 47%;
  565. cursor: pointer;
  566. margin-bottom: 1.5vh;
  567. transition:all 0.2s ease-in-out;
  568. }
  569. .tab_box img:hover{
  570. transform: scale(1.1);
  571. transition:all 0.2s ease-in-out;
  572. }
  573. #new_list_3 .tab span{
  574. cursor: pointer;
  575. color: #999999;
  576. margin-right: 15px;
  577. }
  578. #new_list_3 .tab span.act{
  579. font-size: 20px;
  580. color: #1663ff;
  581. font-weight: bold;
  582. line-height: 1;
  583. }