@charset "UTF-8";
.header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.header .header_flx {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: auto;
}
.header .logo_c {
  display: none;
}
.header .navge {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.header .navge > div {
  margin-right: 70px;
  position: relative;
}
.header .nav1:before{
    content:'';
    display: block;
    height: 4px;
    background-image: linear-gradient(to right,#00a7a2,#009ce5);
    width: 0;
    transition: all 0.5s;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}
.header .nav1:hover:before{
    width:calc(100% + 36px);
}
.header .navge > div:last-child {
  margin-right: 0;
}
.header .nav1 {
  height: 120px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.header .nav1 a {
  color: white;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.header .nav1 a:hover {
  color: #00609c;
}
.header .nav2 {
  position: fixed;
  left: 0;
  width: 100vw;
  background: #fff;
  display: none;
  border-top: 1px solid #eee;
}
.header .header_other {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 40px;
}
.header .header_r {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .header_search {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}
.header .header_search svg path {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.header .header_search:hover svg path {
  fill: #00609c;
}
.header .nav_pc > div {
  border-bottom: 1px solid #f3f3f3;
  display: none;
}
.header .l {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header .l img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header .pc_flx {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.header .pc_flx img {
  width: 100%;
}
.header .pc_flx > div {
  width: 50%;
}
.header .r {
  padding: 60px 105px;
}
.header .r a {
  color: #333;
  width: 356px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.header .r a svg path {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.header .r a:hover {
  color: #00609c;
}
.header .r a:hover svg path {
  fill: #00609c;
}
.header .r a:nth-child(n+2) {
  margin-top: 45px;
}

.header.header_active {
  background: white;
      border-bottom: 1px solid #eee;
}
.header.header_active .logo_w {
  display: none;
}
.header.header_active .logo_c {
  display: block;
}
.header.header_active a {
  color: #333;
}
.logo img{
    max-width: 400px;
}
.header.header_active .header_search svg path {
  fill: #333;
}
.header.header_active .header_search:hover svg path {
  fill: #00609c;
}

.phone_menu {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  margin-left: 30px;
}
.phone_menu span {
  background: #333;
  height: 2px;
  display: block;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
}
.phone_menu span:first-child {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  -webkit-transform: translateY(0px);
     -moz-transform: translateY(0px);
      -ms-transform: translateY(0px);
       -o-transform: translateY(0px);
          transform: translateY(0px);
  top: 0;
}
.phone_menu span:last-child {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  -webkit-transform: translateY(18px);
     -moz-transform: translateY(18px);
      -ms-transform: translateY(18px);
       -o-transform: translateY(18px);
          transform: translateY(18px);
  top: 0;
}

.menu_act span:first-child {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateY(10px) rotate(45deg);
     -moz-transform: translateY(10px) rotate(45deg);
      -ms-transform: translateY(10px) rotate(45deg);
       -o-transform: translateY(10px) rotate(45deg);
          transform: translateY(10px) rotate(45deg);
}
.menu_act span:last-child {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateY(10px) rotate(135deg);
     -moz-transform: translateY(10px) rotate(135deg);
      -ms-transform: translateY(10px) rotate(135deg);
       -o-transform: translateY(10px) rotate(135deg);
          transform: translateY(10px) rotate(135deg);
}
.menu_act span:nth-child(2) {
  opacity: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.header_act {
  top: -120px;
}
.header_lang{
    padding-left:15px;color:#fff;
}
.header.header_active a.header_lang{color:#333;}
.footer {
  background: #242d36;
}
.footer .top {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 164px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .foot_logo{
    max-width: 345px;
}
.footer .share {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.footer .share a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 20px;
  background: #50575e;
  position: relative;
  overflow: hidden;
}
.footer .share a:first-child {
  margin-left: 0;
}
.footer .share a::after {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-image: -webkit-linear-gradient(left, #01acab, #00a1e4);
  background-image: -moz-linear-gradient(left, #01acab, #00a1e4);
  background-image: -o-linear-gradient(left, #01acab, #00a1e4);
  background-image: linear-gradient(to right, #01acab, #00a1e4);
}
.footer .share a svg {
  position: relative;
  z-index: 2;
}
.footer .share a svg path {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.footer .share a:hover::after {
  opacity: 1;
}
.footer .share a:hover svg path {
  fill: #fff;
}
.footer .flx {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 75px;
}
.footer .nav {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.footer .nav > div {
  margin-right: 104px;
}
.footer .nav > div:last-child {
  margin-right: 0;
}
.footer .foot_nav1 {
  line-height: 1;
}
.footer .foot_nav1 a {
  color: #fff;
}
.footer .foot_nav2 {
  margin-top: 30px;
}
.footer .foot_nav2 div {
  line-height: 1;
  margin-bottom: 18px;
}
.footer .foot_nav2 div:last-child {
  margin-bottom: 0;
}
.footer .foot_nav2 a {
  color: rgba(255, 255, 255, 0.6);
}
.footer .code_name {
  color: #fff;
  line-height: 1;
  text-align: center;
}
.footer .code_flx {
  margin-top: 30px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.footer .code_flx div {
  background: #fff;
  width: 100px;
  height: 100px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}
.footer .code_flx div:nth-child(2) {
  margin-left: 10px;
}
.footer .code_flx div img {
  max-width: 90%;
  max-height: 90%;
}
.footer .filing {
  color: #aaa;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 1;
  padding: 45px 0 55px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
}
.footer .filing a {
  color: #aaa;
}
.footer .l {
  color: #aaa;
}
.footer .r {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
     -moz-box-align: flex-end;
      -ms-flex-align: flex-end;
          align-items: flex-end;
          flex-direction: column;
}
.footer .filing_list {
  margin-top: 60px;
}

.footer .filing_list ul{
  display: flex;
  justify-content: center;
}
.footer .filing_list ul li{
    margin:0 10px;
    box-shadow: 0 0 10px 0 rgba(255,255,255,0.2);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: all 0.5s;
}
.footer .filing_list ul li .img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 70px;
}
.footer .filing_list ul li .img img{
    max-height: 80%;
    max-width: 80%;
}
.footer .filing_list ul li:hover {
  box-shadow: 0 0 10px 0 rgba(255,255,255,0.6);
}
.footer .filing_act {
   
  margin-left: 20px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  position: relative;
   display: none;
}
.filing_tit{
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1;
}
@media screen and (max-width: 1600px) {
    .logo img {
    max-width: 250px;
}
.footer .foot_logo {
    max-width: 230px;
}
  .header .navge > div {
    margin-right: 45px;
  }
  .footer .nav > div {
    margin-right: 70px;
  }
  .footer .filing {
    margin-top: 13%;
    padding: 30px 0 35px;
  }
  .footer .flx {
    margin-top: 50px;
  }
  .header .header_other {
    margin-left: 20px;
  }
  .header .nav1 {
    height: 90px;
  }
  .header_act {
    top: -90px;
  }
  .header .r {
    padding: 50px 70px;
  }
  .header .r a:nth-child(n+2) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1200px) {
    .footer .filing_list {
    margin-top: 30px;
}
    .footer .top{
        justify-content: center;
    }
  .header .nav1 {
    height: 80px;
  }
  .header .r {
    padding: 35px 55px;
  }
  .header .r a:nth-child(n+2) {
    margin-top: 25px;
  }
  .header .r a {
    width: 250px;
  }
  .header .logo img {
    height: 50px;
  }
  .header .navge > div {
    margin-right: 35px;
  }
  .footer .filing {
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer .l{
      text-align: center;
  }
  .footer .r {
    margin-top: 10px;
    align-items: center;
  }
  .footer .flx {
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    margin-top: 30px;
  }
  .footer .nav {
    display: none;
  }
  .footer .code_flx {
    margin-top: 20px;
  }
  .footer .filing {
    margin-top: 30px;
  }
}
@media screen and (max-width: 868px) {
    .header .nav1:before{
        display: none;
    }
    .header .navge > div:before{
        display: none;
    }
      .header .logo img {
        height: 40px;
    }
    
        .header .header_flx {
        height: 60px;
    }
  .header .l {
    display: none;
  }
  .header .pc_flx .r {
    width: 100%;
  }
  .header .r {
    padding: 30px;
  }
  .header .r a {
    width: 100%;
  }
  .header .r a svg {
    display: none;
  }
  .header .logo_w {
    display: none;
  }
  .header .logo_c {
    display: block;
  }
  .header .navge > div {
    margin-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .header .navge {
    position: fixed;
    top: 61px;
    width: 100%;
    left: 0;
    height: -webkit-calc(100% - 60px);
    height: -moz-calc(100% - 60px);
    height: calc(100% - 60px);
    background: white;
    display: none;
    padding: 10px 20px 0;
  }
  .phone_menu {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .nav1 {
    height: 50px;
  }
  .xuan:after {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    margin: auto 0;
    display: block;
    width: 8px;
    height: 8px;
    background-color: transparent;
    border-right: 2px solid rgba(0, 0, 0, 0.2);
    border-top: 2px solid rgba(0, 0, 0, 0.2);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
      -o-transform: rotate(45deg);
         transform: rotate(45deg);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
  }
  .xuan_act:after {
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
      -o-transform: rotate(135deg);
         transform: rotate(135deg);
  }
  .header .nav1 a {
    color: #333;
  }
  .header {
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .header_search svg path {
    fill: #333333;
  }
  .header .nav2 {
    position: relative;
    box-shadow: none;
    width: 100%;
  }
  .footer .l {
    text-align: center;
  }
  .foot_logo {
    width: 150px;
  }
  .footer .top {
    height: 100px;
  }
  .footer .share a {
    margin-left: 15px;
  }
  .footer .filing_list ul li{
      width: calc((100% - 20px)/3);
      margin: 0;
  }
  .footer .filing_list ul{
      justify-content: space-between;
  }
  .footer .filing_list ul li .img{
      width: 100%;
      height: 50px;
  }
}
