@charset "UTF-8";
/*
 * @Author: Code Zhuang
 * @Date: 2023-07-25 09:39:20
 * @Last Modified by: Code Zhuang
 * @Last Modified time: 2023-07-25 16:06:04
 */

/* 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;
  padding-bottom: 15px;
  background: url(../images/title-bj.png) no-repeat center bottom;
}
.title>div {
  line-height: 26px;
  font-size: 14px;
  color: #c3c3c3;
  text-transform: uppercase;
}
.title>h1 {
  line-height: 34px;
  font-size: 24px;
  color: #353535;
  font-weight: bold;
}

@media (max-width: 767px) {
  .title {
    padding-bottom: 10px;
    background: url(../images/title-bj.png) no-repeat center bottom;
    background-size: auto 5px;
  }
  .title>div {
    line-height: 20px;
  }
  .title>h1 {
    line-height: 30px;
    font-size: 20px;
  }
}

/* 产品中心 */
.main {
  width: 100%;
  overflow: hidden;
  padding: 66px 0;
}
.main-left {
  width: 276px;
  float: left;
}
.left-menu {
  width: 100%;
  float: left;
  margin-bottom: 7px;
}
.left-menu:last-child {
  margin: 0 !important;
}
.menu-title {
  display: block;
  overflow: hidden;
  background: url(../images/menu-title-bj.jpg) no-repeat center center;
  background-size: 100% 100%;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  height: 112px;
}
.menu-title::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/menu-title-icon1.png) no-repeat left top,
    url(../images/menu-title-icon2.png) no-repeat right top,
    url(../images/menu-title-icon3.png) no-repeat left bottom,
    url(../images/menu-title-icon4.png) no-repeat right bottom;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.menu-title>div {
  padding-left: 50px;
  background: url(../images/menu-title-icon.png) no-repeat left center;
  color: #fff;
}
.menu-title>div>h1 {
  display: block;
  overflow: hidden;
  line-height: 32px;
  font-size: 22px;
}
.menu-title>div>div {
  display: block;
  overflow: hidden;
  line-height: 20px;
  font-size: 12px;
  text-transform: uppercase;
}

.menu-list {
  display: block;
  overflow: hidden;
  transition: initial;
  padding-top: 1px;
}
.menu-list>li {
  display: block;
  overflow: hidden;
  border: 1px solid #d9d9d9;
  margin-top: -1px;
}
.menu-list>li>a {
  display: block;
  overflow: hidden;
  border: 1px solid #fff;
  height: 42px;
  line-height: 40px;
  font-size: 16px;
  color: #444;
  padding: 0 55px 0 35px;
  background-image: linear-gradient(#fdfdfd, #eee);
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
}
.menu-list>li>a::after {
  content: ">";
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-family: SimSun;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  background-color: var(--color-main);
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}

.menu-list>li:hover>a::after {
  background-color: var(--color-hover);
}
.menu-list>li.menu-active>a::after {
  background-color: var(--color-hover);
  transform: translateY(-50%) rotate(270deg);
}

.menu-child-list {
  display: none;
  overflow: hidden;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, .26);
  padding: 10px 35px;
}
.menu-child-list>li {
  display: block;
  overflow: hidden;
  border-bottom: 2px dashed #d9d9d9;
  padding: 0 6px;
}
.menu-child-list>li>a {
  display: block;
  overflow: hidden;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  color: #414141;
  position: relative;
  padding-left: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.menu-child-list>li>a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-main);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.menu-child-list>li>a:hover , .menu-child-list>li>a.active{
  color: var(--color-hover);
  font-weight: bold;
}
.menu-child-list>li>a:hover::before , .menu-child-list>li>a.active::before {
  background-color: var(--color-hover);
}
.menu-contact {
  display: block;
  overflow: hidden;
  border: 1px solid #d9d9d9;
  background-image: linear-gradient(#fdfdfd, #eee);
  padding: 15px 12px;
  font-size: 14px;
  line-height: 30px;
  color: #777;
  margin-top: 5px;
}

.main-right {
  width: 904px;
  float: right;
}
.place-title {
  width: 100%;
  float: left;
  height: 34px;
  line-height: 32px;
  background-color: #efefef;
  border: 1px solid #e5e5e5;
}
.place-title>div.float-left {
  min-width: 202px;
  float: left;
  height: 34px;
  line-height: 34px;
  margin: -1px 0 0 -1px;
  background: url(../images/hotproduct-title-bj.png) no-repeat center right;
  padding: 0 35px 0 15px;
}
.place-title>div.float-left>h1 {
  float: left;
  padding-left: 27px;
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  background: url(../images/hotproduct-title-icon.png) no-repeat left center;
}
.place-title .float-right {
  padding-right: 15px;
  font-size: 12px;
  color: #303030;
  text-transform: uppercase;
}
.place-title .float-right>a:hover {
  color: var(--color-main);
  text-decoration: underline;
}
.place-content {
  width: 100%;
  float: left;
  padding-top: 20px;
}
.product-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 8px);
  margin-left: -4px;
}
.product-list>li {
  width: calc(calc(100% / 3) - 8px);
  margin: 0 4px 8px 4px;
}
.product-list>li>a {
  display: block;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  background-color: #f1f1f1;
  padding: 9px;
  padding-bottom: 0;
}
.product-list>li>a .img {
  background-color: #fff;
  border: 1px solid #e8e8e8;
}
.product-list>li>a .img::before {
  content: "";
  display: block;
  padding-top: 90.579710145%;
}
.product-list>li>a>h1 {
  display: block;
  overflow: hidden;
  height: 66px;
  line-height: 66px;
  text-align: center;
  font-size: 16px;
  color: #3d3d3d;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-list>li>a:hover .img {
  border-color: var(--color-main);
}
.product-list>li>a:hover .img>img {
  transform: scale(1.1);
}

@media (max-width: 1200px) {
  .main {
    padding: 50px 0;
  }
  .main-left {
    width: 23%;
  }
  .menu-list>li>a {
    padding: 0 45px 0 20px;
  }
  .menu-list>li>a::after {
    right: 20px;
  }
  .menu-child-list {
    padding: 10px 20px;
  }
  .main-right {
    width: calc(77% - 20px);
  }
}
@media (max-width: 991px) {
  .main {
    padding: 30px 0;
  }
  .main-left {
    width: 28%;
  }
  .main-right {
    width: calc(72% - 20px);
  }
  .product-list>li {
    width: calc(50% - 8px);
  }
  .product-list>li>a>h1 {
    height: 50px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .main {
    padding: 0;
  }
  .main-left {
    width: 100%;
  }
  .left-menu {
    margin: 0 !important;
  }
  .menu-title {
    width: calc(100% + 40px);
    text-align: center;
    margin-left: -20px;
    font-size: 18px;
    font-weight: bold;
    height: 50px;
    line-height: 50px;
    padding: 0 30px;
    color: #fff;
    position: relative;
  }
  .menu-title-active {
    text-align: left;
    justify-content: flex-start;
  }
  .menu-title-active::after {
    content: "\f078";
    font-family: FontAwesome;
    font-size: 16px;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
  }
  .menu-list {
    display: none;
  }

  .main-right {
    width: 100%;
  }
  .place-content {
    padding: 20px 0;
  }
  .product-list {
    width: 100%;
    justify-content: space-between;
  }
  .product-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .product-list>li>a {
    padding: 4px;
  }
  .product-list>li>a>h1 {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}

/* 合作伙伴 */
.partner {
  width: 100%;
  float: left;
  overflow: hidden;
  display: flex;
  margin-top: 20px;
}
.partner-title {
  width: 276px;
  background: url(../images/partner-title.jpg) no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  padding: 15px;
  color: #fff;
}
.partner-title>h1 {
  line-height: 36px;
  font-size: 24px;
  font-weight: bold;
}
.partner-title>div {
  line-height: 22px;
  font-size: 12px;
  text-transform: uppercase;
}
.partner-content {
  width: 924px;
  background-image: radial-gradient(#0776df, #0ab0f4, #067be2);
  padding: 19px 21px;
}
.partner-content>div {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  padding: 12px 15px;
}
.partner-content .swiper {
  width: 100%;
}
.partner-content .swiper .swiper-slide>a {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: block;
  border: 1px solid #e5e5e5;
  background-color: #fff;
}
.partner-content .swiper .swiper-slide>a::before {
  content: "";
  display: block;
  padding-top: 50.60241%;
}

@media (max-width: 1200px) {
  .partner-title {
    width: 23%;
  }
  .partner-content {
    width: 77%;
  }
}
@media (max-width: 991px) {
  .partner-title {
    width: 28%;
  }
  .partner-content {
    width: 72%;
  }
}
@media (max-width: 767px) {
  .partner {
    margin: 0;
  }
  .partner-title {
    width: 30%;
    padding: 10px;
  }
  .partner-title>h1 {
    line-height: 30px;
    font-size: 18px;
  }
  .partner-title>div {
    line-height: 20px;
    text-align: center;
  }
  .partner-content {
    width: 70%;
    padding: 10px;
  }
  .partner-content>div {
    padding: 5px;
  }
}

/* 我们的优势 */
.advantage {
  background-image: url(../images/advantage-bj.jpg);
  padding: 60px 0;
}
.advantage-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
  position: relative;
}
.advantage-title::after {
  content: "";
  width: 12px;
  height: 5px;
  background-color: #006ace;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.advantage-title>div {
  line-height: 64px;
  font-size: 60px;
  font-weight: bold;
  text-transform: uppercase;
  color: #e5e5e5;
  opacity: 0.6;
}
.advantage-title>h1 {
  line-height: 42px;
  position: relative;
  z-index: 2;
  margin-top: -42px;
  font-size: 24px;
  color: #353535;
  font-weight: bold;
}
.advantage .swiper {
  width: 100%;
  margin-top: 30px;
}
.advantage .swiper .swiper-slide {
  height: auto;
}
.advantage .swiper .swiper-slide>a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e5e5;
  background-color: #fff;
  padding: 25px 50px;
}
.advantage .swiper .swiper-slide>a>h1 {
  display: block;
  overflow: hidden;
  line-height: 36px;
  font-size: 22px;
  color: #006ace;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.advantage .swiper .swiper-slide>a .advantage-text {
  display: block;
  overflow: hidden;
  height: 120px;
  font-size: 14px;
  color: #696969;
  line-height: 24px;
  margin-top: 10px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.advantage .swiper .swiper-slide>a .img {
  margin: 20px 0;
}
.advantage .swiper .swiper-slide>a .img::before {
  content: "";
  display: block;
  padding-top: 31.77258%;
}
.advantage .swiper .swiper-slide>a .advantage-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.advantage .swiper .swiper-slide>a .advantage-bottom>h1 {
  line-height: 20px;
  font-family: Impact;
  font-size: 12px;
  color: #999;
}
.advantage .swiper .swiper-slide>a .advantage-bottom>div {
  width: 36px;
  height: 44px;
  position: relative;
}
.advantage .swiper .swiper-slide>a .advantage-bottom>div>img:first-child {
  opacity: 1;
}
.advantage .swiper .swiper-slide>a .advantage-bottom>div>img:last-child {
  opacity: 0;
}

.advantage .swiper .swiper-slide>a:hover>h1,
.advantage .swiper .swiper-slide>a:hover .advantage-text,
.advantage .swiper .swiper-slide>a:hover .advantage-bottom>h1 {
  color: #fff;
}
.advantage .swiper .swiper-slide>a:hover .advantage-bottom>div>img:first-child {
  opacity: 0;
}
.advantage .swiper .swiper-slide>a:hover .advantage-bottom>div>img:last-child {
  opacity: 1;
}

@media (max-width: 1200px) {
  .advantage {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .advantage {
    padding: 30px 0;
  }
  .advantage .swiper .swiper-slide>a {
    padding: 25px;
  }
  .advantage .swiper .swiper-slide>a .img {
    margin: 10px 0;
  }
}
@media (max-width: 767px) {
  .advantage {
    padding: 15px 0;
  }
  .advantage-title {
    padding-bottom: 5px;
  }
  .advantage-title::after {
    height: 2px;
  }
  .advantage-title>div {
    line-height: 34px;
    font-size: 30px;
  }
  .advantage-title>h1 {
    line-height: 30px;
    margin-top: -30px;
    font-size: 20px;
  }
  .advantage .swiper {
    margin-top: 10px;
  }
  .advantage .swiper .swiper-slide>a {
    padding: 15px;
  }
  .advantage .swiper .swiper-slide>a>h1 {
    line-height: 30px;
    font-size: 18px;
  }
  .advantage .swiper .swiper-slide>a .advantage-text {
    margin-top: 5px;
  }
  .advantage .swiper .swiper-slide>a .img {
    margin: 5px 0;
  }
  .advantage .swiper .swiper-slide>a .advantage-bottom>div {
    width: 30px;
    height: 30px;
  }
}

/* 关于我们 */
.about {
  padding: 30px 0;
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.about-left {
  width: 44.5%;
  overflow: hidden;
  position: relative;
}
.about-left::before {
  content: "";
  display: block;
  padding-top: 68.35206%;
}
.about-right {
  width: 55.5%;
  padding-left: 50px;
}
.about-right>h1 {
  display: block;
  overflow: hidden;
  line-height: 20px;
  font-size: 16px;
  color: #006ace;
  letter-spacing: 2.5px;
}
.about-right>h1>span {
  display: block;
  overflow: hidden;
  line-height: 26px;
  margin-bottom: 5px;
  font-size: 22px;
  color: #292929;
  font-weight: bold;
  letter-spacing: 0;
}
.about-text {
  display: block;
  overflow: hidden;
  height: 250px;
  line-height: 25px;
  font-size: 14px;
  color: #696969;
  margin-top: 15px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
}
.about-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 15px;
}
.about-more>a {
  width: 110px;
  height: 32px;
  background-color: var(--color-main);
  position: relative;
}
.about-more>a::before,
.about-more>a::after {
  background-color: var(--color-hover);
}

@media (max-width: 991px) {
  .about-right {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .about {
    padding: 15px 0;
  }
  .about-content {
    margin-top: 10px;
  }
  .about-left {
    width: 100%;
  }
  .about-right {
    width: 100%;
    padding: 0;
    margin-top: 10px;
  }
  .about-right>h1 {
    font-size: 14px;
  }
  .about-right>h1>span {
    line-height: 24px;
    font-size: 18px;
  }
  .about-text {
    height: auto;
    line-height: 24px;
    margin-top: 10px;
    -webkit-line-clamp: initial;
  }
  .about-more {
    margin-top: 10px;
  }
}

/* 案例展示 */
.case {
  padding: 20px 0;
}
.case-content {
  display: flex;
  position: relative;
  margin-top: 25px;
}
.case-content .swiper {
  width: 100%;
}
.case-content .swiper .swiper-slide>a {
  display: flex;
  flex-direction: column;
}
.case-content .swiper .swiper-slide>a .img {
  border: 1px solid #e5e5e5;
}
.case-content .swiper .swiper-slide>a .img::before {
  padding-top: 100%;
}
.case-content .swiper .swiper-slide>a>h1 {
  width: 100%;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  height: 38px;
  line-height: 36px;
  padding: 0 15px;
  font-size: 14px;
  color: #292929;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.case-content .swiper .swiper-slide>a>h1>span {
  content: "+";
  float: right;
  font-size: 18px;
  font-weight: normal;
  transition: initial;
}
.case-content .swiper .swiper-slide>a:hover .img {
  border-color: var(--color-main);
}
.case-content .swiper .swiper-slide>a:hover>h1 {
  color: #fff;
  border-color: var(--color-main);
}
.case .prev-button,
.case .next-button {
  width: 28px;
  height: 32px;
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 5;
}
.case .next-button {
  left: initial;
  right: -60px;
}

@media (max-width: 1400px) {
  .case .prev-button,
  .case .next-button {
    left: -0;
  }
  .case .next-button {
    left: initial;
    right: -0;
  }
}
@media (max-width: 767px) {
  .case {
    padding: 15px 0;
  }
  .case-content {
    margin-top: 10px;
    padding: 0 30px;
  }
}

/* 新闻资讯 */
.news {
  padding: 30px 0 70px 0;
}
.news-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 35px;
}
.news-left {
  width: 65.5%;
}
.news-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  background-color: #0760ba;
  line-height: 30px;
  padding: 20px 15px;
  color: #fff;
}
.news-title>h1 {
  font-size: 18px;
  display: flex;
  align-items: center;
}
.news-title>h1>img {
  margin-right: 10px;
}
.news-title>a {
  text-transform: uppercase;
  font-size: 12px;
}
.news-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 1px;
  background-color: #efefef;
  padding: 15px;
  padding-bottom: 25px;
}
.news-list>li {
  width: calc(50% - 30px);
}
.news-list>li>a {
  display: flex;
  flex-wrap: wrap;
}
.news-list>li>a .img {
  border: 5px solid #d2d2d2;
  background-color: #fff;
}
.news-list>li>a .img::before {
  padding-top: 50.4298%;
}
.news-list>li>a .news-box {
  width: 100%;
  overflow: hidden;
}
.news-list>li>a .news-box>h1 {
  display: block;
  overflow: hidden;
  height: 56px;
  line-height: 55px;
  font-size: 15px;
  color: #2b2b2b;
  font-weight: bold;
  border-bottom: 1px dotted #aaa;
  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: 14px;
  color: #8f8f8f;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 15px 0;
}
.news-list>li>a .news-box .news-time {
  display: flex;
  justify-content: space-between;
  line-height: 28px;
  font-size: 14px;
  color: #a3a3a3;
}
.news-list>li>a .news-box .news-time>div {
  width: 68px;
  height: 28px;
  position: relative;
  background-color: var(--color-main);
}
.news-list>li>a .news-box .news-time>div::before,
.news-list>li>a .news-box .news-time>div::after {
  background-color: var(--color-hover);
}

.news-right {
  width: 31.5%;
}
.info-list {
  display: block;
  overflow: hidden;
  margin-top: 1px;
  background-color: #efefef;
  padding: 15px 20px;
}
.info-list>li {
  display: block;
  overflow: hidden;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dotted #aaa;
}
.info-list>li .info-title {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 16px;
  color: #373737;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.info-list>li .info-title>h1 {
  float: left;
  width: 22px;
  height: 22px;
  font-size: 16px;
  color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: var(--color-main);
  margin: 4px 9px 0 0;
}
.info-list>li .info-content {
  display: block;
  overflow: hidden;
  margin-top: 10px;
}
.info-list>li .info-content>h1 {
  float: left;
  width: 22px;
  height: 22px;
  font-size: 16px;
  color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: var(--color-hover);
  margin: 4px 9px 0 0;
}
.info-list>li .info-content>div {
  display: block;
  overflow: hidden;
  height: 48px;
  line-height: 24px;
  font-size: 14px;
  color: #8e8e8e;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media (max-width: 1200px) {
  .news {
    padding: 30px 0 50px 0;
  }
}
@media (max-width: 991px) {
  .news {
    padding: 30px 0;
  }
  .news-list>li {
    width: calc(50% - 15px);
  }
}
@media (max-width: 767px) {
  .news {
    padding: 15px 0;
  }
  .news-content {
    margin-top: 10px;
  }
  .news-left {
    width: 100%;
  }
  .news-title {
    padding: 10px 15px;
  }
  .news-list {
    padding: 10px;
  }
  .news-list>li {
    width: 100%;
    margin-bottom: 10px;
  }
  .news-list>li>a .img {
    width: 30%;
    border-width: 2px;
  }
  .news-list>li>a .news-box {
    width: 70%;
    padding-left: 15px;
  }
  .news-list>li>a .news-box>h1 {
    height: 31px;
    line-height: 30px;
    font-size: 14px;
  }
  .news-list>li>a .news-box .news-text {
    height: 40px;
    line-height: 20px;
    font-size: 12px;
    -webkit-line-clamp: 2;
    margin: 5px 0;
  }
  .news-list>li>a .news-box .news-time {
    line-height: 20px;
    font-size: 12px;
  }
  .news-list>li>a .news-box .news-time>div {
    width: 60px;
    height: 20px;
  }

  .news-right {
    width: 100%;
    margin-top: 10px;
  }
  .info-list {
    padding: 15px;
  }
  .info-list>li {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
/* END-首页样式 */

/* 关于我们 */
.company {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 16px;
  color: #333;
}
.company img{
  display: block;
  max-width: 100%;
  height: auto;
  margin: 5px auto;
}

@media (max-width: 767px) {
  .company {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-关于我们 */

/* 产品中心 */
.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-content {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
  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-产品中心 */

/* 案例展示 */
.case-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 10px);
  margin-left: -5px;
}
.case-list>li {
  width: calc(calc(100% / 3) - 10px);
  margin: 0 5px 10px 5px;
}
.case-list>li>a {
  display: flex;
  flex-direction: column;
}
.case-list>li>a .img {
  border: 1px solid #e5e5e5;
}
.case-list>li>a .img::before {
  padding-top: 100%;
}
.case-list>li>a>h1 {
  width: 100%;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  height: 38px;
  line-height: 36px;
  padding: 0 15px;
  font-size: 14px;
  color: #292929;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.case-list>li>a>h1>span {
  content: "+";
  float: right;
  font-size: 18px;
  font-weight: normal;
  transition: initial;
}
.case-list>li>a:hover .img {
  border-color: var(--color-main);
}
.case-list>li>a:hover>h1 {
  color: #fff;
  border-color: var(--color-main);
}

@media (max-width: 767px) {
  .case-list>li {
    width: calc(50% - 10px);
  }
}
/* END-案例展示 */

/* 合作伙伴 */
.partner-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 8px);
  margin-left: -4px;
}
.partner-list>li {
  width: calc(20% - 8px);
  margin: 0 4px 8px 4px;
}
.partner-list>li>a {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: block;
  border: 1px solid #e5e5e5;
  background-color: #fff;
}
.partner-list>li>a::before {
  content: "";
  display: block;
  padding-top: 50.60241%;
}
.partner-list>li>a:hover {
  border-color: var(--color-main);
}
.partner-list>li>a:hover>img {
  transform: scale(1.1);
}

@media (max-width: 991px) {
  .partner-list>li {
    width: calc(25% - 8px);
  }
}
@media (max-width: 767px) {
  .partner-list>li {
    width: calc(calc(100% / 3) - 8px);
  }
}
/*  END-合作伙伴 */

/* 最新资讯 */
.place-content .news-list>li {
  width: 100%;
  margin-bottom: 30px;
}
.place-content .news-list>li>a .img {
  width: 30%;
}
.place-content .news-list>li>a .news-box {
  width: 70%;
  padding-left: 30px;
}

.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: 991px) {
  .place-content .news-list>li {
    margin-bottom: 20px;
  }
  .place-content .news-list>li>a .img {
    width: 40%;
  }
  .place-content .news-list>li>a .news-box {
    width: 60%;
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .place-content .news-list>li {
    margin-bottom: 10px;
  }
  .place-content .news-list>li>a .img {
    width: 30%;
  }
  .place-content .news-list>li>a .news-box {
    width: 70%;
    padding-left: 15px;
  }

  .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: 100%;
  float: left;
  font-size: 16px;
  line-height: 30px
}
.contact-map {
  width: 100%;
  float: left;
  overflow: hidden;
  height: 400px;
  border: none;
  margin-top: 20px
}
@media (max-width:767px) {
  .contact-text {
    font-size: 14px;
    line-height: 24px
  }
  .contact-map {
    margin-top: 10px;
    height: 300px
  }
}
/* END-联系我们 */