/* Animate.css动画演示 */
@import "../plugin/swiper/animate.min.css";

/* Swiper 7.4.1 */
@import "../plugin/swiper/swiper-bundle.min.css";

/* 字体图标 */
@import "../plugin/font/css/font-awesome.min.css";

/* 核心样式 */
@import "../css/core/bootstrap.min.css";

/* 公用样式 */
@import "../css/public.css";

.img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.img::before {
  content: "";
  display: block;
}
.container-fluid {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.title>h1 {
  float: left;
  padding: 0 20px;
  position: relative;
  line-height: 40px;
  font-size: 28px;
  color: #333;
  font-weight: bold;
}
.title>h1::before,
.title>h1::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 9px solid #005bac;
  border-top: 0 solid transparent;
  border-bottom: 9px solid transparent;
  position: absolute;
  left: 0;
  top: 5px;
}
.title>h1::after {
  border-left: none;
  border-right: 9px solid #005bac;
  border-top: 9px solid transparent;
  border-bottom: 0 solid transparent;
  left: initial;
  top: initial;
  right: 0;
  bottom: 5px;
}
.title>h1>span {
  color: #005bac;
}
.title>div {
  width: 100%;
  overflow: hidden;
  text-align: center;
  margin-top: 10px;
  font-size: 16px;
  color: #333;
  text-transform: uppercase;
}

.more {
  display: flex;
  justify-content: center;
}
.more>a {
  width: 56px;
  float: left;
  height: 56px;
  border-radius: 50%;
  background-color: #e0e4e7;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  transform: rotate(90deg);
  font-family: SimSun;
  font-size: 28px;
  color: #fff;
}
.more>a::before {
  content: ">";
}
.more>a:hover {
  background-color: #005bac;
}

@media (max-width: 767px) {
  .title>h1 {
    line-height: 30px;
    font-size: 20px;
    padding: 0 10px;
  }
  .title>div {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
  }

  .more>a {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

.about {
    padding-top: 50px;
}
/* 首页样式 */
/* 产品中心 */
.product {
  padding: 50px 0;
}
.product>.container {
  max-width: 1540px;
}
.product-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
.product-list>li {
  width: calc(calc(calc(50% + 10px) / 2) - 30px);
  float: left;
  display: flex;
  margin: 0 30px 30px 0;
}
.product-list>li>a {
  width: 100%;
  float: left;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-list>li>a .img {
  width: 100%;
  overflow: hidden;
  position: relative;
  flex: 1;
}
.product-list>li>a .img::before {
  padding-top: 49.333334%;
}
.product-list>li>a .product-box {
  width: 100%;
  float: left;
  overflow: hidden;
  padding: 32px;
}
.product-list>li>a .product-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 26px;
  font-size: 14px;
  color: #333;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-list>li>a .product-box>h1>span {
  float: left;
  font-size: 20px;
}
.product-list>li>a .product-box>h1>span::before {
  content: "";
  width: 1px;
  float: right;
  height: 18px;
  background-color: #d3d3d3;
  margin: 4PX 14PX;
}
.product-list>li>a .product-box>div {
  display: block;
  overflow: hidden;
  line-height: 22px;
  font-size: 14px;
  color: #838383;
  margin-top: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-list>li:hover:not(:first-child)>a .product-box {
  background-color: #005bac;
}
.product-list>li:hover:not(:first-child)>a .product-box>h1,
.product-list>li:hover:not(:first-child)>a .product-box>h1>span,
.product-list>li:hover:not(:first-child)>a .product-box>div {
  color: #fff;
}

.product-list>li:first-child>a .product-box {
  position: absolute;
  left: 0;
  top: 0;
  padding: 60px 35px;
  z-index: 3;
}
.product-list>li:first-child .product-box>h1 {
  line-height: 40px;
  color: #fff;
  font-size: 30px;
  text-overflow: initial;
  white-space: initial;
  font-weight: bold;
}
.product-list>li:first-child .product-box>h1>span {
  float: none;
  display: block;
  line-height: 40px;
  color: #fff;
  font-size: 30px;
  margin-bottom: 10px;
}
.product-list>li:first-child .product-box>h1>span::before {
  display: none;
}
.product-list>li:nth-child(6n + 3),
.product-list>li:nth-child(6n + 4) {
  width: calc(50% - 20px);
}
.product-list>li:nth-child(3n + 3) {
  float: right;
  margin-right: 0;
}
.product .more {
  margin-top: 20px;
}

@media (max-width: 1580px) {
  .product>.container {
    max-width: 96%;
  }
}
@media (max-width: 1400px) {
  .product-list>li:first-child>a .product-box {
    padding: 50px 25px;
  }
}
@media (max-width: 1240px) {
  .product-list>li>a .product-box {
    padding: 15px;
  }
  .product-list>li>a .product-box>div {
    margin-top: 10px;
  }
  .product-list>li:first-child>a .product-box {
    padding: 30px 15px;
  }
  .product-list>li:first-child>a .product-box>h1,
  .product-list>li:first-child>a .product-box>h1>span,
  .product-list>li:first-child>a .product-box>div {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 991px) {
  .product {
    padding: 30px 0;
  }
  .product-list {
    margin-top: 30px;
    justify-content: space-between;
  }
  .product-list>li {
    width: calc(50% - 15px);
    margin: 0 0 30px 0;
  }
}
@media (max-width: 767px) {
.about {
    padding-top: 15px;
  }
  .product {
    padding: 15px 0;
  }
  .product-list {
    margin-top: 10px;
  }
  .product-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .product-list>li>a .img::before {
    padding-top: 75%;
  }
  .product-list>li>a .product-box {
    padding: 10px;
  }
  .product-list>li>a .product-box>h1 {
    line-height: 24px;
    font-size: 12px;
  }
  .product-list>li>a .product-box>h1>span {
    font-size: 16px;
  }
  .product-list>li>a .product-box>h1>span::before {
    height: 16x;
    margin: 4PX 5PX;
  }
  .product-list>li>a .product-box>div {
    margin-top: 0px;
  }
  .product-list>li:nth-child(6n + 3),
  .product-list>li:nth-child(6n + 4) {
    width: calc(50% - 5px);
  }
  .product-list>li:first-child>a .product-box {
    padding: 10px;
  }
  .product-list>li:first-child>a .product-box>h1,
  .product-list>li:first-child>a .product-box>h1>span,
  .product-list>li:first-child>a .product-box>div {
    font-size: 16px;
    line-height: 24px;
    margin: 0;
  }
  .product .more {
    margin-top: 10px;
  }
}

/* 公司简介 */
.about-title {
  width: 100%;
  float: left;
}
.about-content {
  width: 100%;
  float: left;
  margin-top: 105px;
  background: url(../images/about-bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 40px 0;
}
.about-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: -100px;
  background-color: #fff;
  border: 1px solid #cedeec;
}
.about-list>li {
  flex: 1;
  border-right: 1px solid #cedeec;
}
.about-list>li:last-child {
  border-right: none;
}
.about-list>li>a {
  overflow: hidden;
  padding: 35px 10px 35px 60px;
  display: flex;
  align-items: center;
}
.about-list>li>a .about-icon {
  width: 56px;
  float: left;
  height: 56px;
  border-radius: 5px;
  background-color: #005bac;
  position: relative;
  margin-right: 15px;
}
.about-list>li>a>h1 {
  line-height: 22px;
  font-size: 14px;
  color: #8e8e8e;
  text-transform: uppercase;
}
.about-list>li>a>h1>span {
  display: block;
  overflow: hidden;
  line-height: 32px;
  font-size: 20px;
  color: #333;
}

.about-video {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 25px;
  border-radius: 5px;
}
.about-video::before {
  content: "";
  display: block;
  padding-top: 56.166667%;
}
.about-btn {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  cursor: pointer;
}
.about-btn>img:last-child {
  z-index: 3;
}
.about-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.about-video>video {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}

.about-text {
  display: block;
  overflow: hidden;
  margin: 30px 0;
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 35px;
}
.about-text>h1 {
  line-height: 36px;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.about .more>a {
  color: #005bac;
  background-color: #fff;
}

@media (max-width: 1240px) {
  .about-list>li>a {
    padding: 20px 10px 20px 35px;
  }
  .about-content {
    margin-top: 85px;
  }
}
@media (max-width: 991px) {
  .about-list>li>a {
    padding: 15px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .about-list>li>a .about-icon {
    margin: 0;
  }
  .about-list>li>a>h1 {
    width: 100%;
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .about-content {
    margin-top: 15px;
    padding: 15px 0;
  }
  .about-list {
    margin-top: 0;
  }
  .about-list>li {
    flex: none;
    width: 25%;
  }
  .about-list>li>a {
    padding: 5px;
  }
  .about-list>li>a .about-icon {
    width: 40px;
    height: 40px;
  }
  .about-list>li>a .about-icon>img {
    height: 34px;
  }
  .about-list>li>a>h1 {
    line-height: 20px;
    font-size: 12px;
  }
  .about-list>li>a>h1>span {
    line-height: 24px;
    font-size: 16px;
  }
  .about-video {
    margin-top: 15px;
  }
  .about-video::before {
    padding-top: 75%;
  }
  .about-btn>img:last-child {
    height: 40px;
  }

  .about-text {
    margin: 15px 0;
    line-height: 24px;
  }
  .about-text>h1 {
    line-height: 30px;
    font-size: 18px;
    margin-bottom: 5px;
  }
}

/* 新闻资讯 */
.news {
  background-color: #e0e4e7;
  padding: 45px 0 75px 0;
  position: relative;
  overflow: visible;
}
.news-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 26px;
}
.news-left {
  width: 23.75%;
  float: left;
  display: flex;
}
.news-left>a {
  width: 100%;
  float: left;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 12px 0
}
.news-right {
  width: 74%;
  float: right;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news-right>li {
  width: calc(50% - 12px);
  float: left;
  margin: 12px 0;
}
.news-right>li>a {
  display: block;
  overflow: hidden;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 30px;
}
.news-right>li>a .news-time {
  float: left;
  text-align: center;
  line-height: 18px;
  font-size: 14px;
  color: #333;
  margin-right: 35px;
}
.news-right>li>a .news-time>span {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 24px;
  margin-bottom: 10px;
  transition: initial;
}
.news-right>li>a .news-time>span>em {
  display: block;
  overflow: hidden;
  line-height: 20px;
  font-size: 20px;
  transition: initial;
}
.news-right>li>a>h1 {
  display: block;
  overflow: hidden;
  line-height: 38px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-right>li>a .news-text {
  display: block;
  overflow: hidden;
  margin-top: 10px;
  height: 50px;
  line-height: 25px;
  font-size: 14px;
  color: #333;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-right>li>a:hover {
  background-color: #005bac;
}
.news-right>li>a:hover .news-time,
.news-right>li>a:hover>h1,
.news-right>li>a:hover .news-text {
  color: #fff;
}
.news .more {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
}
.news .more>a {
  border: 1px solid #fff;
}

@media (max-width: 1240px) {
  .news {
    padding: 45px 0;
  }
}
@media (max-width: 991px) {
  .news-right>li>a {
    padding: 15px;
  }
  .news-right>li>a .news-time {
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .news {
    padding: 15px 0;
  }
  .news-content {
    margin: 10px 0;
  }
  .news-left {
    width: 100%;
  }
  .news-left>a {
    margin: 0
  }
  .news-left>a::before {
    content: "";
    display: block;
    padding-top: 75%;
  }
  .news-right {
    width: 100%;
  }
  .news-right>li {
    width: 100%;
    margin: 10px 0 0 0;
  }
}
/* END-首页样式 */

/* 公司简介 */
.main {
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
  background-color: #eaedef;
}
.place-title {
  width: 100%;
  float: left;
}
.menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
  transition: initial;
}
.menu-list>li {
  float: left;
  margin: 0 24px;
}
.menu-list>li>a {
  display: block;
  overflow: hidden;
  line-height: 42px;
  padding-bottom: 20px;
  font-size: 30px;
  color: #005bac;
  font-weight: bold;
  text-align: center;
  position: relative;
}
.menu-list>li>a::after {
  content: "";
  width: 0;
  height: 4px;
  overflow: hidden;
  background-color: #005bac;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.menu-list>li:hover>a::after,
.menu-list>li.menu-active>a::after {
  width: 100%;
}



.place-content {
  width: 100%;
  float: left;
  margin-top: 55px;
  background-color: #fff;
}

.company {
  display: block;
  font-size: 14px;
  line-height: 36px;
  color: #333;
  border: 1px solid #dee2e5;
  border-radius: 5px;
  overflow: hidden;
}
.company .about-video {
  margin: 0 !important;
}
.company-text {
  padding: 25px;
}


.video-list{
	display: flex;
	flex-wrap: wrap;
	padding: 2% 1% 0 1%;
}
.video-list>li{
	width: 31.333333%;
	float: left;
	margin: 0 1% 2% 1%;
	overflow: hidden;
	position: relative;
}
.video-list>li::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.video-list>li>video {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}





@media (max-width: 1240px) {
  .place-content {
    margin-top: 50px;
  }
}
@media (max-width: 991px) {
  .place-content {
    margin-top: 30px;
  }
	.video-list{
	padding: 0;
	justify-content: space-between;
}
.video-list>li{
	width: calc(50% - 5px);
	margin: 0 0 10px 0;
}
}
@media (max-width: 767px) {
  .main {
    padding: 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: #005bac;
  }
  .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;
  }
  .menu-list>li {
    width: 100%;
    margin: 4px 0 0 0;
  }
  .menu-list>li>a {
    height: 40px;
    line-height: 40px;
    padding: 0;
    background-color: #fff;
    font-size: 14px;
    border-radius: 5px;
  }
  .menu-list>li>a::after {
    display: none;
  }
  .menu-list>li:hover>a,
  .menu-list>li.menu-active>a {
    background-color: #005bac;
    color: #fff;
  }
  .place-content {
    margin: 20px 0;
  }
  .company {
    line-height: 24px;
    font-size: 14px;
  }
  .company-text {
    padding: 15px;
  }
	
.video-list>li{
	width: 100%;
	margin: 0 0 10px 0;
}
}
/* END-公司简介 */

/* 全部产品 */
.product-menu-list {
  display: flex;
  flex-wrap: wrap;
  width: 1221px;
  margin-top: 40px;
}
.product-menu-list>li {
  width: 386px;
  float: left;
  margin: 0 21px 20px 0;
}
.product-menu-list>li>a {
  width: 100%;
  float: left;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  position: relative;
}
.product-menu-list>li .product-menu-img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.product-menu-list>li .product-menu-img::before {
  content: "";
  display: block;
  padding-top: 150%;
}
.product-menu-list>li h1 {
  width: 100%;
  overflow: hidden;
  height: 64px;
  line-height: 64px;
  background-color: #fff;
  padding: 0 15px;
  font-size: 16px;
  color: #333;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.product-menu-list>li h1::before {
  content: "→";
  float: right;
}
.product-menu-list>li:hover .product-menu-img>img {
  transform: scale(1.1);
}
.product-menu-list>li:hover h1 {
  background-color: #005bac;
  color: #fff;
}


.tabulation {
  display: block;
  overflow: hidden;
}
.tabulation>li {
  display: block;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #dee2e5;
  margin-bottom: 5px;
  line-height: 24px;
  padding: 10px 15px;
}
.tabulation>li>span {
  float: left;
  font-size: 16px;
  color: #333;
}
.tabulation>li>div {
  display: block;
  overflow: hidden;
}
.tabulation>li>div>a {
  float: left;
  font-size: 16px;
  color: #333;
  margin: 0 10px;
}
.tabulation>li>div>a:hover,
.tabulation>li>div>a.actived {
  color: #005bac;
  font-weight: bold;
}

.product-main {
  margin-top: 40px;
}
.product-main-left {
  width: 250px;
  float: left;
}
.left-menu {
  width: 100%;
  float: left;
  margin-bottom: 10px;
}
.product-main-left .menu-title {
  display: block;
  overflow: hidden;
  background-color: #005bac;
  border-radius: 10px;
  padding: 13px 0 13px 40px;
  color: #fff;
  line-height: 20px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}
.product-main-left .menu-title>span {
  display: block;
  overflow: hidden;
  line-height: 32px;
  font-size: 20px;
}
.product-main-left .menu-list {
  display: block;
  overflow: hidden;
  background-color: #fff;
  margin-top: 5px;
  border: 1px solid #dee2e5;
  padding: 10px 10px 10px 20px;
  border-radius: 10px;
}
.product-main-left .menu-list>li {
  width: 100%;
  margin: 0;
  position: relative;
}
.product-main-left .menu-list>li>a {
	width: 100%;
  padding: 0;
  height: 49px;
  line-height: 48px;
  font-size: 16px;
  color: #333;
  padding: 0 35px;
  text-align: left;
  font-weight: normal;
  position: relative;
}
.product-main-left .menu-list>li>a::before{
	content: "";
	width: 100%;
	float: left;
	height: 1px;
	background-color: #e3e6e8;
	position: absolute;
	left: 0;
	bottom:0;
}
.product-main-left .menu-list>li>a::after {
  content: "";
  width: 10px;
  height: 1px;
  float: left;
  background-color: #005bac;
  position: absolute;
  left: 0;
  bottom: 0;
	transform: translateX(0)
}



/*
.product-main-left .menu-list>li>a::after {
  display: none;
}
*/
.product-main-left .menu-list>li:hover>a::after {
  width: 100%;
}
.product-main-left .menu-list>li:hover>a {
  color: #005bac;
  font-weight: bold;
}


.menu-child-list{
	display: none;
}
.menu-child-list>li {
	display: block;
	overflow: hidden;
	border-bottom-color: 1px soild #e3e6e8;
}
.menu-child-list>li>a {
  display: block;
  overflow: hidden;
  line-height: 42px;
  font-size: 14px;
  color: #333;
  text-align: center;
  position: relative;
}
.menu-child-list>li>a:hover , .menu-child-list>li>a.act{
	background-color: #005bac;
	color: #fff;
}






.menu-box {
  display: block;
  overflow: hidden;
  margin-top: 5px;
  background-color: #fff;
  border: 1px solid #dee2e5;
  border-radius: 10px;
  padding: 15px;
  font-size: 14px;
  color: #333;
  line-height: 24px;
}
.menu-box img {
  width: 100%;
  display: block;
  height: auto;
  margin-bottom: 20px;
}

.product-main-right {
  width: 890px;
  float: right;
}
.product-lists {
  display: flex;
  flex-wrap: wrap;
  width: 930px;
}
.product-lists>li {
  width: 270px;
  float: left;
  margin: 0 40px 40px 0;
}
.product-lists>li>a {
  display: block;
  overflow: hidden;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  position: relative;
}
.product-lists>li>a .img::before {
  content: "";
  display: block;
  padding-top: 173.333334%;
}
.product-lists>li>a>h1 {
  width: 100%;
  overflow: hidden;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  padding: 0 15px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.product-lists>li>a>h1::before {
  content: "→";
  float: right;
  transition: initial;
}
.product-lists>li>a:hover>h1 {
  background-color: #005bac;
  color: #fff;
}

.product-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 30px;
  margin-top: 20px;
}
.product-bottom>a {
  float: left;
  margin: 0 12px;
  font-size: 16px;
  color: #333;
}
.product-bottom>a:hover {
  color: #005bac;
  text-decoration: underline;
}


.product-details {
  background-color: #eaedef;
}
.product-details-title {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 20px;
  color: #333;
  font-weight: bold;
  text-transform: uppercase;
}
.product-details-content {
  display: block;
  overflow: hidden;
  margin-top: 45px;
  padding: 0 100px;
  position: relative;
}
.product-details-content .swiper .swiper-slide::before {
  content: "";
  display: block;
  padding-top: 150%;
}
.product-details-prev,
.product-details-next {
  width: 52px;
  float: left;
  height: 52px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-family: SimSun;
  font-size: 35px;
  color: #acacac;
  font-weight: bold;
  cursor: pointer;
}
.product-details-next {
  left: initial;
  right: 25px;
}
.product-details-prev::before {
  content: "<";
}
.product-details-next::before {
  content: ">";
}

.product-details-text {
  display: block;
  overflow: hidden;
  padding: 50px 0;
  position: relative;
  font-size: 14px;
  color: #333;
  line-height: 25px;
}
.product-details-text-title{
  display: block;
  overflow: hidden;
  background-color: #fff;
  margin-bottom: 30px;
}
.product-details-text-title>span{
  float: left;
  line-height: 50px;
  padding: 0 20px;
  background-color: #005bac;
  font-size: 18px;
  color: #fff;
}
/*.product-details-text::before {
  content: "";
  width: 100%;
  display: block;
  height: 2px;
  border-top: 1px solid #dce1e5;
  border-bottom: 1px solid #fff;
  position: absolute;
  left: 0;
  top: 0;
}*/

.product-details-hotline {
  display: block;
  overflow: hidden;
}
.product-details-hotline>span {
  float: left;
  border: 1px solid #f12323;
  border-radius: 5px;
  line-height: 36px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  background-color: #fff;
  font-size: 22px;
  color: #f10000;
  font-weight: bold;
  margin-right: 10px;
}
.product-details-hotline>span>img {
  float: left;
  margin-right: 15px;
}
.product-details-hotline>a {
  width: 158px;
  float: left;
  height: 38px;
  background-color: #f10000;
  border-radius: 5px;
  line-height: 38px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
}

@media (max-width: 1240px) {
  .product-menu-list {
    width: 102%;
    margin-left: -1%;
  }
  .product-menu-list>li {
    width: calc(calc(100% / 3) - 2%);
    margin: 0 1% 20px 1%;
  }

  .product-main-left {
    width: 24%;
  }
  .product-main-right {
    width: 74%;
  }
  .product-lists {
    width: 102%;
    margin-left: -1%;
  }
  .product-lists>li {
    width: 31.333333%;
    margin: 0 1% 40px 1%;
  }

/*  .product-details-text {
    margin-top: 50px;
  }*/
}
@media (max-width: 991px) {
  .product-main-left {
    width: 29%
  }
  .product-main-right {
    width: 69%
  }
  .product-lists>li {
    margin: 0 1% 30px 1%;
  }

  .product-details-text {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .product-menu-list {
    width: 100%;
    margin: 20px 0;
    justify-content: space-between;
  }
  .product-menu-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .product-menu-list>li h1 {
    height: 34px;
    line-height: 34px;
    font-size: 14px;
  }

  .tabulation>li {
    padding: 10px;
  }
  .product-main {
    margin-top: 15px;
  }
  .product-main-left {
    width: 100%;
  }
  .left-menu {
    margin-bottom: 0;
  }
  .product-main-left .menu-title {
    padding: 0 20px;
    font-size: 20px;
    line-height: 50px;
  }
  .product-main-left .menu-list {
    display: none;
    margin: 0;
    padding: 0;
    border: none;
    background-color: initial;
  }
  .product-main-left .menu-list>li {
    margin: 4px 0 0 0;
    border-bottom: none;
  }
  .product-main-left .menu-list>li::after {
    display: none;
  }
  .product-main-left .menu-list>li>a {
    padding: 0 20px;
  }
  .product-main-left .menu-list>li:hover>a,
  .product-main-left .menu-list>li.menu-active>a {
    background-color: #005bac;
    color: #fff;
  }
  .product-main-right {
    width: 100%;
    padding: 20px 0;
  }
  .product-lists {
    width: 100%;
    margin: 0;
    justify-content: space-between;
  }
  .product-lists>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .product-lists>li>a .img::before {
    padding-top: 120.333334%;
  }
  .product-lists>li>a>h1 {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }

  .product-details-content {
    margin-top: 10px;
    padding: 0 30px;
  }
  .product-details-prev,
  .product-details-next {
    width: 24px;
    height: 24px;
    left: 0;
    font-size: 16px;
  }
  .product-details-next {
    left: initial;
    right: 0;
  }
  .product-details-text {
    padding: 15px 0;
  }
  .product-details-text-title{
    margin-bottom: 15px;
  }
  .product-details-text-title>span {
    line-height: 40px;
    font-size: 16px;
  }

  .product-details-hotline>a {
    width: 120px;
    font-size: 16px;
  }
}
/* END-全部产品 */

/* 新闻资讯 */
.info-list {
  display: flex;
  flex-wrap: wrap;
  background-color: #eaedef;
  width: 1230px;
}
.info-list>li {
  width: 380px;
  float: left;
  margin: 0 30px 30px 0
}
.info-list>li>a {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.info-list>li>a .img::before {
  content: "";
  display: block;
  padding-top: 60.526316%;
}
.info-list>li>a .info-box {
  display: block;
  overflow: hidden;
  padding: 20px;
}
.info-list>li>a .info-box .news-time {
  float: left;
  text-align: center;
  line-height: 18px;
  font-size: 14px;
  color: #333;
  margin-right: 20px;
}
.info-list>li>a .info-box .news-time>span {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 24px;
  margin-bottom: 10px;
  transition: initial;
}
.info-list>li>a .info-box .news-time>span>em {
  display: block;
  overflow: hidden;
  line-height: 20px;
  font-size: 20px;
  transition: initial;
}
.info-list>li>a .info-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 38px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.info-list>li>a .info-box .news-text {
  display: block;
  overflow: hidden;
  margin-top: 10px;
  height: 50px;
  line-height: 25px;
  font-size: 14px;
  color: #333;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.info-list>li>a:hover {
  background-color: #005bac;
}
.info-list>li>a:hover .news-time,
.info-list>li>a:hover .info-box>h1,
.info-list>li>a:hover .news-text {
  color: #fff;
}

.news-details {
  display: block;
  overflow: hidden;
  padding: 30px;
}
.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: 1240px) {
  .info-list {
    width: 102%;
    margin-left: -1%;
  }
  .info-list>li {
    width: 31.333333%;
    margin: 0 1% 30px 1%;
  }
}
@media (max-width: 991px) {
  .info-list {
    width: 102%;
    margin-left: -1%;
  }
  .info-list>li {
    width: 31.333333%;
    margin: 0 1% 30px 1%;
  }
}
@media (max-width: 767px) {
  .info-list {
    width: 100%;
    margin-left: 0;
  }
  .info-list>li {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .info-list>li>a .img {
    width: 30%;
  }
  .info-list>li>a .info-box {
    width: 70%;
    float: left;
    padding: 10px;
  }
  .info-list>li>a .info-box .news-time {
    display: none;
  }
  .info-list>li>a .info-box>h1 {
    line-height: 30px;
    font-size: 16px;
  }
  .info-list>li>a .info-box .news-text {
    margin-top: 5px;
    height: 44px;
    line-height: 22px;
  }

  .news-details {
    padding: 10px;
  }
  .news-details-title {
    font-size: 16px;
  }
  .news-details-time {
    padding: 5px 0;
  }
  .news-details-content {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-新闻资讯 */

/* 联系我们 */
.contact {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #dee2e5;
}
.contact-left {
  width: 50%;
  float: left;
  font-size: 16px;
  line-height: 30px;
  color: #333;
  padding: 30px;
}
.contact-left span {
  display: block;
  overflow: hidden;
  font-size: 24px;
  margin-bottom: 15px;
}
.contact-right {
  width: 50%;
  float: right;
  padding: 30px;
}
.contact-weixin {
  width: 100%;
  float: left;
  max-width: 220px;
  font-size: 14px;
  line-height: 24px;
  color: #333;
  text-align: center;
}
.contact-weixin>img {
  width: 100%;
  display: block;
  height: auto;
  margin-bottom: 10px;
}
.contact-map {
  width: 100%;
  float: left;
  overflow: hidden;
  height: 400px;
  border: none;
}
@media (max-width:767px) {
  .contact-left {
    width: 100%;
    padding: 15px;
    font-size: 14px;
    line-height: 24px
  }
  .contact-right {
    width: 100%;
    padding: 0 15px 15px 15px;
  }
  .contact-weixin {
    max-width: 120px;
  }
  .contact-map {
    margin-top: 10px;
    height: 300px
  }
}
/* END-联系我们 */