/* header公用 */
/* 欢迎栏 */
.topBox {
  width: 100%;
  background-color: #f3f3f3;
  line-height: 46px;
  font-size: 14px;
  color: #626262;
}
.topTxt {
  float: left;
}
.topTxt>a {
  color: #626262;
  margin: 0 10px;
}
.topTxt>a:hover {
  color: #2454ac;
  text-decoration: underline;
}
.topNav {
  float: right;
  height: 46px;
  display: flex;
  align-items: center;
}
.topNav>a {
  width: 24px;
  float: left;
  height: 24px;
  margin-left: 10px;
  border: 2px solid #ed7007;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 12px;
  border-radius: 50%;
  color: #ed7007;
}
.topNav>a:hover,
.topNav>a.topActive {
  color: #2454ac;
  border-color: #2454ac;
}

/* 导航栏 */
.header {
  width: 100%;
  padding: 25px 0 32px 0;
  background-color: #fff;
}
.header>.container {
  width: 97%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* logo图 */
.logo>a {
  width: 226px;
}
.logoTxt {
  width: 460px;
}
.logo img {
  width: 100%;
  display: block;
  height: auto;
}
.headerDianhua {
  line-height: 26px;
  font-size: 16px;
  color: #545454;
  background: url(../images/header_dianhua.png) no-repeat left center;
  padding-left: 58px;
}
.headerDianhua>span {
  display: block;
  overflow: hidden;
  color: #ff6600;
  line-height: 30px;
  font-size: 26px;
  font-weight: bold;
}

/* 导航目录 */
nav {
  background-color: #2454ac;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
.nav {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  float: left;
  padding-left: 2px;
  background: url(../images/shutiao.jpg) no-repeat left center;
}
.nav>li {
  flex: 1;
  float: left;
  position: relative;
  padding-right: 2px;
  background: url(../images/shutiao.jpg) no-repeat right center;
}
.nav>li>a {
  width: 100%;
  float: left;
  overflow: hidden;
  height: 70px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.nav>li:hover>a,
.nav>li.liActive>a {
  background-color: #ff6600;
  color: #fff;
}

/* 导航下拉 */
.nav>li>ul {
  display: none;
  min-width: 100%;
  float: left;
  background-color: rgba(36, 84, 172, 0.8);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  z-index: 9;
  transition: initial;
}
.nav>li>ul>li {
  width: 100%;
  float: left;
}
.nav>li>ul>li>a {
  width: 100%;
  float: left;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  padding: 0 10px;
}
.nav>li>ul>li:hover>a {
  background-color: #ff6600;
  color: #fff;
}

@media (max-width: 991px) {
  /* 手机导航按钮 */
  .iconMenu {
    float: right;
    cursor: pointer;
    width: 50px;
    height: 35px;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 11;
    background-size: 100% 100%;
  }
  .iconMenu>span {
    width: 100%;
    height: 5px;
    float: left;
    background-color: #2454ac;
    transition: all 0.4s;
  }
  .iconMenuActive>span {
    background-color: #fff;
  }
  .iconMenuActive>span:nth-child(2) {
    opacity: 0;
  }
  .iconMenuActive>span:nth-child(1) {
    -webkit-transform: translateY(15px) rotate(-45deg);
    -ms-transform: translateY(15px) rotate(-45deg);
    transform: translateY(15px) rotate(-45deg);
  }
  .iconMenuActive>span:nth-child(3) {
    -webkit-transform: translateY(-15px) rotate(45deg);
    -ms-transform: translateY(-15px) rotate(45deg);
    transform: translateY(-15px) rotate(45deg);
  }

  /* 导航栏 */
  .header {
    padding: 20px 0;
    position: absolute;
    top: 0;
    z-index: 10;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  }
	
	.logo>a {
	  width: 196px;
	}
	.logoTxt {
	  width: 430px;
	}

  /* 导航目录 */
  nav {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100% !important;
    height: 100%;
    left: -100%;
    top: 0;
    z-index: 10;
    opacity: 0;
    display: flex;
    transition: all 0.4s;
  }
  .navActive {
    left: 0;
    opacity: 1;
  }
  nav>.container {
    width: 100%;
    max-width: 100% !important;
  }
  .nav {
    width: 85%;
    height: 100%;
    background-color: #2454ac;
    overflow-y: auto;
    display: block;
    padding: 0;
  }
  .nav::before {
    display: none;
  }
  .nav>li {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #fff;
    padding: 0;
  }
  .nav>li::before {
    display: none;
  }
  .nav>li>a {
    height: 50px;
  }
  .dropDown {
    float: left;
    font-family: FontAwesome;
    font-size: 16px;
    color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    width: 50px;
    height: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
  }
  .dropDown::before {
    content: "\f107";
  }
  .nav>li:hover>.dropDown,
  .nav>li.liActive>.dropDown {
    color: #fff;
  }
  .nav>li:hover>.dropDown::before,
  .nav>li.liActive>.dropDown::before {
    content: "\f106";
  }

  /* 导航下拉 */
  .nav>li>ul {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    transform: initial !important;
    padding: 0;
  }
  .nav>li>ul>li {
    border-top: 1px solid #fff;
  }
}

@media (max-width: 767px) {
  /* 手机导航按钮 */
  .iconMenu {
    width: 30px;
    height: 21px;
    right: 15px;
  }
  .iconMenu span {
    height: 3px;
  }
  .iconMenuActive>span:nth-child(1) {
    -webkit-transform: translateY(9px) rotate(-45deg);
    -ms-transform: translateY(9px) rotate(-45deg);
    transform: translateY(9px) rotate(-45deg);
  }
  .iconMenuActive>span:nth-child(3) {
    -webkit-transform: translateY(-9px) rotate(45deg);
    -ms-transform: translateY(-9px) rotate(45deg);
    transform: translateY(-9px) rotate(45deg);
  }

  /* 导航栏 */
  .header {
    padding: 15px 0;
  }
  /* logo图 */
  .logo {
    width: 45%;
  }
  .logo a {
    width: 100%;
  }
}

/* 搜索 */
.search {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  border-bottom: 1px solid #e2e2e2;
}
.search_form {
  width: 300px;
  float: right;
  border: 1px solid #dadada;
  border-radius: 22px;
}
.search_inp1 {
  width: calc(100% - 42px);
  float: left;
  height: 42px;
  border-radius: 21px;
  line-height: 42px;
  padding: 0 10px 0 20px;
  font-size: 14px;
  color: #333;
}
.search_btn {
  width: 42px;
  float: left;
  height: 42px;
  background: url(../images/search_ss.png) no-repeat center center;
}
.search_txt {
  width: calc(100% - 320px);
  float: left;
  line-height: 44px;
}
.search_txt>span {
  float: left;
  font-size: 16px;
  color: #333;
  font-weight: bold;
}
.search_txt>a {
  float: left;
  font-size: 14px;
  color: #333;
  margin: 0 10px;
}
.search_txt>a:hover {
  color: #ff6600;
  text-decoration: underline !important;
}

@media (max-width: 767px) {
  .search {
    padding: 10px 0;
  }
  .search_form {
    width: 100%;
  }
  .search_txt {
    width: 100%;
    line-height: 22px;
    margin-top: 10px;
  }
  .search_txt>span {
    font-size: 14px;
  }
  .search_txt>a {
    margin: 0 5px;
  }
}

/* banner大图 */
.banner {
  width: 100%;
  position: relative;
}
.banner .bannerSwiper img {
  width: 100%;
  display: block;
  height: auto;
}
/* 圆点 */
.banner .swiper-pagination {
  opacity: 0;
  position: absolute;
  right: 0;
  bottom: 15px;
  display: flex;
  justify-content: center;
}
.banner .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  float: left;
  background: #2454ac;
  opacity: 1;
  border-radius: 50%;
}
.banner .banner-roll>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 3px;
}
.banner .swiper-pagination-bullet-active {
  opacity: 1;
  background: #ff6600;
}
.banner:hover .swiper-pagination {
  opacity: 1;
}
/* 箭头 */
.banner .banner-prev,
.banner .banner-next {
  left: 2%;
  top: 50%;
  position: absolute;
  z-index: 9;
  transform: translateY(-50%);
  width: 30px;
  height: 60px;
  font-size: 20px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.banner .banner-next {
  left: initial;
  right: 2%;
}
.banner:hover .banner-next,
.banner:hover .banner-prev {
  opacity: 1;
}

@media (max-width: 991px) {
  /*圆点*/
  .banner .swiper-pagination {
    opacity: 1;
    bottom: 10px;
  }
  .banner .swiper-pagination-bullet {
    width: 10px;
    height: 2px;
    opacity: 1;
    border-radius: 0;
  }
  .banner .banner-roll>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 2px;
  }
  .banner .swiper-pagination-bullet-active {
    width: 15px;
  }
}

/* 底部 */
.link {
  width: 100%;
  overflow: hidden;
  float: left;
  padding: 26px 0;
}
.link>.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.link_title {
  width: 200px;
  float: left;
  line-height: 38px;
  padding: 10px 25px 10px 0;
  border-right: 1px solid #e9e9e9;
}
.link_p {
  float: left;
  font-size: 20px;
  color: #454545;
  font-weight: bold;
  padding-right: 12px;
}
.link_sp {
  float: left;
  font-size: 36px;
  color: #2454ac;
  text-transform: uppercase;
}
.link_txt {
  width: calc(100% - 200px);
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 20px;
}
.link_txt a {
  float: left;
  font-size: 14px;
  color: #737373;
  margin: 5px 10px;
}
.link_txt a:hover {
  color: #2454ac;
  text-decoration: underline !important;
}

.footer {
  width: 100%;
  overflow: hidden;
  background: url(../images/footer_bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 60px 0;
}
.footer>.container {
  display: flex;
  width: 97%;
  max-width: 1600px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footerLeft {
  width: 27.5%;
  float: left;
  padding: 0 2.5%;
}
.footerLogo {
  display: block;
  overflow: hidden;
}
.footerLogo>img {
  display: block;
  max-width: 100%;
  height: auto;
}
.copyright {
  width: 100%;
  overflow: hidden;
  line-height: 30px;
  padding: 15px 0;
  color: #333333;
  font-size: 14px;
}
.copyright a {
  color: #333;
  margin: 0 5px;
}
.copyright a:hover {
  color: #ff6600;
  text-decoration: underline;
}

.footerCenter {
  width: 55.875%;
  float: left;
  border-left: 1px solid #c4c7ce;
  border-right: 1px solid #c4c7ce;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 15px 3.125%;
}
.footerBox {
  float: left;
}
.footerTitle {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}
.footerList {
  display: block;
  overflow: hidden;
}
.footerList>li {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 14px;
  color: #333;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.footerList>li>a {
  color: #333;
}
.footerList>li>a:hover {
  color: #2454ac;
  text-decoration: underline;
}
.footerTxt {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 14px;
  color: #333;
}

.footerRight {
  width: 9.5%;
  float: right;
  padding-top: 30px;
}
.footerWx {
  width: 100%;
  display: block;
  max-width: 112px;
}
.footerWx>img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.footerWx>span {
  display: block;
  overflow: hidden;
  text-align: center;
  margin-top: 10px;
  line-height: 22px;
  font-size: 14px;
  color: #333;
}

@media (max-width: 1200px) {
  .link {
    padding: 20px 0;
  }
  .footer {
    padding: 40px 0;
  }

  .footerCenter {
    width: 60%;
    padding: 15px 2.5%;
  }
}

@media (max-width: 991px) {
  .link {
    padding: 15px 0;
  }
  .footer {
    padding: 20px 0;
  }
  .footerLeft {
    width: 20%;
    padding: 0;
  }
  .footerCenter {
    width: 65%;
    padding: 15px;
  }
  .footerBox:last-child {
    width: 33%;
  }
}

@media (max-width: 767px) {
  .link_title {
    padding: 0 0 10px 0;
    width: 100%;
    line-height: 24px;
    display: flex;
    justify-content: center;
    border: none;
    border-bottom: 1px solid #ccc;
  }
  .link_p {
    font-size: 18px;
    padding-right: 5px;
  }
  .link_sp {
    font-size: 22px;
  }
  .link_txt {
    width: 100%;
    padding: 0;
    line-height: 22px;
  }
  .link_txt a {
    margin: 4px;
  }
  .footer {
    padding: 15px 0;
  }
  .footerLeft {
    width: 100%;
  }
  .copyright {
    line-height: 22px;
    text-align: center;
    padding: 0;
  }
}
/* END-底部 */

/* 手机底部组件 */
.root_kong {
  width: 100%;
  height: 56px;
  float: left;
  background-color: #fff;
  height: calc(56px + constant(safe-area-inset-bottom));
  height: calc(56px + env(safe-area-inset-bottom));
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}
.root {
  width: 100%;
  height: 54px;
  background-color: #2454ac;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9;
  height: calc(54px + constant(safe-area-inset-bottom));
  height: calc(54px + env(safe-area-inset-bottom));
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}
.root>li {
  width: 25%;
  float: left;
  border-right: 1px solid #fff;
}
.root>li:last-child {
  border: none;
}
.root>li>a {
  display: flex;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 6px 0;
  color: #fff;
}
.root>li>a>div {
  width: 100%;
  float: left;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}
.root>li>a>div:first-child {
  font-size: 22px;
  margin-bottom: 6px;
}
.root>li>a:hover {
  background-color: #ff6600;
  color: #fff;
}

/* 电话 */
.root_bj {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10;
}
.root_phone {
  display: none;
  width: 100%;
  background-color: #f5f5f5;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.root_phone>a,
.root_phone>.root_off {
  display: block;
  background-color: #fff;
  line-height: 44px;
  color: #333;
  text-align: center;
  border-bottom: 1px solid #ddd;
  font-size: 15px;
}
.root_phone .root_off {
  margin-top: 6px;
  border-top: 1px solid #ddd;
}
.root_phone .root_off:hover,
.root_phone a:hover {
  background: #ddd;
}

/* 微信号 */
.wecht-box {
  display: none;
  width: 100%;
  float: left;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}
.wecht-box .wecht {
  width: 100%;
  float: left;
  background-color: #fff;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.wecht-box .wecht .wecht_title {
  display: block;
  overflow: hidden;
  line-height: 20px;
  font-size: 14px;
  color: #333;
}
.wecht-box .wecht .wecht_title>span {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 18px;
  font-weight: bold;
}
.wecht-box .wecht>img {
  display: block;
  max-width: 150px;
  margin: 10px auto;
  overflow: hidden;
}
.wecht-box .wecht .wecht_txt {
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 24px;
  color: #333;
  line-height: 18px;
}
.wecht-box .wecht .wecht_txt>span {
  font-family: Impact;
  font-size: 16px;
}
.wecht-box .wecht .wecht_off {
  width: 30px;
  height: 30px;
  font-size: 16px;
  color: #fff;
  position: absolute;
  left: 50%;
  bottom: -38px;
  border: 1px solid #fff;
  transform: translateX(-50%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* END-手机底部组件 */