@charset "utf-8";
/* CSS Document */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-thumb {
  background-color: #000;
}
::-webkit-scrollbar-track {
  background-color: #eee;
}
::-webkit-scrollbar-thumb:horizontal {
  background-color: #000;
}
::-webkit-scrollbar-track:horizontal {
  background-color: #000;
}
::-webkit-scrollbar-corner {
  background-color: #000;
}
* {
  box-sizing: border-box;
  outline: none;
}
html,
body {
  width: 100%;
  height: 100%;
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}
body {
  font-family: PingFangTC-Regular, "Noto Sans SC", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /*修正手持设备字体变化*/
  -webkit-text-size-adjust: none;
  margin: 0px;
  padding: 0px;
}
body,
td,
th {
  color: #000;
  line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: PingFangTC-Regular, "Noto Sans SC", sans-serif;
  font-weight: normal;
  font-size: 100%;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var,
span {
  font-style: normal;
  font-family: PingFangTC-Regular, "Noto Sans SC", sans-serif;
}
img {
  border: none;
}
ol,
ul,
li {
  list-style: none;
}
input,
textarea,
select,
button {
  font-family: PingFangTC-Regular, "Noto Sans SC", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
input,
textarea,
select {
  *font-size: 100%;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
a:link {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: #213692;
}
a:active {
  text-decoration: none;
}
dl,
dd,
dt {
  margin: 0px;
  padding: 0px;
}
/* css common */
.rel {
  position: relative;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
  overflow: hidden;
}
.clearfix {
  *zoom: 1;
}
.lt,
.left {
  float: left;
}
.rt,
.right {
  float: right;
}
.clear,
.clr {
  clear: both;
}
.f-cb {
  zoom: 1;
}
.f-cb:after {
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;
  content: ".";
}
.fl {
  float: left;
  display: inline;
}
.fr {
  float: right;
  display: inline;
}
.por {
  position: relative;
}
.poa {
  position: absolute;
}
.poa-f {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.ovh {
  overflow: hidden;
}
.noselect {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.z1 {
  z-index: 1;
}
.z2 {
  z-index: 2;
}
.z3 {
  z-index: 3;
}
.dn {
  display: none;
}
.width-full {
  width: 100%;
}
.height-full {
  height: 100%;
}
.dib {
  display: inline-block;
}
.wrap {
  width: 74%;
  margin: 0 auto;
}
.indent {
  text-indent: 2em;
}
@media (max-width: 1600px) {
  body {
    font-size: 16px;
  }
  input,
  textarea,
  select,
  button {
    font-size: 16px;
  }
  .wrap{
    width:84%;
  }
}
@media (max-width: 1360px) {
    .wrap {
      width: 94%;
    }
}
@media (max-width: 992px) {
  body {
    font-size: 14px;
  }
  body,
  td,
  th {
    line-height: 1.5;
  }
  input,
  textarea,
  select,
  button {
    font-size: 14px;
  }
}
@media (max-width: 750px) {
}

/* Header */
header {
  width: 100%;
  height:84px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  background: #000000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
header.on,
header.fixed {
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
}
header .wrap{
  height: 100%;
  display:flex;
  justify-content:space-between;
  align-items: center;
}
header .logo{
  display:flex;
  align-items:center;
}
header.on .logo,
header.fixed .logo{
  border:none;
}
header .logo img{
  width:112px;
  height: auto;
  display:block;
}
header .menu{
  width: calc(90% - 458px);
}
header .menu a{
  display: block;
}
header .menu > ul{
  display: flex;
  justify-content: space-between;
}
header .menu > ul > li{
  position: relative;
}
header .menu > ul > li > a{
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  line-height: 84px;
}
header .menu > ul > li > a:after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  background: #fff;
  bottom: 15px;
  left: 0;
  transform-origin: center;
  transform: scale(0, 1);
  transition: transform 0.3s cubic-bezier(1, 0, 0, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
header .menu > ul > li:hover > a:after,
header .menu > ul > li.current > a:after {
  transform-origin: center;
  transform: scale(1);
}
header .menu > ul > li > ul{
  min-width: 100%;
  padding:10px 0;
  position: absolute;
  left:50%;
  transform: translateX(-50%);
  background: #fff;
  border:1px #eee solid;
  border-radius: 0 0 8px 8px;
  font-size: 16px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
header .menu > ul > li:hover > ul{
  visibility: visible;
  opacity: 1;
}
header .menu > ul > li > ul > li > a{
  padding:0 20px;
  line-height: 36px;
  white-space: nowrap;
  border-bottom:1px #eee solid;
}
header .menu > ul > li > ul > li > a:hover{
  background: #263c92;
  color: #fff;
}
header .tools{
  width: 346px;
  display:flex;
  justify-content:space-between;
  align-items: center;
}
header .tools .search-trigger{
  display: block;
  color: #fff;
}
header .tools .tools-right{
  display: flex;
  align-items: center;
}
header .tools .tools-right .language{
  width: 126px;
  height: 40px;
  background: #263c92;
  border-radius: 6px 0 0 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 14px;
  padding:0 20px;
}
header .tools .tools-right .language i{
  font-size: 18px;
}
header .tools .tools-right .language a{
  color: #fff;
  display: block;
  font-weight: bold;
}
header .tools .tools-right .language span{
  font-size: 12px;
  font-weight: bold;
}
header .tools .tools-right .telphone{
  width: 186px;
  background: #fff;
  height: 40px;
  border-radius: 6px;
  padding:0 15px;
  margin-left: -4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .tools .tools-right .telphone span{
  font-size: 14px;
  font-weight: bold;
  margin-left: 5px;
}
header .search{
  width: 100%;
  position: fixed;
  z-index: 2;
  height:80px;
  background: #fff;
  padding:19px 0;
  display: none;
}
header .search .wrap{
  display: flex;
  justify-content: center;
}
header .search form{
  width: 50%;
  display:flex;
  align-items: center;
  justify-content: space-between;
}
header .search input{
  width: calc(100% - 100px);
  height: 42px;
  padding:0 20px;
  border:none;
  border:1px #ccc solid;
}
header .search button{
  background: #263c92;
  color: #fff;
  border:none;
  width: 100px;
  height: 42px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
}
@media (max-width: 1600px) {
  header .menu > ul > li > ul > li > a{
    font-size: 14px;
  }
}
@media (max-width: 1360px) {
  header .menu{
    width: calc(90% - 414px);
  }
  header .tools{
    width: 302px;
  }
  header .tools .tools-right .language{
    width: 116px;
    font-size: 12px;
  }
  header .tools .tools-right .language i{
    font-size: 14px;
  }
  header .tools .tools-right .telphone{
    width: 156px;
    padding:0 10px;
  }
  header .tools .tools-right .telphone span{
    font-size: 12px;
  }
}
@media (max-width: 992px) {
  header{
    display:none;
  }
}
@media (max-width: 750px) {
  
}

.mb-header{
  width:100%;
  display:none;
  position:fixed;
  top:0;
  left:0;
  background:#000;
  height: 60px;
  z-index:1000;
}
.mb-header .wrap{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mb-header .tools{
  display: flex;
  align-items: center;
}
.mb-header .tools .language{
  display: flex;
  color: #fff;
  align-items: center;
}
.mb-header .tools .language i{
  margin-right: 5px;
}
.mb-header .tools .language a{
  display: block;
  color: #fff;
  font-weight: bold;
}
.mb-header .tools .language span{
  font-size: 12px;
  line-height: 24px;
  font-weight: bold;
  display: block;
  margin: 0 5px;
  margin-top: -4px;
}
.mb-header .tools .menu-trigger{
  margin-left: 15px;
}
.mb-header .tools .menu-trigger span {
  display: block;
  width: 20px;
  height: 2px;
  margin-bottom: 5px;
  transition: 0.3s;
  background: #fff;
}
.mb-header .tools .menu-trigger span:last-of-type {
  margin-bottom: 0;
}
.mb-header .tools .menu-trigger.active span:nth-of-type(1) {
  transform: rotate(45deg);
  transform-origin: left center;
}
.mb-header .tools .menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.mb-header .tools .menu-trigger.active span:nth-of-type(3) {
  transform: rotate(-45deg);
  transform-origin: left center;
}
@media (max-width: 992px) {
  .mb-header{
    display: block;
  }
  .mb-header .logo{
    display: block;
  }
  .mb-header .logo img{
    width: 80px;
  }
}
@media (max-width: 750px) {
  
}

.subnav{
  width: 100%;
  height: calc(100% - 60px);
  margin-top: 60px;
  padding:3%;
  position: fixed;
  top:0;
  z-index:999;
  background: #fff;
  display: none;
}
.subnav a{
  display: block;
}
.subnav > ul > li{
  padding:10px 0;
  border-bottom: 1px #eee solid;
}
.subnav > ul > li > a{
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
}
.subnav > ul > li > ul{
  margin-top: 5px;
}
.subnav > ul > li > ul > li > a{
  line-height: 32px;
}
@media (max-width: 992px) {
  
}
@media (max-width: 750px) {
  
}

/* Footer */
footer {
  width: 100%;
  background: #000000;
  color:#fff;
  margin-top:120px;
  overflow: hidden;
}
footer a{
  color: #fff;
  display: block;
}
footer a:hover{
  color:#fff;
}
footer .footer-box1{
  margin-top:120px;
  display: flex;
  justify-content: space-between;
}
footer .footer-box1 .left,
footer .footer-box1 .right{
  width: 49%;
  border-radius: 20px;
  overflow: hidden;
}
footer .footer-box1 .left{
  background: #263c92;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding:100px;
}
footer .footer-box1 .left .text{
  font-size: 46px;
  font-weight: 900;
  line-height: 1.2;
}
footer .footer-box1 .left .btns{
  display: flex;
}
footer .footer-box1 .left .btns a{
  height: 50px;
  margin:0 5px;
  margin-top: 50px;
  display: flex;
  align-items: center;
  padding:0 30px;
  background: #fff;
  border-radius: 50px;
  color: #000;
  font-weight: 500;
}
footer .footer-box1 .left .btns a i{
  margin-left: 10px;
  font-size: 20px;
}
footer .footer-box1 .left .btns a:hover{
  background:#000;
  color:#fff;
}
footer .footer-box1 .right img{
  width: 100%;
  height:100%;
  object-fit:cover;
  display: block;
}
footer .footer-box2{
  margin-top: 100px;
}
footer .footer-box2 .title{
  display:flex;
  align-items:flex-end;
}
footer .footer-box2 .title h1{
  font-size:46px;
  font-weight:600;
  line-height:1.2;
}
footer .footer-box2 .title h2{
  margin-left:10px;
}
footer .footer-box2 .form{
  margin-top:40px;
}
footer .footer-box2 .form form{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
footer .footer-box2 .form input,
footer .footer-box2 .form button{
  border:none;
  outline:none;
  height:64px;
}
footer .footer-box2 .form input{
  width:60%;
  background:none;
  padding:0 20px;
  border:1px solid rgba(255, 255, 255, .2);
  color:#fff;
}
footer .footer-box2 .form button{
  width:38%;
  border-radius:50px;
  background:#263c92;
  color:#fff;
  cursor:pointer;
  font-weight:bold;
}
footer .footer-box3{
  margin-top:100px;
  font-size:16px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
}
footer .footer-box3 .logo{
  width:221px;
}
footer .footer-box3 .logo img{
  width:100%;
  display:block;
}
footer .footer-box3 .links{
  width:calc(84% - 506px);
}
footer .footer-box3 .links > ul{
  display:flex;
  justify-content:space-between;
}
footer .footer-box3 .links > ul > li > a{
  font-weight:900;
  font-size:18px;
  text-transform:uppercase;
}
footer .footer-box3 .links > ul > li > ul{
  margin-top:10px;
}
footer .footer-box3 .links > ul > li > ul > li > a{
  line-height:42px;
}
footer .footer-box3 .contact{
   width:285px;
}
footer .footer-box3 .contact .title{
  font-size:18px;
  font-weight:900;
  text-transform:uppercase;
}
footer .footer-box3 .contact .content{
  line-height:42px;
  margin-top:10px;
}
footer .footer-box3 .contact .share{
  margin-top:10px;
}
footer .footer-box3 .contact .share .list{
  display:flex;
}
footer .footer-box3 .contact .share .list a{
  display:block;
}
footer .footer-box3 .contact .share .list i{
  font-size:24px;
  margin-right:10px;
}
footer .footer-box4{
  margin-top:100px;
  border-top:1px solid rgba(255, 255, 255, .2);
  padding:40px 0 50px 0;
  font-size:16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  overflow:hidden;
}
footer .footer-box4 .right{
  display:flex;
  align-items:center;
}
footer .footer-box4 .right a{
  margin-left:10px;
}
footer .footer-box4 .right img{
  display:block;
}
@media (max-width: 1600px) {
  footer .footer-box1 .left{
    padding:60px;
  }
  footer .footer-box1 .left .text,
  footer .footer-box2 .title h1{
    font-size:36px;
  }
  footer .footer-box3,
  footer .footer-box4{
    font-size:14px;
  }
  footer .footer-box3 .contact .title{
    font-size:16px;
  }
}
@media (max-width: 1360px){
  footer .footer-box1 .left .text,
  footer .footer-box2 .title h1{
    font-size:32px;
  }
}
@media (max-width: 992px) {
  footer{
    margin-top:10%;
  }
  footer .footer-box1,
  footer .footer-box2,
  footer .footer-box3,
  footer .footer-box4{
     margin-top:10%;
  }
  footer .footer-box1 .left{
    padding:3%;
  }
  footer .footer-box1 .left .text,
  footer .footer-box2 .title h1{
    font-size:20px;
  }
  footer .footer-box1 .left .btns{
    width:100%;
    justify-content:space-between;
  }
  footer .footer-box1 .left .btns a{
    width:49%;
    height: 42px;
    margin-top:10%;
    padding:0;
    justify-content:center;
  }
  footer .footer-box2 .form{
    margin-top:4%;
  }
  footer .footer-box2 .form input, 
  footer .footer-box2 .form button{
    height: 50px;
  }
  footer .footer-box3{
    flex-direction:column;
    justify-content:center;
    align-items:center;
  }
  footer .footer-box3 .links{
    display:none;
  }
  footer .footer-box3 .logo,
  footer .footer-box3 .contact{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    text-align:center;
  }
  footer .footer-box3 .logo img{
    width:180px;
  }
  footer .footer-box3 .contact{
    margin-top:5%;
  }
  footer .footer-box3 .contact .content{
    line-height:1.5;
  }
  footer .footer-box4{
    flex-direction:column;
    padding:4% 0 5% 0;
    text-align:center;
  }
  footer .footer-box4 .right{
    margin-top:5px;
  }
}
@media (max-width: 750px) {
  footer .footer-box1{
    flex-direction:column-reverse;
  }
  footer .footer-box1 .left,
  footer .footer-box1 .right{
    width:100%;
  }
  footer .footer-box1 .right{
    display:none;
  }
  footer .footer-box1 .left .text,
  footer .footer-box2 .title h1{
    font-size:18px;
  }
  footer .footer-box1 .left{
    padding:6%;
  }
  footer .footer-box1 .left .btns a{
    margin-top:5%;
    height:45px;
  }
  footer .footer-box1 .left .btns a i{
    margin-left:5px;
  }
  footer .footer-box2 .form form{
    flex-direction:column;
  }
  footer .footer-box2 .form input,
  footer .footer-box2 .form button{
    width:100%;
    padding:0 15px;
    height:45px;
  }
  footer .footer-box2 .form button{
    margin-top:10px;
  }
  footer .footer-box3 .logo img{
    width:150px;
  }
  footer .footer-box4 .right img{
    width:50px;
  }
}