@charset "UTF-8";
/*
 * @Author: Code Zhuang
 * @Date: 2023-10-07 09:48:36
 * @Last Modified by: Code Zhuang
 * @Last Modified time: 2023-10-17 17:07:09
 */

/* 字体 */
@import "../fonts/fonts.css";

/* 字体图标 */
@import "../plugin/font/css/font-awesome.min.css";

/* Animate.css动画演示 */
@import "../plugin/swiper/animate.min.css";

/* Swiper 7.4.1 */
@import "../plugin/swiper/swiper-bundle.min.css";

/* 核心样式 */
@import "../css/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;
}

/* 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-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 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;
  }
}

/* 关于毅舟 */
.about {
  padding: 120px 0;
}
.about>.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about-title {
  width: 29%;
  line-height: 36px;
  font-size: 36px;
  color: #0d0d0d;
  font-family: "Source Han Sans CN";
}
.about-content {
  width: 71%;
  position: relative;
  z-index: 2;
}
.about-content>h1 {
  display: block;
  overflow: hidden;
  margin-top: 20px;
  line-height: 34px;
  font-size: 24px;
  color: #0d0d0d;
  font-family: "Source Han Sans CN Light";
}
.about-text {
  display: block;
  overflow: hidden;
  height: 78px;
  line-height: 26px;
  font-size: 16px;
  color: #737373;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-family: "Source Han Sans CN Normal";
}
.about-more {
  width: 100%;
  float: left;
  margin-top: -20px;
}
.about-more>a {
  width: 128px;
  float: left;
  line-height: 20px;
  font-size: 14px;
  color: #2c519e;
  background: url(../images/about-jiantou.png) no-repeat right center;
}
.about-more>a:hover {
  width: 100px;
  text-decoration: underline;
}

@media (max-width: 1400px) {
  .about {
    padding: 90px 0;
  }
}
@media (max-width: 1200px) {
  .about {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .about {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .about {
    padding: 15px 0;
  }
  .about-title {
    width: 100%;
    text-align: center;
    line-height: 30px;
    font-size: 20px;
  }
  .about-content {
    width: 100%;
    margin-top: 10px;
  }
  .about-text {
    height: auto;
    line-height: 22px;
    font-size: 14px;
    -webkit-line-clamp: initial;
  }
  .about-content>h1 {
    margin-top: 5px;
    line-height: 30px;
    font-size: 18px;
  }
  .about-more {
    margin-top: 10px;
  }
  .about-more>a {
    width: 80px;
  }
}

/* 毅心智造·儿童方舟 */
.hf {
  min-height: 640px;
  background-image: url(../images/hf-bj.jpg);
  display: flex;
  justify-content: center;
}
.hf>.container {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.hf-title {
  width: 100%;
  float: left;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #fff;
  font-family: "Source Han Sans CN Light";
}
.hf-content {
  width: 100%;
  float: left;
  padding: 60px 0 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.hf-list {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.hf-list>li {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hf-list>li .hf-icon {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 50px;
}
.hf-list>li>h1 {
  display: block;
  overflow: hidden;
  text-align: center;
  margin-top: 15px;
  font-family: "Source Han Sans CN Normal";
  font-size: 20px;
  color: #fff;
}

@media (max-width: 1400px) {
  .hf-content {
    padding: 60px 0;
  }
}
@media (max-width: 1200px) {
  .hf-content {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .hf-content {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .hf {
    min-height: initial;
    padding: 20px 0;
  }
  .hf-title {
    line-height: 30px;
    font-size: 20px;
  }
  .hf-content {
    padding: 20px 0 0 0;
    margin-top: 20px;
  }
  .hf-list>li {
    width: 20%;
  }
  .hf-list>li .hf-icon {
    height: 30px;
  }
  .hf-list>li>h1 {
    margin-top: 10px;
    font-size: 14px;
  }
}

/* 产品中心 */
.product {
  padding: 110px 0;
}
.product-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-title>h1 {
  line-height: 42px;
  font-size: 36px;
  color: #0d0d0d;
  font-family: "Source Han Sans CN";
}
.product-title>div {
  line-height: 22px;
  margin-top: 15px;
  font-size: 16px;
  color: #8d8d8d;
}
.product .swiper {
  width: 100%;
  margin-top: 60px;
  overflow: visible;
  padding-bottom: 70px;
}
.product .swiper .swiper-slide>a {
  width: 100%;
  float: left;
  overflow: hidden;
  display: flex;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.product .swiper .swiper-slide>a .product-left {
  width: 66.5%;
  overflow: hidden;
  position: relative;
  transition: initial;
  -webkit-transition: initial;
  -moz-transition: initial;
  -ms-transition: initial;
  -o-transition: initial;
}
.product .swiper .swiper-slide>a .product-left::before {
  content: "";
  display: block;
  padding-top: 57.8495%;
}
.product .swiper .swiper-slide>a .product-left::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  inset: 0;
  z-index: 2;
}
.product .swiper .swiper-slide>a .product-left>h1 {
  width: 100%;
  line-height: 40px;
  font-size: 22px;
  color: #fff;
  font-family: "Source Han Sans CN";
  padding: 0 45px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 50px;
  z-index: 5;
  opacity: 0;
}
.product .swiper .swiper-slide>a .product-right {
  width: 33.5%;
  overflow: hidden;
  background-color: #2c519e;
  padding: 50px 65px;
  padding-bottom: 120px;
}
.product .swiper .swiper-slide>a .product-right>h1 {
  line-height: 48px;
  font-size: 36px;
  color: #fff;
  font-family: "Source Han Sans CN Medium";
}
.product .swiper .swiper-slide>a .product-right .product-text {
  display: block;
  overflow: hidden;
  margin-top: 40px;
  line-height: 30px;
  font-size: 16px;
  color: #fff;
  font-family: "Source Han Sans CN Normal";
}
.product .swiper .swiper-slide-prev>a,
.product .swiper .swiper-slide:last-child>a {
  flex-direction: row-reverse;
}
.product .swiper .swiper-slide-active>a .product-left::after {
  background-color: rgba(0, 0, 0, 0.3);
}
.product .swiper .swiper-slide-active>a .product-left>h1 {
  opacity: 1;
}
.product .swiper .swiper-pagination {
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.product .swiper .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #dcdcdc;
  opacity: 1;
  margin: 0 10px;
}
.product .swiper .swiper-pagination-bullet-active {
  background-color: var(--color-hover);
}
.product-btn {
  width: 33.5%;
  padding-left: 75px;
  display: flex;
  position: absolute;
  right: 0;
  bottom: 140px;
  z-index: 9;
}
.product-btn>div {
  width: 46px;
  height: 46px;
  margin-right: 30px;
  position: relative;
  cursor: pointer;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  opacity: 0.4;
}
.product-btn>div:hover {
  opacity: 1;
}

@media (max-width: 1400px) {
  .product {
    padding: 80px 0;
  }
}
@media (max-width: 1200px) {
  .product {
    padding: 50px 0;
  }
  .product .swiper {
    margin-top: 50px;
    padding-bottom: 60px;
  }
  .product .swiper .swiper-slide>a .product-left>h1 {
    font-size: 20px;
    padding: 0 30px;
    bottom: 40px;
  }
  .product .swiper .swiper-slide>a .product-right {
    padding: 50px;
    padding-bottom: 80px;
  }
  .product .swiper .swiper-slide>a .product-right .product-text {
    margin-top: 20px;
  }
  .product-btn {
    padding-left: 50px;
    bottom: 90px;
  }
}
@media (max-width: 991px) {
  .product {
    padding: 30px 0;
  }
  .product .swiper {
    margin-top: 30px;
    padding-bottom: 30px;
  }
  .product .swiper .swiper-slide>a .product-left>h1 {
    padding: 0 20px;
    bottom: 30px;
  }
  .product .swiper .swiper-slide>a .product-right {
    padding: 30px;
    padding-bottom: 50px;
  }
  .product .swiper .swiper-slide>a .product-right>h1 {
    line-height: 30px;
    font-size: 26px;
  }
  .product .swiper .swiper-slide>a .product-right .product-text {
    margin-top: 10px;
    font-size: 13px;
    line-height: 24px;
  }
  .product-btn {
    padding-left: 30px;
    bottom: 45px;
  }
  .product-btn>div {
    width: 36px;
    height: 36px;
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .product {
    padding: 15px 0;
  }
  .product-title>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .product-title>div {
    line-height: 20px;
    margin-top: 0;
    font-size: 14px;
  }
  .product .swiper {
    margin-top: 10px;
    padding-bottom: 10px;
  }
  .product .swiper .swiper-slide>a {
    flex-wrap: wrap;
  }
  .product .swiper .swiper-slide>a .product-left {
    width: 100%;
  }
  .product .swiper .swiper-slide>a .product-left>h1 {
    font-size: 16px;
    bottom: 10px;
  }
  .product .swiper .swiper-slide>a .product-right {
    width: 100%;
    padding: 20px;
  }
  .product .swiper .swiper-slide>a .product-right>h1 {
    line-height: 24px;
    font-size: 20px;
  }
  .product .swiper .swiper-slide>a .product-right .product-text {
    margin-top: 5px;
    font-size: 12px;
    line-height: 20px;
  }
  .product-btn {
    width: 100%;
    padding: 0 20px;
    bottom: 65%;
    display: flex;
    justify-content: space-between;
  }
  .product-btn>div {
    margin: 0;
  }
  .product .swiper .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    margin: 0 2px;
  }
}

/* 客户案例 */
.case {
  background-color: #f8f8f8;
  padding: 90px 0 120px 0;
}
.case-content {
  display: flex;
  position: relative;
  margin-top: 50px;
}
.case .swiper {
  width: 100%;
}
.case .swiper .swiper-slide>a {
  width: 100%;
  float: left;
  display: flex;
  flex-direction: column;
}
.case .swiper .swiper-slide>a .img {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.case .swiper .swiper-slide>a .img::before {
  content: "";
  display: block;
  padding-top: 58.017493%;
}
.case .swiper .swiper-slide>a .case-box {
  width: 100%;
  overflow: hidden;
  padding-top: 30px;
  text-align: center;
  font-family: "Source Han Sans CN Normal";
}
.case .swiper .swiper-slide>a .case-box>span {
  line-height: 24px;
  font-size: 16px;
  color: #a2a2a2;
}
.case .swiper .swiper-slide>a .case-box>h1 {
  line-height: 28px;
  margin-top: 10px;
  font-size: 20px;
  color: #1e1e1e;
}
.case .prev-button,
.case .next-button {
  width: 27px;
  height: 51px;
  position: absolute;
  left: -95px;
  top: 45%;
  cursor: pointer;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.case .next-button {
  left: initial;
  right: -95px;
}

@media (max-width: 1600px) {
  .case {
    padding: 90px 0;
  }
  .case-content {
    padding: 0 70px;
  }
  .case .prev-button,
  .case .next-button {
    left: 0;
  }
  .case .next-button {
    left: initial;
    right: 0;
  }
}
@media (max-width: 1400px) {
  .case {
    padding: 70px 0;
  }
  .case-content {
    padding: 0 50px;
  }
}
@media (max-width: 1200px) {
  .case {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .case {
    padding: 30px 0;
  }
  .case-content {
    padding: 0 30px;
    margin-top: 30px;
  }
  .case .swiper .swiper-slide>a .case-box {
    padding-top: 15px;
  }
  .case .prev-button,
  .case .next-button {
    left: -15px;
    top: 40%;
  }
  .case .next-button {
    left: initial;
    right: -15px;
  }
}
@media (max-width: 767px) {
  .case {
    padding: 15px 0;
  }
  .case-content {
    padding: 0 15px;
    margin-top: 10px;
  }
  .case .swiper .swiper-slide>a .case-box {
    padding-top: 10px;
  }
  .case .swiper .swiper-slide>a .case-box>span {
    line-height: 20px;
    font-size: 14px;
  }
  .case .swiper .swiper-slide>a .case-box>h1 {
    line-height: 24px;
    font-size: 16px;
    margin: 0;
  }
  .case .prev-button,
  .case .next-button {
    width: 15px;
    height: 28px;
    left: -10px;
    top: 40%;
  }
  .case .next-button {
    left: initial;
    right: -10px;
  }
}

/* 毅舟优势 */
.advantage {
  background-color: #f3f3f3;
}
.advantage .swiper {
  width: 100%;
}
.advantage .swiper .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.advantage-left {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}
.advantage-left .advantage-box {
  width: 100%;
  max-width: 700px;
  padding: 125px 80px 135px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.advantage-left .advantage-box .advantage-title {
  display: block;
  overflow: hidden;
  text-align: center;
  font-family: "Source Han Sans CN Normal";
}
.advantage-left .advantage-box .advantage-title>span {
  line-height: 24px;
  font-size: 24px;
  color: #919191;
}
.advantage-left .advantage-box .advantage-title>h1 {
  line-height: 44px;
  font-size: 36px;
  color: #0d0d0d;
  margin-top: 10px;
}
.advantage-left .advantage-box .advantage-text {
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
  line-height: 30px;
  text-align: center;
  font-size: 18px;
  color: #6a6a6a;
  font-family: "Source Han Sans CN Normal";
}
.advantage-right {
  width: 50%;
  overflow: hidden;
  position: relative;
}
.advantage-right::before {
  content: "";
  display: block;
  padding-top: 60.416667%;
}
.advantage .swiper-pagination {
  width: 50%;
  bottom: 110px;
}
.advantage .swiper-pagination>div {
  width: 100%;
  max-width: 700px;
  float: right;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 24px;
  font-size: 14px;
  color: #000;
}
.advantage .swiper-pagination>div>em {
  width: 40px;
  height: 1px;
  background-color: #9a9a9a;
  margin: 0 10px;
}
.advantage .swiper-pagination>div>span:last-child {
  color: #707070;
}

@media (max-width: 1400px) {
  .advantage-left .advantage-box {
    padding: 80px 50px;
  }
  .advantage .swiper-pagination {
    bottom: 56px;
  }
}
@media (max-width: 1200px) {
  .advantage-left .advantage-box {
    padding: 40px;
  }
  .advantage .swiper-pagination {
    bottom: 16px;
  }
}
@media (max-width: 991px) {
  .advantage-left .advantage-box {
    padding: 30px;
  }
  .advantage-left .advantage-box .advantage-text {
    margin-top: 20px;
  }
  .advantage .swiper-pagination {
    bottom: 6px;
  }
}
@media (max-width: 767px) {
  .advantage-left {
    width: 100%;
  }
  .advantage-left .advantage-box {
    padding: 20px;
  }
  .advantage-left .advantage-box .advantage-title>span {
    line-height: 20px;
    font-size: 14px;
  }
  .advantage-left .advantage-box .advantage-title>h1 {
    line-height: 30px;
    font-size: 20px;
    margin-top: 0;
  }
  .advantage-left .advantage-box .advantage-text {
    margin-top: 10px;
    line-height: 24px;
    font-size: 14px;
  }
  .advantage-right {
    width: 100%;
  }

  .advantage .swiper-pagination {
    width: 100%;
    bottom: 5px;
  }
}

/* 新闻动态 */
.news {
  padding-top: 110px;
}
.news-content {
  margin-top: 60px;
  border-top: 1px solid #dfdfdf;
}
.news-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-left: 1px solid #dfdfdf;
}
.news-list>li {
  width: calc(100% / 3);
  border-right: 1px solid #dfdfdf;
}
.news-list>li>a {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 60px 30px;
  padding-bottom: 75px;
}
.news-list>li>a .news-time {
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 14px;
  color: #8b8b8b;
}
.news-list>li>a .img {
  margin-top: 25px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.news-list>li>a .img::before {
  padding-top: 55.773956%;
}
.news-list>li>a .news-box {
  width: 100%;
  overflow: hidden;
  padding-top: 30px;
}
.news-list>li>a .news-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 32px;
  font-size: 18px;
  color: #090909;
  font-family: "Source Han Sans CN Normal";
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-list>li>a .news-box .news-text {
  display: block;
  overflow: hidden;
  height: 72px;
  line-height: 24px;
  font-size: 16px;
  color: #9c9c9c;
  margin-top: 5px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news-list>li>a .news-box .news-more {
  display: block;
  overflow: hidden;
  margin-top: 10px;
  max-width: 130px;
  padding-right: 25px;
  background: url(../images/about-jiantou.png) no-repeat right center;
  font-size: 14px;
  color: #2c519e;
}
.news-list>li>a:hover .img>img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.news-list>li>a:hover .news-box>h1 {
  color: var(--color-hover);
}
.news-list>li>a:hover .news-box .news-more {
  max-width: 100px;
}


@media (max-width: 1400px) {
  .news {
    padding-top: 80px;
  }
  .news-content {
    margin-top: 50px;
  }
  .news-list>li>a {
    padding: 40px 30px;
  }
}
@media (max-width: 1200px) {
  .news {
    padding-top: 50px;
  }
  .news-content {
    margin-top: 40px;
  }
  .news-list>li>a {
    padding: 40px 20px;
  }
}
@media (max-width: 991px) {
  .news {
    padding-top: 30px;
  }
  .news-content {
    margin-top: 30px;
  }
  .news-list>li>a {
    padding: 30px 15px;
  }
  .news-list>li>a .img {
    margin-top: 15px;
  }
  .news-list>li>a .news-box {
    padding-top: 15px;
  }
}
@media (max-width: 767px) {
  .news {
    padding-top: 15px;
  }
  .news-content {
    margin-top: 15px;
  }
  .news-list>li {
    width: 100%;
    border-right: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
  }
  .news-list>li>a {
    padding: 10px;
    flex-direction: row;
  }
  .news-list>li>a .news-time {
    width: 100%;
    line-height: 20px;
  }
  .news-list>li>a .img {
    width: 30%;
    margin-top: 10px;
  }
  .news-list>li>a .news-box {
    width: 70%;
    margin-top: 10px;
    padding: 0 0 0 15px;
  }
  .news-list>li>a .news-box>h1 {
    line-height: 30px;
    font-size: 16px;
  }
  .news-list>li>a .news-box .news-text {
    height: 44px;
    line-height: 22px;
    font-size: 14px;
    margin-top: 5px;
    -webkit-line-clamp: 2;
  }
  .news-list>li>a .news-box .news-more {
    margin-top: 5px;
    max-width: 90px;
    line-height: 20px;
    font-size: 12px;
  }
}

/* 毅舟服务 */
.service {
  background-image: url(../images/service-bj.jpg);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service>.container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.service-left {
  width: 50%;
}
.service-title {
  display: block;
  overflow: hidden;
}
/*.service-title::before {
  content: "";
  width: 100%;
  max-width: 326px;
  height: 2px;
  background-color: #fff;
}*/
.service-title>h1 {
  display: block;
  overflow: hidden;
  margin-top: 40px;
  line-height: 52px;
  font-size: 40px;
  color: #fff;
  font-family: "Source Han Sans CN";
}
.service-title>div {
  display: block;
  overflow: hidden;
  margin-top: 10px;
  line-height: 32px;
  font-size: 18px;
  color: #fff;
  font-family: "Source Han Sans CN Light";
}
.service-right {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.service-more {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.service-more>a {
  width: 100%;
  max-width: 172px;
  float: left;
  height: 52px;
  line-height: 50px;
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.service-more>a>span {
  width: 75%;
  padding-right: 20px;
  background: url(../images/service-more-jiantou.png) no-repeat right center;
}
.service-more>a:hover {
  border-color: #fff;
  max-width: 130px;
}

@media (max-width: 767px) {
  .service {
    min-height: initial;
    padding: 20px 0;
  }
  .service>.container {
    flex-wrap: wrap;
  }
  .service-left {
    width: 100%;
  }
  .service-title::before {
    max-width: 50%;
  }
  .service-title>h1 {
    margin-top: 10px;
    line-height: 30px;
    font-size: 20px;
  }
  .service-title>div {
    margin-top: 5px;
    line-height: 24px;
    font-size: 14px;
  }
  .service-right {
    width: 100%;
    margin-top: 10px;
  }
  .service-more>a {
    max-width: 140px;
    height: 40px;
    line-height: 40px;
  }
}
/* END-首页样式 */

/* 关于我们 */
.nbanner {
  width: 100%;
  overflow: hidden;
  height: 325px;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.nbanner>.container {
  width: 100%;
  position: relative;
  z-index: 2;
  padding-bottom: 45px;
}
.nbanner>.container>h1 {
  display: block;
  overflow: hidden;
  line-height: 48px;
  font-size: 36px;
  color: #fff;
  font-family: "Source Han Sans CN Light";
}


.main {
  width: 100%;
  overflow: hidden;
  padding: 70px 0;
}
.company {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 40px;
  color: var(--color3);
  min-height:300px;
}
.company img{ max-width:100% !important; height:auto !important;}

@media (max-width: 1400px) {
  .main {
    padding: 60px 0;
  }
}
@media (max-width: 1200px) {
  .main {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .main {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .main {
    padding: 20px 0;
  }
  .company {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-关于我们 */

/* 产品中心 */
.productsList {
  display: block;
  overflow: hidden;
}
.productsList>li {
  width: 100%;
  float: left;
  margin-bottom: 50px;
}
.productsList>li>a {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.productsList>li>a .img {
  width: 66.5%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.productsList>li>a .img::before {
  padding-top: 44.30108%;
}
.productsList>li>a .textbox {
  width: calc(33.5% - 10px);
  background-color: #f2f2f2;
  padding: 70px 50px;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  font-family: "Source Han Sans CN";
}
.productsList>li>a .textbox>h1 {
  display: block;
  overflow: hidden;
  line-height: 46px;
  font-size: 30px;
  color: #3a3a3a;
}
.productsList>li>a .textbox .texts {
  display: block;
  overflow: hidden;
  margin-top: 20px;
  min-height: 150px;
  line-height: 30px;
  font-size: 16px;
  color: #3a3a3a;
}
.productsList>li>a .textbox .textmore {
  display: block;
  overflow: hidden;
  max-width: 130px;
  margin-top: 25px;
  padding-right: 20px;
  font-size: 14px;
  color: #2c519e;
  background-image: url(../images/about-jiantou.png);
  background-repeat: no-repeat;
  background-position: right center;
}
.productsList>li:nth-child(odd)>a {
  flex-direction: row-reverse;
}
.productsList>li>a:hover .img>img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.productsList>li>a:hover .textbox {
  background-color: var(--color-hover);
}
.productsList>li>a:hover .textbox>h1,
.productsList>li>a:hover .textbox .texts {
  color: #fff;
}
.productsList>li>a:hover .textbox .textmore {
  max-width: 100px;
  color: #fff;
  background-image: url(../images/service-more-jiantou.png);
}

@media (max-width: 1400px) {
  .productsList>li>a .textbox {
    padding: 60px 40px;
  }
}
@media (max-width: 1200px) {
  .productsList>li>a .textbox {
    padding: 50px 30px;
  }
  .productsList>li>a .textbox>h1 {
    line-height: 40px;
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .productsList>li {
    margin-bottom: 30px;
  }
  .productsList>li>a .textbox {
    padding: 40px 20px;
  }
  .productsList>li>a .textbox>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .productsList>li>a .textbox .texts {
    margin-top: 10px;
    min-height: 90px;
  }
  .productsList>li>a .textbox .textmore {
    max-width: 100px;
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .nbanner {
    height: 150px;
  }
  .nbanner>.container {
    padding-bottom: 10px;
  }
  .nbanner>.container>h1 {
    line-height: 30px;
    font-size: 20px;
  }

  .productsList>li {
    margin-bottom: 15px;
  }
  .productsList>li>a .img {
    width: 100%;
  }
  .productsList>li>a .textbox {
    width: 100%;
    margin-top: 0;
    padding: 15px;
  }
  .productsList>li>a .textbox>h1 {
    line-height: 24px;
    font-size: 16px;
  }
  .productsList>li>a .textbox .texts {
    margin-top: 5px;
    min-height: 40px;
    font-size: 14px;
    line-height: 20px;
  }
  .productsList>li>a .textbox .textmore {
    max-width: 90px;
    margin-top: 5px;
  }
}


/* 空间设计与非标定制 */
.product-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 40px);
  margin-left: -20px;
}
.product-list>li {
  width: calc(calc(100% / 3) - 40px);
  margin: 0 20px 60px 20px;
}
.product-list>li>a {
  display: flex;
  flex-direction: column;
}
.product-list>li>a .img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.product-list>li>a .img::before {
  padding-top: 76.5455%;
}
.product-list>li>a>h1 {
  width: 100%;
  line-height: 62px;
  text-align: center;
  font-size: 18px;
  color: #040404;
  font-family: "Source Han Sans CN Normal";
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  padding-bottom: 3px;
}
.product-list>li>a>h1::after {
  content: "";
  width: 34px;
  height: 3px;
  background-color: var(--color-main);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.product-list>li>a:hover .img>img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.product-list>li>a:hover>h1::after {
  width: 100%;
}

@media (max-width: 1400px) {
  .product-list {
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  .product-list>li {
    width: calc(calc(100% / 3) - 30px);
    margin: 0 15px 30px 15px;
  }
}
@media (max-width: 1200px) {
  .product-list {
    width: calc(100% + 20px);
    margin-left: -10px;
  }
  .product-list>li {
    width: calc(calc(100% / 3) - 20px);
    margin: 0 10px 40px 10px;
  }
}
@media (max-width: 991px) {
  .product-list>li {
    margin: 0 10px 30px 10px;
  }
  .product-list>li>a>h1 {
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .product-list {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }
  .product-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .product-list>li>a>h1 {
    line-height: 40px;
    font-size: 16px;
  }
}

/* 产品详情 */
.product-details {
  display: block;
  overflow: hidden;
}
.product-details-title {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--colorC);
}
.product-details-img{ width:100%; text-align:center; margin:10px auto; display:block;}
.product-details-img img{ max-width:100%;}
.product-details-content {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 40px;
  padding-top: 20px;
}
.product-details-content img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .product-details-title {
    font-size: 16px;
  }
  .product-details-content {
    padding-top: 10px;
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-产品中心 */

/* 新闻中心 */
.info {
  border-top: 1px solid #dfdfdf;
}
.info>li {
  border-bottom: 1px solid #dfdfdf;
}

.news-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 35px;
}
.news-nav-list>li {
  width: calc(100% / 7);
  padding: 5px;
}
.news-nav-list>li>a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background-color: #f1f1f1;
  font-size: 16px;
  color: #333;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.news-nav-list>li>a:hover,
.news-nav-list>li.news-nav-active>a {
  background-color: var(--color-hover);
  color: #fff;
}

.news-details {
  display: block;
  overflow: hidden;
}
.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: 40px;
  padding-top: 20px;
  min-height:300px;
}
.news-details-content img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}

@media (max-width: 1400px) {
  .news-nav-list>li {
    width: calc(100% / 6);
  }
}
@media (max-width: 1200px) {
  .news-nav-list>li {
    width: 20%;
  }
}
@media (max-width: 991px) {
  .news-nav-list>li {
    width: 25%;
  }
}
@media (max-width: 767px) {
  .news-nav-list {
    margin-bottom: 15px;
  }
  .news-nav-list>li {
    width: calc(100% / 3);
    padding: 2px;
  }
  .news-nav-list>li>a {
    height: 40px;
    font-size: 14px;
  }


  .news-details-title {
    font-size: 16px;
  }
  .news-details-time {
    padding: 5px 0;
  }
  .news-details-content {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-新闻中心 */

/* 联系我们 */
.contact-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 30px);
  margin-left: -15px;
}
.contact-list>li {
  width: calc(20% - 30px);
  margin: 0 15px 30px 15px;
  padding: 30px 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-list>li .contact-icon {
  width: 100%;
  max-width: 70px;
  overflow: hidden;
  position: relative;
  background-color: var(--color-main);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.contact-list>li .contact-icon>img {
  filter: drop-shadow(0 70px var(--color-main));
  -webkit-filter: drop-shadow(0 70px var(--color-main));
  transition: initial;
  -webkit-transition: initial;
  -moz-transition: initial;
  -ms-transition: initial;
  -o-transition: initial;
}
.contact-list>li .contact-icon::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.contact-list>li>h1 {
  width: 100%;
  display: block;
  overflow: hidden;
  margin: 25px 0 15px 0;
  padding-top: 25px;
  border-top: 1px solid #c9c9c9;
  text-align: center;
  font-size: 16px;
  color: #2d2d2d;
  line-height: 26px;
  font-family: "Source Han Sans CN";
  font-weight: bold;
}
.contact-list>li .contact-text {
  display: block;
  overflow: hidden;
  font-family: "Source Han Sans CN";
  line-height: 24px;
  font-size: 15px;
  color: #6f6f6f;
  text-align: center;
  word-break: break-all;
}
.contact-list>li .contact-weixin {
  display: block;
  overflow: hidden;
}
.contact-list>li .contact-weixin>img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.contact-list>li:hover {
  background-color: var(--color-hover);
}
.contact-list>li:hover .contact-icon {
  background-color: #fff;
}
.contact-list>li:hover .contact-icon>img {
  margin-top: -50px;
}
.contact-list>li:hover>h1,
.contact-list>li:hover .contact-text {
  color: #fff;
}
.contact-list>li:nth-child(1) .contact-text {
  font-size: 18px;
  font-weight: bold;

}
.contact-list>li:nth-child(2) .contact-text>span {
  float: left;
  padding-right: 5px;
  transition: initial;
  -webkit-transition: initial;
  -moz-transition: initial;
  -ms-transition: initial;
  -o-transition: initial;
}

.message-form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #f8f8f8;
  margin-top: 55px;
  padding: 55px 45px;
}
.message-title {
  width: 100%;
  overflow: hidden;
  text-align: center;
  line-height: 46px;
  font-family: "Source Han Sans CN";
  font-size: 36px;
  color: #282727;
  margin-bottom: 10px;
}
.message-form>label {
  width: calc(50% - 30px);
  border-bottom: 1px solid #bfbfbf;
  display: flex;
}
.message-form>label>h2 {
  float: left;
  line-height: 80px;
  font-size: 18px;
  color: #848484;
  font-family: "Source Han Sans CN";
}
.message-form>label>input {
  width: 100%;
  flex: 1;
  height: 80px;
  font-size: 18px;
  color: #000;
  background: none;
  padding: 0 15px;
}
.message-form>label:nth-child(4) {
  width: 100%;
  border-bottom: 1px solid #bfbfbf;
  display: flex;
  margin-top: 50px;
}
.message-form>label>textarea {
  width: 100%;
  flex: 1;
  height: 80px;
  line-height: 30px;
  font-size: 18px;
  color: #000;
  background: none;
  padding: 25px 15px;
}
.message-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 65px;
}
.message-btn>button {
  width: 190px;
  height: 54px;
  font-size: 18px;
  color: #fff;
  background-color: var(--color-main);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}


@media (max-width:991px) {
  .contact-list {
    width: calc(100% + 20px);
    margin-left: -10px;
  }
  .contact-list>li {
    width: calc(calc(100% / 3) - 20px);
    padding: 10px;
    margin: 0 10px 20px 10px;
  }
  .contact-list>li>h1 {
    margin: 10px 0;
    padding-top: 10px;
  }

  .message-form {
    margin-top: 30px;
    padding: 30px;
  }
  .message-form>label:nth-child(4) {
    margin-top: 30px;
  }

}
@media (max-width:767px) {
  .contact-list {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }
  .contact-list>li {
    width: 100%;
    padding: 10px;
    margin: 0 0 10px 0;
  }
  .contact-list>li .contact-icon {
    max-width: 40px;
  }
  .contact-list>li .contact-icon>img {
    height: 20px;
  }
  .contact-list>li>h1 {
    margin: 5px 0;
    padding-top: 5px;
    font-size: 14px;
    line-height: 24px;
  }
  .contact-list>li .contact-text {
    line-height: 22px;
    font-size: 14px;
  }
  .contact-list>li:nth-child(1) .contact-text {
    font-size: 16px;
  }
  .contact-list>li:hover .contact-icon>img {
    margin-top: -60px;
  }

  .message-form {
    margin-top: 0;
    padding: 10px;
  }
  .message-title {
    line-height: 30px;
    font-size: 20px;
  }
  .message-form>label {
    width: 100%;
    margin-top: 10px;
  }
  .message-form>label>h2 {
    line-height: 40px;
    font-size: 16px;
  }
  .message-form>label>input {
    height: 40px;
    font-size: 16px;
    padding: 0 10px;
  }
  .message-form>label:nth-child(4) {
    margin-top: 10px;
  }
  .message-form>label>textarea {
    height: 82px;
    line-height: 24px;
    font-size: 16px;
    padding: 10px;
  }
  .message-btn {
    margin-top: 10px;
  }
  .message-btn>button {
    width: 120px;
    height: 40px;
    font-size: 16px;
  }
}
/* END-联系我们 */