@charset "UTF-8";

/*
 * @制作者: Code Zhuang
 * @创建时间: 2023-05-14 14:03:23
 * @上次修改者: Code Zhuang
 * @上次修改时间: 2023-05-14 14:03:23
 */

/* 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-wrap: wrap;
  justify-content: center;
}
.title>h1 {
  line-height: 42px;
  padding: 0 10px;
  position: relative;
  font-size: 30px;
  color: var(--color3);
}
.title>h1::before,
.title>h1::after {
  content: "";
  width: 25px;
  height: 2px;
  background-color: var(--color-main);
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.title>h1::after {
  right: initial;
  left: 100%;
}
.title>div {
  width: 100%;
  line-height: 30px;
  font-size: 24px;
  color: #c6c6c6;
  text-transform: capitalize;
  overflow: hidden;
  text-align: center;
}

.title-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.title-nav>li {
  min-width: 172px;
  margin: 5px;
}
.title-nav>li>a {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  height: 40px;
  font-size: 16px;
  background-color: var(--color-main);
  padding: 0 20px;
  color: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.title-nav>li>a::before,
.title-nav>li>a::after {
  content: "";
  width: 200%;
  height: 100%;
  transform: skewX(45deg);
  transition: all linear 0.6s;
  background-color: var(--color-hover);
  position: absolute;
  right: 300%;
  top: 0;
  z-index: -1;
}
.title-nav>li>a::after {
  right: initial !important;
  left: 300%;
}
.title-nav>li>a:hover::before,
.title-nav>li.title-nav-active>a::before {
  right: 45%;
}
.title-nav>li>a:hover::after,
.title-nav>li.title-nav-active>a::after {
  left: 45%;
}

.more {
  display: flex;
  justify-content: center;
}
.more>a {
  width: 148px;
  float: left;
  height: 44px;
  border-radius: 22px;
  font-size: 16px;
  color: var(--color3);
  border: 1px solid #000;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.more>a::before,
.more>a::after {
  content: "";
  width: 200%;
  height: 100%;
  transform: skewX(45deg);
  transition: all linear 0.3s;
  background-color: var(--color-main);
  position: absolute;
  right: 300%;
  top: 0;
  z-index: -1;
}
.more>a::after {
  right: initial !important;
  left: 300%;
}
.more>a:hover {
  color: #fff;
}
.more>a:hover::before {
  right: 45%;
}
.more>a:hover::after {
  left: 45%;
}

@media (max-width: 767px) {
  .title>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .title>div {
    font-size: 14px;
    line-height: 20px;
  }

  .title-nav {
    justify-content: space-between;
  }
  .title-nav>li {
    width: calc(50% - 5px);
    min-width: initial;
    margin: 0 0 5px 0;
  }
  .title-nav>li>a {
    font-size: 14px;
    height: 34px;
    line-height: 34px;
    padding: 0 10px;
  }

  .more>a {
    width: 114px;
    height: 30px;
    border-radius: 15px;
    font-size: 14px;
  }
}

/* 首页样式 */
/* 关于我们 */
.about {
  padding: 40px 0 20px 0;
}
.about .title {
  justify-content: flex-start;
  flex-direction: column-reverse;
}
.about .title>h1 {
  line-height: 50px;
  font-size: 30px;
  font-weight: bold;
  color: var(--color-main);
  padding: 0 0 22px 0;
}
.about .title>h1::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  left: 1px;
  top: initial;
  bottom: 0;
  transform: initial;
}
.about .title>h1::after {
  width: 82px;
  height: 5px;
  left: 12px;
  top: initial;
  bottom: 1px;
  transform: initial;
}
.about .title>div {
  text-align: left;
  line-height: 44px;
  font-size: 40px;
  color: var(--color3);
  font-weight: bold;
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.about-left {
  width: calc(50% - 40px);
  margin-top: -76px;
}
.about-title {
  display: block;
  overflow: hidden;
  text-align: right;
  line-height: 24px;
  font-size: 14px;
  color: var(--color-main);
  font-weight: bold;
}
.about-title>h1 {
  line-height: 34px;
  font-size: 20px;
  color: #000;
}
.about-title>h1>span {
  color: var(--color-main);
  margin-right: 10px;
}
.about-left .swiper {
  width: 100%;
  margin-top: 20px;
}
.about-left .swiper .swiper-slide>a {
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
}
.about-left .swiper .swiper-slide>a::before {
  content: "";
  display: block;
  padding-top: 72.6786%;
}
/* 圆点 */
.about .swiper .swiper-pagination {
  width: auto;
  max-width: calc(100% - 20px);
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.35);
  opacity: 1;
  left: initial;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 15px;
}
.about .swiper .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  float: left;
  background: #fff;
  opacity: 1;
}
.about .swiper>.swiper-pagination-bullets .swiper-pagination-bullet,
.about .swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
.about .swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--color-hover);
}

.about-right {
  width: 50%;
  padding-top: 45px;
}
.about-text {
  display: block;
  overflow: hidden;
  height: 300px;
  line-height: 30px;
  font-size: 16px;
  color: var(--color3);
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
}
.about .more {
  justify-content: flex-start;
  margin-top: 20px;
}
.about .more>a {
  border-color: #ededed;
  background-color: #ededed;
}

@media (max-width: 991px) {
  .about {
    padding: 30px 0 20px 0;
  }
  .about-title>h1 {
    line-height: 30px;
    font-size: 18px;
  }
  .about-right {
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .about {
    padding: 15px 0;
  }

  .about .title {
    flex-direction: row;
    justify-content: center;
  }
  .about .title>h1 {
    line-height: 30px;
    font-size: 20px;
    color: var(--color3);
    padding: 0 10px;
  }
  .about .title>h1::before,
  .about .title>h1::after {
    content: "";
    width: 25px;
    height: 2px;
    background-color: var(--color-main);
    position: absolute;
    left: initial;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
  }
  .about .title>h1::after {
    right: initial;
    left: 100%;
  }
  .about .title>div {
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    font-weight: normal;
  }
  .about-left {
    width: 100%;
    margin: 10px 0 0 0;
  }
  .about-title {
    text-align: center;
    font-size: 12px;
    line-height: 14px;
  }
  .about-title>h1 {
    font-size: 14px;
    line-height: 20px;
  }
  .about-left .swiper {
    margin-top: 10px;
  }
  .about-right {
    width: 100%;
    padding-top: 10px;
  }
  .about-text {
    font-size: 14px;
    line-height: 22px;
    height: auto;
    -webkit-line-clamp: initial;
  }
  .about .more {
    margin-top: 10px;
  }
}

/* 发展历程 */
.course {
  padding: 40px 0;
}
.course-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 36px;
}
.course-list>li {
  width: calc(100% / 6);
  margin-bottom: 36px;
  background: url(../images/course-bj.jpg) no-repeat center center;
  background-size: cover;
}
.course-list>li>a{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px 15px 0px 15px;
}
.course-list>li .course-number {
  width: 100%;
}
.course-list>li .course-number>h1 {
  float: left;
  line-height: 32px;
  font-size: 14px;
  padding-right: 15px;
  color: #fff;
  border-bottom: 2px solid #fff;
}
.course-list>li .course-number>h1>span {
  float: left;
  font-size:24px;
  font-weight: bold;
  line-height: 1; margin-right:4px;
}
.course-list>li .course-number>h2 {
  width: 100%;
  float: left;
  overflow: hidden;
  margin-top: 10px;
  height: 24px;
  line-height: 24px;
  font-size: 16px;
  color: #fff;
}
.course-list>li .course-text {
  width: 100%;
  display: block;
  overflow: hidden;
  min-height: 72px;
  line-height: 24px;
  font-size: 14px;
  align-self: flex-end;
  color: #fff;
}

@media (min-width:992px) {
  .course-list>li:nth-child(2n+1) {
    background: url(../images/course-bj.jpg) no-repeat center center;
    background-size: cover;
  }
  .course-list>li:nth-child(2n) {
    background: #fff;
  }
  .course-list>li:nth-child(2n) .course-number>h1 {
    color: var(--color-main);
    border-bottom-color: #dbdbdb;
  }
  .course-list>li:nth-child(2n) .course-number>h2 {
    color: var(--color3);
  }
  .course-list>li:nth-child(2n) .course-text {
    margin-top: 15px;
    color: var(--color3);
  }
  .course-list>li:nth-child(2n)>a::after {
    content: ">";
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-main);
    font-family: SimSun;
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin: 6px 0 0px 0;
  }

  .course-list>li:nth-child(2n+7) {
    background: #fff;
  }
  .course-list>li:nth-child(2n+7) .course-number>h1 {
    color: var(--color-main);
    border-bottom-color: #dbdbdb;
  }
  .course-list>li:nth-child(2n+7) .course-number>h2 {
    color: var(--color3);
  }
  .course-list>li:nth-child(2n+7) .course-text {
    margin-top: 15px;
    color: var(--color3);
  }
  .course-list>li:nth-child(2n+7)>a::after {
    content: ">";
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-main);
    font-family: SimSun;
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin: 6px 0 12px 0;
  }

  .course-list>li:nth-child(2n+8) {
    background: url(../images/course-bj.jpg) no-repeat center center;
    background-size: cover;
  }
  .course-list>li:nth-child(2n+8) .course-number>h1 {
    color: #fff;
    border-bottom-color: #fff;
  }
  .course-list>li:nth-child(2n+8) .course-number>h2 {
    color: #fff;
  }
  .course-list>li:nth-child(2n+8) .course-text {
    margin-top: 15px;
    color: #fff;
  }
  .course-list>li:nth-child(2n+8)>a::after {
    display: none;
  }
  .course-list>li:nth-child(2n+13) {
    background: url(../images/course-bj.jpg) no-repeat center center;
    background-size: cover;
  }
  .course-list>li:nth-child(2n+13) .course-number>h1 {
    color: #fff;
    border-bottom-color: #fff;
  }
  .course-list>li:nth-child(2n+13) .course-number>h2 {
    color: #fff;
  }
  .course-list>li:nth-child(2n+13) .course-text {
    margin-top: 15px;
    color: #fff;
  }
  .course-list>li:nth-child(2n+13)>a::after {
    display: none;
  }
  .course-list>li:nth-child(2n+14) {
    background: #fff;
  }
  .course-list>li:nth-child(2n+14) .course-number>h1 {
    color: var(--color-main);
    border-bottom-color: #dbdbdb;
  }
  .course-list>li:nth-child(2n+14) .course-number>h2 {
    color: var(--color3);
  }
  .course-list>li:nth-child(2n+14) .course-text {
    margin-top: 15px;
    color: var(--color3);
  }
  .course-list>li:nth-child(2n+14)>a::after {
    content: ">";
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-main);
    font-family: SimSun;
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin: 6px 0 12px 0;
  }
}

@media (min-width:768px) and (max-width:991px) {
  .course {
    padding: 30px 0;
  }
  .course-list>li {
    width: 25%;
    margin-bottom: 25px;
  }
  .course-list>li:nth-child(2n+1) {
    background: url(../images/course-bj.jpg) no-repeat center center;
    background-size: cover;
  }
  .course-list>li:nth-child(2n) {
    background: #fff;
  }
  .course-list>li:nth-child(2n) .course-number>h1 {
    color: var(--color-main);
    border-bottom-color: #dbdbdb;
  }
  .course-list>li:nth-child(2n) .course-number>h2 {
    color: var(--color3);
  }
  .course-list>li:nth-child(2n) .course-text {
    margin-top: 15px;
    color: var(--color3);
  }
  .course-list>li:nth-child(2n)>a::after {
    content: ">";
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-main);
    font-family: SimSun;
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin: 6px 0 12px 0;
  }

  .course-list>li:nth-child(2n+5) {
    background: #fff;
  }
  .course-list>li:nth-child(2n+5) .course-number>h1 {
    color: var(--color-main);
    border-bottom-color: #dbdbdb;
  }
  .course-list>li:nth-child(2n+5) .course-number>h2 {
    color: var(--color3);
  }
  .course-list>li:nth-child(2n+5) .course-text {
    margin-top: 15px;
    color: var(--color3);
  }
  .course-list>li:nth-child(2n+5)>a::after {
    content: ">";
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-main);
    font-family: SimSun;
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin: 6px 0 12px 0;
  }

  .course-list>li:nth-child(2n+6) {
    background: url(../images/course-bj.jpg) no-repeat center center;
    background-size: cover;
  }
  .course-list>li:nth-child(2n+6) .course-number>h1 {
    color: #fff;
    border-bottom-color: #fff;
  }
  .course-list>li:nth-child(2n+6) .course-number>h2 {
    color: #fff;
  }
  .course-list>li:nth-child(2n+6) .course-text {
    margin-top: 15px;
    color: #fff;
  }
  .course-list>li:nth-child(2n+6)>a::after {
    display: none;
  }
  .course-list>li:nth-child(2n+9) {
    background: url(../images/course-bj.jpg) no-repeat center center;
    background-size: cover;
  }
  .course-list>li:nth-child(2n+9) .course-number>h1 {
    color: #fff;
    border-bottom-color: #fff;
  }
  .course-list>li:nth-child(2n+9) .course-number>h2 {
    color: #fff;
  }
  .course-list>li:nth-child(2n+9) .course-text {
    margin-top: 15px;
    color: #fff;
  }
  .course-list>li:nth-child(2n+9)>a::after {
    display: none;
  }

  .course-list>li:nth-child(2n+10) {
    background: #fff;
  }
  .course-list>li:nth-child(2n+10) .course-number>h1 {
    color: var(--color-main);
    border-bottom-color: #dbdbdb;
  }
  .course-list>li:nth-child(2n+10) .course-number>h2 {
    color: var(--color3);
  }
  .course-list>li:nth-child(2n+10) .course-text {
    margin-top: 15px;
    color: var(--color3);
  }
  .course-list>li:nth-child(2n+10)>a::after {
    content: ">";
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-main);
    font-family: SimSun;
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin: 6px 0 12px 0;
  }
}
@media (max-width: 767px) {
  .course {
    padding: 15px 0;
  }
  .course-list {
    margin-top: 10px;
  }
  .course-list>li {
    width: 100%;
    margin-bottom: 0;
  }
  .course-list>li>a{
    padding: 15px;
  }
  .course-list>li .course-number>h1 {
    line-height: 30px;
    font-size: 14px;
    padding-right: 10px;
  }
  .course-list>li .course-number>h1>span {
    font-size: 18px;
    line-height: 24px;
  }
  .course-list>li .course-number>h2 {
    height: auto;
  }
  .course-list>li .course-text {
    min-height: initial;
    line-height: 20px;
    font-size: 12px;
    margin-top: 10px;
  }
  .course-list>li>a::after {
    width: 20px;
    height: 20px;
    font-size: 14px;
    margin: 5px 0 0 0 !important;
  }

  .course-list>li:nth-child(even) {
    background: #fff;
  }
  .course-list>li:nth-child(even) .course-number>h1 {
    color: var(--color-main);
    border-bottom-color: #dbdbdb;
  }
  .course-list>li:nth-child(even) .course-number>h2 {
    color: var(--color3);
  }
  .course-list>li:nth-child(even) .course-text {
    margin-top: 15px;
    color: var(--color3);
  }
  .course-list>li:nth-child(even)>a::after {
    content: ">";
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-main);
    font-family: SimSun;
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin: 6px 0 12px 0;
  }
}

/* 产品中心 */
.product {
  background-color: #ededed;
  padding: 35px 0 70px 0;
}
.product .title-nav {
  margin-top: 30px;
}
.product-content {
  margin-top: 35px;
  padding: 0 50px;
}
.product-content>div {
  display: none;
}
.product-content>div:first-child {
  display: block;
}
.product .swiper {
  width: 100%;
  padding-bottom: 44px;
}
.product .swiper .swiper-slide>a {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
}
.product .swiper .swiper-slide>a::before {
  content: "";
  display: block;
  padding-top: 73.5594%;
}
.product .swiper .swiper-slide>a>h1 {
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 25px;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.product .swiper .swiper-slide>a:hover>img {
  transform: scale(1.1);
}
/* 圆点 */
.product .swiper .swiper-pagination {
  bottom: 0;
  display: flex;
  justify-content: center;
}
.product .swiper .swiper-pagination-bullet {
  width: 118px;
  height: 3px;
  float: left;
  background: #fff;
  border: 1px solid #b4b4b4;
  opacity: 1;
  border-radius: 0;
}
.product .swiper>.swiper-pagination-bullets .swiper-pagination-bullet,
.product .swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 3px;
}
.product .swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #b4b4b4;
}

@media (max-width: 1240px) {
  .product {
    padding: 35px 0 50px 0;
  }
}
@media (max-width: 991px) {
  .product {
    padding: 30px 0;
  }
  .product-content {
    margin-top: 20px;
    padding: 0 30px;
  }
  .product .swiper {
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .product {
    padding: 15px 0;
  }
  .product .title-nav {
    margin-top: 10px;
    padding: 0 20px;
  }
  .product-content {
    margin-top: 10px;
    padding: 0 20px;
  }
  .product .swiper {
    padding-bottom: 10px;
  }
  .product .swiper .swiper-slide>a>h1 {
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    font-size: 14px;
  }
  /* 圆点 */
  .product .swiper .swiper-pagination-bullet {
    width: 10px;
  }
  .product .swiper>.swiper-pagination-bullets .swiper-pagination-bullet,
  .product .swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 2px;
  }
}

/* 星合优势 */
.advantage {
  padding: 50px 0;
}
.advantage-title {
  display: block;
  overflow: hidden;
}
.advantage-title>img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.advantage-content {
  margin-top: 60px;
  position: relative;
}
.advantage-content>img {
  max-width: 100%;
  height: auto;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.advantage-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.advantage-list>li {
  width: 50%;
  display: flex;
  margin-bottom: 85px;
}
.advantage-list>li>div {
  display: flex;
  align-items: center;
}
.advantage-list>li>div .advantage-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background-color: #28c5fe;
  overflow: hidden;
  position: relative;
  margin-right: 20px;
}
.advantage-list>li>div>h1 {
  display: block;
  overflow: hidden;
  line-height: 22px;
  font-size: 16px;
  color: #333;
}
.advantage-list>li>div>h1>span {
  display: block;
  overflow: hidden;
  line-height: 26px;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.advantage-list>li:nth-child(even) {
  justify-content: flex-end;
}
.advantage-list>li:nth-child(5),
.advantage-list>li:nth-child(6) {
  margin-bottom: 20px;
}

@media (max-width: 1240px) {
  .advantage-content {
    margin-top: 50px;
  }
  .advantage-content>img {
    max-width: 45%;
  }
  .advantage-list>li {
    margin-bottom: 50px;
  }
}
@media (max-width: 991px) {
  .advantage {
    padding: 30px 0;
  }
  .advantage-content {
    margin-top: 30px;
  }
  .advantage-list>li {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .advantage {
    padding: 15px 0;
  }
  .advantage-title>img {
    max-width: 70%;
  }
  .advantage-content {
    margin-top: 10px;
  }
  .advantage-list>li {
    margin-bottom: 10px !important;
  }
  .advantage-list>li>div .advantage-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  .advantage-list>li>div .advantage-icon>img {
    height: 20px;
  }
  .advantage-list>li>div>h1 {
    line-height: 16px;
    font-size: 12px;
  }
  .advantage-list>li>div>h1>span {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 5px;
  }
}

/* 技术能力 */
.technical {
  padding: 35px 0 60px 0;
}
.technical .title-nav {
  margin-top: 40px;
}
.technical-content {
  display: flex;
  margin: 40px 0;
}
.technical-content>div {
  display: none;
  width: 100%;
  float: left;
  position: relative;
}
.technical-content>div:first-child {
  display: block;
}
.technical-content .swiper {
  width: 100%;
}
.technical-content .swiper .swiper-slide>a {
  width: 100%;
  float: left;
  overflow: hidden;
  padding: 10px;
  padding-bottom: 0;
  background-color: #e4e8ec;
  position: relative;
}
.technical-content .swiper .swiper-slide>a .img {
  border-radius: 5px;
}
.technical-content .swiper .swiper-slide>a .img::before {
  content: "";
  display: block;
  padding-top: 72.60274%;
}
.technical-content .swiper .swiper-slide>a>h1 {
  display: block;
  overflow: hidden;
  height: 54px;
  line-height: 54px;
  font-size: 16px;
  color: var(--color3);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.technical-content .swiper .swiper-slide>a:hover>h1 {
  color: #fff;
}
.technical-content .prev-button,
.technical-content .next-button {
  width: 56px;
  float: left;
  height: 56px;
  border-radius: 50%;
  background-color: #e4e8ec;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: absolute;
  left: -86px;
  top: 50%;
  transform: translateY(-50%);
  font-family: SimSun;
  font-size: 32px;
  color: var(--color3);
  cursor: pointer;
  z-index: 2;
}
.technical-content .next-button {
  left: initial;
  right: -86px;
}
.technical-content .prev-button::before {
  content: "<";
}
.technical-content .next-button::before {
  content: ">";
}
.technical-content .prev-button:hover,
.technical-content .next-button:hover {
  background-color: var(--color-main);
  color: #fff;
}

@media (max-width: 1240px) {
  .technical {
    padding: 35px 0 50px 0;
  }
  .technical-content .prev-button,
  .technical-content .next-button {
    left: -30px;
  }
  .technical-content .next-button {
    left: initial;
    right: -30px;
  }
}
@media (max-width: 991px) {
  .technical {
    padding: 30px 0;
  }
  .technical .title-nav {
    margin-top: 20px;
  }
  .technical-content {
    margin: 20px 0;
  }
  .technical-content .prev-button,
  .technical-content .next-button {
    left: -20px;
  }
  .technical-content .next-button {
    left: initial;
    right: -20px;
  }
}
@media (max-width: 767px) {
  .technical {
    padding: 15px 0;
  }
  .technical .title-nav {
    margin-top: 10px;
  }
  .technical-content {
    margin: 10px 0;
  }
  .technical-content .swiper .swiper-slide>a {
    padding: 5px;
    padding-bottom: 0;
  }
  .technical-content .swiper .swiper-slide>a>h1 {
    height: 34px;
    line-height: 34px;
    font-size: 14px;
  }

  .technical-content .prev-button,
  .technical-content .next-button {
    left: -10px;
    width: 24px;
    height: 24px;
    font-size: 16px;
  }
  .technical-content .next-button {
    left: initial;
    right: -10px;
  }
}

/* 资讯动态 */
.news {
  background-image: url(../images/news-bj.jpg);
  padding: 35px 0 65px 0;
}
.news .title-nav {
  margin-top: 35px;
}
.news-content {
  display: block;
  overflow: hidden;
  margin-top: 30px;
}
.news-content>div {
  display: none;
}
.news-content>div:first-child {
  display: block;
}
.news-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
}
.news-content .news-list {
  display: block;
}
.news-list>li {
  width: calc(50% - 10px);
  margin-bottom: 20px;
  float: right;
}
.news-list>li>a {
  width: 100%;
  float: left;
  display: flex;
  justify-content: space-between;
  border: 3px solid #fff;
  background-color: #f6f6f6;
}
.news-list>li>a .img {
  width: 169px;
  overflow: hidden;
  position: relative;
  border-right: 3px solid #fff;
}
.news-list>li>a .news-box {
  width: calc(100% - 169px);
  padding: 15px 20px;
  padding-bottom: 10px;
  color: var(--color3);
}
.news-list>li>a .news-box>h1 {
  display: block;
  overflow: hidden;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  font-weight: bold;
  color: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-list>li>a .news-box .news-text {
  display: block;
  overflow: hidden;
  height: 50px;
  line-height: 25px;
  font-size: 15px;
  color: inherit;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 8px 0;
}
.news-list>li>a .news-box .news-time {
  display: block;
  overflow: hidden;
  line-height: 20px;
  font-size: 14px;
  color: inherit;
}
.news-list>li>a:hover .news-box {
  color: #fff;
}

.news-content .news-list>li:first-child {
  float: left;
}
.news-content .news-list>li:first-child>a {
  flex-direction: column;
}
.news-content .news-list>li:first-child>a .img {
  width: 100%;
  border-right: none;
  border-bottom: 3px solid #fff;
}
.news-content .news-list>li:first-child>a .img::before {
  content: "";
  display: block;
  padding-top: 52.6227%;
}
.news-content .news-list>li:first-child>a .news-box {
  width: 100%;
}
.news-content .news-list>li:first-child>a .news-box .news-text {
  height: 50px;
  -webkit-line-clamp: 2;
  margin: 10px 0;
}
.news-content .news-list>li:first-child>a .news-box .news-time {
  line-height: 26px;
}

@media (max-width: 1240px) {
  .news {
    padding: 35px 0 50px 0;
  }
}
@media (max-width: 991px) {
  .news {
    padding: 30px 0;
  }
  .news .title-nav {
    margin-top: 20px;
  }
  .news-list>li>a .img {
    width: 143px;
  }
  .news-list>li>a .news-box {
    width: calc(100% - 143px);
  }
}
@media (max-width: 767px) {
  .news {
    padding: 15px 0;
  }
  .news .title-nav {
    margin-top: 10px;
  }
  .news-content {
    margin-top: 10px;
  }
  .news-list>li {
    width: 100%;
    margin-bottom: 10px;
  }
  .news-list>li:first-child>a {
    flex-direction: row !important;
  }
  .news-list>li>a .img {
    width: 123px !important;
  }
  .news-list>li>a .news-box {
    width: calc(100% - 123px) !important;
    padding: 10px !important;
  }
  .news-list>li>a .news-box>h1 {
    height: 24px;
    line-height: 24px;
    font-size: 14px;
  }
  .news-list>li>a .news-box .news-text {
    height: 44px !important;
    line-height: 22px !important;
    -webkit-line-clamp: 2 !important;
    font-size: 14px;
    margin: 3px 0;
  }
  .news-list>li>a .news-box .news-time {
    line-height: 20px !important;
    font-size: 12px;
  }
}

/* 工厂展示 */
.factory {
  padding: 35px 0 45px 0;
}
.factory-list {
  display: block;
  overflow: hidden;
  margin: 40px 0;
}
.factory-list>li {
  width: 25%;
  float: left;
  padding-right: 10px;
  margin-bottom: 10px;
}
.factory-list>li>a {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
}
.factory-list>li>a::before {
  content: "";
  display: block;
  padding-top: 68.96552%;
}
.factory-list>li:first-child {
  width: 50%;
  float: right;
  padding: 0;
}
.factory-list>li:first-child>a::before {
  padding-top: 68.33334%;
}
.factory-list>li>a:hover>img {
  transform: scale(1.1)
}

@media (max-width: 991px) {
  .factory {
    padding: 30px 0;
  }
  .factory-list {
    margin: 20px 0;
  }
}
@media (max-width: 767px) {
  .factory {
    padding: 15px 0;
  }
  .factory-list {
    margin: 10px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .factory-list>li {
    width: calc(50% - 5px);
    padding-right: 0;
  }
  .factory-list>li:first-child {
    width: 100%;
  }
}

/* 在线留言 */
.message {
  padding: 35px 0;
  background-image: url(../images/message-bj.jpg);
}
.message-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 45px;
}
.message-form>label {
  width: calc(50% - 5px);
  margin-bottom: 10px;
  display: flex;
  font-size: 16px;
  line-height: 44px;
  color: var(--color3);
  padding: 0 10px;
  background-color: #fff;
  border: 1px solid #c5d4e0;
}
.message-form>label>input {
  flex: 1;
  height: 44px;
  color: inherit;
  font-size: inherit;
}
.message-form>label:nth-child(5) {
  width: 100%;
}
.message-form>label>textarea {
  flex: 1;
  height: 128px;
  line-height: 24px;
  padding: 10px 0;
  color: inherit;
  font-size: inherit;
}
.message-btn {
  width: 100%;
  display: flex;
  justify-content: center;
}
.message-btn>button {
  width: 174px;
  height: 44px;
  background-color: var(--color-main);
  font-size: 16px;
  color: #fff;
}
.message-btn>button::before,
.message-btn>button::after {
  background-color: var(--color-hover);
}

@media (max-width: 991px) {
  .message {
    padding: 30px 0;
  }
  .message-form {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .message {
    padding: 15px 0;
  }
  .message-form {
    margin-top: 10px;
  }
  .message-form>label {
    width: 100%;
    font-size: 14px;
    line-height: 34px;
  }
  .message-form>label>input {
    height: 34px;
  }
  .message-form>label>textarea {
    line-height: 24px;
    padding: 5px 0;
  }
  .message-btn>button {
    width: 110px;
    height: 30px;
    font-size: 14px;
  }
}
/* END-首页样式 */

/* 关于我们 */
.main {
  width: 100%;
  overflow: hidden;
}
.main-title {
  width: 100%;
  float: left;
  background-color: #ececec;
}
.menu-list {
  display: block;
  overflow: hidden;
  transition: initial;
}
.menu-list>li {
  width: calc(100% / 3);
  float: left;
}
.menu-list>li>a {
  display: block;
  overflow: hidden;
  height: 86px;
  line-height: 86px;
  font-size: 20px;
  color: var(--color3);
  text-align: center;
  padding: 0 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.menu-list>li:hover>a,
.menu-list>li.menu-active>a {
  color: #fff;
}
.menu-list>li.menu-active>a::before {
  right: 45%;
}
.menu-list>li.menu-active>a::after {
  left: 45%;
}

.main-content {
  width: 100%;
  float: left;
  padding: 45px 0;
}
.place-title {
  width: 100%;
  float: left;
  text-align: center;
  line-height: 28px;
  font-size: 20px;
  font-weight: bold;
  color: var(--color3);
  text-transform: uppercase;
}
.place-title>h1 {
  line-height: 30px;
}
.place-content {
  width: 100%;
  float: left;
  padding-top: 40px;
}
.company {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 36px;
  color: var(--color3);
  min-height:320px;
}
.company img{ max-width:100% !important; height:auto !important;}

@media (max-width: 1240px) {
  .main-content {
    padding: 40px 0;
  }
  .place-content {
    padding-top: 40px;
  }
}
@media (max-width: 991px) {
  .main-content {
    padding: 30px 0;
  }
  .place-content {
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .menu-title {
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    color: #fff;
    position: relative;
    background-color: var(--color-main);
  }
  .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 {
    display: none;
    padding-bottom: 2px;
  }
  .menu-list>li {
    width: 100%;
    margin-top: 2px;
  }
  .menu-list>li>a {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    background-color: #fff;
  }

  .main-content {
    padding: 0;
  }
  .place-content {
    padding: 20px 0;
  }
  .company {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-关于我们 */

/* 产品中心 */
.product-lists {
  display: flex;
  flex-wrap: wrap;
  width: 1224px;
}
.product-lists>li {
  width: 282px;
  margin: 0 24px 44px 0;
}
.product-lists>li>a {
  display: block;
  overflow: hidden;
}
.product-lists>li>a .img::before {
  content: "";
  display: block;
  padding-top: 82.857143%;
}
.product-lists>li>a>h1 {
  display: block;
  overflow: hidden;
  height: 50px;
  line-height: 50px;
  background-color: #ececec;
  text-align: center;
  font-size: 16px;
  color: var(--color3);
  padding: 0 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-lists>li>a:hover .img>img {
  transform: scale(1.1);
}
.product-lists>li>a:hover>h1 {
  color: #fff;
}

.product-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between
}
.product-details-left {
  width: 50%;
  float: left;
  position: relative;
}
.product-details-left::before {
  content: '';
  display: block;
  padding-top: 72.33334%
}
.product-details-right {
  width: 50%;
  padding: 10px 55px;
  padding-right: 0
}
.product-details-right>h1 {
  display: block;
  overflow: hidden;
  line-height: 2;
  font-size: 20px;
  color: var(--color3);
  font-weight:bold;
}
.product-details-text {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
  color: var(--color3);
  margin-top: 10px
}
.product-details-hotline {
  display: block;
  overflow: hidden;
  margin-top: 20px;
  line-height: 30px;
  padding-left: 38px;
  background: url(../images/product-details-hotlline.png) no-repeat left center;
  font-family: Impact;
  font-size: 24px;
  color: var(--color-main);
}
.product-details-more {
  display: block;
  overflow: hidden;
  margin-top: 15px
}
.product-details-more>a {
  width: 174px;
  float: left;
  height: 40px;
  background-color: var(--color-main);
  font-size: 16px;
  color: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center
}
.product-details-content {
  width: 100%;
  float: left;
  margin-top: 35px;
  font-size: 16px;
  line-height: 30px;
  color: var(--color3)
}
.product-details-content img{ max-width:100% !important; height:auto !important;}
.product-details-title {
  display: block;
  overflow: hidden;
  margin-bottom: 15px;
  background-color: #ececec
}
.product-details-title>span {
  min-width: 176px;
  float: left;
  padding: 0 20px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  background-color: #d6d6d6;
  font-size: 16px;
  color: var(--color3);
}

@media (max-width: 1240px) {
  .product-lists {
    width: 102%;
    margin-left: -1%;
  }
  .product-lists>li {
    width: 23%;
    margin: 0 1% 40px 1%;
  }

  .product-details-right {
    padding: 30px;
    padding-right: 0
  }
}
@media (max-width: 991px) {
  .product-lists>li {
    width: calc(calc(100% / 3) - 2%);
    margin: 0 1% 30px 1%;
  }

  .product-details-text {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .product-lists {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }
  .product-lists>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .product-lists>li>a>h1 {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }

  .product-details-left,
  .product-details-right {
    width: 100%;
  }
  .product-details-right {
    padding: 10px 0 0 0;
  }
  .product-details-text {
    margin-top: 10px;
  }
  .product-details-hotline {
    margin-top: 10px;
    font-size: 20px;
  }
  .product-details-more {
    margin-top: 10px;
  }
  .product-details-more>a {
    width: 110px;
    height: 30px;
    font-size: 14px;
    border-radius: 15px;
  }
  .product-details-content {
    margin-top: 15px;
    font-size: 14px;
    line-height: 24px;
  }
  .product-details-title {
    margin-bottom: 10px;
  }
  .product-details-title>span {
    min-width: 120px;
    height: 40px;
    line-height: 40px;
  }
}
/* END-产品中心 */

/* 资讯动态 */
.news-details {
  display: block;
  overflow: hidden;
}
.news-details-title {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 2;
}
.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-img{ width:100%; text-align:center}
.news-details-img img{ max-width:100%; display:block; margin:10px auto;}

.news-details-content {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
  padding-top: 20px;
}
.news-details-content img {
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}

@media (max-width: 1240px) {}
@media (max-width: 991px) {}
@media (max-width: 767px) {

  .news-details-title {
    font-size: 16px;
  }
  .news-details-time {
    padding: 5px 0;
  }
  .news-details-content {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-资讯动态 */

/* 联系我们 */
.contact {
  display: flex;
  flex-wrap: wrap
}
.contact-text {
  width: 40%;
  float: left;
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  background-color: var(--color-main);
  padding: 30px
}
.contact-map {
  width: 60%;
  float: left;
  overflow: hidden;
  height: 400px;
  border: none
}
@media (max-width:767px) {
  .contact-text {
    width: 100%;
    padding: 15px;
    font-size: 14px;
    line-height: 24px
  }
  .contact-map {
    width: 100%;
    height: 300px
  }
}
/* END-联系我们 */