@charset "UTF-8";
/*
 * @Author: Code Zhuang
 * @Date: 2023-07-25 09:39:20
 * @Last Modified by: Code Zhuang
 * @Last Modified time: 2023-07-25 14:07:10
 */

/* 欢迎栏 */
.welcome {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  line-height: 35px;
  font-size: 14px;
  color: #8b8b8b;
}
.welcome-nav {
  display: flex;
  align-items: center;
}
.welcome a {
  margin: 0 20px;
  display: flex;
  align-items: center;
}
.welcome a>img {
  margin-right: 5px;
}
.welcome a:last-child {
  margin: 0 0 0 20px;
}
.welcome a:hover {
  color: var(--color-main);
  text-decoration: underline;
}

/* 导航栏 */
.header {
  width: 100%;
  background-color: #fff;
}
.header>.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* logo图 */
.logo {
  padding: 20px 0;
}
.logo>a {
  width: 388px;
}
.logo-txt {
  width: 352px;
}
.logo img {
  width: 100%;
  display: block;
  height: auto;
}

/* 热线电话 */
.header-hotline {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header-hotline>span {
  font-size: 16px;
  color: #7f7f7f;
  line-height: 24px;
  padding-left: 30px;
  background: url(../images/header-hotline.png) no-repeat left center;
}
.header-hotline>p {
  display: block;
  overflow: hidden;
  line-height: 32px;
  margin-top: 5px;
  font-size: 36px;
  color: #0760ba;
  font-family: 'Times New Roman', serif;
  font-weight: bold;
}

@media (max-width: 1200px) {
  .header-hotline>p {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .header {
    position: relative;
    left: 0;
    top: 0;
    z-index: 12;
  }
  .header-active {
    position: fixed;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  }
  /* logo图 */
  .logo {
    padding: 0;
  }
}
@media (max-width: 767px) {
  /* logo图 */
  .logo {
    width: 80%;
  }
  .logo>a {
    width: 100%;
  }
.logo img {
  width: 68%;
}
}

/* 导航目录 */
nav {
  background-image: linear-gradient(#075db8, #0280cf, #075db8);
  position: relative;
  left: 0;
  top: 0;
  z-index: 10;
}
.nav-fixed {
  position: fixed;
}
.nav {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.nav::before {
  content: "";
  width: 2px;
  height: 100%;
  border-left: 1px solid #03628f;
  border-right: 1px solid #51b5e6;
  position: absolute;
  left: 15px;
  top: 0;
  transform: skew(30deg);
}
.nav>li {
  flex: 1;
  float: left;
  position: relative;
}
.nav>li::before {
  content: "";
  width: 2px;
  height: 100%;
  border-left: 1px solid #03628f;
  border-right: 1px solid #51b5e6;
  position: absolute;
  right: -15px;
  top: 0;
  transform: skew(30deg);
}
.nav>li>a {
  width: 100%;
  float: left;
  overflow: hidden;
  height: 50px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  transform: skew(30deg);
  transform-origin: left top;
  position: relative;
  z-index: 0;
}
.nav>li>a::before,
.nav>li>a::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--color-hover);
  position: absolute;
  left: -100%;
  top: 0;
  z-index: -1;
}
.nav>li>a::after {
  left: initial;
  right: -100%;
}
.nav>li>a>span {
  transform: skew(-30deg);
}
.nav>li:hover>a::before,
.nav>li.li-active>a::before {
  left: 0;
}
.nav>li:hover>a::after,
.nav>li.li-active>a::after {
  right: 0;
}

/* 导航下拉 */
.nav-child {
  display: none;
  min-width: 100%;
  float: left;
  background-image: linear-gradient(#075db8, #0280cf, #075db8);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  z-index: 9;
  margin-left: 29px;
}
.nav-child li {
  position: relative;
}
.nav-child li a {
  display: block;
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  padding: 0 15px;
}
.nav-child li a::before,
.nav-child li a::after {
  background-color: var(--color-hover);
}
.nav-child li:hover>a {
  color: #fff;
}

@media (max-width:991px) {
  nav {
    position: fixed;
    background-color: rgba(0, 0, 0, .8);
    background-image: none;
    width: 100%;
    height: 100%;
    left: -100%;
    top: 0;
    z-index: 10;
    opacity: 0;
    display: flex;
    transition: all .4s
  }
  .nav-active {
    left: 0;
    opacity: 1
  }
  nav>.container {
    width: 100%;
    max-width: 100% !important
  }
  .nav {
    width: calc(100% - 110px);
    height: 100%;
    background-image: linear-gradient(#075db8, #0280cf, #075db8);
    overflow-y: auto;
    display: block;
    margin: 0;
    padding: 0
  }
  .nav::after,
  .nav::before,
  .nav>li::after,
  .nav>li::before {
    display: none
  }
  .nav>li {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #fff;
    margin: 0;
    padding: 0
  }
  .nav>li>a {
    height: 50px;
    transform: skew(0deg);
  }
  .nav>li>a>span {
    transform: skew(0deg);
  }
  .drop-down {
    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
  }
  .drop-down::before {
    content: "\f107"
  }
  .nav>li.li-ctive>.drop-down,
  .nav>li:hover>.drop-down {
    color: #fff
  }
  .nav>li.li-active>.drop-down::before,
  .nav>li:hover>.drop-down::before {
    content: "\f106"
  }
  .nav-child {
    display: none;
    background-color: #fff;
    position: relative;
    left: 0;
    top: 0;
    transform: initial;
    padding: 0;
    margin: 0;
  }
  .nav-child li {
    border-top: 1px solid #fff;
  }
  .nav-child li a {
    color: #fff;
  }
}
@media (max-width:767px) {
  .nav {
    width: calc(100% - 70px);
  }
}

/* banner大图 */
.banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.banner-swiper {
  width: 100%;
  height: 100%;
}
.banner-swiper img {
  width: 100%;
  display: block;
  height: auto;
}
/* 圆点 */
.banner-swiper .swiper-pagination {
  opacity: 1;
  bottom: 15px;
  display: flex;
  justify-content: center;
}
.banner-swiper .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  float: left;
  background: var(--color-hover);
  opacity: 0.5;
}
.banner-swiper>.swiper-pagination-bullets .swiper-pagination-bullet,
.banner-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
.banner-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--color-hover);
}
.banner-swiper:hover .swiper-pagination {
  opacity: 1;
}
/* 箭头 */
.banner-swiper .banner-prev,
.banner-swiper .banner-next {
  left: 2%;
  top: 50%;
  position: absolute;
  z-index: 9;
  transform: translateY(-50%);
  font-size: 60px;
  color: var(--white);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  outline: none;
  cursor: pointer;
}
.banner-swiper .banner-next {
  left: initial;
  right: 2%;
}
.banner-swiper:hover .banner-next,
.banner-swiper:hover .banner-prev {
  opacity: 1;
}

@media (max-width: 991px) {
  /*圆点*/
  .banner-swiper .swiper-pagination {
    bottom: 10px;
  }
  .banner-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 2px;
    opacity: 1;
    border-radius: 0 !important;
  }
  .banner-swiper>.swiper-pagination-bullets .swiper-pagination-bullet,
  .banner-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 2px;
  }
  .banner-swiper .swiper-pagination-bullet-active {
    width: 15px;
  }
}

/* 搜索 */
.search {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  background-color: #efefef;
}
.search-form {
  width: 304px;
  float: right;
}
.search-form>input {
  width: calc(100% - 45px);
  height: 30px;
  float: left;
  padding: 0 10px;
  border: 1px solid #e5e5e5;
  border-right: none;
  background-color: #fff;
}
.search-form>button {
  width: 45px;
  height: 30px;
  float: left;
  background: url(../images/search-btn.png) no-repeat center center var(--color-hover);
}
.search-text {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 14px;
}
.search-text>span {
  float: left;
  color: #4f4f4f;
  font-weight: bold;
}
.search-text>a {
  float: left;
  color: #7d7d7d;
  margin-left: 35px;
}
.search-text>a:hover {
  color: var(--color-main);
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .search-text>a {
    margin-left: 20px;
  }
}
@media (max-width: 991px) {
  .search-form {
    width: 34%;
  }
  .search-text>a {
    margin-left: 10px;
  }
}
@media (max-width: 767px) {
  .search-form {
    width: 100%;
  }
  .search-text {
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    padding: 10px 0 0 0;
  }
}


/* 底部 */
.link {
  width: 100%;
  overflow: hidden;
  background-color: var(--color-main);
  padding: 12px 0;
  line-height: 24px;
  font-size: 14px;
  color: #fff;
}
.link>.container>h1 {
  float: left;
  font-weight: bold;
  margin-right: 40px;
}
.link a {
  font-family: "Microsoft YaHei Light";
  margin-right: 50px;
}
.link a:hover {
  font-family: "Microsoft YaHei";
  text-decoration: underline;
}

.footer {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #e5e5e5;
  padding: 40px 0 30px 0;
  display: flex;
  justify-content: space-between;
}
.footer-title {
  display: block;
  overflow: hidden;
  line-height: 26px;
  font-weight: bold;
  font-size: 22px;
  color: #353535;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer-title>span {
  margin-bottom: 5px;
  display: block;
}
.footer-left {
  width: 205px;
}
.footer-left>ul {
  display: block;
  overflow: hidden;
}
.footer-left>ul>li {
  width: 50%;
  float: left;
  font-size: 14px;
  color: #777;
  height: 30px;
  line-height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.footer-left>ul>li>a:hover {
  text-decoration: underline;
  color: var(--color-main);
}

.footer-center {
  width: 51%;
  display: flex;
  justify-content: center;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
}
.footer-contact {
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 30px;
  color: #777;
}

.footer-right {
  width: 125px;
}
.footer-weixin {
  display: block;
  overflow: hidden;
}
.footer-weixin>img {
  width: 100%;
  display: block;
  height: auto;
}

.copyright {
  width: 100%;
  overflow: hidden;
  text-align: center;
  line-height: 24px;
  padding: 23px 0;
  color: #2e2e2e;
  font-size: 14px;
  opacity: 0.5;
}
.copyright a {
  margin: 0 5px;
}
.copyright a:hover {
  color: var(--color-main);
  opacity: 1;
  text-decoration: underline;
}
.footer-btn {
  display: none;
  position: fixed;
  right: 0;
  bottom: 3%;
  z-index: 99;
}
.footer-btn>a {
  width: 32px;
  height: 32px;
  float: left;
  background: url(../images/top-icon.png) no-repeat center center;
  background-size: 100% 100%;
  border-radius: 5px;
}


@media (max-width: 1200px) {
  .link a {
    margin-right: 30px;
  }
}
@media (max-width: 991px) {
  .link>.container>h1 {
    margin-right: 20px;
  }
  .link a {
    margin-right: 15px;
  }

  .footer {
    padding: 25px 0;
  }
  .footer-center {
    width: 46%;
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .link>.container>h1 {
    margin-right: 5px;
  }
  .link a {
    margin-right: 5px;
  }

  .footer {
    padding: 15px 0;
  }
  .footer-left {
    width: 100%;
  }
  .footer-left>ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-left>ul>li {
    width: auto;
    height: 22px;
    line-height: 22px;
    margin: 0 5px;
  }

  .copyright {
    padding: 10px 0;
  }
  .copyright>div {
    width: 100%;
  }
}
/* END-底部 */