/* header公用 */
/* 导航栏 */
.header {
  width: 100%;
  padding: 30px 0;
  background-color: #fff;
}
.header>.container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

/* logo图 */
.logo>a {
  width: 618px;
}
.logo img {
  width: 100%;
  display: block;
  height: auto;
}
.headerRight {
  display: flex;
  align-items: center;
}
.headerDianhua {
  line-height: 18px;
  font-size: 12px;
  color: #131313;
  background: url(../images/header_dianhua.png) no-repeat left center;
  padding-left: 50px;
}
.headerDianhua>span {
  display: block;
  overflow: hidden;
  color: #ffbf26;
  font-style: oblique;
  line-height: 26px;
  font-size: 24px;
}

/* 搜索 */
.search {
  width: 232px;
  float: left;
  height: 42px;
  border: 1px solid #8f8f8f;
  border-radius: 4px;
  overflow: hidden;
  margin-left: 25px;
}
.search>input {
  width: calc(100% - 40px);
  float: left;
  height: 40px;
  font-size: 14px;
  color: #333;
  padding: 0 10px;
}
.search>button {
  width: 40px;
  float: left;
  height: 40px;
  background: url(../images/search_btn.png) no-repeat left center;
}

/* 导航目录 */
nav {
  background-color: #287be3;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
.nav {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  float: left;
}
.nav>li {
  flex: 1;
  float: left;
  position: relative;
}
.nav>li>a {
  width: 100%;
  float: left;
  overflow: hidden;
  height: 60px;
  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-image: linear-gradient(#d9a214, #ffbf26);
  color: #fff;
}

/* 导航下拉 */
.nav>li>ul {
  display: none;
  min-width: 100%;
  float: left;
  background-color: rgba(40, 123, 227, 0.8);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  z-index: 9;
  transition: initial;
  padding-top: 2px;
}
.nav>li>ul>li {
  width: 100%;
  float: left;
}
.nav>li>ul>li>a {
  width: 100%;
  float: left;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  padding: 0 10px;
}
.nav>li>ul>li:hover>a {
  background-color: #ffbf26;
  color: #fff;
}

/* 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: #287be3;
  opacity: 0.5;
  border-radius: 50%;
}
.banner .banner-roll>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 3px;
}
.banner .swiper-pagination-bullet-active {
  opacity: 1;
  background: #ffbf26;
}
.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: 1200px) {
  .headerDianhua>span {
    font-size: 20px;
  }
  .search {
    width: 160px;
    margin-left: 15px;
  }
}

@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: #287be3;
    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: fixed;
    top: 0;
    z-index: 10;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  }

  /* 导航目录 */
  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: #287be3;
    overflow-y: auto;
    display: block;
  }
  .nav>li {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #fff;
  }
  .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;
  }
  .nav>li>ul>li>a {
    height: 40px;
    line-height: 40px;
  }

  /*圆点*/
  .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;
  }
}

@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: 80%;
  }
  .logo a {
    width: 100%;
  }
}

/* 底部 */
footer {
  background: #287be3;
}
.link {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #5697e9;
  padding: 25px 0;
  line-height: 30px;
  font-size: 16px;
  color: #fff;
}
.link>a {
  color: #fff;
  margin: 0 5px;
}
.link>a:hover {
  text-decoration: underline;
}

.footer {
  width: 100%;
  overflow: hidden;
  padding: 35px 0;
  display: flex;
  justify-content: space-between;
}
.footerLeft {
  float: left;
  flex: 1;
}
.footerNav {
  display: block;
  overflow: hidden;
  line-height: 1;
  color: #fff;
  font-size: 16px;
}
.footerNav>a {
  color: #fff;
  margin: 0 5px;
}
.footerNav>a:first-child {
  margin: 0 5px 0 0;
}
.footerNav>a:hover {
  text-decoration: underline;
}
.footerTxt {
  display: block;
  overflow: hidden;
  font-size: 14px;
  color: #fff;
  line-height: 24px;
  margin-top: 15px;
}

.footerRight {
  float: right;
}
.footerRight>img {
  width: 88px;
  float: left;
  height: 88px;
}
.footerRight>div {
  display: block;
  overflow: hidden;
  color: #fff;
  line-height: 22px;
  font-size: 12px;
  padding-left: 15px;
}
.footerRight>div>span:first-child {
  display: block;
  font-size: 16px;
}
.footerRight>div>span:nth-child(2) {
  font-size: 24px;
  font-weight: bold;
  display: block;
  line-height: 44px;
}

.copyright {
  width: 100%;
  overflow: hidden;
  background-color: #febe25;
  text-align: center;
  line-height: 20px;
  padding: 9px 15px;
  color: #fff;
  font-size: 12px;
}
.copyright a {
  color: #fff;
  margin: 0 5px;
}
.copyright a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 991px) {
  .footer {
    padding: 25px 0;
  }
  .footerNav {
    line-height: 1.2;
  }
  .footerRight {
    padding-left: 15px;
  }
}

@media (max-width: 767px) {
  .link {
    padding: 15px 0;
    line-height: 22px;
    font-size: 14px;
  }
  .footer {
    padding: 15px 0;
  }
  .footerNav {
    text-align: center;
    font-size: 14px;
  }
}
/* 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: #287be3;
  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: #ffbf26;
  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-手机底部组件 */