@font-face {
  font-family: MHeiSung HKS;
  src: url("../font/MHEISUNGHKSULTRABOLD.TTF");
}
.header {
  height: 9.2592592593vh;
  width: 100%;
  background: rgb(7, 48, 138);
  background: transparent;
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  box-sizing: border-box;
  z-index: 99;
}

.header .logo {
  position: absolute;
  width: 11.0416666667vw;
  height: 4.4444444444vh;
  left: 4.6875vw;
  top: 2vh;
}

.header .logo img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.header nav {
  padding-right: 10.4166666667vw;
}

.header nav .nav-ul {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0px;
  margin-top: -10px;
  list-style: none;
  padding: 0;
}

.header nav .nav-ul .nav-ul-li {
  list-style: none;
  font-size: 1.6666666667vh;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #fff;
  padding: 2.7777777778vh 1.0416666667vw 0.9259259259vh;
  /*margin-right: 1.0416666667vw;*/
  cursor: pointer;
  position: relative;
  min-width: 80px;
  text-align: center;
  box-sizing: border-box;
  
}

.header nav .nav-ul .nav-ul-li a {
  color: inherit;
  text-decoration: none;
}

.header nav .nav-ul .nav-ul-li .nav-select-ul {
  position: absolute;
  padding: 0;
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  left: 0;
  display: none;
  top: 6.4814814815vh;
  list-style: none;
}

.header nav .nav-ul .nav-ul-li .nav-select-ul .nav-select-li {
  font-size: 1.4814814815vh;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #333;
  text-align: center;
  /*padding: 1.1111111111vh 0;*/
  list-style: none;
  height: 36px;
  line-height: 36px;
}
.header nav .nav-ul .nav-ul-li .nav-select-ul .nav-select-li a {
    width: 100%;
    height: 100%;
    display: inline-block;
}

.header nav .nav-ul .nav-ul-li .nav-select-ul .nav-select-li:nth-child(1) {
  margin-top: 0.9259259259vh;
}

.header nav .nav-ul .nav-ul-li .nav-select-ul .nav-select-li:hover {
  background-color: #07308A;
  color: white;
}

.header nav .nav-ul .nav-ul-li .nav-select-ul::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1.8518518519vh;
  top: -1.2962962963vh;
  left: 0;
}

.header nav .nav-ul .active {
  position: relative;
}
.header nav .nav-ul .active::after {
  content: "";
  position: absolute;
  position: relative;
  width: 60px;
  height: 3px;
  background: white;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 6px;
  bottom: -5px;
}

.header nav .nav-ul .nav-ul-search {
  list-style: none;
  margin-left: 1.0416666667vw;
  width: 10.4166666667vw;
  padding: 0.6481481481vh 0.625vw 0.7407407407vh;
  border: 1px solid white;
  border-radius: 1.8518518519vh;
  background: rgba(255, 255, 255, 0.2);
  margin-top: 1.8518518519vh;
  list-style: none;
}

.header nav .nav-ul .nav-ul-search a {
  color: inherit;
  text-decoration: none;
}

.header nav .nav-ul .nav-ul-search a .icon {
  width: 1.3020833333vw;
  height: 2.3148148148vh;
}

.header nav .nav-ul .nav-ul-search a .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.header nav .nav-ul .nav-ul-search a .area {
  margin-left: 0.5208333333vw;
  color: #ECF0F5;
  font-size: 1.6666666667vh;
}

.header nav .nav-ul .nav-ul-li:hover {
  font-size: 1.6666666667vh;
  font-family: Microsoft YaHei;
}

.header nav .nav-ul .nav-ul-li:hover .nav-select-ul {
  display: block;
}

.header .icon {
  display: none;
}

@media screen and (max-width: 1000px) {
    
  .header {
      height: 50px;
      background: rgb(7, 48, 138);
  }

  .header .logo {
      width: 106px;
      height: 24px;
      top: 1vh;
  }

  .header nav {
      display: none;
  }

  .header .icon {
      display: block;
  }

  .header .icon .i {
      width: 30px;
      height: 30px;
      /*background-color: red;*/
      margin-right: 10px;
      position: relative;
      transition: 0.3s;
  }

  .header .icon .i::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 4px;
      background-color: white;
      border-radius: 4px;
      box-shadow: 0 10px 0 #fff;
      transition: 0.3s;
  }

  .header .icon .i::before {
      content: "";
      position: absolute;
      bottom: 4px;
      width: 100%;
      height: 4px;
      background-color: white;
      border-radius: 4px;
  }

  .header .icon .phone-ul {
      position: absolute;
      width: 100vw;
      top: 100%;
      padding: 0;
      margin: 0;
      z-index: 999;
      background-color: #07308A;
      max-height: 600px;
      transition: 0.3s;
      overflow: hidden;
      transform: translateX(calc(-100% + 40px));
      z-index: 3;
  }

  .header .icon .phone-ul li {
      list-style: none;
      padding: 0;
      margin: 0;
      color: #fff;
      /*border-bottom: 1px solid #efefef;*/
      padding: 15px 20px;
      font-size: 12px;
  }

  .header .icon .phone-ul-hide {
      max-height: 0px;
  }

  .header .icon-close .i::after, .header .icon-close .i::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 4px;
      background-color: white;
      box-shadow: none;
      border-radius: 4px;
      transform: rotate(45deg) translate(10px, 10px);
  }

  .header .icon-close .i::before {
      transform: rotate(-45deg) translate(5px, -5px);
  }
}
a {
  text-decoration: none;
  outline: none;
  color: inherit !important;
}
.m-title {
  letter-spacing: 1px;
}

.m-title .eng {
  text-transform: uppercase;
  font-size: 1.8518518519vh;
  font-family: MHeiSung HKS;
  font-weight: 800;
  opacity: 0.51;
}

.m-title .line {
  width: 2.8645833333vw;
  height: 0.2777777778vh;
  position: relative;
  margin-top: 1.4814814815vh;
  margin-bottom: 1.1111111111vh;
}

.m-title .line::after {
  content: "";
  position: absolute;
  width: 0.2604166667vw;
  height: 0.2777777778vh;
  background: inherit;
  right: -0.5208333333vw;
  top: 0;
}

.m-title .txt {
  font-size: 2.7777777778vh;
  font-family: Microsoft YaHei;
  font-weight: bold;
}

.container .section-1 .page {
  /*position: absolute;*/
  /*right: 10.4166666667vw;*/
  /*bottom: 5.7222222222vh;*/
  width: 78.125vw;
  height: 5.5555555556vh;
  display: flex;
  justify-content: flex-end;
  margin: 0 auto;
}

.pagination {
  display: flex;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pagination .prev, .pagination .next {
  width: 3.6458333333vw;
  height: 4.6296296296vh;
  background: #EAECF0;
  border-radius: 6px;
  font-size: 1.2962962963vh;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #313131;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.78125vw;
  cursor: pointer;
  box-sizing: border-box;
}

.pagination .hide {
  cursor: no-drop !important;
}

.pagination .items {
  display: flex;
}
.pagination .item {
  width: 2.6041666667vw;
  height: 4.6296296296vh;
  background: #EAECF0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2962962963vh;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #313131;
  margin-right: 0.78125vw;
  cursor: pointer;
  box-sizing: border-box;
}

.pagination .item:hover, .pagination .prev:hover, .pagination .next:hover {
  border: 1px solid #1C3F9B;
}

.pagination .active {
  background: #1C3F9B;
  color: #fff!important;
}

/* footer */
.footer {
  width: 100%;
  height: 36.5740740741vh;
  background: #1E1E1E;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.footer .footer-logo {
  width: 15.8333333333vw;
  height: 8.4074074074vh;
  background: url("../img/home/f-logo.png") no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 12.3148148148vh;
  left: 18.75vw;
  -o-object-fit: cover;
  object-fit: cover;
}

.footer .log-ground {
  display: flex;
  position: absolute;
  left: 40.625vw;
  top: 12.3148148148vh;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.footer .log-ground .item {
  margin: 0 1.9791666667vw;
}

.footer .log-ground .item .icon {
  /*width: 5.9895833333vw;*/
  height: 10.6481481481vh;
  background: url("../img/home/f-gzh.png") no-repeat;
  background-size: 100% 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.footer .log-ground .item .text {
  font-size: 1.4814814815vh;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #FFFFFF;
  padding-top: 1.4814814815vh;
  text-align: center;
}

.footer .log-ground .item:nth-child(2) .icon {
  background: url("../img/home/f-wx.png") no-repeat;
  background-size: 100% 100%;
}

.footer .company {
  width: 18.71875vw;
  position: absolute;
  top: 6.1111111111vh;
  right: 18.75vw;
}

.footer .company .item .title {
  font-size: 1.6666666667vh;
  color: #fff;
  font-weight: bold;
  padding: 1.8518518519vh 0 0.9259259259vh;
}

.footer .company .item .info {
  font-size: 1.2962962963vh;
  color: #ededed;
  display: flex;
  line-height: 2.962962963vh;
}

.footer .company .item .info .label {
  white-space: nowrap;
}
.footer .f-nav {
    position: absolute;
    bottom: 0.9259259259vh;
    left: 15.625vw;
}
.footer .f-nav ul {
  display: flex;
  align-items: center;
}

.footer .f-nav ul li {
  font-size: 1.4814814815vh;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #FFFFFF;
  margin: 0 10px;
  list-style: none;
}

.f-tip {
  width: 100%;
  height: 3.7037037037vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2962962963vh;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #FFFFFF;
  background: #000;
}

/* 搜索页样式 */
.search-area {
  height: 70px;
  background: white;
  background: rgba(255,255,255,0.9);
  border: 1px solid #FFFFFF;
  border-radius: 10px;
  width: 65vw;
  display: flex;
}
.search-area .text {
  flex: 1;border: 0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding-left: 23px;
}
.search-area .text::placeholder {
  font-size: 18px;
  color: #525252;
}
.search-area .btn {
  width: 140px;
  /* height: 70px; */
  background: #173F8F;
  border-radius: 0px 10px 10px 0px;
  outline: none;
  border: 0;
  cursor: pointer;
  font-size: 18px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #EFF5FB;
}

.not-data {
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;

}
.not-data img {
  /* width: 50%; */
  height: 100%;
}

.container .types {
  height: 7.4074074074vh;
  width: 100%;
  background-color: #fff;
  display: flex;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  justify-content: flex-start;
  border-bottom: 1px solid #efefef;
}

.container .types .type:first-child {
  margin-left: 10.4166666667vw;
}

.container .types .type {
  width: 7.8125vw;
  height: 100%;
  text-align: center;
  line-height: 7.4074074074vh;
  font-size: 1.6666666667vh;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #313131;
  transition: 0.3s;
  cursor: pointer;
}

.container .types .type:hover, .container .types .type-active {
  background: #1C3F9B;
  color: #fff!important;
}
.phone-search {
  display: none;
}

@media screen and (max-width: 1000px) {
    .header {
        height: 50px;
        width: 100vw;
        background: rgb(7, 48, 138)!important;
    }

    .header .logo {
        width: 106px;
        height: 24px;
    }

    .header nav {
        display: none;
    }

    .header .icon {
        display: block;
    }

    .header .icon .i {
        width: 30px;
        height: 30px;
        /* background-color: red; */
        margin-right: 10px;
        position: relative;
        transition: 0.3s;
        transform: scale(.69);
    }

    .header .icon .i::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 4px;
        background-color: white;
        border-radius: 4px;
        box-shadow: 0 10px 0 #fff;
        transition: 0.3s;
    }

    .header .icon .i::before {
        content: "";
        position: absolute;
        bottom: 4px;
        width: 100%;
        height: 4px;
        background-color: white;
        border-radius: 4px;
    }

    .header .icon .phone-ul {
        position: absolute;
        width: 100vw;
        top: 100%;
        padding: 0;
        margin: 0;
        z-index: 999;
        background-color: #07308A;
        max-height: 600px;
        transition: 0.3s;
        overflow: hidden;
        transform: translateX(calc(-100% + 40px));
        z-index: 3;
        overflow: hidden;
        overflow-y: auto;
        list-style: none;
    }

    .header .icon .phone-ul .phone-li {
        list-style: none;
        padding: 0;
        margin: 0;
        color: #fff;
        padding: 15px 20px;
        font-size: 12px;
    }

    .header .icon .phone-ul .phone-li .link {
        font-size: 16px;
    }

    .header .icon .phone-ul .phone-li .nav-select-ul {
        padding: 0 10px;
    }

    .header .icon .phone-ul .phone-li .nav-select-ul .nav-select-li {
        padding: 0px;
        border-bottom: 1px solid #efefef;
        font-size: 14px;
        
    }
    .header .icon .phone-ul .phone-li .nav-select-ul .nav-select-li .nav-select-li-a {
        width: 100%;
        display: inline-block;
        padding: 10px 0;
    }

    .header .icon .phone-ul-hide {
        max-height: 0px;
    }

    .header .icon-close .i::after, .header .icon-close .i::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 4px;
        background-color: white;
        box-shadow: none;
        border-radius: 4px;
        transform: rotate(45deg) translate(10px, 10px);
    }

    .header .icon-close .i::before {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .header .phone-search {
        display: block;
        /* width: 24px;
        height: 24px; */
        margin-right: 20px;
    }

    .header .phone-search img {
        -o-object-fit: cover;
        object-fit: cover;
    }

    .footer {
        height: 300px;
        padding-bottom: 20px;
        box-sizing:border-box;
    }

    .footer .footer-logo {
        width: 179px;
        height: 47px;
        /* right: 46px; */
        top: 24px;
        left: 178px;
    }

    .footer .log-ground {
        top: 20px;
        left: 40px;
    }

    .footer .log-ground .item {
        width: 50px;
    }

    .footer .log-ground .item .icon {
        width: 50px;
        height: 50px;
    }

    .footer .company {
        width: 300px;
        top: 110px;
        left: 40px;
    }

    .f-tip {
        text-align: center;
        width: 100%;
        padding: 3px 0;
        color: #eee;
        display: block;
    }
    
    .f-nav {
        display: none;
    }
    .container {
        margin-top: 50px;
    }
    .container .banner {
        height: 88px!important;
    }
    .container .types {
        padding: 0 20px;
        overflow: hidden;
        overflow-x: scroll;
        box-sizing: border-box;
    }
    .container .types .type {
        width: 80px;
        flex-shrink: 0;
    }
    .container .types .type:first-child {
        margin-left: 0;
    }
    
    .about-content-max-box .yuanJing-content-box .yuanJing-title-text-box .English-title-p {
        font-size: 12px;
    }
    .about-content-max-box .yuanJing-content-box .yuanJing-title-text-box .Chinese-title-p {
        font-size: 21px;
    }
}


