/* 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;
  padding: 75px 0;
}
.title {
  display: block;
  overflow: hidden;
  line-height: 18px;
  text-align: center;
  font-size: 12px;
  color: #024387;
  text-transform: uppercase;
}
.title::after {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #024387;
  margin: 6px auto 0 auto;
  border-right: 10px solid #333;
}
.title>h1 {
  display: flex;
  justify-content: center;
}
.title>h1>span {
  float: left;
  line-height: 44px;
  padding: 0 25px;
  font-size: 36px;
  color: #333;
  position: relative;
}
.title>h1>span>em {
  color: #024387;
}
.title>h1>span::before {
  content: "";
  width: 108px;
  float: left;
  height: 9px;
  background: url(../images/title-left.png) no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.title>h1>span::after {
  content: "";
  width: 108px;
  float: left;
  height: 9px;
  background: url(../images/title-right.png) no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.product-list {
  display: flex;
  flex-wrap: wrap;
  width: 1440px;
  margin-top: 30px
}
.product-list>li {
  width: 320px;
  float: left;
  margin: 0 40px 40px 0;
}
.product-list>li>a {
  display: block;
  overflow: hidden;
  border: 1px solid #e5e5e5;;
}
.product-list>li>a .product-img {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  position: relative;
}
.product-list>li>a .product-img::before {
  content: "";
  display: block;
  padding-top: 72.75%;
}
.product-list>li>a .product-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #f5f5f5;
  padding: 15px;
}
.product-list>li>a .product-box>h2 {
  width: 100%;
  overflow: hidden;
  line-height: 16px;
  font-size: 14px;
  color: #333;
  font-weight: normal;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-list>li>a .product-box .product-more {
  width: 90px;
  float: left;
  height: 20px;
  margin-top: 10px;
  border: 1px solid #707070;
  border-radius: 10px;
  font-size: 12px;
  color: #333;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.product-list>li>a .product-box .product-more>span {
  float: left;
  margin-left: 5px;
  font-family: SimSun;
}
.product-list>li>a:hover .product-img>img {
  transform: scale(1.1);
}
.product-list>li>a:hover .product-box .product-more {
  background-color: #024387;
  border-color: #024387;
  color: #fff;
}

@media (max-width: 1480px) {
  .product-list {
    width: 102%;
    margin-left: -1%;
  }
  .product-list>li {
    width: 23%;
    margin: 0 1% 40px 1%;
  }
}

@media (max-width: 1200px) {
  .product {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .product {
    padding: 30px 0;
  }
  .product-list>li {
    width: 31.33333%;
    margin: 0 1% 30px 1%;
  }
}

@media (max-width: 767px) {
  .product {
    padding: 15px 0;
  }
  .title>h1>span {
    line-height: 30px;
    padding: 0 15px;
    font-size: 20px;
  }
  .product-list {
    margin-top: 10px;
  }
  .product-list>li {
    width: 48%;
    margin: 0 1% 10px 1%;
  }
  .product-list>li>a .product-box {
    padding: 10px;
  }
  .product-list>li>a .product-box .product-more {
    margin-top: 5px;
  }
}

/* 关于我们 */
.about {
  width: 100%;
  overflow: hidden;
  background-color: #f5f5f5;
  padding: 95px 0 75px 0;
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-top: 30px;
}
.about-right {
  width: 46%;
  float: right;
  position: relative;
  padding: 10px 0 0 10px;
}
.about-right::before {
  content: "";
  width: 180px;
  float: left;
  height: 144px;
  border-top: 15px solid #e38703;
  border-left: 15px solid #e38703;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.about-right .about-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.about-left {
  width: 50%;
  float: left;
  padding-top: 15px;
}
.about-txt {
  display: block;
  overflow: hidden;
  line-height: 36px;
  font-size: 14px;
  color: #333;
}
.about-txt::first-line {
  font-size: 18px;
  color: #153f8f;
  font-weight: bold;
  margin-bottom: 5px;
}
.about-more {
  display: flex;
  margin: 40px 0;
}
.about-more>a {
  width: 164px;
  float: left;
  height: 34px;
  line-height: 34px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  background-color: #153f8f;
}
.about-more>a:hover {
  width: 114px;
  background-color: #e38703;
}

.about-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 60px;
}
.about-list>li {
  width: 275px;
  float: left;
  display: flex;
  align-items: center;
}
.about-list>li>img {
  width: 68px;
  float: left;
  height: 68px;
}
.about-list>li>.about-tilte {
  flex: 1;
  float: left;
  padding-left: 20px;
  line-height: 20px;
  font-size: 14px;
  color: #666;
}
.about-list>li>.about-tilte>span {
  display: block;
  overflow: hidden;
  line-height: 28px;
  color: #333;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 1440px) {
  .about {
    padding: 75px 0;
  }
}

@media (max-width: 1200px) {
  .about {
    padding: 50px 0;
  }
  .about-list {
    margin-top: 50px;
  }
}

@media (max-width: 991px) {
  .about {
    padding: 30px 0;
  }
  .about-list {
    margin-top: 30px;
  }
  .about-txt {
    line-height: 30px;
  }
  .about-more {
    margin: 20px 0;
  }
  .about-list>li {
    width: 33%;
  }
}

@media (max-width: 767px) {
  .about {
    padding: 15px 0;
  }
  .about-content {
    margin-top: 10px;
  }
  .about-right {
    width: 100%;
  }
  .about-right .about-img::before {
    content: "";
    display: block;
    padding-top: 60%;
  }
  .about-left {
    width: 100%;
    padding-top: 10px;
  }
  .about-txt {
    line-height: 24px;
  }
  .about-more {
    justify-content: center;
    margin: 10px 0;
  }
  .about-list {
    margin-top: 10px;
  }
  .about-list>li {
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    padding: 0 5px;
  }
  .about-list>li>img {
    width: 40px;
    height: 40px;
  }
  .about-list>li>.about-tilte {
    flex: none;
    width: 100%;
    padding: 10px 0 0 0;
    text-align: center;
  }
}

/* 设备展示 */
.equipment {
  width: 100%;
  overflow: hidden;
  padding: 70px 0;
}
.equipment-swiper {
  width: 100%;
  margin-top: 30px;
}
.equipment-swiper .swiper-slide .equipment-img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.equipment-swiper .swiper-slide .equipment-img::before {
  content: "";
  display: block;
  padding-top: 67.045455%;
}
.equipment-swiper .swiper-slide h2 {
  display: block;
  overflow: hidden;
  height: 54px;
  line-height: 54px;
  text-align: center;
  font-size: 14px;
  color: #333;
  padding: 0 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: normal;
}
.equipment-swiper .swiper-slide:hover .equipment-img>img {
  transform: scale(1.1);
}
.equipment-swiper .swiper-slide:hover h2 {
  color: #024387;
  font-weight: bold;
  font-size: 16px;
}
.equipment-more {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.equipment-more>a {
  width: 232px;
  float: left;
  height: 44px;
  background-color: #024387;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
}
.equipment-more>a:hover {
  background-color: #e38703;
  width: 132px;
}

@media (max-width: 1200px) {
  .equipment {
    padding: 50px 0;
  }
}

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

@media (max-width: 767px) {
  .equipment {
    padding: 15px 0;
  }
  .equipment-swiper {
    margin-top: 15px;
  }
  .equipment-swiper .swiper-slide h2 {
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
  }
  .equipment-more>a {
    width: 164px;
    height: 34px;
  }
}

/* 为什么选择我们 */
.choose {
  width: 100%;
  overflow: hidden;
}
.choose-title {
  display: block;
  overflow: hidden;
  background-color: #153f8f;
  text-align: center;
  padding: 70px 0 60px 0;
  line-height: 62px;
  font-size: 72px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
}
.choose-title h1 {
  display: block;
  overflow: hidden;
  line-height: 58px;
  font-size: 48px;
  color: rgba(255, 255, 255, 1);
  margin-top: -30px;
}
.choose-list {
  display: flex;
  flex-wrap: wrap;
}
.choose-list>li {
  width: calc(50% - 15px);
  float: left;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: flex-end;
}
.choose-list>li>div {
  width: 100%;
  max-width: 710px;
  padding: 60px 0 75px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.choose-list>li>div .choose-icon {
  width: 136px;
  float: left;
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  background-color: rgba(51, 51, 51, 0.5);
}
.choose-list>li>div .choose-icon::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.choose-list>li>div h2 {
  width: 100%;
  overflow: hidden;
  line-height: 42px;
  margin-top: 15px;
  font-size: 30px;
  color: #333;
  text-align: center;
  padding: 0 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.choose-list>li>div .choose-txt {
  width: 100%;
  overflow: hidden;
  line-height: 30px;
  font-size: 16px;
  color: #333;
  text-align: center;
  margin-top: 10px;
  max-width: 320px;
}
.choose-list>li:nth-child(even) {
  justify-content: flex-start;
}
.choose-list>li:nth-child(2),
.choose-list>li:nth-child(3) {
  width: calc(50% + 15px);
}
.choose-list>li:nth-child(2)>div {
  max-width: 740px;
  background-color: #153f8f;
}
.choose-list>li:nth-child(2)>div .choose-icon {
  background-color: rgba(255, 255, 255, 0.5);
}
.choose-list>li:nth-child(2)>div h2,
.choose-list>li:nth-child(2)>div .choose-txt {
  color: #fff;
}
.choose-list>li:nth-child(3)>div {
  max-width: 740px;
  background-color: #de7232;
}
.choose-list>li:nth-child(3)>div .choose-icon {
  background-color: rgba(255, 255, 255, 0.5);
}
.choose-list>li:nth-child(3)>div h2,
.choose-list>li:nth-child(3)>div .choose-txt {
  color: #fff;
}

@media (max-width: 1200px) {
  .choose-title {
    padding: 50px 0;
  }
  .choose-list>li>div {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .choose-title {
    padding: 30px 0;
  }
  .choose-list>li>div {
    padding: 30px 0;
  }
}

@media (max-width: 767px) {
  .choose-title {
    padding: 15px 0;
    font-size: 30px;
    line-height: 30px;
  }
  .choose-title h1 {
    line-height: 30px;
    font-size: 20px;
    margin-top: -15px;
  }
  .choose-list>li {
    width: 100% !important;
  }
  .choose-list>li>div {
    padding: 15px 0;
  }
  .choose-list>li>div .choose-icon {
    width: 40px;
  }
  .choose-list>li>div .choose-icon>img {
    height: 20px;
  }
  .choose-list>li>div h2 {
    line-height: 30px;
    margin-top: 5px;
    font-size: 20px;
    padding: 0 10px;
  }
  .choose-list>li>div .choose-txt {
    line-height: 24px;
    font-size: 14px;
    margin-top: 5px;
    max-width: 100%;
  }
}

/* 工程案例 */
.case {
  width: 100%;
  overflow: hidden;
  padding: 70px 0;
}
.case-swiper {
  width: 100%;
  margin-top: 30px;
  padding-bottom: 26px;
}
.case-swiper .swiper-slide .case-img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.case-swiper .swiper-slide .case-img::before {
  content: "";
  display: block;
  padding-top: 67.045455%;
}
.case-swiper .swiper-slide h2 {
  display: block;
  overflow: hidden;
  height: 54px;
  line-height: 54px;
  text-align: center;
  font-size: 14px;
  color: #333;
  padding: 0 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: normal;
}
.case-swiper .swiper-slide:hover .case-img>img {
  transform: scale(1.1);
}
.case-swiper .swiper-slide:hover h2 {
  color: #024387;
  font-weight: bold;
  font-size: 16px;
}
/* 圆点 */
.case-swiper .swiper-pagination {
  opacity: 1;
  bottom: 0;
  display: flex;
  justify-content: center;
}
.case-swiper .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  float: left;
  border: 3px solid #153f8f;
  background: #fff;
  opacity: 1;
}
.case-swiper>.swiper-pagination-bullets .swiper-pagination-bullet,
.case-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
.case-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #dd7031;
  border-color: #dd7031;
}

@media (max-width: 1200px) {
  .case {
    padding: 50px 0;
  }
}

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

@media (max-width: 767px) {
  .case {
    padding: 15px 0;
  }
  .case-swiper {
    margin-top: 15px;
    padding-bottom: 20px;
  }
  .case-swiper .swiper-slide h2 {
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
  }
}

/* 新闻资讯 */
.news {
  width: 100%;
  overflow: hidden;
  padding: 70px 0;
  background-color: #f5f5f5;
}

.newsContect {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.newsBox {
  width: 31.5%;
  float: left;
  border: 1px solid #eee;
  padding: 20px 15px 0 15px;
  background-color: #fff;
}
.newsTitle {
  display: flex;
  align-items: center;
  overflow: hidden;
  line-height: 36px;
  font-size: 22px;
  color: #333;
}
.newsTitle::after {
  content: "";
  width: 88px;
  float: left;
  height: 2px;
  background-color: #05229f;
  margin-left: 15px;
}
.newsDynamic {
  display: block;
  overflow: hidden;
  padding: 15px;
}
.newsDynamic .newsImg {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 40px 0 0 0;
}
.newsDynamic .newsImg::before {
  content: "";
  display: block;
  padding-top: 37.837838%;
}
.newsDynamic .newsName {
  display: block;
  overflow: hidden;
  margin-top: 15px;
  line-height: 26px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.newsDynamic .newsTxt {
  display: block;
  overflow: hidden;
  height: 84px;
  line-height: 28px;
  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: #05229f;
}
.newsDynamicList {
  display: block;
  overflow: hidden;
  border-top: 1px solid #e5e5e5;
}
.newsDynamicList>a {
  display: block;
  overflow: hidden;
  padding: 10px 15px;
  line-height: 28px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.newsDynamicList>a::before {
  content: "";
  width: 14px;
  float: right;
  height: 14px;
  background-image: url(../images/news_more1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-top: 7px;
  transition: all 0.4s;
}
.newsDynamicList>a:hover {
  color: #05229f;
}
.newsDynamicList>a:hover::before {
  background-image: url(../images/news_more2.png);
}

.newsBox:last-child {
  border-bottom: 2px solid #05229f;
}
.encyclopediaList {
  display: block;
  overflow: hidden;
}
.encyclopediaList li {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0;
  line-height: 28px;
}
.encyclopediaList li:last-child {
  border-bottom: none;
}
.encyclopediaList li>h2 {
  display: block;
  overflow: hidden;
  padding: 0 40px 0 20px;
  position: relative;
}
.encyclopediaList li>h2::after {
  content: "";
  width: 16px;
  float: left;
  height: 16px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/news_more1.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: 16px;
  color: #333;
  font-weight: bold;
}
.encyclopediaList li>h2:hover>a {
  color: #05229f;
}
.encyclopediaList li>h2:hover::after {
  background-image: url(../images/news_more2.png);
}
.encyclopediaList li .encyclopediaBox {
  display: none;
  width: 100%;
  overflow: hidden;
  transition: initial;
}
.encyclopediaList li .encyclopediaBox .encyclopediaTxt {
  display: block;
  overflow: hidden;
  height: 224px;
  line-height: 28px;
  font-size: 14px;
  color: #666;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  padding-left: 20px;
  margin: 10px 0;
}
.encyclopediaList li.actived>h2::after {
  background-image: url(../images/news_more3.png) !important;
}

@media (max-width: 1200px) {
  .news {
    padding: 50px 0;
  }
  .encyclopediaList li .encyclopediaBox .encyclopediaTxt {
    height: 168px;
    line-height: 28px;
    -webkit-line-clamp: 6;
  }
}

@media (max-width: 991px) {
  .news {
    padding: 30px 0;
  }
  .encyclopediaList li .encyclopediaBox .encyclopediaTxt {
    height: 140px;
    -webkit-line-clamp: 5;
  }
}

@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: 10px;
  }
}
/* END-main */

/* 关于我们 */
.main {
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
}
.main-left {
  width: 310px;
  float: left;
}
.left-menu {
  width: 100%;
  float: left;
}
.menu-title {
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 25px 30px;
  background-color: #005da4;
  font-weight: normal;
}
.menu-title>img {
  float: left;
}
.menu-title>div {
  flex: 1;
  float: left;
  padding-left: 20px;
  line-height: 16px;
  font-size: 14px;
  color: #fff;
  text-transform: capitalize;
}
.menu-title>div>span {
  display: block;
  overflow: hidden;
  line-height: 22px;
  font-size: 18px;
  font-weight: bold;
}

.menu-list {
  display: block;
  overflow: hidden;
  transition: initial;
  background-color: #f5f5f5;
}
.menu-list>li {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #dcdddf;
}
.menu-list>li>a {
  display: block;
  overflow: hidden;
  padding: 0 20px;
}
.menu-list>li>a>span {
  display: block;
  overflow: hidden;
  height: 48px;
  line-height: 48px;
  padding-left: 30px;
  font-size: 16px;
  color: #040203;
  background: url(../images/menu-jiantou.png) no-repeat left center;
}
.menu-list>li:hover>a>span,
.menu-list>li.menu-active>a>span {
  color: #005da4;
  background: url(../images/menu-jiantou-hover.png) no-repeat left center;
}

.menu-child-list {
  display: block;
  overflow: hidden;
  background-color: #f5f5f5;
  padding: 0 10px;
}
.menu-child-list>li {
  display: block;
  overflow: hidden;
  border-top: 1px solid #dcdddf;
}
.menu-child-list>li>a {
  display: block;
  overflow: hidden;
  padding: 0 20px;
}
.menu-child-list>li>a>span {
  display: block;
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  padding-left: 20px;
  font-size: 14px;
  color: #040203;
  /*background: url(../images/menu-jiantou.png) no-repeat left center;*/
}
.menu-child-list>li:hover>a>span,
.menu-child-list>li.menu-child-active>a>span {
  color: #005da4;
  /*background: url(../images/menu-jiantou-hover.png) no-repeat left center;*/
}






.left-menu:last-child {
  background-color: #f5f5f5;
  border-bottom: 5px solid #005da4;
}
.menu-contact {
  display: block;
  overflow: hidden;
  padding: 30px;
  min-height: 250px;
  font-size: 13px;
  color: #333;
  line-height: 30px;
}
.menu-contact::first-line {
  font-weight: bold;
  font-size: 16px;
  color: #005da4;
}

.main-right {
  width: 1030px;
  float: right;
}
.place-title {
  width: 100%;
  float: left;
  line-height: 24px;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}
.place-title::after {
  content: "";
  width: 100%;
  float: left;
  height: 1px;
  background-color: #e5e6e8;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.place-title>h1 {
  position: relative;
  z-index: 2;
  background-color: #fff;
  padding-right: 20px;
  font-size: 16px;
  color: #040203;
}
.place-title .place-right {
  position: relative;
  z-index: 2;
  background-color: #fff;
  padding-left: 15px;
  font-size: 14px;
  color: #666;
}
.place-content {
  width: 100%;
  float: left;
  padding-top: 26px;
}
.company {
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 30px;
  color: #333;
}

@media (max-width: 1440px) {
  .main {
    padding: 50px 0;
  }
  .main-left {
    width: 24%;
  }
  .main-right {
    width: 74%;
  }
}

@media (max-width: 1200px) {
  .menu-title {
    padding: 20px;
  }
  .menu-contact {
    padding: 15px;
  }
}

@media (max-width: 991px) {
  .main {
    padding: 30px 0;
  }
  .main-left {
    width: 29%;
  }
  .menu-title>img {
    width: 30px;
  }
  .menu-title>div {
    padding-left: 10px;
  }
  .menu-list>li>a {
    padding: 0 20px;
  }
  .menu-list>li>a>span {
    padding-left: 30px;
  }
  .main-right {
    width: 69%;
  }
  .place-title {
    margin-top: 10px;
  }
}

@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;
    justify-content: center;
  }
  .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: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .menu-list {
    display: none;
  }
  .menu-list>li>a>span {
    height: 40px;
    line-height: 40px;
  }

  .main-right {
    width: 100%;
  }
  .place-content {
    padding: 20px 0;
  }
  .company {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-关于我们 */

/* 产品展示/设备展示/工程案例 */
.place-content .product-list {
  width: 1080px;
  margin: 0;
}
.place-content .product-list>li {
  width: 310px;
  margin: 0 50px 10px 0;
}
.place-content .product-list>li>a {
  border: none;
}
.place-content .product-list>li>a>.product-img {
  border: 1px solid #e5e5e5;
}
.place-content .product-list>li>a>h1 {
  display: block;
  overflow: hidden;
  height: 50px;
  line-height: 50px;
  padding: 0 15px;
  font-size: 13px;
  color: #333;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: normal;
}
.place-content .product-list>li>a:hover>.product-img {
  border: 2px solid #005da4;
}
.place-content .product-list>li>a:hover>h1 {
  color: #005da4;
}

.product-details {
  display: block;
  overflow: hidden;
}
.product-details-left {
  width: calc(50% - 20px);
  overflow: hidden;
  position: relative;
  border: 1px solid #ccc;
}
.product-details-left::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.product-details-right {
  width: calc(50% - 20px);
}
.product-details-right>h1 {
  display: block;
  overflow: hidden;
  font-size: 20px;
  color: #333;
  line-height: 30px;
}
.product-details-text {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 14px;
  color: #666;
  margin: 30px 0;
}
.product-details-more {
  display: block;
  overflow: hidden;
}
.product-details-more>a {
  width: 33%;
  float: left;
  height: 50px;
  background-color: #024387;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.product-details-content {
  width: 100%;
  margin-top: 40px;
  font-size: 16px;
  line-height: 36px;
}
.product-details-title {
  display: block;
  overflow: hidden;
  background-color: #f1f1f1;
  margin-bottom: 20px;
}
.product-details-title>span {
  float: left;
  background-color: #024387;
  padding: 15px 20px;
  font-size: 16px;
  color: #fff;
}
.product-details-content img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}

@media (max-width: 1440px) {
  .place-content .product-list {
    width: 102%;
    margin: 0 0 0 -1%;
  }
  .place-content .product-list>li {
    width: 31.33333%;
    margin: 0 1% 10px 1%;
  }
}

@media (max-width: 767px) {
  .place-content .product-list>li {
    width: 48%;
    margin: 0 1% 10px 1%;
  }
  .place-content .product-list>li>a>h1 {
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
  }

  .product-details-left,
  .product-details-right {
    width: 100%;
  }
  .product-details-right>h1 {
    font-size: 16px;
    margin-top: 15px;
  }
  .product-details-text {
    font-size: 14px;
    line-height: 24px;
    margin: 10px 0;
  }
  .product-details-more>a {
    height: 30px;
    font-size: 14px;
  }
  .product-details-content {
    font-size: 14px;
    line-height: 24px;
    margin-top: 15px;
  }
  .product-details-title {
    margin-bottom: 10px;
  }
  .product-details-title>span {
    padding: 10px 15px;
  }
}
/* END-产品展示/设备展示/工程案例 */

/* 视频展示 */
.video-list>li>a>.product-img {
  border: none !important;
}
.video-list>li>a>.product-img>video {
  width: 100%;
  height: 100%;
  float: left;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}

@media (max-width: 991px) {
  .video-list>li {
    width: 48% !important;
  }
}

@media (max-width: 767px) {
  .video-list>li {
    width: 98% !important;
  }
}
/* END-视频展示 */

/* 新闻资讯 */
.news-list {
  display: block;
  overflow: hidden;
}
.news-list>li {
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
}
.news-list>li>a {
  width: 100%;
  float: left;
  display: flex;
  border: 1px solid #ccc;
}
.news-list>li>a .news-img {
  width: 30%;
  float: left;
  overflow: hidden;
  position: relative;
}
.news-list>li>a .news-right {
  width: 70%;
  float: left;
  padding: 20px;
}
.news-list>li>a .news-right .news-title {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-list>li>a .news-right .news-text {
  display: block;
  overflow: hidden;
  height: 90px;
  line-height: 30px;
  margin: 10px 0;
  font-size: 14px;
  color: #666;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news-list>li>a .news-right .news-time {
  display: block;
  overflow: hidden;
  line-height: 20px;
  font-size: 14px;
  color: #999;
}
.news-list>li>a:hover {
  border-color: #024387;
  background-color: #024387;
}
.news-list>li>a:hover .news-right .news-title,
.news-list>li>a:hover .news-right .news-text,
.news-list>li>a:hover .news-right .news-time {
  color: #fff;
}

.news-details {
  display: block;
  overflow: hidden;
}
.news-details-title {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 20px;
  color: #333;
  font-weight: bold;
  line-height: 30px;
}
.news-details-time {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
  color: #666;
  line-height: 1.1;
  padding: 15px 0;
  border-bottom: 1px dashed #ccc;
}
.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: 1200px) {
  .news-list>li>a .news-img {
    width: 35%;
  }
  .news-list>li>a .news-right {
    width: 65%;
    padding: 15px;
  }
  .news-list>li>a .news-right .news-text {
    height: 72px;
    line-height: 24px;
  }
}

@media (max-width: 991px) {
  .news-list>li {
    margin-bottom: 20px;
  }
  .news-list>li>a .news-img {
    width: 40%;
  }
  .news-list>li>a .news-right {
    width: 60%;
    padding: 10px;
  }
  .news-list>li>a .news-right .news-text {
    height: 60px;
    line-height: 20px;
  }
}

@media (max-width: 767px) {
  .news-list>li {
    margin-bottom: 10px;
  }
  .news-list>li>a .news-right .news-text {
    margin: 5px 0;
  }

  .news-details-title {
    font-size: 16px;
  }
  .news-details-time {
    padding: 5px 0;
  }
  .news-details-content {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-新闻资讯 */

/* 联系我们 */
.contact-txt {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
}
.contact-map {
  width: 100%;
  overflow: hidden;
  height: 400px;
  border: none;
  margin-top: 20px;
}

@media (max-width: 767px) {

  .contact-txt {
    font-size: 14px;
    line-height: 24px;
  }
  .contact-map {
    margin-top: 10px;
    height: 300px;
  }
}
/* END-联系我们 */