@charset "UTF-8";
/*
 * @Author: Code Zhuang
 * @Date: 2023-06-30 10:03:27
 * @Last Modified by: Code Zhuang
 * @Last Modified time: 2023-07-02 18:13:58
 */

/* Animate.css动画演示 */
@import "../plugin/swiper/animate.min.css";

/* Swiper 7.4.1 */
@import "../plugin/swiper/swiper-bundle.min.css";

/* 字体图标 */
@import "../plugin/font/css/font-awesome.min.css";

/* 核心样式 */
@import "../css/core/bootstrap.min.css";

/* 公用样式 */
@import "../css/public.css";

.img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.img::before {
  content: "";
  display: block;
}
.container-fluid {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.title>h1 {
  line-height: 38px;
  font-size: 30px;
  color: #191919;
  padding-right: 30px;
  background: url(../images/title-icon.png) no-repeat right 5px;
}
.title>div {
  line-height: 32px;
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  opacity: 0.1;
}

@media (max-width: 767px) {
  .title {
    width: 100%;
    align-items: center;
  }
  .title>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .title>div {
    font-size: 14px;
    line-height: 20px;
  }
}

/* 首页样式 */
/* 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;
  left: initial;
  right: 0;
  bottom: 15px;
  display: flex;
  justify-content: center;
  width: auto;
  padding-right: 135px;
}
.banner-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  float: left;
  background: var(--color-main);
  opacity: 0.5;
}
.banner-swiper>.swiper-pagination-bullets .swiper-pagination-bullet,
.banner-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px;
}
.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;
  }
}

/* 伟隆包装 */
.about {
  padding: 75px 0;
}
.about .title {
  float: left;
}
.about-text {
  width: 63%;
  float: right;
  font-size: 19px;
  line-height: 26px;
  color: #424242;
}
.about-more {
  width: 100%;
  float: left;
}
.about-more>a {
  float: left;
  font-size: 16px;
  color: #636363;
  text-decoration: underline;
  line-height: 20px;
  position: relative;
  margin-top: -20px;
}
.about-more>a::after {
  content: ">";
  font-family: SimSun;
  color: var(--color-hover);
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
}
.about-more>a:hover {
  color: var(--color-hover);
}
.about-content {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
  margin-top: 45px;
}
.about-left {
  width: 50%;
  overflow: hidden;
  position: relative;
}
.about-right {
  width: 50%;
  display: flex;
}
.about-right>li {
  flex: 1;
}
.about-right>li>a {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding: 40px 20px;
}
.about-right>li>a>h1 {
  display: block;
  overflow: hidden;
  line-height: 34px;
  text-align: center;
  font-size: 24px;
  color: #fff;
}
.about-right>li>a>h6 {
  display: block;
  overflow: hidden;
  height: 48px;
  line-height: 24px;
  font-size: 16px;
  color: #fff;
  opacity: 0.85;
  margin-top: 10px;
  text-align: center;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.about-right>li>a .about-heng {
  width: 1px;
  height: 46px;
  float: left;
  background-color: #fff;
  opacity: 0.5;
  margin: 20px 0 30px 0;
}
.about-right>li>a .about-icon {
  width: 100%;
  height: 50px;
  position: relative;
  overflow: hidden;
}
.about-right>li:nth-child(1)>a {
  background-color: #00398b;
}
.about-right>li:nth-child(2)>a {
  background-color: #da5450;
}
.about-right>li:nth-child(3)>a {
  background-color: #e0b828;
}

@media (max-width: 1440px) {
  .about {
    padding: 60px 0;
  }
}
@media (max-width: 1240px) {
  .about {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .about {
    padding: 30px 0;
  }
  .about-text {
    width: 50%;
    font-size: 18px;
  }
  .about-content {
    margin-top: 30px;
  }
  .about-left {
    width: 30%;
  }
  .about-right {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .about {
    padding: 15px 0;
  }
  .about-text {
    width: 100%;
    font-size: 14px;
    line-height: 24px;
    margin-top: 10px;
  }
  .about-more {
    margin-top: 10px;
  }
  .about-more>a {
    margin-top: 0;
  }
  .about-more>a::after {
    right: -15px;
  }
  .about-content {
    margin-top: 10px;
  }
  .about-left {
    width: 100%;
  }
  .about-left::before {
    content: "";
    display: block;
    padding-top: 50%;
  }
  .about-right {
    width: 100%;
  }
  .about-right>li>a {
    padding: 10px;
  }
  .about-right>li>a>h1 {
    line-height: 30px;
    font-size: 18px;
  }
  .about-right>li>a>h6 {
    height: auto;
    line-height: 20px;
    font-size: 12px;
    margin-top: 5px;
    -webkit-line-clamp: initial;
  }
  .about-right>li>a .about-heng {
    width: 50px;
    height: 1px;
    margin: 10px 0;
  }
  .about-right>li>a .about-icon {
    height: 30px;
  }
}

/* 产品信息 */
.product {
  background-color: #f4f4f4;
  padding: 65px 0 45px 0;
}
.product-nav {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.product-nav>li {
  float: left;
  background: url(../images/shutiao.png) no-repeat right center;
  padding-right: 3px;
  margin-bottom: 25px;
}
.product-nav>li:last-child {
  padding: 0;
  background: none;
}
.product-nav>li>a {
  float: left;
  padding: 0 35px;
  line-height: 30px;
  font-size: 20px;
  color: #424242;
  position: relative;
}
.product-nav>li>a::before {
  content: "";
  width: 0;
  float: left;
  height: 2px;
  background-color: var(--color-hover);
  position: absolute;
  left: 0;
  top: calc(100% + 13px);
  overflow: hidden;
  z-index: 2;
}
.product-nav>li>a::after {
  content: "";
  width: 0;
  float: left;
  height: 10px;
  background-image: linear-gradient(#bdcadd, #f0f1f2);
  position: absolute;
  left: 0;
  top: calc(100% + 15px);
  overflow: hidden;
}
.product-nav>li:hover>a,
.product-nav>li.product-active>a {
  color: var(--color-hover);
  font-weight: bold;
  background: url(../images/product-icon.png) no-repeat 10px center;
}
.product-nav>li:hover>a::before,
.product-nav>li.product-active>a::before,
.product-nav>li:hover>a::after,
.product-nav>li.product-active>a::after {
  width: calc(100% - 35px);
}

.product-content {
  display: block;
  overflow: hidden;
  margin-top: 35px;
}
.product-content>div {
  display: none;
}
.product-content>div:first-child {
  display: block;
}
.product-list {
  display: flex;
  flex-wrap: wrap;
  width: 1437px;
}
.product-list>li {
  width: 442px;
  margin: 0 37px 40px 0;
}
.product-list>li>a {
  display: block;
  overflow: hidden;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 15px;
}
.product-list>li>a .img {
  background-color: #fff;
}
.product-list>li>a .img::before {
  padding-top: 48.5437%;
}
.product-list>li>a>h1 {
  display: block;
  overflow: hidden;
  margin-top: 30px;
  text-align: center;
  line-height: 28px;
  font-size: 18px;
  color: #2a2a2a;
}
.product-list>li>a>h1>span {
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 20px;
  color: #2a2a2a;
}
.product-list>li>a:hover>h1,
.product-list>li>a:hover>h1>span {
  color: #fff;
}

@media (max-width: 1440px) {
  .product-list {
    width: 102%;
    margin-left: -1%;
  }
  .product-list>li {
    width: calc(calc(100% / 3) - 2%);
    margin: 0 1% 40px 1%;
  }
}
@media (max-width: 1240px) {
  .product {
    padding: 45px 0;
  }
  .product-nav>li>a {
    padding: 0 20px;
  }
  .product-nav>li:hover>a,
  .product-nav>li.product-active>a {
    background: url(../images/product-icon.png) no-repeat 2px center;
  }
  .product-nav>li:hover>a::before,
  .product-nav>li.product-active>a::before,
  .product-nav>li:hover>a::after,
  .product-nav>li.product-active>a::after {
    width: calc(100% - 20px);
  }
}
@media (max-width: 991px) {
  .product {
    padding: 30px 0;
  }
  .product-content {
    margin-top: 25px;
  }
  .product-list>li {
    margin: 0 1% 30px 1%;
  }
  .product-list>li>a {
    padding: 15px;
  }
  .product-list>li>a>h1 {
    margin-top: 15px;
    line-height: 26px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .product {
    padding: 15px 0;
  }
  .product-nav {
    margin-top: 10px;
  }
  .product-nav>li {
    margin-bottom: 10px;
  }
  .product-nav>li>a {
    padding: 0 10px;
    font-size: 15px;
  }
  .product-nav>li>a::before {
    top: 100%;
  }
  .product-nav>li>a::after {
    top: calc(100% + 2px);
    height: 8px;
  }
  .product-nav>li:hover>a,
  .product-nav>li.product-active>a {
    background: url(../images/product-icon.png) no-repeat 2px center;
    background-size: 5px auto;
  }
  .product-nav>li:hover>a::before,
  .product-nav>li.product-active>a::before,
  .product-nav>li:hover>a::after,
  .product-nav>li.product-active>a::after {
    width: calc(100% - 10px);
  }
  .product-content {
    margin-top: 10px;
  }
  .product-list {
    justify-content: space-between;
  }
  .product-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .product-list>li>a {
    padding: 5px;
  }
  .product-list>li>a>h1 {
    margin-top: 5px;
    line-height: 24px;
    font-size: 14px;
  }
  .product-list>li>a>h1>span {
    line-height: 22px;
    font-size: 16px;
  }
}

/* 新闻中心 */
.news {
  padding: 60px 0 50px 0;
}
.news-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.news-list>li {
  width: calc(50% - 30px);
  float: left;
  margin-bottom: 30px;
}
.news-list>li>a {
  width: 100%;
  float: left;
  display: flex;
}
.news-list>li>a .img {
  width: 218px;
  margin-top: 6px;
}
.news-list>li>a .news-box {
  width: calc(100% - 218px);
  padding-left: 20px;
}
.news-list>li>a .news-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 28px;
  font-size: 20px;
  color: #363636;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-list>li>a .news-box .news-text {
  display: block;
  overflow: hidden;
  height: 52px;
  line-height: 26px;
  font-size: 18px;
  color: #5a5a5a;
  margin-top: 20px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-list>li>a .news-box .news-more {
  display: block;
  overflow: hidden;
  margin-top: 36px;
  width: 58px;
  height: 30px;
  line-height: 28px;
  border: 1px solid #cdcdcd;
  text-align: center;
  position: relative;
}
.news-list>li>a .news-box .news-more>img:first-child {
  display: block;
}
.news-list>li>a .news-box .news-more>img:last-child {
  display: none;
}
.news-list>li>a:hover .news-box>h1 {
  color: var(--color-hover);
}
.news-list>li>a:hover .news-box .news-more {
  background-color: var(--color-hover);
}
.news-list>li>a:hover .news-box .news-more>img:first-child {
  display: none;
}
.news-list>li>a:hover .news-box .news-more>img:last-child {
  display: block;
}

@media (max-width: 1240px) {
  .news {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .news {
    padding: 30px 0;
  }
  .news-list>li {
    width: calc(50% - 15px);
  }
  .news-list>li>a .img {
    width: 40%;
  }
  .news-list>li>a .news-box {
    width: 60%;
  }
  .news-list>li>a .news-box .news-text {
    margin-top: 10px;
  }
  .news-list>li>a .news-box .news-more {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .news {
    padding: 15px 0;
  }
  .news-list {
    margin-top: 10px;
  }
  .news-list>li {
    width: 100%;
    margin-bottom: 10px;
  }
  .news-list>li>a .img {
    margin: 0;
  }
  .news-list>li>a .news-box {
    padding-left: 15px;
  }
  .news-list>li>a .news-box>h1 {
    line-height: 24px;
    font-size: 16px;
  }
  .news-list>li>a .news-box .news-text {
    margin-top: 5px;
    height: 40px;
    line-height: 20px;
    font-size: 14px;
  }
  .news-list>li>a .news-box .news-more {
    margin-top: 5px;
    width: 40px;
    height: 24px;
    line-height: 22px;
  }
}

/* 荣誉资质 */
.honor {
  background-image: url(../images/honor-bj.jpg);
  padding: 65px 0;
}
.honor .swiper {
  width: 100%;
  margin-top: 30px;
  padding-bottom: 60px;
}
.honor .swiper .swiper-slide>a {
  display: block;
  overflow: hidden;
  background-color: #fff;
  padding: 20px 30px;
}
.honor .swiper .swiper-slide>a .img::before {
  padding-top: 136.945813%;
}
.honor .swiper-pagination {
  bottom: 0;
  display: flex;
  justify-content: center;
}
.honor .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  border: 1px solid #aeaeae;
  background: #fff;
  opacity: 1;
}
.honor .swiper-pagination-bullet-active {
  background-color: var(--color-hover);
  border-color: var(--color-main);
}

@media (max-width: 1240px) {
  .honor {
    padding: 50px 0;
  }
  .honor .swiper {
    padding-bottom: 50px;
  }
}
@media (max-width: 991px) {
  .honor {
    padding: 30px 0;
  }
  .honor .swiper {
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .honor {
    padding: 15px 0;
  }
  .honor .swiper {
    margin-top: 10px;
    padding-bottom: 15px;
  }
  .honor .swiper .swiper-slide>a {
    padding: 10px;
  }
  .honor .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
  }
}
/* END-首页样式 */

/* 内页大图 */
.n-banner {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 316px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.n-banner>.container {
  width: 100%;
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.n-banner>.container>div {
  line-height: 38px;
  font-weight: bold;
  text-transform: uppercase;
}
.n-banner>.container>h1 {
  line-height: 44px;
}
.n-banner>.container>h1::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #ffca02;
  display: block;
  margin-top: 18px;
}

@media (max-width: 767px) {
  .n-banner {
    height: 200px;
  }
  .n-banner>.container {
    font-size: 20px;
  }
  .n-banner>.container>div {
    line-height: 30px;
  }
  .n-banner>.container>h1 {
    line-height: 30px;
  }
  .n-banner>.container>h1::after {
    margin-top: 10px;
  }
}
/* END-内页大图 */

/* 公司简介 */
.company-title {
  display: block;
  overflow: hidden;
  text-align: center;
}
.company-title>div {
  line-height: 36px;
  font-size: 30px;
  color: #dadada;
  text-transform: uppercase;
}
.company-title>h1 {
  line-height: 42px;
  font-size: 30px;
  color: #191919;
}

@media (max-width: 767px) {
  .company-title>div {
    line-height: 20px;
    font-size: 14px;
  }
  .company-title>h1 {
    line-height: 30px;
    font-size: 20px;
  }
}

/* 简介 */
.company-about {
  padding: 65px 0;
}
.company-about>.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.company-about-left {
  width: 50%;
  overflow: hidden;
  position: relative;
  margin-top: 5px;
}
.company-about-right {
  width: 50%;
  padding-left: 45px;
}
.company-about-right>h1 {
  display: block;
  overflow: hidden;
  line-height: 34px;
  font-size: 24px;
  color: #1b1b1b;
  position: relative;
}
.company-about-right>h1::after {
  content: "";
  width: 50.5%;
  float: right;
  height: 2px;
  background-color: #e61f19;
  margin-top: 25px;
}
.company-about-text {
  display: block;
  overflow: hidden;
  margin-top: 35px;
  height: 240px;
  line-height: 30px;
  font-size: 18px;
  color: #4d4c4c;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
}
.company-about-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 30px 0 25px 0;
}
.company-about-list>li>div:first-child {
  display: block;
  overflow: hidden;
  line-height: 28px;
  font-size: 16px;
  color: #646464;
}
.company-about-list>li>div:last-child {
  display: block;
  overflow: hidden;
  line-height: 36px;
  font-size: 14px;
  color: #00398b;
}
.company-about-list>li>div:last-child>span {
  float: left;
  height: 54px;
  line-height: 54px;
  font-size: 44px;
  padding-right: 10px;
}
.company-about-list>li:nth-child(2) {
  padding: 0 50px 0 60px;
  position: relative;
}
.company-about-list>li:nth-child(2)::before {
  content: "";
  width: 1px;
  height: 68px;
  background-color: #d4d4d4;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.company-about-list>li:nth-child(2)::after {
  content: "";
  width: 1px;
  height: 68px;
  background-color: #d4d4d4;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 1240px) {
  .company-about {
    padding: 50px 0;
  }
  .company-about-right>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .company-about-right>h1::after {
    width: 42%;
    margin-top: 20px;
  }
  .company-about-text {
    margin-top: 25px;
  }
  .company-about-list {
    margin: 20px 0;
  }
  .company-about-list>li:nth-child(2) {
    padding: 0 25px;
  }
  .company-about-list>li>div:last-child>span {
    height: 44px;
    line-height: 44px;
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  .company-about {
    padding: 30px 0;
  }
  .company-about-right {
    padding-left: 30px;
  }
  .company-about-text {
    margin-top: 15px;
    font-size: 16px;
    line-height: 24px;
    height: 192px;
  }
  .company-about-list {
    margin: 10px 0;
  }
  .company-about-list>li:nth-child(2) {
    padding: 0 10px;
  }
  .company-about-list>li>div:last-child>span {
    height: 40px;
    line-height: 40px;
    font-size: 26px;
    padding-right: 5px;
  }

}
@media (max-width: 767px) {
  .company-about {
    padding: 15px 0;
  }
  .company-about-left {
    width: 100%;
  }
  .company-about-left::before {
    content: "";
    display: block;
    padding-top: 68%;
  }
  .company-about-right {
    width: 100%;
    padding: 15px 0 0 0;
  }
  .company-about-right>h1 {
    line-height: 24px;
    font-size: 16px;
  }
  .company-about-right>h1::after {
    width: 30%;
    margin-top: 15px;
  }
  .company-about-text {
    margin-top: 10px;
    font-size: 14px;
    line-height: 22px;
    height: auto;
    -webkit-line-clamp: initial;
  }
  .company-about-list>li>div:first-child {
    line-height: 20px;
    font-size: 14px;
  }
  .company-about-list>li>div:last-child {
    line-height: 24px;
    font-size: 12px;
  }
  .company-about-list>li>div:last-child>span {
    height: 30px;
    line-height: 30px;
    font-size: 20px;
  }
  .company-about-list>li:nth-child(2) {
    padding: 0 20px;
  }
}

/* 4类产品/公司概要 */
.company-product {
  background-image: url(../images/company-bj.jpg);
  padding: 65px 0;
}
.company-product>.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.company-product>.container>div {
  width: calc(50% - 10px);
  background-image: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  padding: 25px;
  padding-top: 30px;
  position: relative;
}
.company-product>.container>div>h1 {
  display: block;
  overflow: hidden;
  line-height: 36px;
  font-size: 22px;
}
.company-product>.container>div>div {
  display: block;
  overflow: hidden;
  margin-top: 15px;
  font-size: 18px;
  line-height: 34px;
  color: #4d4c4c;
}
.company-product-left::before {
  content: "";
  width: 100%;
  height: 6px;
  background-image: linear-gradient(to right, #00398b, #5a8fda);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.company-product-left>h1 {
  color: #00398b;
}
.company-product-right::before {
  content: "";
  width: 100%;
  height: 6px;
  background-image: linear-gradient(to right, #e61f19, #ef918e);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.company-product-right>h1 {
  color: #e61f19;
}

@media (max-width: 1240px) {
  .company-product {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .company-product {
    padding: 30px 0;
  }
  .company-product>.container>div>div {
    font-size: 16px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .company-product {
    padding: 15px 0;
  }
  .company-product>.container>div {
    width: 100%;
    padding: 15px;
    padding-top: 20px;
    margin-top: 10px;
  }
  .company-product>.container>div:first-child {
    margin: 0;
  }
  .company-product>.container>div>h1 {
    line-height: 30px;
    font-size: 18px;
  }
  .company-product>.container>div>div {
    font-size: 14px;
    line-height: 24px;
    margin-top: 10px;
  }
}

/* 环境展示 */
.environment {
  padding: 60px 0;
}
.environment-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 35px;
}
.environment-list>li {
  width: calc(50% - 12px);
  margin-bottom: 24px;
}
.environment-list>li>a {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  position: relative;
}
.environment-list>li>a::before {
  content: "";
  display: block;
  padding-top: 55.2326%;
}

@media (max-width: 1240px) {
  .environment {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .environment {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .environment {
    padding: 15px 0;
  }
  .environment-list {
    margin-top: 10px;
  }
  .environment-list>li {
    width: calc(50% - 5px);
    margin-bottom: 10px;
  }
}
/* END-公司简介 */

/* 产品信息 */
.menu-list {
  width: calc(100% + 24px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -40px;
  margin-left: -12px;
  position: relative;
  z-index: 2;
}
.menu-list>li {
  width: calc(25% - 24px);
  margin: 0 12px 14px 12px;
  padding-bottom: 24px;
  position: relative;
}
.menu-list>li::before {
  content: "";
  width: 0;
  height: 4px;
  background-color: var(--color-hover);
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
}
.menu-list>li::after {
  content: "";
  width: 0;
  height: 20px;
  background-image: linear-gradient(#d8e1ed, #fff);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.menu-list>li>a {
  display: block;
  overflow: hidden;
  height: 64px;
  line-height: 64px;
  text-align: center;
  font-size: 20px;
  color: #373737;
  padding: 0 15px;
  background-color: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.menu-list>li:hover::before,
.menu-list>li.menu-active::before {
  width: 100%;
}
.menu-list>li:hover::after,
.menu-list>li.menu-active::after {
  width: 100%;
}

.menu-chlid-list{
  display: none;
  width:100%;
  float: left;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 2;
  background-color: rgba(0,0,0,0.8);
}
.menu-chlid-list>li{
  display: block;
  overflow: hidden;
}
.menu-chlid-list>li>a{
  display: block;
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  color: #fff;
}
.menu-list>li:hover .menu-chlid-list{
  display: block;
}

.menu-chlid-list>li>a:hover,.menu-chlid-list>li>a.active{
  background: #00398b;
  color: #fff;
}


.products-list {
  width: calc(100% + 28px);
  display: flex;
  flex-wrap: wrap;
  margin-left: -14px;
  padding: 20px 0 40px 0;
}
.products-list>li {
  width: 448px;
  margin: 0 14px 30px 14px;
}
.products-list>li>a {
  display: block;
  overflow: hidden;
  background-color: #f0f0f0;
  padding: 3px;
}
.products-list>li>a .img {
  background-color: #fff;
}
.products-list>li>a .img::before {
  padding-top: 65.38462%;
}
.products-list>li>a>h1 {
  display: block;
  overflow: hidden;
  text-align: center;
  padding: 30px 0;
  line-height: 24px;
  font-size: 18px;
  color: #2a2a2a;
}
.products-list>li>a>h1>span {
  display: block;
  overflow: hidden;
  transition: initial;
}
.products-list>li>a:hover>h1 {
  color: #fff;
}


.product-banner {
  width: 100%;
  overflow: hidden;
  background: url(../images/product-details-bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 60px 0;
}
.product-banner .menu-list {
  margin-top: 0;
  padding: 0 15px;
}
.product-banner .menu-list>li {
  width: 25%;
  margin: 0 0 20px 0;
  padding: 0 35px 24px 35px;
}
.product-banner .menu-list>li::before {
  width: calc(100% - 70px);
  background-color: #515151;
}
.product-banner .menu-list>li::after {
  width: calc(100% - 70px);
  background-image: linear-gradient(rgba(185, 185, 185, 1), rgba(185, 185, 185, 0));
}
.product-banner .menu-list>li>a {
  height: 56px;
  line-height: 56px;
  font-size: 20px;
  color: #202020;
  padding: 0;
  text-align: left;
  background: none;
}
.product-banner .menu-list>li:hover::before,
.product-banner .menu-list>li.menu-active::before {
  background-color: var(--color-hover);
}
.product-banner .menu-list>li:hover::after,
.product-banner .menu-list>li.menu-active::after {
  background-image: linear-gradient(rgba(174, 183, 195, 1), rgba(174, 183, 195, 0));
}
.product-banner .menu-list>li:hover>a,
.product-banner .menu-list>li.menu-active>a {
  color: var(--color-hover);
  font-weight: bold;
}
.product-banner .menu-chlid-list{
  width: calc(100% - 70px);
  left: 50%;
  transform: translateX(-50%);
}

.product-title {
  display: block;
  overflow: hidden;
  text-align: center;
  margin-top: 40px;
}
.product-title>h1 {
  line-height: 42px;
  font-size: 30px;
  color: #003588;
}
.product-title>div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}
.product-title>div>span {
  width: 130px;
  float: left;
  height: 40px;
  font-size: 18px;
  color: #2f2f2f;
  border: 2px solid #aeaeae;
  margin: 0 7px 10px 7px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.product-details-banner {
  width: 100%;
  overflow: hidden;
  margin-top: 10px;
  position: relative;
  padding: 0 50px;
}
.product-details-banner .img::before {
  content: "";
  display: block;
  padding-top: 40.7692308%;
}

/*.product-details-banner .swiper {
  width: 100%;
  overflow: hidden;
}
.product-details-banner .swiper .swiper-slide {
  overflow: hidden;
  position: relative;
}
.product-details-banner .swiper .swiper-slide::before {
  content: "";
  display: block;
  padding-top: 40.7692308%;
}*/
.product-details-banner .prev-button,
.product-details-banner .next-button {
  width: 36px;
  height: 36px;
  float: left;
  background-image: url(../images/product-details-left.png), url(../images/product-details-left-hover.png);
  background-repeat: no-repeat, no-repeat;
  background-position: left center, -36px center;
  background-size: 36px 36px;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.product-details-banner .next-button {
  background-image: url(../images/product-details-right.png), url(../images/product-details-right-hover.png);
  background-position: left center, 36px center;
  left: initial !important;
  right: 0;
}
.product-details-banner .prev-button:hover {
  background-position: 36px center, 0 center;
}
.product-details-banner .next-button:hover {
  background-position: -36px center, 0 center;
}
.product-details-banner .swiper-button-lock{display: block;}

.product-details {
  width: 100%;
  overflow: hidden;
  padding: 70px 0;
}
.product-details-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  position: relative;
}
.product-details-nav::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #d2d2d2;
  position: absolute;
  left: 0;
  bottom: 0;
}
.product-details-nav>li {
  display: block;
  overflow: hidden;
  line-height: 32px;
  font-size: 20px;
  color: #2f2f2f;
  padding-bottom: 25px;
  position: relative;
  cursor: pointer;
  width: calc(100% / 4);
	text-align: center;
}
.product-details-nav>li::after {
  content: "";
  width: 0;
  height: 5px;
  background-color: var(--color-hover);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.product-details-nav>li:hover,
.product-details-nav>li.product-details-nav-active {
  color: var(--color-hover);
}
.product-details-nav>li:hover::after,
.product-details-nav>li.product-details-nav-active::after {
  width: 100%;
}
.product-details-content {
  display: block;
  overflow: hidden;
  margin-top: 45px;
}
.product-details-content>div {
  display: none;
  font-size: 16px !important;
  line-height: 28px !important;
}
.product-details-content>div table{
   width: 100%;
   height: auto;
   border-collapse:collapse;
}
.product-details-content>div table td{
  border: 1px #ccc solid !important;
  padding: 2px !important;
  font-size: 16px !important;
  line-height: 28px !important;
}
.product-details-content>div img{
  max-width: 100%;
  height: auto;
  margin: 5px auto;
}
.product-details-content>div:first-child {
  display: block;
}
.product-details-left {
  width: 47%;
  float: left;
  overflow: hidden;
  position: relative;
}
.product-details-left::before {
  content: "";
  display: block;
  padding-top: 58.5366%;
}
.product-details-right {
  display: block;
  overflow: hidden;
  padding-left: 50px;
  font-size: 18px;
  color: #5e5e5e;
  line-height: 30px;
}
.product-details-right>p {
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
}
.product-details-right>p>span {
  float: left;
  color: var(--color-hover);
  margin: 0 10px 0 0;
}

@media (max-width: 1440px) {
  .products-list {
    width: 102%;
    margin-left: -1%;
  }
  .products-list>li {
    width: calc(calc(100% / 3) - 2%);
    margin: 0 1% 30px 1%;
  }
}
@media (max-width: 1240px) {
  .product-banner {
    padding: 50px 0;
  }
  .product-banner .menu-list {
    padding: 0;
  }
  .product-banner .menu-list>li {
    padding: 0 15px 24px 15px;
  }
  .product-banner .menu-list>li::before,
  .product-banner .menu-list>li::after {
    width: calc(100% - 30px);
  }
  .product-banner .menu-list>li>a {
    font-size: 18px;
  }

  .product-title {
    margin-top: 20px;
  }
  .product-details {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .menu-list {
    width: 102%;
    margin-top: -20px;
    margin-left: -1%;
  }
  .menu-list>li {
    width: 23%;
    margin: 0 1% 14px 1%;
  }
  .menu-list>li>a {
    height: 54px;
    line-height: 54px;
    font-size: 18px;
  }
  .products-list>li>a>h1 {
    padding: 15px 0;
  }

  .product-banner {
    padding: 30px 0;
  }
  .product-details {
    padding: 30px 0;
  }
  .product-title>div {
    margin-top: 10px;
  }
  .product-details-nav>li {
    padding-bottom: 15px;
  }
  .product-details-right {
    padding-left: 30px;
    font-size: 16px;
    line-height: 28px;
  }
  .product-details-content {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .menu-title {
    width: calc(100% + 40px);
    text-align: center;
    margin-left: -20px;
    font-size: 18px;
    font-weight: bold;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    color: #fff;
    background-color: var(--color-hover);
    position: relative;
  }
  .menu-title-active {
    text-align: left;
  }
  .menu-title-active::after {
    content: "\f078";
    font-family: FontAwesome;
    font-size: 16px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .menu-list {
    width: 100%;
    display: none;
    margin: 0;
  }
  .menu-list>li {
    width: 100%;
    margin: 3px 0 0 0;
    padding: 0;
  }
  .menu-list>li::before,
  .menu-list>li::after {
    display: none;
  }
  .menu-list>li>a {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    padding: 0 10px;
    background-color: #f0f0f0;
  }

.menu-chlid-list{
  position: relative;
  left: initial;
  top: initial;
  background-color: initial;
  padding: 0 10px;
}
.menu-chlid-list>li{
  margin-top: 3px;
}
.menu-chlid-list>li>a{
  background-color: #f0f0f0;
  color: #333;
}

  .products-list {
    width: 100%;
    margin-left: 0;
    padding: 15px 0;
    justify-content: space-between;
  }
  .products-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .products-list>li>a>h1 {
    padding: 10px 0;
    line-height: 22px;
    font-size: 14px;
  }

  .product-banner {
    padding: 0 0 20px 0;
  }
  .product-details {
    padding: 15px 0;
  }
  .product-banner .menu-list>li {
    width: 100%;
    margin: 3px 0 0 0;
    padding: 0;
  }
  .product-banner .menu-list>li>a {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
    background: #fff;
  }
  .product-title>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .product-title>div>span {
    width: 90px;
    height: 26px;
    font-size: 14px;
    margin: 0 2px 5px 2px;
    border-radius: 13px;
  }
  .product-details-banner {
    padding: 0 30px;
  }
  .product-details-banner .swiper .swiper-slide::before {
    padding-top: 75%;
  }
  .product-details-banner .prev-button,
  .product-details-banner .next-button {
    width: 24px;
    height: 24px;
    background-position: left center, -24px center;
    background-size: 24px 24px;
  }
  .product-details-banner .next-button {
    background-position: left center, 24px center;
  }
  .product-details-banner .prev-button:hover {
    background-position: 24px center, 0 center;
  }
  .product-details-banner .next-button:hover {
    background-position: -24px center, 0 center;
  }

  .product-details-nav>li {
    line-height: 26px;
    font-size: 14px;
    padding-bottom: 5px;
	width: calc(100% / 4);
	text-align: center;
  }
  .product-details-content {
    margin-top: 15px;
  }
  .product-details-left {
    width: 100%;
    float: none;
    display: block;
  }
  .product-details-right {
    padding: 15px 0 0 0;
    font-size: 14px;
    line-height: 24px;
  }
  .product-details-right>p {
    margin-bottom: 10px;
  }
  .product-details-right>p>span {
    margin-right: 5px;
  }
}
/* END-产品信息 */

/* 新闻中心 */
.info {
  display: block;
  overflow: hidden;
  padding: 25px 0 50px 0;
}
.info>li {
  display: block;
  overflow: hidden;
}
.info>li>a {
  width: 100%;
  float: left;
  display: flex;
  overflow: hidden;
  padding: 40px 35px;
  background-color: #f5f5f5;
}
.info>li>a .info-left {
  width: 294px;
  overflow: hidden;
  position: relative;
}
.info>li>a .info-right {
  width: calc(100% - 294px);
  padding-left: 50px;
}
.info>li>a .info-right .info-box {
  display: block;
  overflow: hidden;
  padding-bottom: 17px;
  border-bottom: 1px dashed #bbb;
}
.info>li>a .info-right .info-box .info-time {
  float: left;
  margin-right: 50px;
  text-align: center;
  line-height: 24px;
  font-size: 18px;
  color: #818181;
}
.info>li>a .info-right .info-box .info-time>span {
  display: block;
  overflow: hidden;
  line-height: 40px;
  font-size: 48px;
  color: #424242;
  margin-bottom: 5px;
}
.info>li>a .info-right .info-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 24px;
  color: #424242;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.info>li>a .info-right .info-box .info-text {
  display: block;
  overflow: hidden;
  margin-top: 10px;
  height: 52px;
  line-height: 26px;
  font-size: 18px;
  color: #7c7c7c;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.info>li>a .info-right .info-more {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 20px;
  width: 142px;
  height: 45px;
  border: 2px solid #d7d7d7;
  font-size: 16px;
  color: #4c4c4c;
}
.info>li>a:hover .info-right .info-more {
  border-color: var(--color-hover);
  color: #fff;
}

.info>li:nth-child(even)>a {
  background-color: #fff;
}

.news-details {
  display: block;
  overflow: hidden;
  padding: 25px 0 50px 0;
}
.news-details-title {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
}
.news-details-time {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
  color: var(--color6);
  line-height: 1.1;
  padding: 15px 0;
  border-bottom: 1px dashed var(--colorC);
}
.news-details-content {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
  padding-top: 20px;
}
.news-details-content img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .info>li>a {
    padding: 20px;
  }
  .info>li>a .info-left {
    width: 200px;
  }
  .info>li>a .info-right {
    width: calc(100% - 200px);
    padding-left: 30px;
  }
  .info>li>a .info-right .info-box .info-time {
    margin-right: 30px;
  }

}
@media (max-width: 767px) {
  .info {
    padding: 20px 0;
  }
  .info>li>a {
    padding: 10px;
  }
  .info>li>a .info-left {
    width: 140px;
  }
  .info>li>a .info-right {
    width: calc(100% - 140px);
    padding-left: 15px;
  }
  .info>li>a .info-right .info-box {
    padding-bottom: 10px;
  }
  .info>li>a .info-right .info-box>h1 {
    line-height: 24px;
    font-size: 16px;
  }
  .info>li>a .info-right .info-box .info-text {
    margin-top: 5px;
    height: 48px;
    line-height: 24px;
    font-size: 14px;
  }
  .info>li>a .info-right .info-more {
    margin-top: 10px;
    width: 110px;
    height: 34px;
    font-size: 14px;
  }

  .news-details {
    padding: 20px 0;
  }
  .news-details-title {
    font-size: 16px;
  }
  .news-details-time {
    padding: 5px 0;
  }
  .news-details-content {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-新闻中心 */

/* 服务支持 */
.service {
  width: 100%;
  overflow: hidden;
  background: url(../images/service-bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 55px 0;
}
.service-title {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.service-title>img {
  margin: 0 50px;
}
.service-title::before,
.service-title::after {
  content: "";
  width: 192px;
  height: 1px;
  background-color: #979797;
  float: left;
}
.service-content {
  display: block;
  overflow: hidden;
  margin-top: 50px;
  text-align: center;
  font-size: 20px;
  line-height: 30px;
  color: #4f4f4f;
}
.service-content>h2 {
  display: block;
  line-height: 34px;
  overflow: hidden;
  margin-top: 25px;
  font-size: 24px;
  color: #00398b;
  margin-bottom: 20px;
}

@media (max-width:991px) {
  .service {
    padding: 40px 0;
  }
}
@media (max-width:767px) {
  .service {
    padding: 20px 0;
  }
  .service-title>img {
    margin: 0 15px;
  }
  .service-title::before,
  .service-title::after {
    width: 80px;
  }

  .service-content {
    margin-top: 15px !important;
    font-size: 14px !important;
    line-height: 24px !important;
  }
 .service-content span{
    margin-top: 15px !important;
    font-size: 14px !important;
    line-height: 24px !important;
  }
  .service-content>h2 {
    line-height: 24px !important;
    margin-top: 10px !important;
    font-size: 16px !important;
    margin-bottom: 10px !important;
  }
}
/* END-服务支持 */

/* 联系我们 */
.contact {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 70px 0;
}
.contact-text {
  width: 40%;
  float: left;
  padding-left: 60px;
}
.contact-text>h1 {
  display: block;
  overflow: hidden;
  line-height: 32px;
  font-size: 28px;
  color: #00398b;
  padding-bottom: 30px;
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 20px;
}
.contact-text>div {
  display: block;
  overflow: hidden;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #e1e1e1;
  font-size: 18px;
  line-height: 36px;
  color: #555;
}
.contact-text>div>h2 {
  display: block;
  overflow: hidden;
  line-height: 36px;
  color: #292929;
  font-weight: bold;
}
.contact-text>div:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.contact-map {
  width: 60%;
  float: left;
  overflow: hidden;
  height: 540px;
  border: none
}

@media (max-width:1240px) {
  .contact {
    padding: 50px 0;
  }
  .contact-text {
    padding-left: 40px;
  }
}
@media (max-width:991px) {
  .contact {
    padding: 30px 0;
  }
  .contact-text {
    padding-left: 20px;
  }
  .contact-text>div {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
@media (max-width:767px) {
  .contact {
    padding: 15px 0;
    flex-direction: column-reverse;
  }

  .contact-text {
    width: 100%;
    padding: 0;
    margin-top: 15px;
  }
  .contact-text>h1 {
    line-height: 24px;
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .contact-text>div {
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 30px;
  }
  .contact-text>div>h2 {
    line-height: 30px;
  }

  .contact-map {
    width: 100%;
    height: 300px
  }
}
/* END-联系我们 */