@charset "UTF-8";
/*
 * @Author: Code Zhuang
 * @Date: 2023-08-14 11:12:05
 * @Last Modified by: Code Zhuang
 * @Last Modified time: 2023-08-14 17:08:45
 */

/* Swiper 7.4.1 */
@import "../plugin/swiper/swiper-bundle.min.css";

/* Animate.css动画演示 */
@import "../plugin/swiper/animate.min.css";

/* 字体图标 */
@import "../plugin/font/css/font-awesome.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;
  padding: 70px 0;
}

.title {
  display: block;
  overflow: hidden;
  text-align: center;
}
.title>h1 {
  line-height: 42px;
  font-weight: bold;
  font-size: 30px;
  color: #131313;
}
.title>div {
  line-height: 30px;
  font-size: 18px;
  color: #616161;
}

@media (max-width: 1280px) {
  .container-fluid {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .container-fluid {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .container-fluid {
    padding: 15px 0;
  }
  .title>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .title>div {
    font-size: 14px;
    line-height: 20px;
  }
}

/* banner大图 */
.banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.banner-swiper {
  width: 100%;
  height: 100%;
}
.banner-swiper img {
  width: 100%;
  display: block;
  height: auto;
}
/* 圆点 */
.banner-swiper .swiper-pagination {
  opacity: 1;
  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;
  }
}

/* 一站式服务 */
.service-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  width: calc(100% + 40px);
  margin-left: -20px;
}
.service-list>li {
  width: calc(25% - 40px);
  margin: 0 20px 40px 20px;
  display: flex;
}
.service-list>li>a {
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.service-list>li>a::before {
  content: "";
  display: block;
  padding-top: 94.482759%;
}
.service-list>li>a::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(10, 10, 10, 0.27);
  z-index: 2;
}
.service-list>li>a>h1 {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  line-height: 42px;
  font-size: 30px;
  color: #fff;
  padding: 30px 10px;
  padding-top: 0;
  text-align: center;
}
.service-list>li>a:hover>img {
  transform: scale(1.1);
}
.service-list>li>a:hover::after {
  opacity: 0;
}

@media (max-width: 1280px) {
  .service-list {
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  .service-list>li {
    width: calc(25% - 30px);
    margin: 0 15px 30px 15px;
  }
}
@media (max-width: 991px) {
  .service-list {
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-top: 30px;
  }
  .service-list>li {
    width: calc(25% - 20px);
    margin: 0 10px 20px 10px;
  }
  .service-list>li>a>h1 {
    line-height: 36px;
    font-size: 24px;
    padding: 20px 10px;
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .service-list {
    width: calc(100% + 10px);
    margin-left: -5px;
    margin-top: 10px;
  }
  .service-list>li {
    width: calc(50% - 10px);
    margin: 0 5px 10px 5px;
  }
  .service-list>li>a>h1 {
    line-height: 30px;
    font-size: 16px;
    padding: 10px;
    padding-top: 0;
  }
}

/* 核心业务 */
.business {
  background-color: #f4f4f4;
}
#gallery, #thumbs {
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
}
.business-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.business-img {
  width: 54.53125%;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.business-img::before {
  content: "";
  display: block;
  padding-top: 57.449857%;
}
.business-left {
  width: 39%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.business-left .business-icon {
  width: 60px;
  height: 60px;
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  background-color: var(--color-main);
}
.business-left .business-icon img {
  filter: grayscale(100%) brightness(1000%);
}
.business-left>h1 {
  display: block;
  overflow: hidden;
  line-height: 34px;
  margin-top: 25px;
  font-size: 26px;
  color: #323232;
  font-weight: bold;
}
.business-left .business-text {
  display: block;
  overflow: hidden;
  margin-top: 15px;
  height: 156px;
  line-height: 26px;
  font-size: 16px;
  color: #222;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
.business-left .business-more {
  display: block;
  overflow: hidden;
  margin-top: 15px;
}
.business-left .business-more>a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #a7a7a7;
  border-radius: 5px;
  width: 154px;
  height: 40px;
  font-size: 14px;
  color: #7f7f7f;
}
.business-left .business-more>a:hover {
  background-color: var(--color-hover);
  color: #fff;
  border-color: var(--color-hover);
}

#thumbs {
  width: calc(100% + 20px);
  margin-left: -10px;
}
#thumbs .swiper-slide {
  padding: 10px;
}
#thumbs .swiper-slide>a {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 15px;
}
#thumbs .swiper-slide>a .business-icon {
  width: 56px;
  height: 56px;
  background-color: #e6e6e6;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
#thumbs .swiper-slide>a>h1 {
  flex: 1;
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  line-height: 26px;
  font-size: 15px;
  color: #696969;
}
#thumbs .swiper-slide>a>h1>span {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 18px;
  color: #2e2e2e;
  font-weight: bold;
  transition: initial;
}
#thumbs .swiper-slide-thumb-active>a {
  background-color: var(--color-hover);
}
#thumbs .swiper-slide-thumb-active>a>h1,
#thumbs .swiper-slide-thumb-active>a>h1>span {
  color: #fff;
}

@media (max-width: 991px) {
  #gallery, #thumbs {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  #gallery, #thumbs {
    margin-top: 10px;
  }
  .business-img {
    width: 100%;
  }
  .business-left {
    width: 100%;
    display: block;
    margin-top: 10px;
  }
  .business-left .business-icon {
    width: 50px;
    height: 50px;
    float: left;
    margin-right: 10px;
  }
  .business-left>h1 {
    line-height: 30px;
    margin-top: 10px;
    font-size: 18px;
  }
  .business-left .business-text {
    width: 100%;
    float: left;
    margin-top: 10px;
    height: auto;
    line-height: 24px;
    font-size: 14px;
    -webkit-line-clamp: initial;
  }
  #thumbs {
    width: calc(100% + 10px);
    margin-left: -5px;
  }
  #thumbs .swiper-slide {
    padding: 5px;
  }
  #thumbs .swiper-slide>a {
    padding: 10px;
  }
  #thumbs .swiper-slide>a .business-icon {
    width: 50px;
    height: 50px;
  }
  #thumbs .swiper-slide>a>h1 {
    padding-left: 10px;
    line-height: 20px;
    font-size: 12px;
  }
  #thumbs .swiper-slide>a>h1>span {
    line-height: 24px;
    font-size: 16px;
  }
}

/* 为什么选我们 */
.choose-content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-top: 30px;
}
.choose-left {
  width: 54.53125%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.choose-left .img {
  width: calc(50% - 20px);
  margin-top: 20px;
  border-radius: 20px;
}
.choose-left .img::before {
  content: "";
  display: block;
  padding-top: 124.390244%;
}
.choose-right {
  width: 45.46875%;
  padding-right: 50px;
  display: flex;
  flex-direction: column;
}
.choose-box {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #d9d9d9;
}
.choose-box>div>div {
  display: block;
  overflow: hidden;
  text-align: right;
  line-height: 64px;
  font-size: 72px;
  color: #242424;
  font-weight: bold;
  opacity: 0.1;
  padding-left: 50px;
}
.choose-box>div>h1 {
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 15px;
  color: #7b7b7b;
  margin: -46px 0 20px 0;
  position: relative;
  z-index: 2;
}
.choose-box>div>h1>span {
  display: block;
  overflow: hidden;
  line-height: 32px;
  font-size: 24px;
  color: #0257ae;
  margin-bottom: 5px;
}
.choose-box>div:nth-child(2) {
  padding: 0 30px 0 55px;
  position: relative;
}
.choose-box>div:nth-child(2)::before,
.choose-box>div:nth-child(2)::after {
  content: "";
  width: 1px;
  height: 52px;
  background-color: #d9d9d9;
  position: absolute;
  top: 20px;
  left: 0;
}
.choose-box>div:nth-child(2)::after {
  left: initial;
  right: 0;
}
.choose-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 24px);
  margin-left: -12px;
  margin-top: 25px;
}
.choose-list>li {
  width: calc(50% - 24px);
  margin: 0 12px 10px 12px;
  background-image: linear-gradient(#f3f3f3, #fff);
  border-radius: 10px;
  overflow: hidden;
  padding: 30px 20px;
  padding-bottom: 0;
  line-height: 24px;
  font-size: 16px;
  color: #242424;
}

@media (max-width: 1200px) {
  .choose-left .img {
    width: calc(50% - 10px);
    margin-top: 10px;
  }
  .choose-box>div>div {
    line-height: 50px;
    font-size: 60px;
    padding-left: 30px;
  }
  .choose-box>div>h1 {
    margin: -40px 0 20px 0;
  }
  .choose-box>div:nth-child(2) {
    padding: 0 20px;
  }
  .choose-list {
    width: calc(100% + 18px);
    margin-left: -9px;
  }
  .choose-list>li {
    width: calc(50% - 18px);
    margin: 0 9px 10px 9px;
    padding: 20px 15px;
    padding-bottom: 0;
  }
}
@media (max-width: 991px) {
  .choose-left {
    width: 100%;
  }
  .choose-right {
    width: 100%;
    padding: 20px 0 0 0;
  }
}
@media (max-width: 767px) {
  .choose-content {
    margin-top: 10px;
  }
  .choose-left .img {
    width: calc(50% - 5px);
    margin-top: 0px;
  }
  .choose-right {
    padding: 10px 0 0 0;
  }
  .choose-box>div>div {
    line-height: 30px;
    font-size: 40px;
    padding-left: 20px;
  }
  .choose-box>div>h1 {
    margin: -20px 0 10px 0;
    font-size: 12px;
    line-height: 20px;
  }
  .choose-box>div>h1>span {
    line-height: 24px;
    font-size: 16px;
    margin-bottom: 0;
  }
  .choose-box>div:nth-child(2)::before,
  .choose-box>div:nth-child(2)::after {
    height: 30px;
    top: 15px;
  }
  .choose-list {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
    justify-content: space-between;
  }
  .choose-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
    padding: 10px;
    padding-bottom: 0;
    line-height: 22px;
    font-size: 14px;
  }
}

/* 立森物流 */
.about {
  background-image: url(../images/about-bj.jpg);
}
.about .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about-left {
  width: 50%;
}
.about-left>h1 {
  display: block;
  overflow: hidden;
  font-weight: bold;
  font-size: 30px;
  color: #313131;
  line-height: 36px;
}
.about-left>h1::after {
  content: "";
  display: block;
  width: 57px;
  height: 3px;
  background-color: #0257ae;
  margin-top: 40px;
}
.about-text {
  display: block;
  overflow: hidden;
  margin-top: 35px;
  font-size: 16px;
  color: #404040;
  line-height: 30px;
}
.about-right {
  width: 39.140625%;
  display: flex;
  align-items: center;
}
.about-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

}
.about-list>li {
  width: 50%;
  padding: 0 35px;
  border-left: 1px solid #a4a4a4;
  margin: 44px 0;
  display: flex;
  flex-direction: column;
}
.about-list>li>h1 {
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  line-height: 1;
  font-size: 14px;
  color: #000;
}
.about-list>li>h1>span {
  line-height: 34px;
  font-size: 36px;
  color: #0257ae;
  font-weight: bold;
  padding-right: 5px;
}
.about-list>li>div {
  display: block;
  overflow: hidden;
  margin-top: 10px;
  line-height: 20px;
  font-size: 16px;
  color: #000;
}

@media (max-width: 1200px) {
  .about-left>h1 {
    font-size: 22px;
    line-height: 30px;
  }
  .about-left>h1::after {
    margin-top: 20px;
  }
  .about-text {
    margin-top: 20px;
  }
  .about-list>li {
    padding: 0 25px;
    margin: 30px 0;
  }
}
@media (max-width: 991px) {

  .about-right {
    width: 46%;
    display: flex;
    align-items: center;
  }
  .about-list>li {
    padding: 0 15px;
    margin: 20px 0;
  }
  .about-list>li>h1>span {
    line-height: 30px;
    font-size: 30px;
  }

}
@media (max-width: 767px) {
  .about-left {
    width: 100%;
  }
  .about-left>h1 {
    font-size: 16px;
    line-height: 24px;
  }
  .about-left>h1::after {
    margin-top: 5px;
  }
  .about-text {
    margin-top: 10px;
    font-size: 14px;
    line-height: 24px;
  }

  .about-right {
    width: 100%;
  }
  .about-list>li {
    margin: 10px 0;
  }
  .about-list>li>h1>span {
    line-height: 24px;
    font-size: 18px;
  }
  .about-list>li>div {
    margin-top: 5px;
    line-height: 16px;
    font-size: 14px;
  }
}

/* 合作伙伴 */
.cooperate {
  background-image: url(../images/cooperate-bj.jpg);
}
.cooperate-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  width: calc(100% + 20px);
  margin-left: -10px;
}
.cooperate-list>li {
  width: calc(20% - 20px);
  margin: 0 10px 20px 10px;
}
.cooperate-list>li>a {
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.2);
}
.cooperate-list>li>a::before {
  content: "";
  display: block;
  padding-top: 54.16667%;
}
/*.cooperate-list>li>a>img {
  filter: grayscale(100%);
}*/
.cooperate-list>li>a:hover>img {
  filter: grayscale(0);
  transform: scale(1.1);
}

@media (max-width: 991px) {
  .cooperate-list {
    margin-top: 30px;
  }
  .cooperate-list>li {
    width: calc(25% - 20px);
  }
}
@media (max-width: 767px) {
  .cooperate-list {
    margin-top: 10px;
    width: calc(100% + 10px);
    margin-left: -5px;
  }
  .cooperate-list>li {
    width: calc(calc(100% / 3) - 10px);
    margin: 0 5px 10px 5px;
  }
}
/* END-首页样式 */

/* 内页大图 */
.nbanner {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
}
.nbanner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/n-banner-hover.png) no-repeat center center;
  background-size: 100% 100%;
  z-index: 2;
}
.nbanner>.container {
  width: 100%;
  position: relative;
  z-index: 3;
  color: #fff;
  font-family: "Source Han Sans CN";
}
.nbanner>.container>h1 {
  line-height: 48px;
  font-size: 36px;
  font-weight: bold;
}
.nbanner>.container>div {
  line-height: 36px;
  margin-top: 10px;
  font-size: 24px;
}

@media (max-width: 991px) {
  .nbanner {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .nbanner {
    height: 150px;
  }
  .nbanner>.container>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .nbanner>.container>div {
    line-height: 20px;
    margin-top: 0;
    font-size: 14px;
  }
}
/* END-内页大图 */

/* 关于我们 */
.main {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}
.main-title {
  width: 100%;
  float: left;
}
.menu-list {
  width: calc(100% + 14px);
  margin-left: -7px;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  transition: initial;
  margin-bottom: 30px;
}
.menu-list>li {
  width: calc(calc(100% / 6) - 14px);
  margin: 0 7px 10px 7px;
  display: flex;
}
.menu-list>li>a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  line-height: 22px;
  padding: 12px 20px;
  font-size: 16px;
  color: #343434;
  text-align: center;
  background-color: #efefef;
}
.menu-list>li:hover>a,
.menu-list>li.menu-active>a {
  background-color: #0357ab;
  font-weight: bold;
  color: #fff;
}

.main-content {
  width: 100%;
  float: left;
}
.company {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 2.2;
  color: var(--color3);
}
.company img{ max-width:100% !important; height:auto !important; display:block; margin:10px auto;}

@media (max-width: 1200px) {
  .menu-list>li {
    width: calc(calc(100% / 6) - 14px);
  }
  .menu-list>li>a {
    padding: 15px;
  }
}
@media (max-width: 991px) {
  .main {
    padding: 30px 0;
  }
  .menu-list {
    margin-bottom: 30px;
  }
  .menu-list>li {
    width: calc(calc(100% / 5) - 14px);
  }
  .menu-list>li>a {
    padding: 10px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .main {
    padding: 0;
  }
  .main-left {
    width: 100%;
  }
  .left-menu {
    margin: 0;
  }
  .menu-title {
    width: calc(100% + 40px);
    text-align: center;
    margin-left: -20px;
    font-size: 18px;
    font-weight: bold;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    color: #fff;
    position: relative;
    background-color: var(--color-hover);
  }
  .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;
    width: 100%;
    margin: 0;
  }
  .menu-list>li {
    width: 100%;
    margin: 3px 0 0 0;
  }
  .menu-list>li>a {
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
  }

  .main-content {
    padding: 20px 0;
  }
  .company {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-关于我们 */

/* 服务案例/车辆展示 */
.product-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 32px);
  margin-left: -16px;
}
.product-list>li {
  width: calc(calc(100% / 3) - 32px);
  margin: 0 16px 25px 16px;
}
.product-list>li>a {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  z-index: 0;
}
.product-list>li>a::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  z-index: -1;
}
.product-list>li>a .img {
  border-radius: 10px;
}
.product-list>li>a .img::before {
  content: "";
  display: block;
  padding-top: 68.56436%;
}
.product-list>li>a>h1 {
  display: block;
  overflow: hidden;
  height: 54px;
  line-height: 54px;
  text-align: center;
  font-size: 16px;
  color: #1d1d1d;
  padding: 0 10px;
}
.product-list>li>a:hover {
  background-color: var(--color-hover);
}
.product-list>li>a:hover::before {
  display: none;
}
.product-list>li>a:hover .img>img {
  transform: scale(1.1);
}
.product-list>li>a:hover>h1 {
  color: #fff;
}

.product-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; width:100%;
}
.product-details-left {
  width: 40%;
  float: left;
  position: relative;
  border: 1px solid #ddd
}
.product-details-left::before {
  content: '';
  display: block;
  padding-top: 60%
}
.product-details-right {
  width: 60%;
  padding: 30px;
  padding-right: 0
}
.product-details-right>h1 {
  display: block;
  overflow: hidden;
  line-height: 1;
  font-size: 20px;
  color: #333
}
.product-details-text {
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 2;
  color: #666;
  margin-top: 20px
}
.product-details-more {
  display: block;
  overflow: hidden;
  margin-top: 20px
}
.product-details-more>a {
  width: 150px;
  float: left;
  height: 50px;
  background-color: var(--color-main);
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center
}
.product-details-content {
  width: 100%;
  float: left;
  margin-top: 30px;
  font-size: 16px;
  line-height: 30px;
  color: #333
}
.product-details-title {
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
  background-color: #f5f5f5
}
.product-details-title>span {
  float: left;
  padding: 0 30px;
  height: 50px;
  line-height: 50px;
  background-color: var(--color-main);
  font-size: 16px;
  color: #fff;
  font-weight: bold
}

@media (max-width: 991px) {
  .product-list {
    width: calc(100% + 20px);
    margin-left: -10px;
  }
  .product-list>li {
    width: calc(calc(100% / 3) - 20px);
    margin: 0 10px 20px 10px;
  }
  .product-list>li>a>h1 {
    height: 50px;
    line-height: 50px;
  }

  .product-details-left {
    width: 50%;
  }
  .product-details-right {
    width: 50%;
  }
}
@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 {
    height: 40px;
    line-height: 40px;
  }

  .product-details-left {
    width: 100%;
  }
  .product-details-right {
    width: 100%;
    padding: 10px 0 0 0;
  }
  .product-details-text {
    margin-top: 10px;
  }
  .product-details-more {
    margin-top: 10px;
  }
  .product-details-more>a {
    width: 110px;
    height: 40px;
  }
  .product-details-content {
    margin-top: 10px;
    font-size: 14px;
    line-height: 24px;
  }
  .product-details-title {
    margin-bottom: 10px;
  }
  .product-details-title>span {
    padding: 0 30px;
    height: 40px;
    line-height: 40px;
  }
}
/* END-服务案例/车辆展示 */

/* 合作伙伴 */
.main-content .cooperate-list {
  margin: 0;
}
/* END-合作伙伴 */

/* 联系我们 */
.contact {
  display: flex;
  flex-wrap: wrap
}
.contact-text {
  width: 40%;
  float: left;
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  background-color: var(--color-main);
  padding: 30px
}
.contact-map {
  width: 60%;
  float: left;
  overflow: hidden;
  height: 400px;
  border: none
}
@media (max-width:767px) {
  .contact-text {
    width: 100%;
    padding: 15px;
    font-size: 14px;
    line-height: 24px
  }
  .contact-map {
    width: 100%;
    height: 300px
  }
}
/* END-联系我们 */