@charset "utf-8";
/*all*/
html {
  font-size: calc(100vw/19.20);
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: #ffffff;
}

*, ul, p, dl, h1, h2, h3, h4, h5, h6, dl, dt, dd, ul, li {
  font-family: "微软雅黑";
  text-decoration: none;
  font-family: 微软雅黑 !important;
  padding: 0;
  margin: 0;
  list-style: none;
  outline: none;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

input {
  border: 0;
  outline: none;
}

.container-fluid {
  position: relative;
  padding: 0;
  max-width: 19.20rem;
}

.container {
  padding: 0;
}

a {
  color: #333333;
}

a:hover {
  color: #0c5fbb;
}

a:hover, a:active, a:link {
  text-decoration: none;
}

a {
  color: #333;
}

img {
  max-width: 100%;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/*宽度限定*/
.wp {
  width: 99%;
  margin: 0 auto;
  max-width: 17rem;
  position: relative;
}

.wps {
  width: 99%;
  margin: 0 auto;
  max-width: 16rem;
  position: relative;
}

.wp2 {
  width: 80%;
  margin: 0 auto;
  max-width: 16rem;
  position: relative;
}
.wp3 {
  width: 80%;
  margin: 0 auto;
  max-width: 13rem;
  position: relative;
}

/*top*/
.top {
  height: 2.56rem;
  background-image: linear-gradient(to bottom, #001662, transparent);
  position: absolute;
  z-index: 99;
  top: 0;
  width: 100%;
}

.top .wp {
  padding-top: .28rem;
}

.top .logo {
  width: 26%;
  max-width: 6rem;
}

.top .head {
  width: 70%;
  max-width:14rem;
}

.top .head .nav {
  width: 80%;
  margin-left: auto;
}

.top .head .toplink {
  display: flex;
  justify-content: flex-end;
  color: #fff;
  font-size: .16rem;
}

.top .head .toplink a {
  color: #fff;
  margin: 0rem .1rem;
}

/*导航*/
.nav {
  width: 80%;
  max-width: 10.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  /*padding: .25rem 0 .25rem 0;*/
}

.nav .mobNav {
  display: none;
}

.nav .dropdown {
  width: 100%;
}

.nav .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.nav .menu li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  text-align: center;
}

.nav .menu a {
  width: 100%;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: inline-block;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.2rem;
  text-decoration: none;
  /*white-space: nowrap;*/
  /*text-transform:capitalize*/
  padding: 0.23rem 0;
  position: relative;
}

.nav .menu a span {
  position: relative;
}

.nav .menu .avt span:before, .nav .menu .a:hover span:before {
  display: block;
  width: 100%;
  height: .01rem;
  background-color: #ffffff;
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  content: "";
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}

/*二级菜单*/
.nav .menu ul {
  position: absolute;
  top: 0.71rem;
  left: 0;
  z-index: 9999;
  background-color: #ffffff;
  width: 150%;
  display: none;
  padding: .1rem 0;
  border-radius: .1rem;
}

.nav .menu ul li a {
  color: #333;
  padding: .1rem .2rem;
  font-weight: inherit;
}

.nav .menu ul li a:hover span {
  color: #0c5fbb;
  border-bottom: .01rem solid #0c5fbb;
}

.nav .menu .navptwo a span {
  font-size: .16rem;
}

.nav .menu li:hover ul {
  display: block;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}

/*弹出搜索*/
.trigger {
  display: grid;
  align-items: center;
}

.cd-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  z-index: 9999;
}

.cd-popup.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

.cd-popup-close {
  position: absolute;
  z-index: 10;
  display: block;
  right: .5rem;
  top: .5rem;
  width: .4rem;
  height: .4rem;
  background: url("../images/header/01.png") no-repeat center;
  background-size: 100% 100%;
}

.search-box {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5rem;
  height: .45rem;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10;
}

.search-box input {
  outline: 0;
  border: none;
}

.search-box .inp {
  padding: 0 1.4rem 0 .12rem;
  display: block;
  width: 100%;
  height: .45rem;
  line-height: .45rem;
  box-shadow: 0.03rem 0.03rem 0.03rem rgba(0, 0, 0, 0.5) inset;
  font-size: .16rem;
  color: #333;
}

.search-box .submit {
  position: absolute;
  right: 0;

  width: 1.2rem;
  height: .45rem;
  line-height: .45rem;
  background-color: #0c5fbb;
  font-size: .18rem;
  color: #fff;
  text-align: center;
}

/*小屏幕*/
@media screen and (max-width: 1200px) {
  html {
    font-size: calc(100vw/7.5);
  }
  /*宽度限定*/
  .wp {
    margin: 0 auto;
    max-width: 7.3rem;
  }
  /*导航*/
  .nav {
    position: relative;
    padding: 2vw;
  }
  .nav .dropdown {
    position: absolute;
    left: 0;
    top: 12vw;
    width: 100vw;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    display: none;
  }
  .nav .dropdown .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .nav .dropdown .menu li {
    width: 100vw;
  }
  .nav .dropdown .menu li:last-child a {
    border-bottom: 0;
  }
  .nav .dropdown .menu a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-right: none;
    text-indent: 2vw;
    border-bottom: 1px solid #ddd;
  }
  /*二级菜单*/
  .nav .menu ul {
    position: relative;
    top: 0;
  }
}

/*banner*/
.banner img {
  width: 100% !important;
  height: auto !important;
}

.banner table {
  width: 100%;
}

.banner #flashBoxu_u2_ {
  width: 100% !important;
  height: auto !important;
}

/*手机适配*/
@media screen and (max-width: 1200px) {
  html {
    font-size: calc(100vw/7.5);
  }
  /*宽度限定*/
  .wp {
    margin: 0 auto;
    max-width: 7.3rem;
  }
  /*导航*/
  /*二级菜单*/
  .phone .head1 {
    padding: .1rem .2rem;
  }
  .phone .head1 .box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .phone .head1 .box a {
    display: block;
    padding: .02rem .08rem;
    margin: 0 .04rem .04rem 0;
    border: 0.01rem solid rgba(0, 0, 0, 0.4);
    border-radius: .03rem;
    position: relative;
    font-size: .14rem;
    color: rgba(0, 0, 0, 0.8);
    flex-direction: column;
    justify-content: center;
    line-height: .26rem;
  }
  .nav.dropdown {
    display: none;
  }
  .navs2 {
    display: none;
  }
  .wp2 {
    width: 95%;
  }
  /*手机导航*/
  .phone {
    display: inherit;
  }
  .sp_header {
    height: 1rem;
    overflow: hidden;
    background: #fff;
    position: relative;
    z-index: 10;
    width: 100%;
  }
  .sp_logo {
    padding: .1rem;
    float: left;
  }
  .sp_logo img {
    margin: auto;
    max-height: .7rem;
  }
  .sp_nav {
    width: .5rem;
    float: right;
    position: relative;
    cursor: pointer;
    height: .3rem;
    margin-top: .35rem;
  }
  .sp_nav span {
         display: block;
        background: #000000;
        width: 0.5rem;
        height: .04rem;
        position: absolute;
        left: -0.4rem;
        transition: all ease 0.35s;
  }
  .sp_nav span:nth-of-type(1) {
    top: 0;
  }
  .sp_nav span:nth-of-type(2) {
    top: .1rem;
  }
  .sp_nav span:nth-of-type(3) {
    top: .2rem;
  }
  .sp_nav_se span:nth-of-type(1) {
    top: .1rem;
    transform: rotate(45deg);
  }
  .sp_nav_se span:nth-of-type(2) {
    width: 0;
  }
  .sp_nav_se span:nth-of-type(3) {
    top: .1rem;
    transform: rotate(-45deg);
  }
  .sjj_nav {
    position: fixed;
    z-index: 9;
    background: #ffffff;
    width: 100%;
    height: calc(100% - 1.04rem);
    font-size: .16rem;
    line-height: .4rem;
    top: -100%;
    left: 0;
    overflow: auto;
    overflow-x: hidden;
    transition: top ease 0.35s;
  }
  .nav_show {
    top: .6rem;
  }
  /*导航*/
  .menu_list {
    width: 100%;
    margin: 0 auto;
  }
  .menu_list h3, .menu_list h4 {
        height: 0.8rem;
        line-height: .8rem;
        padding-left: .38rem;
        font-size: .3rem;
        color: #525252;
        cursor: pointer;
        border-left: .01rem solid #e1e1e1;
        border-right: .01rem solid #e1e1e1;
        border-bottom: .01rem solid #e1e1e1;
        border-top: .01rem solid #F1F1F1;
        position: relative;
        margin: 0;
  }
  .menu_head {
    background: url(../images/header/pro_left.png) center right no-repeat;
  }
  .menu_list .current {
    background: #f1f1f1 url(../images/header/pro_down.png) center right no-repeat;
  }
  .menu_list .cur {
    background: #f1f1f1;
  }
  .menu_body {
    line-height: .38rem;
    border-left: .01rem solid #e1e1e1;
    background-color: #fff;
    border-right: .01rem solid #e1e1e1;
    display: none;
  }
  .menu_body a {
        display: block;
        height: .9rem;
        line-height: .9rem;
        padding-left: .38rem;
        color: #777777;
        background: #fff;
        text-decoration: none;
        font-size: .28rem;
    }
  }
  .menu_body a:hover {
    text-decoration: none;
  }
}