/* 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 */
/* 产品展示 */
.product {
  width: 100%;
  overflow: hidden;
  background: url(../images/product_bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 80px 0;
}
.productTitle {
  display: block;
  overflow: hidden;
  text-align: center;
  color: #333;
  font-weight: bold;
}
.productTitle>div {
  line-height: 48px;
  font-size: 48px;
  opacity: 0.1;
  text-transform: uppercase;
}
.productTitle>h1 {
  display: flex;
  justify-content: center;
  margin-top: -23px;
}
.productTitle>h1>span {
  float: left;
  line-height: 38px;
  font-size: 30px;
  padding: 0 30px;
  background: url(../images/title_heng1.png) no-repeat left center, url(../images/title_heng2.png) no-repeat right center;
}
.productNav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 25px;
}
.productNav>li {
  width: 260px;
  float: left;
  margin: 0 5px 10px 5px;
}
.productNav>li>a {
  display: block;
  overflow: hidden;
  height: 50px;
  line-height: 48px;
  font-size: 16px;
  color: #333;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-image: linear-gradient(#fff, #e7e7e7);
}
.productNav>li>a:hover,
.productNav>li.productActive>a {
  border-color: #03579b;
  background-image: linear-gradient(#0059a2, #009cee);
  color: #fff;
}
.productContect {
  display: block;
  overflow: hidden;
  margin-top: 20px;
}
.productContect>div {
  display: none;
}
.productContect>div:first-child {
  display: block;
}

.productList {
  display: flex;
  flex-wrap: wrap;
  width: 1440px;
}
.productList>li {
  width: 320px;
  float: left;
  margin: 0 40px 20px 0;
}
.productList>li>a {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
}
.productList>li>a::before {
  content: "";
  display: block;
  padding-top: 83.75%;
}
.productList>li>a .productImg {
  width: 100%;
  height: calc(100% - 38px);
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
}
.productList>li>a .productHover {
  width: 100%;
  height: 38px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.productList>li>a .productHover .productSearch {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 0;
}
.productList>li>a .productHover .productName {
  width: 100%;
  overflow: hidden;
  height: 38px;
  line-height: 38px;
  text-align: center;
  font-size: 16px;
  color: #333;
  margin: 0;
}
.productList>li>a .productHover .productMore {
  width: 100%;
  overflow: hidden;
  text-align: center;
  height: 0;
  line-height: 12px;
  font-size: 14px;
  color: #fff;
}
.productList>li>a:hover .productImg {
  height: 100%;
}
.productList>li>a:hover .productHover {
  height: 100%;
  background-color: rgba(6, 113, 200, 0.7);
}
.productList>li>a:hover .productHover .productSearch {
  height: 26px;
}
.productList>li>a:hover .productHover .productName {
  color: #fff;
  margin: 10px 0;
}
.productList>li>a:hover .productHover .productMore {
  height: 20px;
}
.more {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.more>a {
  width: 184px;
  float: left;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #0671c8;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
}
.more>a:hover {
  width: 140px;
}

@media (max-width: 1470px) {
  .product {
    padding: 60px 0;
  }
  .productList {
    width: 102%;
    margin-left: -1%;
  }
  .productList>li {
    width: 23%;
    margin: 0 1% 20px 1%;
  }
}

@media (max-width: 1200px) {
  .product {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .product {
    padding: 30px 0;
  }
  .productNav>li {
    width: 24%;
    margin: 0 0.5% 10px 0.5%;
  }
  .productList>li {
    width: 31.33333%;
  }
}

@media (max-width: 767px) {
  .product {
    padding: 15px 0;
  }
  .productTitle>div {
    line-height: 30px;
    font-size: 30px;
  }
  .productTitle>h1 {
    margin-top: -15px;
  }
  .productTitle>h1>span {
    line-height: 30px;
    font-size: 20px;
  }
  .productNav {
    margin-top: 15px;
  }
  .productNav>li {
    width: 49%;
    margin: 0 0.5% 1% 0.5%;
  }
  .productNav>li>a {
    height: 42px;
    line-height: 40px;
  }
  .productContect {
    margin-top: 15px;
  }
  .productList>li {
    width: 48%;
    margin: 0 1% 10px 1%;
  }
  .more>a {
    width: 110px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }
}

/* 关于我们 */
.about {
  width: 100%;
  overflow: hidden;
  background: url(../images/about_bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 75px 0 115px 0;
}
.aboutTitle {
  color: #fff;
}
.aboutTitle>h1>span {
  background: url(../images/title_heng1_white.png) no-repeat left center, url(../images/title_heng2_white.png) no-repeat right center;
}
.aboutContect {
  display: block;
  overflow: hidden;
  margin-top: 20px;
}
.aboutTxt {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 16px;
  line-height: 48px;
  color: #fff;
}
.aboutList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}
.aboutList>li {
  width: 285px;
  float: left;
  margin: 0 5px 10px 5px;
}
.aboutList>li>a {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  border: 5px solid #fff;
}
.aboutList>li>a::before {
  content: "";
  display: block;
  padding-top: 70.175439%;
}
.aboutList>li>a:hover>img {
  transform: scale(1.1);
}
.about .more {
  margin-top: 20px;
}
.about .more>a {
  background-color: #fff;
  color: #333;
}

@media (max-width: 1240px) {
  .about {
    padding: 50px 0;
  }
  .aboutList>li {
    width: 24%;
    margin: 0 0.5% 10px 0.5%;
  }
}

@media (max-width: 991px) {
  .about {
    padding: 30px 0;
  }
  .aboutList {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .about {
    padding: 15px 0;
  }
  .aboutContect {
    margin-top: 10px;
  }
  .aboutTxt {
    font-size: 14px;
    line-height: 24px;
  }
  .aboutList {
    margin-top: 15px;
  }
  .aboutList>li {
    width: 49%;
    margin: 0 0.5% 1% 0.5%;
  }
  .about .more {
    margin-top: 10px;
  }
}

/* 为什么选择我们 */
.choose {
  width: 100%;
  overflow: hidden;
  background: url(../images/choose_bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 70px 0;
}
.chooseTitle {
  display: block;
  overflow: hidden;
  text-align: center;
}
.chooseTitle>p {
  line-height: 42px;
  font-size: 42px;
  color: #120f10;
  opacity: 0.2;
  text-transform: uppercase;
  font-weight: bold;
}
.chooseTitle>h1 {
  line-height: 40px;
  font-size: 30px;
  color: #333;
  font-family: "Source Han Sans CN Heavy";
  margin-top: -10px;
}
.chooseContect {
  display: block;
  overflow: hidden;
}
.chooseList {
  display: block;
  overflow: hidden;
}
.chooseList>li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  overflow: hidden;
  margin-top: 50px;
}
.chooseList>li .chooseImg {
  width: 36%;
  float: left;
}
.chooseList>li .chooseImg>img {
  width: 100%;
  display: block;
  height: auto;
}
.chooseList>li .chooseLeft {
  width: 64%;
  float: left;
  padding-right: 60px;
}
.chooseList>li .chooseLeft .chooseBox {
  width: 100%;
  float: left;
  margin-bottom: 30px;
}
.chooseList>li .chooseLeft .chooseBox:last-child {
  margin: 0;
}
.chooseList>li .chooseLeft .chooseBox .chooseNumder {
  width: 80px;
  float: left;
  height: 80px;
  margin-right: 30px;
  overflow: hidden;
  position: relative;
  padding: 10px 10px 0 0;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 48px;
  font-family: "Source Han Sans CN";
  color: #fff;
  font-weight: bold;
}
.chooseList>li .chooseLeft .chooseBox .chooseNumder::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #c3d9ea;
  position: absolute;
  left: 0;
  top: 0;
}
.chooseList>li .chooseLeft .chooseBox .chooseNumder::after {
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 50%;
  background-color: #0671c8;
  position: absolute;
  left: 0;
  bottom: 0;
}
.chooseList>li .chooseLeft .chooseBox .chooseNumder>span {
  position: relative;
  z-index: 2;
}
.chooseList>li .chooseLeft .chooseBox .chooseSubTitle {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 14px;
  border-bottom: 1px solid #dbdbdb;
  position: relative;
  line-height: 24px;
  font-size: 16px;
  color: #202020;
}
.chooseList>li .chooseLeft .chooseBox .chooseSubTitle::after {
  content: "";
  width: 200px;
  float: left;
  height: 3px;
  background-color: #0671c8;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.chooseList>li .chooseLeft .chooseBox .chooseSubTitle>h2 {
  width: 100%;
  overflow: hidden;
  line-height: 30px;
  font-size: 24px;
  color: #000;
}
.chooseList>li .chooseLeft .chooseBox .chooseTxt {
  display: block;
  overflow: hidden;
  min-height: 48px;
  line-height: 24px;
  font-size: 14px;
  color: #666;
  margin-top: 17px;
  padding-left: 110px;
}
.chooseList>li:nth-child(even) {
  flex-direction: row;
}
.chooseList>li:nth-child(even) .chooseLeft {
  padding: 0 0 0 60px;
}

@media (max-width: 1200px) {
  .choose {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .choose {
    padding: 30px 0;
  }
  .chooseList>li {
    margin-top: 30px;
  }
  .chooseList>li .chooseLeft {
    padding-right: 30px;
  }
  .chooseList>li:nth-child(even) .chooseLeft {
    padding: 0 0 0 30px;
  }
}

@media (max-width: 767px) {
  .choose {
    padding: 15px 0;
  }
  .chooseTitle>p {
    line-height: 30px;
    font-size: 30px;
  }
  .chooseTitle>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .chooseList>li {
    margin-top: 15px;
  }
  .chooseList>li .chooseImg {
    width: 100%;
  }
  .chooseList>li .chooseLeft {
    width: 100%;
    padding-right: 0;
  }
  .chooseList>li .chooseLeft .chooseBox {
    margin: 15px 0 0 0 !important;
  }
  .chooseList>li .chooseLeft .chooseBox .chooseNumder {
    width: 55px;
    height: 55px;
    margin-right: 10px;
    padding: 5px 5px 0 0;
    font-size: 30px;
  }
  .chooseList>li .chooseLeft .chooseBox .chooseNumder::after {
    width: calc(100% - 5px);
    height: calc(100% - 5px);
  }
  .chooseList>li .chooseLeft .chooseBox .chooseSubTitle {
    padding-bottom: 4px;
    line-height: 20px;
    font-size: 14px;
  }
  .chooseList>li .chooseLeft .chooseBox .chooseSubTitle>h2 {
    line-height: 24px;
    font-size: 16px;
  }
  .chooseList>li .chooseLeft .chooseBox .chooseTxt {
    margin-top: 10px;
    padding-left: 0;
  }
  .chooseList>li:nth-child(even) .chooseLeft {
    padding: 0;
  }
}

/* 案例中心 */
.case {
  width: 100%;
  overflow: hidden;
  padding: 70px 0;
}
.caseSwiper {
  margin-top: 25px;
}
.caseSwiper .swiper-slide .caseImg {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.caseSwiper .swiper-slide .caseImg::before {
  content: "";
  display: block;
  padding-top: 70.45455%;
}
.caseSwiper .swiper-slide .caseName {
  display: block;
  overflow: hidden;
  line-height: 56px;
  font-size: 16px;
  color: #333;
  padding: 0 15px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.caseSwiper .swiper-slide:hover .caseImg>img {
  transform: scale(1.1);
}
.caseSwiper .swiper-slide:hover .caseName {
  background-color: #0671c8;
  color: #fff;
}

@media (max-width: 1200px) {
  .case {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .case {
    padding: 30px 0;
  }
}

@media (max-width: 767px) {
  .case {
    padding: 15px 0;
  }
  .caseSwiper {
    margin-top: 15px;
  }
  .caseSwiper .swiper-slide .caseName {
    line-height: 40px;
    padding: 0 10px;
  }
}

/* 视频中心 */
.video {
  width: 100%;
  overflow: hidden;
  background: url(../images/video_bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 80px 0;
}
.videoSubTitle {
  display: block;
  overflow: hidden;
  text-align: center;
  margin-top: 20px;
  line-height: 24px;
  font-size: 14px;
  color: #fff;
}
.videoContect {
  display: flex;
  position: relative;
  margin-top: 40px;
}
.videoSwiper {
  width: 100%;
  padding-bottom: 44px;
}
.videoSwiper .swiper-slide {
  overflow: hidden;
  position: relative;
}
.videoSwiper .swiper-slide::before {
  content: "";
  display: block;
  padding-top: 56.136364%;
}
.videoSwiper .swiper-slide>video {
  width: 100%;
  float: left;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}
.videoSwiper .swiper-slide .videoHover {
  width: 100%;
  float: left;
  height: 100%;
  border: 15px solid #fff;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
}
.videoSwiper .swiper-slide .videoHover::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.videoSwiper .swiper-slide .videoHover>img:last-child {
  z-index: 3;
}
/* 圆点 */
.videoSwiper .swiper-pagination {
  opacity: 1;
  bottom: 0;
  display: flex;
  justify-content: center;
}
.videoSwiper .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  float: left;
  border: 2px solid #fff;
  background: #fff;
  opacity: 1;
}
.videoSwiper>.swiper-pagination-bullets .swiper-pagination-bullet,
.videoSwiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
.videoSwiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fff;
  border-color: #04488e;
}
.video-prev,
.video-next {
  width: 32px;
  float: left;
  height: 32px;
  background-image: url(../images/video_left.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: -60px;
  top: calc(50% - 22px);
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 8;
}
.video-next {
  left: initial;
  right: -60px;
  background-image: url(../images/video_right.png);
}

@media (max-width: 1440px) {
  .video {
    padding: 70px 0;
  }
  .video-prev,
  .video-next {
    left: 20px;
  }
  .video-next {
    left: initial;
    right: 20px;
  }
}

@media (max-width: 1200px) {
  .video {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .video {
    padding: 30px 0;
  }
  .videoContect {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .video {
    padding: 15px 0;
  }
  .videoSubTitle {
    margin-top: 10px;
    line-height: 20px;
    font-size: 12px;
  }
  .videoContect {
    margin-top: 15px;
  }
  .videoSwiper {
    padding-bottom: 30px;
  }
  .videoSwiper .swiper-slide .videoHover {
    border: 3px solid #fff;
  }
  .video-prev,
  .video-next {
    width: 22px;
    height: 22px;
    left: 0;
    top: initial;
    bottom: 0;
    transform: translateY(0);
  }
  .video-next {
    left: initial;
    right: 0;
  }
}

/* 新闻资讯 */
.news {
  width: 100%;
  overflow: hidden;
  background: url(../images/news_bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 70px 0;
}
.newsContect {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.newsBox {
  width: 31.5%;
  float: left;
  background-color: #fff;
  padding: 20px 30px 0 30px;
}
.newsTitle {
  display: flex;
  align-items: center;
  overflow: hidden;
  line-height: 36px;
  font-size: 24px;
  color: #333;
}
.newsTitle::after {
  content: "";
  width: 96px;
  float: left;
  height: 2px;
  background-color: #0671c8;
  margin-left: 20px;
}
.newsDynamic {
  display: block;
  overflow: hidden;
  padding: 15px 0;
}
.newsDynamic .newsImg {
  width: 100%;
  overflow: hidden;
  position: relative;
  border: 1px solid #eee;
}
.newsDynamic .newsImg::before {
  content: "";
  display: block;
  padding-top: 39.473684211%;
}
.newsDynamic .newsName {
  display: block;
  overflow: hidden;
  margin-top: 10px;
  line-height: 40px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.newsDynamic .newsTxt {
  display: block;
  overflow: hidden;
  height: 90px;
  line-height: 30px;
  font-size: 14px;
  color: #666;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.newsDynamic:hover .newsImg>img {
  transform: scale(1.1);
}
.newsDynamic:hover .newsName {
  color: #0671c8;
}
.newsDynamicList {
  display: block;
  overflow: hidden;
}
.newsDynamicList>a {
  display: block;
  overflow: hidden;
  padding: 10px 5px;
  line-height: 30px;
  font-size: 14px;
  color: #666;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-top: 1px solid #e5e5e5;
}
.newsDynamicList>a::before {
  content: "";
  width: 16px;
  float: right;
  height: 16px;
  background-image: url(../images/news_icon1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-top: 7px;
  transition: all 0.4s;
}
.newsDynamicList>a:hover {
  color: #0671c8;
}
.newsDynamicList>a:hover::before {
  background-image: url(../images/news_icon2.png);
}

.newsBox:last-child {
  border-bottom: 2px solid #0671c8;
}
.encyclopediaList {
  display: block;
  overflow: hidden;
}
.encyclopediaList li {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 5px;
  line-height: 30px;
}
.encyclopediaList li:last-child {
  border-bottom: none;
}
.encyclopediaList li>h2 {
  display: block;
  overflow: hidden;
  position: relative;
}
.encyclopediaList li>h2::after {
  content: "";
  width: 16px;
  float: left;
  height: 16px;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/news_icon1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  cursor: pointer;
}
.encyclopediaList li>h2>a {
  float: left;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  color: #666;
  font-weight: bold;
  padding-right: 20px;
}

.encyclopediaList li>h2:hover>a {
  color: #0671c8;
}
.encyclopediaList li>h2:hover::after {
  background-image: url(../images/news_icon2.png);
}
.encyclopediaList li .encyclopediaBox {
  display: none;
  width: 100%;
  overflow: hidden;
  transition: initial;
}
.encyclopediaList li .encyclopediaBox .encyclopediaTxt {
  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: 6px;
}
.encyclopediaList li.actived>h2::after {
  background-image: url(../images/news_icon3.png) !important;
}
.encyclopediaList li.actived>h2>a {
  line-height: 1;
  font-size: 16px;
  color: #333;
}

@media (max-width: 1200px) {
  .news {
    padding: 50px 0;
  }
  .newsBox {
    padding: 20px 20px 0 20px;
  }
  .encyclopediaList li .encyclopediaBox .encyclopediaTxt {
    height: 240px;
    -webkit-line-clamp: 8;
  }
}

@media (max-width: 991px) {
  .news {
    padding: 30px 0;
  }
  .newsTitle {
    font-size: 20px;
  }
  .newsTitle::after {
    width: 80px;
  }

  .encyclopediaList li .encyclopediaBox .encyclopediaTxt {
    height: 210px;
    -webkit-line-clamp: 7;
  }
}

@media (max-width: 767px) {
  .news {
    padding: 15px 0;
  }
  .newsContect {
    margin-top: 0;
  }
  .newsBox {
    width: 100%;
    margin-top: 15px;
    padding: 10px 10px 0 10px;
  }
  .newsTitle {
    line-height: 30px;
    font-size: 18px;
  }
  .newsTitle::after {
    width: 50px;
    margin-left: 5px;
  }
  .newsDynamic {
    padding: 10px 0;
  }
  .newsDynamic .newsTxt {
    height: auto;
    line-height: 24px;
    -webkit-line-clamp: initial;
  }
  .newsDynamicList>a {
    padding: 5px;
  }
}
/* END-main */

/* 公司简介 */
.main {
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
}
.dqwzTitle {
  width: 100%;
  float: left;
}
.dqwzTitle .productTitle {
  padding-top: 14px;
}
.dqwzTitle .productTitle>h1 {
  margin-top: -62px;
}
.dqwzTitle .productTitle>.dqwzNav {
  display: block;
  overflow: hidden;
  line-height: 16px;
  position: relative;
  font-size: 14px;
  color: #666;
  opacity: 1;
  margin-top: 8px;
  font-weight: normal;
}
.dqwzTitle .productTitle>.dqwzNav>span {
  color: #0671c8;
  text-decoration: underline;
}
.dqwzContect {
  width: 100%;
  float: left;
  padding-top: 30px;
}
.company {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 36px;
  color: #333;
}

@media (max-width: 1200px) {
  .main {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .main {
    padding: 30px 0;
  }
}

@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: #0671c8;
  }
  .menuTitleActive {
    text-align: left;
  }
  .menuTitleActive::after {
    content: "\f078";
    font-family: FontAwesome;
    font-size: 16px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .dqwzContect {
    padding: 20px 0;
  }
  .company {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-公司简介 */

/* 服务项目/案例展示 */
.menuList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}
.menuList>li {
  width: 260px;
  float: left;
  margin: 10px 5px 0 5px;
}
.menuList>li>a {
  display: block;
  overflow: hidden;
  height: 50px;
  line-height: 48px;
  font-size: 16px;
  color: #333;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-image: linear-gradient(#fff, #e7e7e7);
}
.menuList>li:hover>a,
.menuList>li.menuActive>a {
  border-color: #03579b;
  background-image: linear-gradient(#0059a2, #009cee);
  color: #fff;
}

.cpxq {
  display: block;
  overflow: hidden;
}
.cpxqLeft {
  width: calc(50% - 20px);
  float: left;
  border: 1px solid #ccc;
  overflow: hidden;
  position: relative;
}
.cpxqLeft::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.cpxqRight {
  width: calc(50% - 20px);
  float: right;
}
.cpxqTitle {
  display: block;
  overflow: hidden;
  font-size: 20px;
  color: #333;
  font-weight: bold;
  line-height: 30px;
}
.cpxqTxt {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 14px;
  color: #666;
  margin: 20px 0;
}
.cpxqMore {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
.cpxqMore>a {
  width: calc(33.33333% - 20px);
  float: left;
  height: 40px;
  background-color: #0671c8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
}
.cpxqContect {
  width: 100%;
  float: left;
  margin-top: 40px;
  font-size: 14px;
  line-height: 30px;
  color: #333;
}
.cpxqSubTitle {
  display: block;
  overflow: hidden;
  background-color: #f2f2f2;
  margin-bottom: 20px;
}
.cpxqSubTitle>span {
  float: left;
  background-color: #0671c8;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
}
.cpxqContect img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .menuList>li {
    width: 24%;
    margin: 10px 0.5% 0 0.5%;
  }
}

@media (max-width: 767px) {
  .menuList {
    display: none;
    margin: 0;
    transition: initial;
  }
  .menuList>li {
    width: 100%;
    margin: 3px 0 0 0;
  }
  .menuList>li>a {
    height: 42px;
    line-height: 40px;
  }

  .cpxqLeft {
    width: 100%;
  }
  .cpxqRight {
    width: 100%;
    margin-top: 10px;
  }
  .cpxqTitle {
    font-size: 18px;
  }
  .cpxqTxt {
    margin: 10px 0;
    line-height: 24px;
  }
  .cpxqContect {
    width: 100%;
    margin-top: 15px;
    line-height: 24px;
  }
}
/* END-服务项目/案例展示 */

/* 新闻资讯 */
.infoList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.infoList>li {
  width: calc(50% - 15px);
  float: left;
  margin-bottom: 30px;
}
.infoList>li>a {
  display: flex;
  width: 100%;
  float: left;
  padding: 10px;
  background-color: #f2f2f2;
}
.infoList>li>a .infoImg {
  width: 30%;
  float: left;
  overflow: hidden;
  position: relative;
}
.infoList>li>a .infoContect {
  width: 70%;
  float: left;
  padding-left: 20px;
}
.infoList>li>a .infoContect .infoTitle {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 20px;
  color: #333;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.infoList>li>a .infoContect .infoTxt {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 16px;
  color: #666;
  height: 90px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 10px 0;
}
.infoList>li>a .infoContect .infoTime {
  display: block;
  overflow: hidden;
  line-height: 20px;
  font-size: 14px;
  color: #999;
}
.infoList>li>a:hover {
  background-color: #0671c8;
}
.infoList>li>a:hover .infoContect .infoTitle,
.infoList>li>a:hover .infoContect .infoTxt,
.infoList>li>a:hover .infoContect .infoTime {
  color: #fff;
}

.xwxq {
  display: block;
  overflow: hidden;
}
.xwxqTitle {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 20px;
  color: #333;
  font-weight: bold;
  line-height: 30px;
}
.xwxqTime {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 12px;
  color: #999;
  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: 991px) {
  .infoList>li {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .infoList>li {
    margin-bottom: 15px;
  }
  .infoList>li>a {
    padding: 5px;
  }
  .infoList>li>a .infoImg {
    width: 35%;
  }
  .infoList>li>a .infoContect {
    width: 65%;
    padding-left: 10px;
  }
  .infoList>li>a .infoContect .infoTitle {
    line-height: 24px;
    font-size: 16px;
  }
  .infoList>li>a .infoContect .infoTxt {
    line-height: 20px;
    font-size: 14px;
    height: 60px;
    margin: 4px 0;
  }

  .xwxqTitle {
    font-size: 16px;
    line-height: 24px;
  }
  .xwxqContect {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-新闻资讯 */

/* 视频展示 */
.videoList {
  width: 102%;
  margin-left: -1%;
}
.videoList>li {
  width: 31.333333%;
  float: left;
  margin: 0 1% 2% 1%;
  overflow: hidden;
  position: relative;
}
.videoList>li::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.videoList>li>video {
  width: 100%;
  float: left;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}
.videoList>li .videoHover {
  width: 100%;
  float: left;
  height: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
}
.videoList>li .videoHover::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.videoList>li .videoHover>img:last-child {
  z-index: 3;
}

@media (max-width: 994px) {
  .videoList>li {
    width: 48%;
  }
}

@media (max-width: 767px) {
  .videoList>li {
    width: 98%;
  }
}
/* END-视频展示 */

/* 联系我们 */
.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #0671c8;
}
.contactTxt {
  width: 40%;
  float: left;
  font-size: 16px;
  line-height: 36px;
  color: #fff;
  padding: 30px;
}
.contactMap {
  width: 60%;
  float: left;
  overflow: hidden;
  height: 400px;
  border: none;
}

@media (max-width: 767px) {
  .contactTxt {
    width: 100%;
    padding: 15px;
    font-size: 14px;
    line-height: 24px;
  }
  .contactMap {
    width: 100%;
    height: 300px;
  }
}
/* END-联系我们 */