/*
 * @制作者: Code Zhuang
 * @创建时间: 2022-11-01 17:34:13
 * @上次修改者: Code Zhuang
 * @上次修改时间: 2022-11-01 17:34:13
 */

/* 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";

/* main */
/* 公司简介 */
.about {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-top: 90px;
}
.about::before {
  content: "";
  width: 44%;
  float: left;
  height: 457px;
  background-color: #f6f6f6;
  position: absolute;
  left: 0;
  top: 0;
}
.about>.container {
  position: relative;
  z-index: 2;
}
.aboutTitle {
  display: block;
  overflow: hidden;
  margin-top: 40px;
  line-height: 48px;
  font-size: 36px;
  color: #333;
  font-weight: bold;
}
.aboutTitle>span {
  float: left;
  background: url(../images/about_title.png) no-repeat right center;
  padding-right: 120px;
}
.aboutContect {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.aboutImg {
  width: 62%;
  float: right;
  overflow: hidden;
  position: relative;
  margin-top: -88px;
  border-radius: 5px;
}
.aboutLeft {
  width: 34%;
  float: left;
  padding: 15px 0 50px 0;
}
.aboutTxt {
  display: block;
  overflow: hidden;
  height: 216px;
  line-height: 36px;
  font-size: 14px;
  text-align: justify;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
.aboutMore {
  display: flex;
  margin-top: 25px;
}
.aboutMore>a {
  width: 200px;
  float: left;
  height: 44px;
  background-color: #ff4343;
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 5px;
}
.aboutMore>a:hover {
  width: 120px;
}

@media (max-width: 1320px) {
  .about {
    padding-top: 50px;
  }
  .about::before {
    height: 417px;
  }
}

@media (max-width: 991px) {
  .about {
    padding-top: 30px;
  }
  .about::before {
    height: 360px;
  }
  .aboutTitle>span {
    padding-right: 100px;
  }
  .aboutTxt {
    height: 180px;
    line-height: 30px;
  }
}

@media (max-width: 767px) {
  .about {
    padding-top: 15px;
  }
  .about::before {
    display: none;
  }
  .aboutTitle {
    display: flex;
    justify-content: center;
    font-size: 20px;
    line-height: 30px;
    margin: 0;
  }
  .aboutTitle>span {
    padding-right: 35px;
    background-size: auto 10px;
  }
  .aboutImg {
    width: 100%;
    margin-top: 10px;
  }
  .aboutImg::before {
    content: "";
    display: block;
    padding-top: 55%;
  }
  .aboutLeft {
    width: 100%;
    padding: 10px;
  }
  .aboutTxt {
    height: auto;
    line-height: 24px;
    -webkit-line-clamp: initial;
  }
  .aboutMore {
    justify-content: center;
    margin-top: 10px;
  }
  .aboutMore>a {
    width: 120px;
    height: 30px;
    font-size: 14px;
  }
}

/* 平行进口 */
.parallel {
  width: 100%;
  overflow: hidden;
  padding: 80px 0 20px 0;
}
.parallelTitle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.parallelTitle .parallelBigTitle {
  float: left;
  line-height: 48px;
  font-size: 36px;
  color: #333;
  font-weight: bold;
  background: url(../images/title_heng1.png) no-repeat left center;
  padding-left: 120px;
}
.parallelTitle .parallelSmallTitle {
  width: 100%;
  float: left;
  margin-top: 10px;
  line-height: 24px;
  text-align: center;
  font-size: 18px;
  color: #333;
}
.parallelNav {
  display: flex;
  position: relative;
  margin-top: 70px;
  padding: 0 60px;
}
.parallelNav>.swiper {
  width: 100%;
}
.parallelNav .swiper-slide {
  background-color: #f6f6f6;
  border-radius: 5px;
  cursor: pointer;
}
.parallelNav .swiper-slide::before {
  content: "";
  display: block;
  padding-top: 82.1918%;
}
.parallelNav .swiper-slide-thumb-active {
  background-color: #ff4343;
}

.parallel-prev,
.parallel-next {
  width: 40px;
  float: left;
  height: 40px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
}
.parallel-prev>img:first-child {
  opacity: 1;
}
.parallel-prev>img:last-child {
  opacity: 0;
}
.parallel-next>img:first-child {
  opacity: 1;
}
.parallel-next>img:last-child {
  opacity: 0;
}
.parallel-next {
  left: initial;
  right: 0;
}
.parallel-prev:hover,
.parallel-next:hover {
  background-color: #ff4343;
}
.parallel-prev:hover>img:first-child {
  opacity: 0;
}
.parallel-prev:hover>img:last-child {
  opacity: 1;
}
.parallel-next:hover>img:first-child {
  opacity: 0;
}
.parallel-next:hover>img:last-child {
  opacity: 1;
}
#parallelSwiper {
  margin-top: 20px;
}
.parallelList {
  display: flex;
  flex-wrap: wrap;
  width: 1347px;
}
.parallelList>li {
  width: 402px;
  float: left;
  margin-right: 47px;
}
.parallelList>li .parallelImg {
  width: 100%;
  overflow: hidden;
  position: relative;
  border: 1px solid #999;
  border-radius: 6px;
}
.parallelList>li .parallelImg::before {
  content: "";
  display: block;
  padding-top: 67.5%;
}
.parallelList>li .parallelTxt {
  display: block;
  overflow: hidden;
  height: 42px;
  line-height: 42px;
  text-align: center;
  font-size: 18px;
  color: #333;
}
.parallelList>li:hover .parallelImg {
  border-color: #ff4343;
}
.parallelList>li:hover .parallelImg>img {
  transform: scale(1.1);
}
.parallelList>li:hover .parallelTxt {
  font-size: 18px;
  color: #ff4343;
  font-weight: bold;
}

@media (max-width: 1320px) {
  .parallel {
    padding: 50px 0 20px 0;
  }
  .parallelNav {
    margin-top: 50px;
  }
  .parallelList {
    width: 102%;
    margin-left: -1%;
  }
  .parallelList>li {
    width: 31.3333%;
    margin: 0 1%;
  }
}

@media (max-width: 991px) {
  .parallel {
    padding: 30px 0 20px 0;
  }
  .parallelNav {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .parallel {
    padding: 15px 0;
  }
  .parallelTitle .parallelBigTitle {
    font-size: 20px;
    line-height: 30px;
    padding-left: 35px;
    background-size: auto 10px;
  }
  .parallelTitle .parallelSmallTitle {
    margin-top: 5px;
    line-height: 20px;
    font-size: 14px;
  }
  .parallelNav {
    margin-top: 15px;
    padding: 0 40px;
  }
  .parallel-prev,
  .parallel-next {
    width: 30px;
    height: 30px;
  }
  .parallel-prev>img,
  .parallel-next>img {
    width: auto;
    height: 20px;
  }
  .parallelList>li {
    width: 48%;
  }
  .parallelList>li .parallelTxt {
    height: 40px;
    line-height: 40px;
	  font-size: 18px;
  }
	.parallelList>li:hover .parallelTxt {
	  font-size: 24px;
  }
}

/* 商务车定制 */
.mpv {
  width: 100%;
  overflow: hidden;
  padding: 90px 0;
}
.mpv .parallelTitle {
  width: 95%;
  margin: 0 auto;
}
.mpvSwiper {
  margin-top: 70px;
}
.mpvSwiper .swiper-slide>a {
  display: block;
  overflow: hidden;
  background-color: #f6f6f6;
  padding: 10px;
  border-radius: 5px;
}
.mpvSwiper .swiper-slide>a .mpvImg {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.mpvSwiper .swiper-slide>a .mpvImg::before {
  content: "";
  display: block;
  padding-top: 78.5506%;
}
.mpvSwiper .swiper-slide>a .mpvBox {
  display: block;
  overflow: hidden;
  padding: 40px 0;
}
.mpvSwiper .swiper-slide>a .mpvBox .mpvTitle {
  display: block;
  overflow: hidden;
  line-height: 42px;
  text-align: center;
  font-size: 18px;
  color: #333;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mpvSwiper .swiper-slide>a .mpvBox .mpvHeng {
  display: block;
  width: 80%;
  max-width: 200px;
  overflow: hidden;
  height: 2px;
  margin: 10px auto;
  position: relative;
}
.mpvSwiper .swiper-slide>a .mpvBox .mpvHeng::before {
  content: "";
  width: 100%;
  float: left;
  height: 1px;
  background-color: #e8e8e8;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
}
.mpvSwiper .swiper-slide>a .mpvBox .mpvHeng::after {
  content: "";
  width: 100%;
  float: left;
  max-width: 50px;
  height: 2px;
  background-color: #ff4343;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 2;
}
.mpvSwiper .swiper-slide>a .mpvBox .mpvSubTitle {
  display: block;
  overflow: hidden;
  line-height: 20px;
  font-size: 14px;
  color: #333;
  text-align: center;
}
.mpvSwiper .swiper-slide>a .mpvBox .mpvMore {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  padding: 10px;
}
.mpvSwiper .swiper-slide>a .mpvBox .mpvMore>span {
  width: 150px;
  float: left;
  height: 36px;
  background-color: #fff;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 14px;
  color: #333;
  border-radius: 10px;
}
.mpvSwiper .swiper-slide>a:hover .mpvImg>img {
  transform: scale(1.1);
}
.mpvSwiper .swiper-slide>a:hover .mpvBox .mpvTitle {
  font-size: 18px;
  color: #ff4343;
  font-weight: bold;
}
.mpvSwiper .swiper-slide>a:hover .mpvBox .mpvMore>span {
  width: 110px;
  background-color: #ff4343;
  color: #fff;
}

@media (max-width: 1320px) {
  .mpv {
    padding: 60px 0;
  }
  .mpvSwiper {
    margin-top: 50px;
  }
}

@media (max-width: 991px) {
  .mpv {
    padding: 30px 0;
  }
  .mpv .parallelTitle {
    width: calc(100% - 60px);
  }
  .mpvSwiper {
    margin-top: 30px;
  }
  .mpvSwiper .swiper-slide>a .mpvBox {
    padding: 20px 0;
  }
}

@media (max-width: 767px) {
  .mpv {
    padding: 15px 0;
  }
  .mpv .parallelTitle {
    width: calc(100% - 40px);
  }
  .mpvSwiper {
    margin-top: 10px;
  }
  .mpvSwiper .swiper-slide>a .mpvBox {
    padding: 10px 0;
  }
  .mpvSwiper .swiper-slide>a .mpvBox .mpvMore {
    margin-top: 10px;
    padding: 5px;
  }
}

/* 售后服务 */
.service {
  width: 100%;
  min-height: 820px;
  overflow: hidden;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.serviceLeft {
  width: 58%;
  height: 100%;
  padding: 175px 0;
  background: url(../images/service_bj2.png) no-repeat center center;
  background-size: 100% 100%;
  float: left;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.serviceBox {
  width: 100%;
  max-width: 900px;
  float: right;
  padding-right: 100px;
  position: relative;
}
.serviceBox::before {
  content: "";
  width: 94px;
  float: left;
  height: 94px;
  background: url(../images/service_icon.png) no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  left: -110px;
  top: 5px;
}
.serviceBox .parallelTitle {
  justify-content: flex-start;
}
.serviceBox .parallelTitle .parallelBigTitle {
  color: #fff;
  padding: 0 120px 0 0;
  background: url(../images/title_heng2.png) no-repeat right center;
}
.serviceBox .parallelTitle .parallelSmallTitle {
  color: #fff;
  text-align: left;
}
.serviceList {
  display: block;
  overflow: hidden;
  margin-top: 170px;
}
.serviceList>li {
  float: left;
  display: flex;
  align-items: center;
  margin-right: 100px;
}
.serviceList>li>img {
  width: 60px;
  float: left;
  height: auto;
  margin-right: 15px;
}
.serviceList>li>div {
  float: left;
  color: #fff;
  line-height: 20px;
  font-size: 14px;
}
.serviceList>li>div>span {
  display: block;
  overflow: hidden;
  line-height: 28px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}

@media (max-width: 1800px) {
  .serviceLeft {
    width: 60%;
  }
}
@media (max-width: 1700px) {
  .serviceLeft {
    width: 64%;
  }
}
@media (max-width: 1600px) {
  .serviceLeft {
    width: 72%;
  }
}
@media (max-width: 1400px) {
  .serviceLeft {
    width: 80%;
  }
}
@media (max-width: 1320px) {
  .service {
    min-height: 600px;
  }
  .serviceLeft {
    padding: 140px 0;
  }
  .serviceBox {
    max-width: 700px;
    padding-right: 70px;
  }
  .serviceList {
    margin-top: 140px;
  }
}

@media (max-width: 991px) {
  .service {
    min-height: 400px;
  }
  .serviceLeft {
    padding: 70px 0;
  }
  .serviceBox {
    max-width: 500px;
    padding-right: 40px;
  }
  .serviceList {
    margin-top: 70px;
  }
  .serviceList>li {
    margin-right: 30px;
  }
}

@media (max-width: 767px) {
  .service {
    min-height: 240px;
  }
  .serviceLeft {
    width: 100%;
    padding: 20px 0;
  }
  .serviceBox {
    max-width: 100%;
    padding: 0 20px;
  }
  .serviceBox .parallelTitle {
    justify-content: center;
  }
  .serviceBox .parallelTitle .parallelBigTitle {
    padding: 0 35px 0 0;
    background-size: auto 10px;
  }
  .serviceBox .parallelTitle .parallelSmallTitle {
    text-align: center;
  }
  .serviceList {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .serviceList>li {
    width: calc(50% - 10px);
    margin: 0;
  }
  .serviceList>li>img {
    width: 40px;
    margin-right: 10px;
  }
}

/* 精品二手车 */
.usedCar {
  width: 100%;
  overflow: hidden;
  padding: 110px 0;
}
#usedCarSwiper {
  margin-top: 20px;
}

@media (max-width: 1320px) {
  .usedCar {
    padding: 80px 0;
  }
}

@media (max-width: 991px) {
  .usedCar {
    padding: 40px 0;
  }
}

@media (max-width: 767px) {
  .usedCar {
    padding: 20px 0;
  }
}

/* 金融保险 */
.insure {
  width: 100%;
  overflow: hidden;
  background-color: #f6f6f6;
  padding: 90px 0 160px 0;
}
.insureSwiper {
  width: 100%;
  margin-top: 70px;
  position: relative;
}
.insureSwiper a {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
}
.insureSwiper a .insureImg {
  width: 55.5%;
  float: left;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
}
.insureSwiper a .insureRight {
  width: 44.5%;
  float: left;
  background-color: #fff;
  margin-bottom: 60px;
  border-radius: 5px;
  padding: 60px 50px 45px 65px;
}
.insureSwiper a .insureRight .insureIcon {
  width: 150px;
  float: left;
  height: 120px;
  position: absolute;
  right: 70px;
  top: 40px;
}
.insureSwiper a .insureRight .insureTitle {
  display: block;
  overflow: hidden;
  line-height: 32px;
  font-size: 18px;
  color: #333;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.insureSwiper a .insureRight .insureTxt {
  display: block;
  overflow: hidden;
  height: 270px;
  line-height: 30px;
  font-size: 14px;
  color: #666;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
  margin-top: 15px;
  position: relative;
  z-index: 2;
}
.insureBtn {
  width: 90px;
  height: 60px;
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 1320px) {
  .insure {
    padding: 60px 0 100px 0;
  }
  .insureSwiper {
    margin-top: 50px;
  }
  .insureSwiper a .insureRight {
    padding: 45px;
  }
}

@media (max-width: 991px) {
  .insure {
    padding: 40px 0 80px 0;
  }
  .insureSwiper {
    margin-top: 30px;
  }
  .insureSwiper a .insureRight {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .insure {
    padding: 20px 0;
  }
  .insureSwiper {
    margin-top: 10px;
  }
  .insureSwiper a .insureImg {
    width: 100%;
  }
  .insureSwiper a .insureImg::before {
    content: "";
    display: block;
    padding-top: 55%;
  }
  .insureSwiper a .insureRight {
    width: 100%;
    padding: 10px;
    margin: 0;
  }
  .insureSwiper a .insureRight .insureTitle {
    line-height: 30px;
    font-size: 16px;
  }
  .insureSwiper a .insureRight .insureTxt {
    height: auto;
    line-height: 24px;
    margin-top: 5px;
  }
  .insureBtn {
    width: 95%;
    height: 40px;
    left: 2.5%;
    top: 20%;
    transform: translateY(-50%);
    z-index: 2;
  }
}

/* 新闻动态 */
.news {
  width: 100%;
  overflow: hidden;
  background: url(../images/news_bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 90px 0 70px 0;
}
.news .parallelTitle .parallelBigTitle {
  color: #fff;
  background: url(../images/title_heng2.png) no-repeat left center;
}
.news .parallelTitle .parallelSmallTitle {
  color: #fff;
}
.newsList {
  display: flex;
  flex-wrap: wrap;
  width: 1350px;
  margin-top: 70px;
}
.newsList>li {
  width: 400px;
  float: left;
  margin: 0 50px 40px 0;
}
.newsList>li>a {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
}
.newsList>li>a .newsImg {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
}
.newsList>li>a .newsImg::before {
  content: "";
  display: block;
  padding-top: 71.25%;
}
.newsList>li>a .newsBox {
  width: 100%;
  float: left;
  padding-top: 20px;
}
.newsList>li>a .newsBox .newsTitle {
  display: block;
  overflow: hidden;
  line-height: 30px;
  height: 30px;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.newsList>li>a .newsBox .newsTitle>span {
  float: right;
}
.newsList>li>a .newsBox .newsTxt {
  display: block;
  overflow: hidden;
  line-height: 20px;
  height: 40px;
  font-size: 14px;
  color: #fff;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 10px;
}
.newsList>li>a:hover .newsImg>img {
  transform: scale(1.1);
}
.news .aboutMore {
  justify-content: center;
  margin: 0;
}
.news .aboutMore>a {
  background-color: #fff;
  color: #333;
}

@media (max-width: 1320px) {
  .news {
    padding: 70px 0;
  }
  .newsList {
    width: 102%;
    margin-left: -1%;
    margin-top: 50px;
  }
  .newsList>li {
    width: 31.33333%;
    margin: 0 1% 40px 1%;
  }
}

@media (max-width: 991px) {
  .news {
    padding: 40px 0;
  }
  .newsList {
    margin-top: 30px;
  }
  .newsList>li {
    margin: 0 1% 30px 1%;
  }
}

@media (max-width: 767px) {
  .news {
    padding: 20px 0;
  }
  .news .parallelTitle .parallelBigTitle {
    background-size: auto 10px;
  }
  .newsList {
    margin-top: 10px;
  }
  .newsList>li {
    width: 98%;
    margin: 0 1% 15px 1%;
  }
  .newsList>li>a .newsImg {
    width: 30%;
  }
  .newsList>li>a .newsBox {
    width: 70%;
    padding: 0 0 0 10px;
  }
  .newsList>li>a .newsBox .newsTitle {
    font-size: 16px;
  }
}
/* END-main */

/* 企业介绍 */
.main {
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
}
.dqwzTitle {
  width: 100%;
  float: left;
}
.dqwzNav {
  width: 100%;
  float: left;
  margin-top: 10px;
  line-height: 24px;
  font-size: 18px;
  color: #333;
  text-align: center;
}
.dqwzNav>span {
  color: #ff4343;
}
.dqwzContect {
  width: 100%;
  float: left;
  padding-top: 70px;
}
.company {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 36px;
  color: #333;
}
.company img{
  display: block;
  max-width: 100%;
  height: auto;
  margin: 5px auto;
}

@media (max-width: 1320px) {
  .main {
    padding: 50px 0;
  }
  .dqwzContect {
    padding-top: 50px;
  }
}

@media (max-width: 991px) {
  .main {
    padding: 30px 0;
  }
  .dqwzContect {
    padding-top: 30px;
  }
}

@media (max-width: 767px) {
  .main {
    padding: 0;
  }
  .menuTitle {
    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: #ff4343;
  }
  /* .menuTitle::after {
    content: "\f078";
    font-family: FontAwesome;
    font-size: 16px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  } */
  .dqwzContect {
    padding: 15px 0;
  }
  .company {
    line-height: 30px;
    font-size: 14px;
  }
}
/* END-企业介绍 */

/* 产品中心 */
.dqwzContect .parallelNav {
  margin: 0;
}
.dqwzContect .parallelNav .swiper-slide-active {
  /*background-color: #ff4343;*/
}
.dqwzContect .parallelList {
  margin-top: 20px;
}

.cpxq {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
}
.cpxqLeft {
  width: calc(50% - 20px);
  float: left;
  overflow: hidden;
  position: relative;
  border: 1px solid #ccc;
}
.cpxqLeft::before {
  content: "";
  display: block;
  padding-top: 60%;
}
.cpxqRight {
  width: calc(50% - 20px);
  float: right;
}
.cpxqTitle {
  display: block;
  overflow: hidden;
  font-size: 20px;
  color: #333;
  font-weight: bold;
  line-height: 1.2;
}
.cpxqTxt {
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 30px;
  color: #999;
  margin-top: 20px;
}
.cpxqContect {
  width: 100%;
  float: left;
  margin-top: 40px;
  font-size: 14px;
  line-height: 30px;
  color: #999;
}
.cpxqSubTitle {
  display: block;
  overflow: hidden;
  background-color: #ff4343;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  line-height: 24px;
  padding: 10px 20px;
  margin-bottom: 20px;
}
.cpxqContect img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cpxqLeft {
    width: 100%;
  }
  .cpxqRight {
    width: 100%;
    margin-top: 10px;
  }
  .cpxqTitle {
    font-size: 16px;
  }
  .cpxqTxt {
    margin-top: 10px;
    line-height: 24px;
  }
  .cpxqContect {
    line-height: 24px;
    margin-top: 15px;
  }
  .cpxqSubTitle {
    font-size: 16px;
    padding: 10px;
    margin-bottom: 10px;
  }
}
/* END-产品中心 */

/* 新闻动态 */
.dqwzContect .newsList {
  margin: 0;
}
.dqwzContect .newsList>li>a .newsTitle,
.dqwzContect .newsList>li>a .newsTxt {
  color: #333;
}

.xwxq {
  display: block;
  overflow: hidden;
}
.xwxqTitle {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 20px;
  color: #333;
  font-weight: bold;
  line-height: 1.2;
}
.xwxqTime {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
  color: #666;
  line-height: 1.1;
  padding: 10px 0;
  border-bottom: 1px dashed #ccc;
  margin-bottom: 10px;
}
.xwxqContect {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 36px;
  padding-top: 10px;
}
.xwxqContect img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}

@media (max-width: 767px) {

  .xwxqTitle {
    font-size: 16px;
  }
  .xwxqContect {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-新闻动态 */

/* 联系我们 */
.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #ff4343;
  border-radius: 10px;
  overflow: hidden;
}
.contactTxt {
  width: 40%;
  float: left;
  padding: 30px;
  font-size: 16px;
  line-height: 36px;
  color: #fff;
}
.contactMap {
  width: 60%;
  float: left;
  height: 400px;
  border: none;
}

@media (max-width: 767px) {

  .contactTxt {
    width: 100%;
    font-size: 14px;
    line-height: 24px;
    padding: 15px;
  }
  .contactMap {
    width: 100%;
    height: 300px;
  }
}
/* END-联系我们 */