@charset "UTF-8";
/*
 * @Author: Code Zhuang
 * @Date: 2023-05-25 14:30:09
 * @Last Modified by: Code Zhuang
 * @Last Modified time: 2023-05-26 14:57:39
 */

/* 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: block;
  overflow: hidden;
  text-align: center;
  color: var(--color3);
  font-weight: bold;
}
.title>h1 {
  font-size: 24px;
  line-height: 36px;
}
.title>div {
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .title>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .title>div {
    line-height: 20px;
  }

}

/* 首页样式 */
/* 关于我们 */
.about {
  background-image: url(../images/about-bj.jpg);
  padding: 20px 0 40px 0;
}
.about-title {
  width: 57.03125%;
  float: left;
  margin-top: 45px;
}
.about-title>div {
  width: 100%;
  float: right;
  max-width: 885px;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
}
.about-title>div>h1 {
  line-height: 32px;
  font-size: 24px;
  color: #ccab68;
  font-weight: bold;
  padding-right: 28px;
  position: relative;
}
.about-title>div>h1::after {
  content: "";
  width: 20px;
  height: 2px;
  background-color: var(--color-main);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.about-title>div>div {
  line-height: 52px;
  font-size: 60px;
  color: #dedede;
  text-transform: uppercase;
  font-weight: bold;
}
.about-content {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  margin-top: 40px;
}
.about-left {
  width: 42.96875%;
  overflow: hidden;
  position: relative;
  margin-top: -169px;
}
.about-left::before {
  content: "";
  display: block;
  padding-top: 68.36364%;
}
.about-right {
  width: 57.03125%;
  position: relative;
}
.about-right .about-box {
  width: 100%;
  float: right;
  max-width: 885px;
  padding: 0 50px;
}
.about-right .about-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 36px;
  font-size: 20px;
  color: var(--color3);
  font-weight: bold;
}
.about-right .about-box .about-text {
  display: block;
  overflow: hidden;
  height: 225px;
  font-size: 14px;
  color: var(--color3);
  line-height: 25px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
  margin-top: 20px;
}

.about-more {
  float: left;
  position: absolute;
  right: 35px;
  top: -76px;
  z-index: 2;
}
.about-more>a {
  display: block;
  overflow: hidden;
  line-height: 25px;
  font-size: 16px;
  color: var(--color3);
}
.about-more>a>span {
  width: 25px;
  height: 25px;
  line-height: 20px;
  text-align: center;
  float: right;
  border-radius: 50%;
  background-color: var(--color-main);
  margin-left: 16px;
}
.about-more>a:hover {
  color: var(--color-hover);
  text-decoration: underline;
}
.about-more>a:hover>span {
  color: #fff;
}

.about-list {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}
.about-list>li {
  flex: 1;
  font-size: 14px;
  color: #838383;
  line-height: 21px;
}
.about-list>li>h1 {
  display: block;
  overflow: hidden;
  color: #333;
  line-height: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}
.about-list>li .about-icon {
  width: 52px;
  height: 52px;
  position: relative;
  float: left;
  margin-right: 15px;
}
.about-list>li .about-icon::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: var(--color-hover);
  position: absolute;
  left: 0;
  bottom: -10px;
}

@media (max-width: 1240px) {
  .about-title>div {
    padding: 0 30px;
  }
  .about-right .about-box {
    padding: 0 30px;
  }
}
@media (max-width: 991px) {
  .about-title {
    margin-top: 20px;
  }
  .about-title>div>div {
    font-size: 40px;
  }
  .about-content {
    margin-top: 20px;
  }
  .about-left {
    margin-top: -124px;
  }
  .about-list>li .about-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
}
@media (max-width: 767px) {
  .about {
    padding: 15px 0;
  }
  .about-title {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .about-title>div {
    padding: 0 20px;
    align-items: center;
  }
  .about-title>div>h1 {
    line-height: 30px;
    font-size: 20px;
    padding-right: 0;
  }
  .about-title>div>h1::after {
    display: none;
  }
  .about-title>div>div {
    line-height: 20px;
    font-size: 14px;
  }
  .about-content {
    margin-top: 10px;
  }
  .about-left {
    width: 100%;
    margin-top: 0;
  }
  .about-right {
    width: 100%;
  }
  .about-right>.about-box {
    max-width: 100%;
    padding: 10px 20px;
    padding-bottom: 0;
  }
  .about-right .about-box>h1 {
    line-height: 24px;
    font-size: 16px;
  }
  .about-right .about-box .about-text {
    height: auto;
    line-height: 24px;
    -webkit-line-clamp: initial;
    margin-top: 10px;
  }
  .about-more {
    position: relative;
    right: initial;
    top: initial;
    margin-top: 10px;
  }
  .about-more>a {
    float: left;
  }

  .about-list {
    width: 100%;
    float: left;
    margin-top: 10px;
  }
  .about-list>li {
    text-align: center;
    font-size: 12px;
    line-height: 20px;
  }
  .about-list>li .about-icon {
    float: none;
    display: block;
    margin: 0 auto 20px auto;
  }
  .about-list>li .about-icon::after {
    content: "";
    width: 100%;
    height: 3px;
    background-color: var(--color-hover);
    position: absolute;
    left: 0;
    bottom: -10px;
  }
}

/* 产品展示 */
.product {
  padding: 30px 0;
}
.product-content {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.product-left {
  width: 324px;
  float: left;
  background: url(../images/product-left-bj.jpg) no-repeat center bottom #282828;
}
.product-left .swiper {
  width: 100%;
}
.product-left .swiper .swiper-slide {
  border-bottom: 1px solid #484848;
  display: flex;
  justify-content: space-between;
  padding: 0 20px 0 25px;
  height: 81px;
  line-height: 80px;
  font-size: 14px;
  color: #5c5c5c;
  cursor: pointer;
  overflow: hidden;
}
.product-left .swiper .swiper-slide>span {
  float: left;
  font-size: 20px;
  color: #fff;
}
.product-left .swiper .swiper-slide::after {
  content: ">";
  float: right;
  font-family: SimSun;
  font-size: 14px;
  color: #5c5c5c;
}
.product-left .swiper .swiper-slide-thumb-active {
  background-color: var(--color-hover);
}

.product-box {
  display: block;
  overflow: hidden;
  padding: 80px 20px 40px 20px;
  font-size: 14px;
  line-height: 25px;
  color: #fff;
  text-align: center;
}
.product-box img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 8px auto 70px auto;
}

.product-right {
  width: 1060px;
  float: right;
  display: flex;
}
.product-right .swiper {
  width: 100%;
}
.product-right .swiper .swiper-slide>a {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
}
.product-right .swiper .swiper-slide>a::before {
  content: "";
  display: block;
  padding-top: 60.37736%;
}
.product-right .prev-button,
.product-right .next-button {
  font-family: SimSun;
  font-size: 112px;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
}
.product-right .next-button {
  left: initial !important;
  right: 15px;
}
.product-right .prev-button::before {
  content: "<";
}
.product-right .next-button::before {
  content: ">";
}
.product-more {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.product-more>a {
  width: 182px;
  height: 52px;
  float: left;
  background-color: var(--color3);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
}
.product-more>a>span {
  width: 25px;
  height: 25px;
  margin-left: 25px;
  border-radius: 50%;
  background-color: var(--color-main);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.product-more>a>span::before {
  content: "→";
}
.product-more>a:hover>span {
  background-color: var(--color3);
}

@media (max-width: 1440px) {
  .product-left {
    width: 24%;
  }
  .product-right {
    width: 74%;
  }
}
@media (max-width: 1240px) {
  .product-left {
    width: 29%;
  }
  .product-right {
    width: 69%;
  }
  .product-box {
    padding: 40px 20px 20px 20px;
  }
  .product-box img {
    margin: 8px auto 30px auto;
  }
}
@media (max-width: 991px) {
  .product-left {
    width: 36%;
  }
  .product-box {
    padding: 15px;
  }
  .product-box img {
    margin: 8px auto 15px auto;
  }
  .product-right {
    width: 62%;
  }
}
@media (max-width: 767px) {
  .product {
    padding: 15px 0;
  }
  .product-content {
    margin-top: 10px;
  }
  .product-left {
    width: 100%;
  }
  .product-left .swiper .swiper-slide {
    padding: 0 15px;
    height: 41px;
    line-height: 40px;
    font-size: 12px;
  }
  .product-left .swiper .swiper-slide>span {
    font-size: 16px;
  }
  .product-right {
    width: 100%;
  }
  .product-right .prev-button,
  .product-right .next-button {
    font-size: 30px;
    left: 5px;
  }
  .product-right .next-button {
    right: 5px;
  }
  .product-more {
    margin-top: 10px;
  }
  .product-more>a {
    width: 120px;
    height: 40px;
    font-size: 14px;
  }
  .product-more>a>span {
    margin-left: 10px;
  }
}

/* 工程案例 */
.case {
  padding: 15px 0 25px 0;
}
.case-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1px 0 0 1px;
  position: relative;
  margin-top: 20px;
}
.case-nav::before,
.case-nav::after {
  content: "";
  width: 1000%;
  height: 1px;
  float: left;
  background-color: var(--color-main);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 2;
}
.case-nav::after {
  top: initial;
  bottom: 0;
}
.case-nav>li {
  width: 20%;
  margin: -1px 0 0 -1px;
}
.case-nav>li>a {
  display: block;
  overflow: hidden;
  border: 1px solid var(--color-main);
  height: 62px;
  line-height: 60px;
  text-align: center;
  font-size: 20px;
  color: var(--color3);
  padding: 0 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.case-nav>li>a:hover,
.case-nav>li.case-active>a {
  color: #fff;
}
.case-nav>li.case-active>a::before {
  left: -40px;
}
.case-nav>li.case-active>a::after {
  right: -40px;
}

.case-content {
  display: block;
  overflow: hidden;
}
.case-content>ul {
  display: none;
}
.case-content>ul:first-child {
  display: block;
}
.case-content>ul>li {
  width: 100%;
  float: left;
  margin-top: 30px;
}
.case-content>ul>li>a {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.case-content>ul>li>a::before {
  content: "";
  width: 100%;
  height: calc(100% - 70px);
  background-color: #ccab68;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.case-content>ul>li>a .case-left {
  width: 72%;
  overflow: hidden;
  position: relative;
}
.case-content>ul>li>a .case-left::before {
  content: "";
  display: block;
  padding-top: 49.7829233%;
}
.case-content>ul>li>a .case-right {
  width: 28%;
  display: flex;
  align-items: flex-end;
}
.case-content>ul>li>a .case-right .case-box {
  width: 100%;
  background-color: #fff;
  transform: translateX(-100px);
  padding: 110px 70px 130px 70px;
}
.case-content>ul>li>a .case-right .case-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 36px;
  font-size: 20px;
  color: var(--color3);
}
.case-content>ul>li>a .case-right .case-box .case-text {
  display: block;
  overflow: hidden;
  height: 60px;
  line-height: 30px;
  font-size: 14px;
  color: var(--color3);
  margin-top: 20px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.case-content>ul>li>a .case-right .case-box .case-more {
  width: 144px;
  height: 42px;
  line-height: 42px;
  background-color: #bbbbb9;
  text-align: center;
  padding: 0 15px;
  font-size: 14px;
  color: #fff;
  margin-top: 30px;
}
.case-content>ul>li:nth-child(even)>a {
  flex-direction: row-reverse;
}
.case-content>ul>li:nth-child(even)>a .case-right .case-box {
  transform: translateX(100px);
}

@media (max-width: 1440px) {
  .case-content>ul>li>a .case-right .case-box {
    transform: translateX(-80px);
    padding: 70px;
  }
  .case-content>ul>li:nth-child(even)>a .case-right .case-box {
    transform: translateX(80px);
  }
}
@media (max-width: 1240px) {
  .case-content>ul>li>a::before {
    height: calc(100% - 50px);
  }
  .case-content>ul>li>a .case-right .case-box {
    transform: translateX(-50px);
    padding: 50px;
  }
}
@media (max-width: 991px) {
  .case-content>ul>li>a::before {
    height: calc(100% - 30px);
  }
  .case-content>ul>li>a .case-right .case-box {
    transform: translateX(-50px);
    padding: 20px 40px;
  }
  .case-content>ul>li:nth-child(even)>a .case-right .case-box {
    transform: translateX(50px);
  }
}
@media (max-width: 767px) {
  .case {
    padding: 15px 0;
  }
  .case-nav {
    margin-top: 10px;
  }
  .case-nav>li {
    width: calc(100% / 3);
  }
  .case-nav>li>a {
    height: 42px;
    line-height: 40px;
    font-size: 16px;
    padding: 0 10px;
  }
  .case-content {
    margin-top: 10px;
  }
  .case-content>ul>li {
    margin-top: 0;
  }
  .case-content>ul>li>a .case-left {
    width: 55%;
  }
  .case-content>ul>li>a .case-right {
    width: 45%;
  }
  .case-content>ul>li>a .case-right .case-box {
    transform: translate(0) !important;
    padding: 20px;
  }
  .case-content>ul>li>a .case-right .case-box>h1 {
    line-height: 30px;
    font-size: 18px;
  }
  .case-content>ul>li>a .case-right .case-box .case-text {
    height: 48px;
    line-height: 24px;
    margin-top: 10px;
  }
  .case-content>ul>li>a .case-right .case-box .case-more {
    width: 114px;
    height: 32px;
    line-height: 32px;
    padding: 0 10px;
    margin-top: 10px;
  }
}

/* 定制流程 */
.customized {
  background-color: #f0f0f0;
  padding: 30px 0;
}
.customized-title {
  display: block;
  overflow: hidden;
  text-align: center;
  color: var(--color3);
}
.customized-title>h1 {
  line-height: 30px;
  font-size: 24px;
  font-weight: bold;
}
.customized-title>div {
  line-height: 22px;
  font-size: 16px;
}
.customized-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 30px auto 0 auto;
}
.customized-box {
  width: 17.5%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  margin: 48px 0 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  padding-top: 0;
}
.customized-box .customized-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--color-main);
  margin: -17px auto 0 auto;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
}
.customized-box .customized-icon {
  width: 100%;
  overflow: hidden;
  height: 34px;
  position: relative;
  margin-top: 20px;
}
.customized-box .customized-text {
  display: block;
  overflow: hidden;
  line-height: 22px;
  text-align: center;
  font-size: 14px;
  color: #a7a7a7;
  text-transform: capitalize;
  margin-top: 10px;
}
.customized-box .customized-text>span {
  display: block;
  overflow: hidden;
  line-height: 28px;
  font-size: 16px;
  color: var(--color3);
  font-weight: bold;
}

.customized-heng {
  width: 10%;
  margin: 48px 0 16px 0;
  position: relative;
}

@media (max-width: 991px) {
  .customized-box {
    width: 19%;
  }
  .customized-heng {
    width: 8%;
  }
}
@media (max-width: 767px) {
  .customized {
    padding: 15px 0;
  }
  .customized-title>h1 {
    font-size: 20px;
  }
  .customized-title>div {
    line-height: 20px;
    font-size: 14px;
  }
  .customized-content {
    margin-top: 10px;
    justify-content: space-between;
  }
  .customized-box {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
    padding: 10px;
  }
  .customized-box .customized-number {
    width: 30px;
    height: 30px;
    margin: 0 auto;
    font-size: 14px;
  }
  .customized-box .customized-icon {
    height: 30px;
    margin-top: 5px;
  }
  .customized-box .customized-text {
    line-height: 16px;
    font-size: 12px;
    margin-top: 5px;
  }
  .customized-box .customized-text>span {
    line-height: 24px;
    font-size: 14px;
  }
  .customized-heng {
    display: none;
  }
}

/* 取原味品质 塑格调生活 */
.hou-title {
  display: block;
  overflow: hidden;
  padding: 30px 20px;
}
.hou-title>img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.hou .swiper {
  width: 100%;
}
.hou .swiper .swiper-slide>a {
  width: 100%;
  height: 100%;
  float: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hou .swiper .swiper-slide>a .hou-box {
  width: 100%;
  background-color: #f0f0f0;
  padding: 94px 40px 74px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hou .swiper .swiper-slide>a .hou-box>h1 {
  float: left;
  line-height: 45px;
  font-size: 16px;
  color: var(--color3);
  max-width: 100%;
  border-bottom: 2px solid var(--color-main);
}
.hou .swiper .swiper-slide>a .hou-box .hou-text {
  display: block;
  overflow: hidden;
  height: 100px;
  line-height: 25px;
  font-size: 14px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin-top: 35px;
}
.hou .swiper .swiper-slide>a:hover .hou-box>h1 {
  color: #fff;
  border-bottom-color: #fff;
}
.hou .swiper .swiper-slide>a:hover .hou-box .hou-text {
  color: #fff;
}
.hou .swiper .swiper-slide:nth-child(even)>a {
  flex-direction: column-reverse;
}

@media (max-width: 1440px) {
  .hou .swiper .swiper-slide>a .hou-box {
    padding: 70px 40px;
  }
}
@media (max-width: 1240px) {
  .hou .swiper .swiper-slide>a .hou-box {
    padding: 50px 40px;
  }
}
@media (max-width: 991px) {
  .hou .swiper .swiper-slide>a .hou-box {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .hou-title {
    padding: 15px 20px;
  }
  .hou .swiper .swiper-slide>a .hou-box {
    padding: 15px;
  }
  .hou .swiper .swiper-slide>a .hou-box>h1 {
    line-height: 30px;
  }
  .hou .swiper .swiper-slide>a .hou-box .hou-text {
    height: 72px;
    line-height: 24px;
    -webkit-line-clamp: 3;
    margin-top: 10px;
  }
}

/* 新闻资讯 */
.news {
  padding: 30px 0;
}
.news-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 25px;
}
.news-nav>li {
  width: 140px;
  margin: 5px;
  margin-top: 0;
}
.news-nav>li>a {
  display: block;
  overflow: hidden;
  height: 42px;
  line-height: 42px;
  border-radius: 21px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  background-color: var(--color-main);
}
.news-nav>li>a:hover {
  background-color: #000;
}

.news .swiper {
  width: 100%;
  margin-top: 25px;
}
.news .swiper .swiper-slide>a {
  width: 100%;
  float: left;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  background-color: #f0f0f0;
}
.news .swiper .swiper-slide>a .img {
  border-radius: 10px;
}
.news .swiper .swiper-slide>a .img::before {
  padding-top: 70.149254%;
}
.news .swiper .swiper-slide>a .news-box {
  width: 100%;
  overflow: hidden;
  padding: 10px;
  padding-bottom: 25px;
}
.news .swiper .swiper-slide>a .news-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 16px;
  color: var(--color3);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news .swiper .swiper-slide>a .news-box .news-time {
  display: block;
  overflow: hidden;
  line-height: 14px;
  font-size: 14px;
  color: #838383;
  margin: 10px 0 15px 0;
}
.news .swiper .swiper-slide>a .news-box .news-text {
  display: block;
  overflow: hidden;
  height: 75px;
  line-height: 25px;
  font-size: 14px;
  color: var(--color3);
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news .swiper .swiper-slide>a:hover .news-box>h1,
.news .swiper .swiper-slide>a:hover .news-box .news-time,
.news .swiper .swiper-slide>a:hover .news-box .news-text {
  color: #fff;
}

.news-more {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.news-more>a {
  width: 182px;
  height: 52px;
  float: left;
  border: 1px solid var(--color3);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 16px;
  color: var(--color3);
}
.news-more>a>span {
  width: 25px;
  height: 25px;
  margin-left: 25px;
  border-radius: 50%;
  background-color: var(--color-main);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  transition: initial;
}
.news-more>a>span::before {
  content: "→";
}
.news-more>a:hover {
  border-color: var(--color-main);
  color: #fff;
}
.news-more>a:hover>span {
  background-color: var(--color-main);
}

@media (max-width: 767px) {
  .news {
    padding: 15px 0;
  }
  .news-nav {
    margin-top: 10px;
    justify-content: space-between;
  }
  .news-nav>li {
    width: calc(50% - 5px);
    margin: 0;
  }
  .news-nav>li>a {
    height: 34px;
    line-height: 34px;
    border-radius: 17px;
    font-size: 14px;
  }
  .news .swiper {
    margin-top: 15px;
  }
  .news .swiper .swiper-slide>a .news-box {
    padding: 10px;
  }
  .news .swiper .swiper-slide>a .news-box .news-time {
    margin: 5px 0;
  }
  .news-more {
    margin-top: 10px;
  }
  .news-more>a {
    width: 120px;
    height: 40px;
    font-size: 14px;
  }
  .news-more>a>span {
    margin-left: 10px;
  }
}
/* END-首页样式 */

/* 关于我们 */
.main {
  width: 100%;
}
.menu-list {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: -80px;
  position: relative;
  z-index: 2;
}
.menu-list>li {
  flex: 1;
}
.menu-list>li>a {
  display: block;
  overflow: hidden;
  height: 80px;
  line-height: 80px;
  font-size: 20px;
  color: #fff;
  padding: 0 10px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-left: 1px solid rgba(255, 255, 255, 0.6);
  background-color: rgba(51, 51, 51, 0.7);
}
.menu-list>li:first-child>a {
  border: none;
}
.menu-list>li:first-child>a::before,
.menu-list>li:first-child>a::after {
  opacity: 0.7;
}
.menu-list>li:hover>a,
.menu-list>li.menu-active>a {
  color: #fff;
  border-color: transparent;
  background: none;
}

.menu-list>li:hover>a::before,
.menu-list>li.menu-active>a::before {
  left: -40px;
}
.menu-list>li:hover>a::after,
.menu-list>li.menu-active>a::after {
  right: -40px;
}

.place-content {
  width: 100%;
  float: left;
  padding: 70px 0;
}
.company {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 36px;
  color: var(--color3);
}

@media (max-width: 1440px) {
  .menu-list {
    margin-top: -60px;
  }
  .menu-list>li>a {
    height: 60px;
    line-height: 60px;
  }
}
@media (max-width: 1240px) {
  .menu-list {
    margin-top: -50px;
  }
  .menu-list>li>a {
    height: 50px;
    line-height: 50px;
  }

  .place-content {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .menu-list {
    margin-top: -40px;
  }
  .menu-list>li>a {
    height: 40px;
    line-height: 40px;
  }
  .place-content {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .menu-title {
    width: calc(100% + 40px);
    float: left;
    text-align: center;
    margin-left: -20px;
    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;
    margin: 0;
  }
  .menu-list>li {
    margin-top: 2px;
  }
  .menu-list>li>a {
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    font-size: 16px;
  }

  .place-content {
    padding: 20px 0;
  }
  .company {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-关于我们 */

/* 产品展示 */
.product-list {
  display: block;
  overflow: hidden;
}
.product-list>li {
  display: block;
  overflow: hidden;
  margin-bottom: 60px;
}
.product-list>li>a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product-list>li>a .img {
  width: 61%;
}
.product-list>li>a .img::before {
  padding-top: 65.871122%;
}
.product-list>li>a .product-boxs {
  width: 39%;
  padding-left: 55px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}
.product-list>li>a .product-boxs>h1 {
  display: block;
  overflow: hidden;
  line-height: 36px;
  font-size: 24px;
  color: var(--color3);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-list>li>a .product-boxs .product-text {
  display: block;
  overflow: hidden;
  height: 200px;
  line-height: 25px;
  font-size: 14px;
  color: var(--color3);
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  margin: 25px 0;
}
.product-list>li>a .product-boxs .product-mores {
  width: 100%;
  display: block;
  overflow: hidden;
  border-top: 1px solid var(--color-main);
  line-height: 34px;
  font-size: 20px;
  color: var(--color-main);
  text-transform: uppercase;
}

.product-details {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}
.product-details-left {
  width: 68.5%;
}
.product-details-left .swiper {
  width: 100%;
  padding-bottom: 22px;
}
.product-details-left .swiper .swiper-slide {
  overflow: hidden;
  position: relative;
}
.product-details-left .swiper .swiper-slide::before {
  content: "";
  display: block;
  padding-top: 65.833334%;
}
.product-details-left .swiper .swiper-pagination {
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.product-details-left .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 62px;
  height: 4px;
  background-color: #000;
  border-radius: 0;
  opacity: 1;
}
.product-details-left .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-hover);
  opacity: 1;
}
.product-details-right {
  width: 31.5%;
  padding-right: 30px;
}
.product-details-right>h1 {
  display: block;
  overflow: hidden;
  line-height: 1;
  font-size: 24px;
  color: #ccab68;
}
.product-details-right>h2 {
  display: block;
  overflow: hidden;
  margin-top: 40px;
  line-height: 34px;
  font-size: 24px;
  color: var(--color3);
}
.product-details-right .product-details-text {
  display: block;
  overflow: hidden;
  margin-top: 40px;
  line-height: 25px;
  font-size: 14px;
  color: var(--color3);
}

.recommend {
  width: 100%;
  margin-top: 80px;
  overflow: hidden;
}
.recommend-title {
  display: block;
  overflow: hidden;
  color: #ccab68;
  margin-bottom: 35px;
}
.recommend-title>div {
  line-height: 30px;
  font-size: 30px;
  text-transform: uppercase;
}
.recommend-title>h1 {
  line-height: 34px;
  font-size: 24px;
}

@media (max-width: 1240px) {
  .product-list>li {
    margin-bottom: 50px;
  }
  .product-list>li>a .product-boxs {
    padding-left: 30px;
  }

  .recommend {
    margin-top: 50px;
  }
}
@media (max-width: 991px) {
  .product-list>li {
    margin-bottom: 30px;
  }
  .product-list>li>a .product-boxs {
    padding-left: 15px;
  }
  .product-list>li>a .product-boxs .product-text {
    height: 200px;
    -webkit-line-clamp: 8;
    margin: 15px 0;
  }

  .product-details-left,
  .product-details-right {
    width: 50%;
  }
  .product-details-right>h2,
  .product-details-right .product-details-text {
    margin-top: 20px;
  }
  .recommend {
    margin-top: 30px;
  }

}
@media (max-width: 767px) {
  .product-list>li {
    margin-bottom: 10px;
  }
  .product-list>li>a .img {
    width: 40%;
  }
  .product-list>li>a .product-boxs {
    width: 60%;
    padding-left: 10px;
  }
  .product-list>li>a .product-boxs>h1 {
    line-height: 24px;
    font-size: 16px;
  }
  .product-list>li>a .product-boxs .product-text {
    height: 72px;
    line-height: 24px;
    -webkit-line-clamp: 3;
    margin: 5px 0;
  }
  .product-list>li>a .product-boxs .product-mores {
    width: auto;
    line-height: 20px;
    font-size: 12px;
  }

  .product-details-left,
  .product-details-right {
    width: 100%;
  }
  .product-details-right {
    margin-top: 15px;
  }
  .product-details-right>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .product-details-right>h2 {
    margin-top: 5px;
    line-height: 30px;
    font-size: 18px;
  }
  .product-details-right .product-details-text {
    margin-top: 5px;
  }
  .recommend {
    margin-top: 10px;
  }
  .recommend-title {
    margin-bottom: 10px;
    text-align: center;
  }
  .recommend-title>div {
    line-height: 20px;
    font-size: 20px;
  }
  .recommend-title>h1 {
    line-height: 30px;
    font-size: 20px;
  }
}
/* END-产品展示 */

/* 新闻中心 */
.news-list {
  display: block;
  overflow: hidden;
}
.news-list>li {
  display: block;
  overflow: hidden;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ccc;
}
.news-list>li>a {
  width: 100%;
  float: left;
  display: flex;
}
.news-list>li>a .img {
  width: 22%;
}
.news .swiper .swiper-slide>a .img::before {
  padding-top: 100%;
}
.news-list>li>a .news-box {
  width: 78%;
  padding: 50px;
}
.news-list>li>a .news-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 16px;
  color: var(--color3);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-list>li>a .news-box .news-time {
  display: block;
  overflow: hidden;
  line-height: 14px;
  font-size: 14px;
  color: #838383;
  margin: 10px 0;
}
.news-list>li>a .news-box .news-text {
  display: block;
  overflow: hidden;
  height: 48px;
  line-height: 24px;
  font-size: 14px;
  color: var(--color3);
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-list>li>a:hover .news-box>h1 {
  color: var(--color-hover);
}

.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: 30px;
  padding-top: 20px;
}
.news-details-content img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}

@media (max-width: 1440px) {
  .news-list>li>a .news-box {
    padding: 40px;
  }
}
@media (max-width: 1240px) {
  .news-list>li>a .img {
    width: 30%;
  }
  .news-list>li>a .news-box {
    width: 70%;
  }
}
@media (max-width: 991px) {
  .news-list>li>a .news-box {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .news-list>li {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .news-list>li>a .img {
    width: 40%;
  }
  .news-list>li>a .news-box {
    width: 60%;
    padding: 10px;
    padding-left: 15px;
  }
  .news-list>li>a .news-box .news-time {
    margin: 5px 0;
  }

  .news-details-title {
    font-size: 16px;
  }
  .news-details-time {
    padding: 5px 0;
  }
  .news-details-content {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-新闻中心 */

/* 联系我们 */
.contact-main {
  overflow: hidden;
}
.contact-main .place-content {
  padding: 0;
}
.contact {
  display: flex;
  flex-wrap: wrap
}
.contact-text {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  z-index: 0;
  padding: 50px 0;
}
.contact-text::before {
  content: "";
  width: 200%;
  height: 100%;
  background-color: rgba(249, 248, 244, 1);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
}
.contact-text>p {
  width: calc(50% - 15px);
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 40px;
}

.contact-map {
  width: 100%;
  float: left;
  overflow: hidden;
  height: 400px;
  border: none;
  margin: 50px 0;
}
@media (max-width:767px) {
  .contact-text {
    padding: 15px 0;
  }
  .contact-text>p {
    width: 100%;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 26px;
  }

  .contact-map {
    height: 250px;
    margin: 15px 0;
  }
}
/* END-联系我们 */