@charset "UTF-8";
/*header start*/
.nav-box nav#menuPc > ul > li a {
  position: relative;
}

.nav-box nav#menuPc > ul > li > a::before {
  content: '';
  width: 0;
  height: 2px;
  background: #0f3389;
  position: absolute;
  bottom:0;
  left:50%;
  transform: translateX(-50%);
  transition: all 0.6s;
  z-index: 4;
}
.nav-box nav#menuPc > ul > li.nav-up-selected > a::before,
.nav-box nav#menuPc > ul > li:hover > a::before, 
.nav-box nav#menuPc > ul > li.cur > a::before {
  width:calc(100% - 40px);
}

.header {
  position: fixed;
  z-index: 2023;
  left: 0;
  right: 0;
  box-sizing: border-box;
  transition: all 0.3s;

}

.header.inner-header, .header.fix {
  background-color: rgba(170, 173, 175, 0.7);
}

.header .header-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.header .h-left {
  float: left;
  display: flex;
  align-items: flex-end;
}
.header .h-right{
	padding-bottom:12px;
}
.header .h-left .logo{
	padding: 12px 0;
}
.header .h-left .logo img {
  height: 56px;
}

#menuPc > ul > li {
  margin:0 10px;
  position: relative;
}
.if-size{
	font-size:20px;
}


#menuPc > ul > li dl {
  position: absolute;
  width: 200px;
  top: 100%;
  left: 50%;
  margin-left:-100px;
  transition: all 0.2s;
  transform: translateY(-2%);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

#menuPc > ul > li:hover dl {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#menuPc > ul > li dl dd {
  display: block;
}

#menuPc > ul > li dl dd a {
  color: #0D0D0D;
  background: #fff;
  display: block;
  transition: all 0.6s;
  padding: 5px 10px;
  text-align: center;
}

#menuPc > ul > li dl dd a:hover {
  background: #0f3389;
  color: #fff;
}

#menuPc > ul > li > a {
  color: #FFF;
  display: block;
  padding:20px 20px 10px;
}

#menuPc > ul {
  display: flex;
  padding-left: 30px;
}

#menuPc .iconfont {
  font-size: 1.8rem;
  padding-left: 3px;
}

.h-tool {
  color: #FFF;
  display: flex;
  align-items: center;
}

.h-tool a {
  color: #FFF;
}

.h-search {
  position: relative;
  background-color: rgba(255, 255, 255, 0.4);
  width: 225px;
}

.h-search input {
  width: 100%;
  box-sizing: border-box;
  background-color: transparent;
  border: none;
  height: 30px;
  padding: 0 20px;
}

.h-search input::placeholder {
  color: #FFF;
  font-size: 12px;
}

.h-search button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background-color: transparent;
  border: none;
  color: #FFF;
  width: 44px;
  text-align: center;
  font-size: 20px;
}

.h-search button .iconfont {
  font-size: 20px;
}

.h-lang {
  position: relative;
  cursor: pointer;
  margin-left: 40px;
}

.h-lang .h-lang-t {
  display: flex;
  align-items: center;
}

.h-lang .h-lang-t .iconfont {
  font-size: 24px;
  margin-right: 5px;
}

.h-lang:hover .h-lang-con {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.h-lang .h-lang-con {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 130%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.3);
  min-width: 100%;
  transition: all 0.5s;
  padding: 4px;
}

.h-lang .h-lang-con a {
  display: block;
  text-align: center;
  padding: 6px;
  font-size: 1.4rem;
  white-space: nowrap;
}

.h-lang .h-lang-con a:hover {
  text-decoration: underline;
}

.h-lang .icon {
  margin-left: 6px;
  width: 27px;
  height: 27px;
  background: url("../images/yuyan.png") no-repeat;
  position: relative;
  transition: all 0.4s;
}

#menuWap, .btn-nav {
  display: none;
}

/*header end*/
/*footer start*/
.footer {
  background-color: #003389;
  padding: 100px 0 0;
}

.footer .footer-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
}

.footer .footer-top .f-ss {
  background-color: #FFF;
  font-weight: 500;
  margin-top: 96px;
  padding: 4px;
}

.footer .footer-top .f-ss input {
  box-sizing: border-box;
  border: none;
  padding: 0 10px;
  height: 70px;
}

.footer .footer-top .f-ss input::placeholder {
  color: #717171;
}

.footer .footer-top .f-ss button {
  background-color: #0f3389;
  color: #FFF;
  border: none;
  width: 100px;
  text-align: center;
  height: 66px;
}

.footer .f-nav {
  flex: 1;
}

.footer .f-nav a {
  color: #fff;
}

.footer .f-nav h3 {
  margin-bottom: 12px;
  font-weight: 600;
}

.footer .f-nav h3 a {
  color: #fff;
}

.footer .f-nav ul {
  display: flex;
  justify-content: space-between;
}

.footer .f-nav ul dd {
  margin-bottom: 10px;
}

.footer .f-nav ul dd a {
  font-weight: 400;
  opacity: 0.79;
}

.footer .f-nav h3 {
  font-weight: 400;
}

.footer .f-nav a {
  display: block;
  transition: all 0.4s;
}

.footer .f-nav a:hover {
  opacity: 1;
}

.footer-share {
  color: #fff;
  text-align: center;
}

.footer-share .imgshow {
  margin-bottom: 12px;
}

.footer-share .imgshow img {
  width: 184px;
  height: 167px;
  object-fit: cover;
}

.footer-share a {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  margin-left: 10px;
  background-color: #ddd;
  color: #FFF;
  text-align: center;
  line-height: 30px;
  transition: all 0.4s;
  position: relative;
}

.footer-share a .child {
  position: absolute;
  opacity: 0;
  left: 50%;
  bottom: 90%;
  transform: translateX(-50%);
}

.footer-share a .child img {
  width: 100px;
  height: 100px;
}

.footer-share a:hover .child {
  bottom: 110%;
  opacity: 1;
}

.footer-share a:hover {
  background-color: #0f3389;
  width: 50px;
}

.footer-con {
  border-top: 1px solid rgba(206, 201, 201, 0.4);
  padding: 30px 0 50px;
  margin: 60px 0 0;
  color: #FFF;
}
.footer-con .ul-left{
    display: flex;
}
.footer-con .ul-left li{
    margin-right: 32px;
}
.footer-con ul {
  display: flex;
  justify-content: space-between;
}

.footer-con .icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  text-align: center;
  line-height: 82px;
  flex-shrink: 0;
  margin-right: 20px;
}

.footer-con .icon img {
  width: 50px;
  height: 44px;
}

.footer-con em,.footer-con a {
  font-weight: bold;
}

.footer-con li {
  display: flex;
  align-items: center;
}

.footer-con p {
  color: #fff;
  line-height: 50px;
}
.footer-con p a{
    color: #FFFF;
}
/*.footer-con p.add-s {*/
/*  font-size: 12px;*/
/*}*/

.footer-con label {
  color: #fff;
}

.footer-con a {
  display: block;
  /*color: #524c4c;*/
  /*font-weight: bold;*/
  /*font-size: 50px;*/
  /*font-family: ArialHebrew, ArialHebrew;*/
}

.footer-con a .iconfont {
  font-size: 16px;
  opacity: 0.8;
  margin-right: 20px;
}

.foot-copy {
  color: #fff;
  padding: 36px 0;
  /*background-color: #0f3389;*/
}

.foot-copy a {
  color: #fff;
}
.foot-copy p{
    opacity: 0.79;
}
.foot-copy .copy-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.foot-copy .layui-form {
  width: 270px;
}

.foot-copy .layui-input {
  background-color: transparent;
  border: 1px solid #1EA8EB;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.79);
  padding-left: 20px;
}

.footer .layui-form-select dl dd.layui-this {
  background-color: #003389;
}

.foot-copy .layui-input::placeholder {
  color: #FFF;
}

.foot-copy .layui-anim {
  color: #333;
}

/*footer end*/
/*轮播图start*/
.index-mouse {
  position: absolute;
  right: calc((1920px - 1540px)/2);
  bottom: 78px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #979797;
  width: 90px;
  height: 90px;
}

@-webkit-keyframes banScroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}

@keyframes banScroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}

.index-mouse .arrow {
  animation: banScroll 1.5s linear infinite;
}

.banner {
  margin: 0 auto 0;
  width: 100%;
  background: #FFFFFF;
  color: #F1F3F8;
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.banner.inner-banner {
  height: auto;
}

.banner p {
  font-size: 1.2rem;
  opacity: 0.3;
}

.banner p span {
  display: block;
}

.banner h3 {
  margin-bottom: 20px;
}

.banner h3, .banner h2 {
  font-weight: 500;
}
.banner h2 span:last-child{
    display: block;
    text-align: right;
}
.banner .swiper-slide {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.banner {
  /* height:100vh; */
  overflow: hidden;
}

.banner .bg-box {
  position: relative;
  z-index: 1;
}

.banner .bg-box img {
  width: 100%;
  height: 100vh;
  transform: scale(1);
  transition: all 6s;
  object-fit: cover;
}

.banner .bg-box video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.banner .wap-box {
  display: none;
}

.banner .wap-box img {
  width: 100%;
}

.banner .banner-content {
  position: absolute;
  left: 0;
  top: 0%;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  z-index: 9;
  flex-direction: column;
  opacity: 0;
  transition: all 0.3s;
}

.banner .banner-content .text {
  text-align: left;
  box-sizing: border-box;
}

.banner .banner-content .text .link-more {
  background-color: #0f3389;
  color: #FFF;
  display: inline-block;
  padding: 10px 70px;
  border-radius: 8px;
}

.banner .banner-content .text h3 {
  margin: 24px 0 40px;
}

.banner .banner-content .text-p {
  transform: translateY(20%);
  opacity: 0;
  transition: all 1.5s;
}

.banner .swiper-slide-active .banner-content {
  opacity: 1;
}

.swiper-slide-active .imgshow img {
  transform: scale(1.2);
}

.banner .swiper-slide-active .banner-content .text-p {
  transform: translateY(0);
  opacity: 1;
}

.banner-bot {
  position: absolute;
  left: 0;
  bottom: 100px;
  z-index: 2;
  right: 0;
}

.banner-bot .b-page {
  display: flex;
  align-items: center;
}
.banner-bot .b-page .swiper-pagination{
	position: relative;
	display: flex;
}
.banner-bot .b-page .spage-warp{
	display: flex;
	position: relative;
}
.banner-bot .b-page .spage-warp .dot-list{
	position: absolute;
	left:0;
	top:0;
	z-index:31;
	width:100%;
	height:100%;
	display: flex;
	flex-wrap: wrap;
}
.banner-bot .b-page .spage-warp .dot-list i{
	position: relative;
}
.banner-bot .b-page .spage-warp .dot-list i::after{
	content: '';
	width: 14px;
	height: 14px;
	background-color: #979797;
	border-radius: 50%;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	zoom: 0.8;
	transition: all 0.6s;
	cursor: pointer;
}
.banner-bot .b-page .a-total{
	cursor: pointer;
	background:url(../images/banner-left.png) no-repeat center right;
	width:20px;
	height:20px;
	font-size:12px;
	line-height:20px;
	text-align:center;
	padding-right:15px;
}
.banner-bot .b-page .b-total{
	cursor: pointer;
	background:url(../images/banner-right.png) no-repeat center left;
	width:20px;
	height:20px;
	font-size:12px;
	line-height:20px;
	text-align:center;
	padding-left:15px;
}
.banner-bot .b-page .spage-warp .dot-list i:last-child::after{
	display: none;
}
.banner-bot .b-page .spage-warp .dot-list i.act::after{
	background:#fff;
}
.banner-bot .b-page .swiper-pagination{
	width:31.25vw;
	background:#979797;
	height:1px;
}
.banner-bot .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
	height:3px;
	background:#fff;
	top:-1px;
}
.banner-bot ul {
  display: flex;
  margin: 0 10px;
}
.banner-bot ul li {
  background-color: #979797;
  width: 280px;
  height: 1px;
  position: relative;
  cursor: pointer;
}
.banner-bot .b-page .swiper-pagination-bullet{
  height: 1px;
  background-color: #979797;
  width: 10vw;
  border-radius:0;
  position:relative;
  opacity:1;
}
.banner-bot .b-page .swiper-pagination-bullet::after{
	content:'';
	width:0;
	transition: all 0.6s;
	height:3px;
	position: absolute;
	left:0;
	top:-1px;
	background:#fff;
}
.banner-bot .b-page .swiper-pagination-bullet.swiper-pagination-bullet-active::after{
	width:100%;
}
.banner-bot .b-page .swiper-pagination-bullet i{
  width: 14px;
  height: 14px;
  background-color: #979797;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  zoom: 0.8;
  transition: all 1s;
  cursor: pointer;
}
.banner-bot .b-page .swiper-pagination-bullet.swiper-pagination-bullet-active i{
	background-color:#fff;
}
/*轮播图end*/
.crumbs-box {
  color: #999;
  font-size: 22px;
  border-bottom: 1px solid #D5D5D5;
  font-weight: 500;
  margin: 0 0 70px;
}

.crumbs-box .cru-left {
  display: inline-block;
  padding: 32px 0;
  position: relative;
  height: 100%;
}
.crumbs-box .cru-left .iconfont{
    display: none;
}
.crumbs-box .cru-left:after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #0f3389;
  bottom: 0;
  margin-bottom: -2px;
}

.crumbs-box a {
  color: #6D7278;
  display: inline-block;
  transition: all 0.4s;
  transition: all 0.3s;
}
.crumbs-box span:before{
    content: '<';
    font-family: simsun;
    margin:0 5px;
}
.crumbs-box a:before{
    content: '<';
    font-family: simsun;
    margin:0 5px;
}
.crumbs-box a.home:before{
    display: none;
}
.crumbs-box a:hover {
  color: #0f3389;
}

.crumbs-box a:hover {
  color: #0f3389;
}

.crumbs-box i {
  display: inline-block;
  padding: 0 5px;
  color: #6D7278;
}

/*公共样式定义 start*/
/*例如,统一间距,统一字体,统一大小写,统一最大距离*/
/* 内容区域宽度+40px */
.m-width-content {
  max-width: 1540px;
  margin: 0 auto;
  width: 100%;
}

.m-width-content2 {
  max-width: 1660px;
  margin: 0 auto;
  width: 100%;
}

.m-width-1280 {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

/*置顶按钮 start*/
/*置顶按钮 end*/
/*分页 start*/
.page-box {
  text-align: center;
}

.page-box .iconfont {
  font-size: 1.8rem;
}

.page-box .layui-laypage a, .page-box .layui-laypage button, .page-box .layui-laypage input, .page-box .layui-laypage select, .page-box .layui-laypage span {
  border-color: #B5B5B6;
  font-size: 16px;
  line-height: 38px;
  height: 38px;
  min-width: 38px;
  box-sizing: border-box;
  margin: 0 5px;
  color: #666;
}

.page-box .page-inner {
  display: flex;
  justify-content: center;
}
.page-box .page-inner .wp-pagenavi{
  display: flex;
  justify-content: center;
}
.page-box .page-inner a,
.page-box .page-inner span {
  border: 1px solid #B5B5B6;
  display: inline-flex;
  font-size: 1.6rem;
  color: #B5B5B6;
  font-weight: 500;
  margin: 0 3px;
  min-width: 45px;
  height: 42px;
  line-height: 42px;
  justify-content: center;
  background: transparent;
  transition: all 0.3s;
}

.page-box .page-inner a.page-text {
  width: auto;
  padding: 9px 15px;
  border-radius: 17px;
  height: auto;
  line-height: 1;
}

.page-box .page-inner a.page-text:hover {
  color: #fff;
  background-color: #307FE2;
  border: 1px solid #307FE2;
}

.page-box .page-inner .current, .page-box .page-inner a:hover {
  color: #fff;
  background-color: #307FE2;
  border: 1px solid #307FE2;
}

/*分页 end*/
/*公共样式定义 end*/
.index-title {
  line-height: 1;
  margin: 0 0 42px;
  position: relative;
}

.index-title:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 84px;
  height: 4px;
  background-color: #0f3389;
}

.index-title .s-t {
  display: inline-block;
  color: #0f3389;
  padding-top: 70px;
  margin-bottom: 10px;
}

.index-title.nobor .s-t {
  border-top: none;
}

.index-title h2 {
  font-weight: 500;
  color: #6D7278;
}

.index-title .slot-right {
  position: absolute;
  right: 0;
  bottom: 0;
}

a.more-link {
  display: inline-block;
  text-align: right;
  color: #6D7278;
}

a.more-link:hover {
  color: #0f3389;
}

a.more-link:hover .c-line:after {
  width: 100%;
}

a.more-link:hover .icn {
  border-color: transparent transparent transparent #0f3389;
}

a.more-link span {
  display: block;
  margin: 12px 0 0;
}

a.more-link .line {
  display: flex;
  align-items: center;
}

a.more-link .c-line {
  width: 190px;
  height: 1px;
  background-color: #979797;
  position: relative;
}

a.more-link .c-line:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 5px;
  width: 70%;
  background-color: #0f3389;
  border-radius: 5px;
  transition: all 0.3s;
}

a.more-link .icn {
  transition: all 0.3s;
  width: 8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6.9px;
  border-color: transparent transparent transparent #979797;
}

.index-product-grid {
  /* background-color: #F1F1F1; */
  overflow: hidden;
}

.priduct-cat-list {
  padding: 1px 0 ;
 position: relative;
 margin-bottom: 90px;
}
.priduct-cat-list .swiper-button-next,.priduct-cat-list .swiper-button-prev{
    width: 52px;
    height: 52px;
    background: rgba(216, 216, 216, 0.34);
    border-radius: 50%;
    text-align: center;
    line-height: 52px;
    transition: all 0.3s;
    top: 40%;
}
.priduct-cat-list .swiper-button-next{
    right: -90px;
}
.priduct-cat-list .swiper-button-prev{
    left: -90px;
}
.priduct-cat-list .swiper-button-next .iconfont,.priduct-cat-list .swiper-button-prev .iconfont{
      font-size: 30px;
    color: rgba(151, 151, 151, 1);
}
.priduct-cat-list .swiper-button-next:hover,.priduct-cat-list .swiper-button-prev:hover{
    background: #1EA8EB;
}
.priduct-cat-list .swiper-button-next:hover .iconfont,.priduct-cat-list .swiper-button-prev:hover .iconfont{
    color: #FFF;
}
.priduct-cat-list ul {
  margin: 0 -22px;
  display: flex;
  flex-wrap: wrap;
}

.priduct-cat-list .imgshow img {
  width: 100%;
}

.priduct-cat-list li {
  width: 25%;
  padding: 0 22px;
  box-sizing: border-box;
}

.priduct-cat-list .img-box {
  padding-bottom: 56.75676%;
}

.priduct-cat-list h3 {
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.priduct-cat-list .text {
  font-weight: 600;
  margin-bottom: 50px;
  transform: translateY(-94px);
  transition: all 0.4s;
}

.priduct-cat-list .p-num {
  font-weight: 300;
  font-size: 36px;
  color: #5C5C5C;
  padding: 20px 0;
  box-sizing: border-box;
  height: 94px;
  opacity: 0;
  visibility:hidden;
}

.priduct-cat-list p {
  margin: 12px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 30px;
  height: 60px;
}

.priduct-cat-list .p-item {
  color: #fff;
  /* border: 1px solid #D6D6D6; */
  background-color: #1082e7;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding:42px 24px;
  position: relative;
  transition: all 0.4s;
}

.priduct-cat-list .p-item:after {
  content: '';
  position: absolute;
  left: 0;
  width: 4px;
  background-color: #0f3389;
  height: 70%;
  top: 56px;
  transition: all 0.4s;
}
.priduct-cat-list .p-item .imgshow{
    border-radius: 12px;
    overflow: hidden;
}
.priduct-cat-list .p-item  img{
    transition: all 0.5s ease;
}
.priduct-cat-list .p-item:hover {
  background-color: #0f3389;
  color: #FFF;
}
.priduct-cat-list .p-item:hover img{
    transform: scale(1.05);
}
.priduct-cat-list .p-item:hover .p-num {
  font-weight: bold;
  color: #FFF;
  opacity: 1;
  visibility: visible;
}
.priduct-cat-list .p-item:hover .text{
    transform: translateY(0);
}
/*.priduct-cat-list .p-item:hover .imgshow {*/
/*  opacity: 0.4;*/
/*}*/

.priduct-cat-list .p-item:hover:after {
  height: 62px;
  background-color: #FFF;
  width: 8px;
}

.app-cat-list {
  overflow: hidden;
  border-radius: 30px;
  margin-bottom: 170px;
}

.app-cat-list ul {
  display: flex;
}

.app-cat-list li {
  box-sizing: border-box;
  /*width: 198px;*/
    width: 12.75%;
  transition: width 0.5s;
}

.app-cat-list li.cur {
  width: 49%;
}

.app-cat-list li.cur .img-box {
  padding-bottom: 89.23885%;
}

.app-cat-list li.cur .text {
  opacity: 0;
  visibility: hidden;
}

.app-cat-list li.cur .h-text {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%);
}

.app-cat-list .a-item {
  position: relative;
  height: 100%;
  color: #FFF;
}

.app-cat-list .imgshow {
  height: 100%;
}

.app-cat-list .icon img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.app-cat-list .img-boxauto {
  padding-bottom: 0;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.app-cat-list .img-boxauto img {
  display: block;
}

.app-cat-list h3 {
  font-weight: 600;
}

.app-cat-list .h-text {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 50px 55px;
  box-sizing: border-box;
  width: 22vw;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  transform: translateX(-20%);
}

.app-cat-list .h-text .text-p {
  margin: 12px 0;
}

.app-cat-list .h-text .a-more {
  background-color: #0f3389;
  color: #FFF;
  padding: 10px;
  display: inline-block;
  line-height: 1;
  border-radius: 8px;
  display: block;
  text-align: center;
}

.app-cat-list .text {
  position: absolute;
  padding: 66px 0;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  align-items: center;
}

.app-cat-list .text .a-more-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #FFF;
  display: inline-block;
  position: relative;
  margin: 12px 0 0;
}

.app-cat-list .text .a-more-btn:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8.7px 5px 0 5px;
  border-color: #fff transparent transparent transparent;
}

.index-sales-grid {
  padding: 1px 0 170px;
  background-color: rgba(186, 187, 193, 0.5);
}

.about-cont {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}

.about-cont .imgshow {
  width: 60%;
}

.about-cont .imgshow .img-box {
  padding-bottom: 55.72034%;
}

.about-cont .text {
  width: 40%;
  position: relative;
  z-index: 2;
}

.about-cont .a-num {
  color: #8C8C8C;
  text-align: center;
}

.about-cont .a-num dl {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-cont .a-num em {
  color: #0f3389;
  display: block;
  font-size: 46px;
  font-family: Arial, Arial;
  font-weight: 900;
}

.about-cont .a-num .icon-add {
  background-color: #0f3389;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #FFF;
  position: relative;
  margin: 0 26px;
}

.about-cont .a-num .icon-add .iconfont {
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.about-cont .text-p {
  background-color: #0f3389;
  color: #FFF;
  padding: 32px 42px;
  border-radius: 40px;
  margin: 40px 0;
  margin-right: -170px;
}

.about-cont .more-btn {
  text-align: left;
}

.about-botlist {
  background-color: rgba(146, 232, 255, 0.5);
  border-radius: 40px 40px 0 0;
  padding: 46px 0;
  border-bottom: 4px solid #0F82E7;
  margin: 100px 0;
}

.about-botlist ul {
  display: flex;
}

.about-botlist ul li {
  width: 33.33%;
}

.about-botlist .a-item {
  text-align: center;
  color: #003389;
  position: relative;
}

.about-botlist .a-item:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background-color: #979797;
}

.about-botlist .a-item:before {
  content: '';
  position: absolute;
  right: -1px;
  top: 15px;
  width: 3px;
  height: 24px;
  z-index: 2;
  background-color: #0f3389;
  border-radius: 10px;
}

.about-botlist li:nth-last-child(1) .a-item:after {
  display: none;
}

.about-botlist li:nth-last-child(1) .a-item:before {
  display: none;
}

.about-botlist em {
  font-family: Arial, Arial;
  font-weight: 900;
  font-size: 80px;
  display: inline-block;
  margin-right: 10px;
}

.about-botlist .a-t {
  color: #0f3389;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

.about-botlist p {
  font-weight: 500;
}

.index-news-grid {
  background: url("../images/index-news-bg.png") 50% 0% no-repeat;
  background-size: 100% 90%;
  padding: 0 0 1px;
  margin-bottom: 150px;
}

.news-tabitem {
  margin-bottom: 80px;
}

.news-tabitem a {
  display: inline-block;
  background-color: #FFF;
  color: #0f3389;
  font-weight: 600;
  padding: 8px 36px;
  line-height: 1;
  border-radius: 26px;
  margin-right: 32px;
  transition: all 0.3s;
  font-size:19px;
}

.news-tabitem a.cur, .news-tabitem a:hover {
  background-color: #0f3389;
  color: #FFF;
}

.news-tabbox .news-top {
  display: flex;
  color: #000;
  align-items: center;
}

.news-tabbox .news-top .imgshow {
  width: 45%;
}

.news-tabbox .news-top .imgshow .img-box {
  padding-bottom: 62.58693%;
}

.news-tabbox .news-top .text {
  width: 55%;
  box-sizing: border-box;
  padding-left: 5%;
}

.news-tabbox .news-top .line {
  width: 44px;
  height: 2px;
  background-color: #0f3389;
  margin: 12px 0 24px;
}

.news-tabbox .news-top h3 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-tabbox .news-top .text-p {
  color: #717171;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-tabbox .news-top .see-more {
  background-color: #0f3389;
  color: #FFF;
  padding: 10px 46px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 40px;
}

.index-newslist {
  margin: 32px 0  0;
  overflow: hidden;
}

.index-newslist ul {
  margin: 0 -18px;
  display: flex;
  flex-wrap: wrap;
}

.index-newslist .imgshow img {
  width: 100%;
}

.index-newslist li {
  width: 33.33%;
  padding: 0 18px;
  box-sizing: border-box;
}

.index-newslist .img-box {
  padding-bottom: 62.8866%;
}

.index-newslist .n-item {
  position: relative;
  border-radius: 30px;
  /*border: 1px solid #979797;*/
  overflow: hidden;
  color: #FFF;
}

.index-newslist .n-item:hover {
  color: #FFF;
}

.index-newslist .n-item:hover .imgshow {
  opacity: 1;
}

.index-newslist .n-item:hover .text {
  background-color: rgba(33, 79, 179, 0.8);
}

/*.index-newslist .n-item:hover .see-more {*/
/*  color: #0f3389;*/
/*}*/

.index-newslist .n-item .line {
  width: 44px;
  height: 2px;
  background-color: #fff;
  margin: 12px 0 24px;
}

.index-newslist .n-item .imgshow {
  /*position: absolute;*/
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transition: all 0.3s;
}
.index-newslist .n-item .imgshow a{
   display: block;
    padding-bottom:62.8865%;
    position: relative;
    overflow: hidden;
}

.index-newslist .n-item .imgshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
 height: 100%;
 left: 0;
 top: 0;
}

.index-newslist .n-item h3 {
  font-weight: 600;
  white-space: nowrap; 
  overflow: hidden;
  text-overflow:ellipsis;
}

.index-newslist .n-item .text {
  background-color: rgba(58, 164, 246, 0.8);
  padding: 24px 46px 55px;
  position: absolute;
  z-index: 2;
  box-sizing: border-box;
  transition: all 0.3s;
   top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transition: all 0.3s;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.index-newslist .n-item .see-more {
  background-color: #003389;
  color: #fff;
  /*border: 1px solid #919191;*/
  padding: 6px 35px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 30px;
  transition: all 0.3s;
}
.index-newslist .n-item .see-more:hover{
    background: #FFF;
    color: #003389;
}
.child-box {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 99;
  background-size: cover;
  background-color: rgba(255,255,255,1);
}

.child-box .child-nav {
  display: none;
  padding: 32px 0;
}

.nav-product .line {
  height: 1px;
  width: 70px;
  background-color: #dfdddd;
  margin: 12px 0 20px;
}

.nav-product ul {
      column-count: 5;
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-gap: 20px;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
}

.nav-product ul li {
    width: 100%;
    margin-bottom: 25px;
    break-inside: avoid;
    height: fit-content;
}
.nav-product ul li:nth-last-child(1){
	margin-right:0;
}
/*.nav-product ul li:nth-child(n+7){*/
/*	display:none;*/
/*}*/
.nav-product h3 a {
  color: #0D0D0D;
  font-weight:500;
}
.nav-product h3 a:hover{
	color:#0f3389;
}
.nav-product dd a {
  display:block; 
  color:#333333; 
  line-height:26px; 
  padding:5px 30px 5px 10px; 
  transform:translateX(-10px); 
  transition:all .5s;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.nav-product dd.act a, .nav-product dd:hover a {
  transform:translateX(0); 
  color:#FFFFFF; 
  background:url(../images/arrow4.png) right 10px top 10px #0f3389 no-repeat; 
  border-radius:4px; 
  box-shadow:1px 4px 5px rgba(0,0,0,0.2);
}

#layer-con {
  padding: 36px 80px;
  display: none;
}

#layer-con .lay-tt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #15265E;
  margin-bottom: 12px;
}

#layer-con .lay-tt .iconfont {
  cursor: pointer;
}

#layer-con .lay-tt h4 {
  font-weight: 500;
}

#layer-con .lay-tt .iconfont {
  font-size: 40px;
  transform: rotate(-45deg);
}

.layer-form ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.layer-form ul li {
  box-sizing: border-box;
  width: 50%;
  padding: 0 15px;
}

.layer-form ul li.w100 {
  width: 100%;
  text-align: center;
  padding: 30px 0;
}

.layer-form .f-item {
  position: relative;
  line-height: 68px;
  border-radius: 34px;
  border: 1px solid #979797;
  overflow: hidden;
  display: flex;
  margin-bottom: 32px;
  padding-right: 28px;
}

.layer-form label {
  padding: 0 32px;
}

.layer-form input {
  flex: 1;
  width: 100%;
  border: none;
  height: 68px;
  box-sizing: border-box;
}

.layer-form .yzm img {
  width: 121px;
  height: 55px;
  object-fit: cover;
}

.layer-form button {
  background-color: #0f3389;
  color: #FFF;
  padding: 20px;
  line-height: 1;
  border: none;
  border-radius: 34px;
  width: 50%;
  box-sizing: border-box;
}

.inner-banner {
  position: relative;
}

.inner-banner .img-box {
  padding-bottom: 34.375%;
}

.inner-banner .text {
  color: #FFF;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.inner-banner .text h3 {
  font-weight: 400;
}

.inner-banner .text h6 {
  font-family: Arial, Arial;
  font-weight: normal;
}

.banner-item {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}

.pro-tabitem {
  background-color: rgba(0, 0, 0, 0.2);
  position: relative;
}
.pro-tabitem .swiper-button-next, .pro-tabitem .swiper-button-prev{
    color: #FFF;
}
.pro-tabitem .swiper-button-prev{
    left: -30px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFoAAABaCAYAAAA4qEECAAAAAXNSR0IArs4c6QAAAttJREFUeF7t3e1x2zAMBmBgk2aSNpO0maTtJM0mySbNJmhxpRtXl1jk9QC++OCv3Fkn2Y+Rl5JIykzdXATY5Sh9EGpopyJo6IZ2EnA6TFd0Q9sJiMg3IvpIRA/M/GJ3pNc9l6toEflBRF8GwbMXdinoA/Kl3LSi760ruwz0O8hu2CWgT5D/YjPznVVep4cWkSci+jQBqPGhmW3SUkOjIOs3lxYaCTkt9CSynm3oebRZXFxnULqKRkROV9GoyKmgkZHTQKMjh4cWkQ9EpPcuzs6TXywvRmZOvMN2hpGQw1Z0NOSQ0BGRw0EvID8z8/1MdnptEyajB/LPCRg45DAVHR05BHQGZHjoLMjQ0CKiFyF60/6sQWby8U1DdobZkCErOiMyHHRWZCjoBeRHZn44C2601yEyOjsyREVXQN4OXQV5K/QCso5UP6Jl7ur72ZLRIqKzOXVk5KylQN5S0RWR3aGrIrtCLyCbTjY8yyqr110yenLarH7GlMguFd3If/5HTCu6kV+DyAy6kf9NexPoMTKiN+11JtGt5rJQx6qDW9mvCfTlDYiIjlo3tnVGK3hjO3SGXdkOneExv6pXtmlGv4F9vTz4vb4kZQfpCj0yewZbN72zXja8ctbwv9u6Q1fF3gJdEXsbdDXsrdADWx9S8nUiA0OPtmyHroINAV0BGwY6OzYUdGZsOOhF7O/MrJ0pfIOEzogNC50NGxr6CvvzxAACdIzAQ2fBDgGdATsMdHTsUNADW2ei6r2Rs0FfqMwOBz2wdQ2iDiCcYv/eRte8uDxR99bJfEjoiNhhoaNhh4aOhB0eemBrVs9MQXN7MPcxr1NAR8BOA42OnQoaGTsdNCp2SuhFbJcpaGmh0bBTQ69iWz6/ND30Arbp0rsS0JeLhxtztE2R9filoEd1H9fVmCOXhL7C1j/7xxSsJ2ro80K8frGibEVbf4lv7b9cRu9A7op2VO+KdsJuaCfoX83eo2qwLjHRAAAAAElFTkSuQmCC) no-repeat 50% 50%;
    background-size: 27px;
}
.pro-tabitem .swiper-button-next{
    right: -30px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFoAAABaCAYAAAA4qEECAAAAAXNSR0IArs4c6QAAAkNJREFUeF7t2+FNAzEMBeBkEzoJdBOYBDZhFLoJbBKIehVFqo6kkp33nn1/+ieS26+u43MvteTlIlBdomSQktBOSZDQCe0k4BQmM1oNurX2VEr5KKUcaq1fTp8PJoxLRl8hXz54OGxz6BvIIbFNoXeQw2GbQQ8gh8K2hP4spTwM7kbyNdsSuiP3LiOxS7G9BW+tJfb2kzbL6EvJSOyzhDl0D5LYTtCJ7QgdHduldFy3eJNlpM9EjgqzEXfoOzJbAnsJdETsZdDRsJdCR8JeDh0FGwI6AjYMtDo2FLQyNhy0KjYktCI2LLQaNjS0EjY89IbdH755H/xbDHI2QgGtgE0DzY5NBc2MTQfNik0JzYhNC82GTQ3NhE0PzYItAc2ALQONji0FjYwtB42KLQmNiK0M3Z/N7qcORq/+6NlpdPHsOknoifMz3auPVV8skXsQOWhEZDloVGQpaGRkGWh0ZAloBmR6aBZkamgmZFpoNmRKaEZkOmhWZCpoZmQaaHZkCug7kCEPgEIPlWaRa62H2fGl13pYaCVk2NKhhgwJrYgMB62KDAWtjAwDrY4MAR0BeTl0FOSl0JGQl0FHQ14C3Vp73s4Mjtz9nmqtx5GF6Gtcb8GjIrtmdGRkN+joyC7QiXzePUxrdCL/btFm0In8tw8ygZ7sk2VauL0W0wS6B2ytvf28vP7T34ZA9qjRe9hhkM2hdzI7FLIL9A3scMhu0FfYjyqzi9nZitlmOPtG1NcntNM3nNAJ7STgFCYzOqGdBJzCfAMVYK5qKisw7wAAAABJRU5ErkJggg==) no-repeat 50% 50%;
    background-size: 27px;
}
.pro-tabitem a {
  /* width: 25%; */
  text-align: center;
  display: block;
  color: #FFF;
  padding: 32px 0;
  text-align: center;
  position: relative;
  display:block;
  overflow: hidden;
  text-overflow:ellipsis;
  white-space: nowrap;
}

.pro-tabitem a:after {
  opacity: 0;
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 6px;
  margin-bottom: -6px;
  background-color: #0C0B0A;
}
.pro-tabitem a:hover,
.pro-tabitem a.cur {
  background-color: #0f3389;
}
.pro-tabitem a:hover::after,
.pro-tabitem a.cur:after {
  opacity: 1;
}

.sales-cont {
  display: flex;
}

.sales-cont .imgshow {
  width: 60%;
}

.sales-cont .imgshow .hm3World {
  max-width: 480px;
  margin: 0 auto;
}

.sales-cont .hm3World {
  width: 600px;
  margin: 10vh auto;
}

.sales-cont .__earth-map_mark_label {
  padding: 0.25em !important;
  background-color: white !important;
}

.__earth-map_mark_dot {
  width: 39px !important;
  height: 46px !important;
  background: url(../images/map-mask.png) no-repeat center !important;
  border: none !important;
}

.__earth-map_mark_label {
  padding: 0.25em !important;
  background-color: white !important;
}

.sales-cont .text {
  text-align: right;
  flex: 1;
  width: 100%;
  color: #6D7278;
  position: relative;
}

.sales-cont .text li {
  margin-bottom: 50px;
}

.sales-cont .text label {
  display: inline-block;
  background-color: #0f3389;
  color: #FFF;
  padding: 6px 36px;
  font-weight: 600;
  border-radius: 26px;
  margin-bottom: 15px;
}

.sales-cont .t-cont {
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
  transform: translateX(-100%);
}

.sales-cont .t-cont.act {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  position: relative;
}

.productny-list ul {
  margin: 0 -20px;
  display: flex;
  flex-wrap: wrap;
}

.productny-list .imgshow img {
  width: 100%;
}

.productny-list li {
  width: 50%;
  padding: 0 20px;
  box-sizing: border-box;
}

.productny-list .img-box {
  padding-bottom: 80.21978%;
}

.productny-list li {
  margin-bottom: 100px;
}

.productny-list .p-item {
  background: #FFFFFF;
  box-shadow: 9px 9px 14px -11px #CEC9C9;
  border-radius: 9px;
  align-items: center;
  transition: all 0.4s;
  padding: 12px 25px 25px;
}

.productny-list .p-item:hover {
  background: #0f3389;
}

.productny-list .p-item:hover h3, .productny-list .p-item:hover .text-p {
  color: #FFF;
}

.productny-list .p-item:hover .more-link {
  color: #FFF;
}

.productny-list .imgshow {
  display: block;
  margin-bottom:15px;
}

.productny-list .text {
  box-sizing: border-box;
  padding: 25px 0 0;
}

.productny-list h3 {
  font-weight: 600;
  color: #000000;
}

.productny-list .text-p {
  color: #4E5963;
  margin: 24px 0 32px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.productny-list .more-link {
  color: #0f3389;
}

.productny-list .more-link .iconfont {
  font-size: 20px;
}

.content-product .page-box {
  padding: 50px 0 100px;
}

.content-product-detail {
  padding-bottom: 150px;
}

.banner-prodetail {
  padding: 200px 0 55px;
  background-color: #0f3389;
}

.prodetail-cont {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  color: #FFF;
}

.prodetail-cont.t-left {
  text-align: left;
}

.prodetail-cont.t-left .text {
  width: 100%;
}

.prodetail-cont .imgshow {
  width: 100%;
  max-width: 440px;
}

.prodetail-cont .text {
  width: 50%;
}

.prodetail-cont h3 {
  font-weight: 600;
  margin-bottom: 12px;
}

.prodetail-cont .text-p {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pd-tabitem {
  text-align: center;
  margin: 0 0 100px;
}

.pd-tabitem a {
  color: #4E5963;
  font-weight: 500;
  padding: 8px 32px;
  margin: 0 50px;
  display: inline-block;
}

.pd-tabitem a.cur {
  background-color: #0f3389;
  color: #FFF;
}

.promaindetail-cont {
  display: flex;
  width:100%;
}

.promaindetail-cont .content-right {
  width: 323px;
  position: sticky;
  top: 133px;
  flex-shrink: 0;
  height: 100%;
}
.application-list,
.promaindetail-cont .content-left {
  width: calc(100% - 323px);
  box-sizing: border-box;
  padding-left: 5%;
}

.prodis-rigmenu {
    border-radius:20px;
  background: linear-gradient(352deg, #0f3389 0%, #1EA8EB 100%);
  color: #FFF;
  padding: 30px 32px;
}
.if-menu-left .prodis-rigmenu{
    padding:0;
    background:none;
}
.prodis-rigmenu a {
  color: #FFF;
}

.prodis-rigmenu dd {
  margin-bottom: 12px;
}

.prodis-rigmenu h3 {
  padding-bottom: 8px;
  display: inline-block;
  border-bottom: 3px solid transparent;
  margin-bottom: 12px;
}

.prodis-rigmenu dl {
  display: none;
}

.prodis-rigmenu .p-item {
  padding-bottom: 20px;
}

.prodis-rigmenu .cur h3 {
  border-color: #00EDFF;
}

.prodis-rigmenu .cur dl {
  display: block;
}

.prodis-rigmenu .act h3 {
  border-color: #00EDFF;
}

.prodis-cont {
  display: flex;
}

.prodis-cont .prodis-swiper {
  width: 55%;
  background-color: #F1F1F1;
  position: relative;
  padding: 0 60px;
  box-sizing: border-box;
}

.prodis-cont .prodis-swiper .img-box {
  padding-bottom: 80.21978%;
}

.prodis-cont .prodis-swiper .swiper-button-next, .prodis-cont .prodis-swiper .swiper-button-prev {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  line-height: 52px;
  border: 1px solid #B5B5B6;
  box-sizing: border-box;
  background: none;
  text-align: center;
  color: #15265E;
  transition: all 0.4s;
}

.prodis-cont .prodis-swiper .swiper-button-next .iconfont, .prodis-cont .prodis-swiper .swiper-button-prev .iconfont {
  font-size: 20px;
}

.prodis-cont .prodis-swiper .swiper-button-next:hover, .prodis-cont .prodis-swiper .swiper-button-prev:hover {
  background-color: #0f3389;
  color: #FFF;
  border-color: #0f3389;
}

.prodis-cont .prodis-text {
  width: 45%;
  box-sizing: border-box;
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.prodis-cont .prodis-text h3 {
  color: #000000;
}

.prodis-cont .prodis-text .p-cs {
  color: #FFF;
  background: linear-gradient(352deg, #0F82E7 0%, #479EEB 100%);
  display: flex;
  justify-content: space-between;
  margin: 50px 0 40px;
  padding: 8px 20px;
}

.prodis-cont .prodis-text .p-cs a {
  margin-left: 30px;
  color: #FFF;
  flex: 1;
  text-align: right;
  background: url("../images/download.png") no-repeat 100% 50%;
  padding-right: 30px;
}

.prodis-cont .prodis-text .p-cs2 {
  display: flex;
}

.prodis-cont .prodis-text .p-cs2 label {
  flex-shrink: 0;
  color: #B5B5B6;
}

.prodis-cont .prodis-text .p-cs2 span {
  color: #6D7278;
  padding: 0 12px;
  display: inline-block;
}

.prodis-cont .cp-zixun a {
  display: inline-block;
  color: #FFF;
  background-color: #0f3389;
  padding: 10px 30px;
  border-radius: 8px;
}

.pb-title {
  color: #15265E;
}

.pb-title h3 {
  display: inline-block;
  border-bottom: 2px solid #0f3389;
  padding: 0 0 12px;
  margin: 80px 0 20px;
}

.prodis-block {
  background-color: rgba(241, 241, 241, 0.4);
}

.prodis-block .pd-imgtext {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.prodis-block .pd-imgtext .vjs-poster{
	background-size:cover;
}
.prodis-block .pd-imgtext .imgshow {
  width: 40%;
}

.prodis-block .pd-imgtext .text {
  width: 60%;
  box-sizing: border-box;
  padding: 32px;
  color: #4E5963;
}
.prodis-block .pd-imgtext .text img{
	max-width:100%;
	height:auto;
}
.prodis-block .video-player-dimensions.vjs-fluid:not(.vjs-audio-only-mode) {
  padding-top: 50%;
}

.prodis-block .video-js .vjs-big-play-button {
  border: none;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  line-height: 65px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.prodis-block .prodis-tedian {
  padding: 42px;
  color: #4E5963;
  line-height: 2;
}
.video-js .vjs-tech{
    object-fit:cover !important;
}
.vjs-poster{
    background-size:cover !important;
}
.prodis-block .prodis-table {
  padding: 60px 32px;
}

.prodis-block .prodis-table img {
  max-width: 100%;
  height:auto !important;
  display: block;
}

.about-fac .video-player-dimensions.vjs-fluid:not(.vjs-audio-only-mode) {
  padding-top: 56.25%;
}

.about-fac .video-js .vjs-big-play-button {
  border: none;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  line-height: 65px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.prodis-page {
  color: #4E5963;
  display: flex;
  justify-content: space-between;
  margin: 70px 0;
  position: relative;
}

.prodis-page .p-mmenu {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
}

.prodis-page .p-mmenu .iconfont {
  font-size: 40px;
  color: #979797;
  font-weight: 300;
}

.prodis-page > div {
  width: 40%;
}

.prodis-page .p-right {
  text-align: right;
}

.prodis-page .p-right a {
  justify-content: flex-end;
}

.prodis-page a {
  display: flex;
  background-color: #DCE7F1;
  line-height: 1;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  transition: all 0.3s;
  
}
.prodis-page a span{
    display: block;
    width: calc(100% - 110px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.prodis-page a:hover {
  color: #FFF;
  background-color: #0f3389;
}

.prodis-page a:hover .iconfont {
  color: #FFF;
}

.prodis-page a .iconfont {
  margin: 0 10px;
  font-size: 24px;
  color: #4E5963;
}

.prodis-related .re-tt {
  background-color: #DCE7F1;
  padding: 12px 28px;
  margin-bottom: 40px;
}

.related-list ul {
  margin: 0 -8px;
  display: flex;
  flex-wrap: wrap;
}

.related-list .imgshow img {
  width: 100%;
}

.related-list li {
  width: 33.33%;
  padding: 0 8px;
  box-sizing: border-box;
}

.related-list .img-box {
  padding-bottom: 64.86486%;
}

.related-list .r-item {
  position: relative;
}

.related-list .r-item h4 {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  color: #FFF;
  background-color: rgba(21, 38, 94, 0.5);
  padding: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.application-list li {
  margin-bottom: 88px;
}

.application-list li:nth-last-child(1) {
  margin-bottom: 0;
}

.application-list .p-item {
  display: flex;
  flex-direction: row-reverse;
  position: relative;
  border-radius: 8px;
  transition: all 0.3s;
  box-sizing: border-box;
}

.application-list .p-item:hover {
  background-color: #0f3389;
}

.application-list .p-item:hover .t-bg {
  background-color: transparent;
}

.application-list .p-item:hover h3, .application-list .p-item:hover .text-p, .application-list .p-item:hover .more-link {
  color: #FFF;
}

.application-list .p-item h3 {
  padding-left: 30px;
  margin-bottom: 24px;
  color: #0d0d0d;
}

.application-list .p-item .imgshow {
  width: 31%;
  position: absolute;
  right: 40px;
  bottom: 30px;
}

.application-list .p-item .imgshow .img-box {
  padding-bottom: 61.99187%;
}

.application-list .t-bg {
  color: #0D0D0D;
  padding: 30px;
  box-sizing: border-box;
  min-height: 225px;
  background-color: rgba(241, 241, 241, 0.5);
}

.application-list .text {
  width: 100%;
}

.application-list .text-p {
  padding-right: 35%;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.application-list .more-link {
  margin: 40px 0 0;
  color: #0f3389;
}

.application-list .more-link .iconfont {
  font-size: 20px;
}

.content-application .page-box {
  padding: 50px 0;
}

.applicationdetail-cont {
  display: flex;
}
.if-fixed{
    display: flex;
}
.if-fixed .productny-list{
  width: calc(100% - 323px);
  box-sizing: border-box;
  padding-left: 5%;
}
.if-menu-left{
    background: linear-gradient(352deg, #0f3389 0%, #1EA8EB 100%);
    color: #FFF;
    padding: 30px 32px;
    width: 323px;
    flex-shrink: 0;
    height: 100%;
    top: 133px;
    position: sticky;
    box-sizing:border-box;
    border-radius:20px;
}
.if-menu-left ul > li{
    padding-bottom: 12px;
}
.if-menu-left ul > li > a{
    font-size: 1.25vw;
    display: inline-block;
    border-bottom: 3px solid transparent;
    color:#fff;
}
.if-menu-left ul > li.cur > a{
    border-bottom-color:#00EDFF;
}
.if-menu-left.solu-menu-left ul > li.cur dl{
    display:block;
}
.if-menu-left.solu-menu-left ul > li dl{
    display: none;
}
.if-menu-left.solu-menu-left ul > li.act a{
    border-color: #00EDFF;
}
.if-menu-left ul > li dl dd{
    margin-bottom:5px;
}
.if-menu-left ul > li dl dd a{
    display: block;
    font-size:1.0vw;
    color:#fff;
}
.applicationdetail-cont .content-right {
  width: 323px;
  flex-shrink: 0;
  height: 100%;
  top: 133px;
  position: sticky;
}

.applicationdetail-cont .content-left {
  width: calc(100% - 323px);
  box-sizing: border-box;
  padding-left: 5%;
}

.applicationdetail-cont .text h3 {
  color: #000000;
}

.applicationdetail-cont .text .sub-tt {
  color: #B5B5B6;
  margin: 10px 0 20px;
}

.applicationdetail-cont .text .sub-tt span {
  display: inline-block;
  margin-right: 32px;
}
.applicationdetail-cont .text .text-video{
    text-align:center;
}
.applicationdetail-cont .text .text-video video{
    width:70%;
    height:auto;
}
.applicationdetail-cont .text .text-p {
  color: #4E5963;
}
.applicationdetail-cont .text .text-p .video-js {
  display: block;
  margin: 20px 0;
  max-width: 100%;
}
.applicationdetail-cont .text .text-p .video-js img{
	margin:auto 0;
}
.applicationdetail-cont .text .text-p img {
  display: inline-block;
  margin: 20px 0;
  max-width: 100%;
}

.content-case {
  padding-bottom: 120px;
}

.case-list ul {
  margin: 0 -25px;
  display: flex;
  flex-wrap: wrap;
}

.case-list .imgshow img {
  width: 100%;
}

.case-list li {
  width: 50%;
  padding: 0 25px;
  box-sizing: border-box;
}

.case-list .img-box {
  padding-bottom: 75.5627%;
}

.case-list .imgshow {
  padding: 0 50px;
  margin-bottom: 20px;
}

.case-list li {
  margin-bottom: 120px;
}

.case-list .c-item {
  display: block;
  background: #FFFFFF;
  box-shadow: 0px 13px 10px -2px #CEC9C9;
  border-radius: 9px;
  padding: 18px;
  transition: all 0.3s;
}

.case-list .c-item:hover {
  background-color: #0f3389;
}

.case-list .c-item:hover h3, .case-list .c-item:hover .c-t span, .case-list .c-item:hover .text-p, .case-list .c-item:hover .more-link {
  color: #FFF;
}

.case-list .c-item h3 {
  color: #000;
  margin-bottom: 10px;
}

.case-list .c-item .c-t span {
  color: #717171;
}

.case-list .c-item .text-p {
  color: #4E5963;
  margin: 0 16px 50px;
}

.case-list .c-item .more-link {
  color: #0f3389;
  margin: 0 16px;
}

.case-list .c-item .more-link .iconfont {
  font-size: 20px;
}

.caserelated-list {
  margin-bottom: 50px;
}

.caserelated-list ul {
  margin: 0 -16px;
  display: flex;
  flex-wrap: wrap;
}

.caserelated-list .imgshow img {
  width: 100%;
}

.caserelated-list li {
  width: 33.33%;
  padding: 0 16px;
  box-sizing: border-box;
}

.caserelated-list .img-box {
  padding-bottom: 68.81497%;
}

.caserelated-list .p-item {
  position: relative;
  display: block;
}

.caserelated-list .p-item:hover .t-text {
  opacity: 0;
  visibility: hidden;
}

.caserelated-list .p-item:hover .text {
  opacity: 1;
  visibility: visible;
}

.caserelated-list .text {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  background-color: #0f3389;
  color: #FFF;
  padding: 30px;
  transition: all 0.3s;
}

.caserelated-list .text .date {
  margin: 8px 0;
}

.caserelated-list .text .text-p {
  line-height: 1.8;
}

.caserelated-list .t-text {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 14px 20px;
  color: #FFF;
}

.caserelated-list .t-text h3 {
  margin-bottom: 8px;
}

.caserelated-list .t-text h3, .caserelated-list .t-text p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-topinfo {
  display: flex;
  background-color: #F1F1F1;
}

.news-topinfo .imgshow {
  width: 42%;
}

.news-topinfo .imgshow .img-box {
  padding-bottom: 69.31298%;
}

.news-topinfo .text {
  width: 58%;
  box-sizing: border-box;
  padding: 32px 5%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-topinfo .text h3 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-topinfo .text .line {
  height: 1px;
  background-color: #717171;
  margin: 24px 0 18px;
}

.news-topinfo .text-p {
  color: 4E5963;
  line-height: 1.875;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-topinfo .date {
  color: #4E5963;
  text-align: center;
  width: 60px;
  line-height: 1;
  margin-bottom: 20px;
}

.news-topinfo .date em {
  display: block;
  color: #0f3389;
  font-size: 48px;
}

.news-topinfo .see-more-btn .btn-a {
  color: #FFF;
  background-color: #0f3389;
  display: inline-block;
  padding: 14px 24px;
  line-height: 1;
  border-radius: 5px;
}

.news-list1 {
  margin: 70px 0 100px;
}

.news-list1 ul {
  margin: 0 -16px;
  display: flex;
  flex-wrap: wrap;
}

.news-list1 .imgshow img {
  width: 100%;
}

.news-list1 li {
  width: 33.33%;
  padding: 0 16px;
  box-sizing: border-box;
}

.news-list1 .img-box {
  padding-bottom: 68.95833%;
}

.news-list1 .n-item {
  position: relative;
  overflow: hidden;
}

.news-list1 .n-item:hover .text {
  opacity: 1;
  visibility: visible;
}

.news-list1 .n-item:hover .d-text {
  opacity: 0;
  visibility: hidden;
}

.news-list1 .n-item .d-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 28px 10px;
  color: #FFF;
}

.news-list1 .n-item .date {
  margin: 8px 0;
}

.news-list1 .n-item .text {
  transition: all 0.4s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background-color: #0f3389;
  color: #FFF;
  padding: 32px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
}

.news-list1 .n-item .text-p {
  line-height: 1.875;
}

.news-list2 .n-item {
  display: flex;
}

.news-list2 .n-item .imgshow {
  width: 26%;
}

.news-list2 .n-item .imgshow .img-box {
  padding-bottom: 66.34383%;
}

.news-list2 .n-item .text {
  flex: 1;
  padding: 0 3%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-list2 .n-item .text h3 {
  color: #000;
}

.news-list2 .n-item .text .date {
  color: #717171;
  margin: 10px 0;
}

.news-list2 .n-item .text .text-p {
  color: #4E5963;
}

.news-list2 .see-more-btn .btn-a {
  color: #FFF;
  background-color: #0f3389;
  display: inline-block;
  padding: 14px 24px;
  line-height: 1;
  border-radius: 5px;
}

.news-list2 li {
  margin-bottom: 86px;
}

.content-news .page-box {
  padding-bottom: 88px;
}

.about-toptt {
  text-align: center;
  color: #6D7278;
}

.about-toptt h4 {
  color: #0f3389;
}

.about-info {
  background-color: rgba(186, 187, 193, 0.5);
  padding: 130px 0;
}

.about-info .imgshow img {
  max-width: 100%;
}

.about-info-numbox {
  background: url("../images/about-info-bg.png") no-repeat 50% 50%;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding-bottom: 1px;
}

.about-info-numbox .info-text {
  background-color: #0f3389;
  color: #FFF;
  max-width: 1200px;
  box-sizing:border-box;
  width:79%;
  margin: -200px auto 0;
  padding: 100px;
  border-radius: 40px;
}

.about-info-num {
  margin: 120px 0;
}

.about-info-num ul {
  display: flex;
  justify-content: center;
}

.about-info-num ul .n-item {
  padding: 40px 77px;
  text-align: center;
  color: #8C8C8C;
  border-left: 1px solid #979797;
  position: relative;
}

.about-info-num ul .n-item:after {
  content: '';
  position: absolute;
  top: 50%;
  left: -2px;
  margin-top: -12px;
  width: 3px;
  height: 24px;
  background-color: #0f3389;
}

.about-info-num ul li:nth-last-child(1) .n-item {
  border-right: 1px solid #979797;
}

.about-info-num ul li:nth-last-child(1) .n-item::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -2px;
  margin-top: -12px;
  width: 3px;
  height: 24px;
  background-color: #0f3389;
}

.about-info-num em {
  font-size: 64px;
  color: #0f3389;
  font-family: Arial, Arial;
  font-weight: 900;
}

.about-fac {
  background-color: #babbc1;
  text-align: center;
  padding: 130px 0;
}

.about-fac img {
  max-width: 100%;
}

.dev-swiper {
  max-width: 1000px;
  margin: 0 auto;
  color: #003279;
  position: relative;
  box-sizing: border-box;
  padding: 0 50px;
  margin-bottom: 100px;
}

.dev-swiper .swiper-slide {
  text-align: center;
}

.dev-swiper .swiper-slide .d-item {
  transform: scale(0.4);
  opacity: 0.3;
}

.dev-swiper .swiper-slide.swiper-slide-active .d-item {
  opacity: 1;
  transform: scale(1);
}

.dev-swiper .swiper-button-next, .dev-swiper .swiper-button-prev {
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background-image: none;
  transition: all 0.4s;
}

.dev-swiper .swiper-button-next:hover, .dev-swiper .swiper-button-prev:hover {
  background-color: #0f3389;
}

.dev-swiper .swiper-button-next:hover .iconfont, .dev-swiper .swiper-button-prev:hover .iconfont {
  color: #FFF;
}

.dev-swiper .swiper-button-next .iconfont, .dev-swiper .swiper-button-prev .iconfont {
  transition: all 0.4s;
  color: #979797;
  font-weight: bold;
}

.dev-tabbox {
  position: relative;
}

.dev-tabbox:after {
  content: '';
  position: absolute;
  left: 260px;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #003279;
  margin-left: 10px;
}

.dev-tabbox::before {
  content: '';
  left: 260px;
  top: 0;
  width: 1px;
  background-color: #003279;
  margin-left: 13px;
  width: 77px;
  height: 55px;
  /*background: url("../images/dev-top.png") no-repeat;*/
  background: url('http://feda.virtual-world.site/images/h-logo.svg') no-repeat;
  position: absolute;
  transform: translate(-50%, -80%);
  background-size: 77px 55px;
}

.dev-tabbox li {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.dev-tabbox .d-item {
  display: flex;
  align-items: center;
}

.dev-tabbox .d-item:hover .text {
  background-color: #0f3389;
  color: #FFF;
}

.dev-tabbox .d-item .dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #0f3389;
}

.dev-tabbox .d-item .year {
  flex-shrink: 0;
  width: 260px;
  text-align: right;
  padding-right: 50px;
  box-sizing: border-box;
}

.dev-tabbox .d-item .text {
  width: calc(73% - 300px);
  box-sizing: border-box;
  color: #6D7278;
  padding: 40px 20px;
  margin: 0 20px;
  transition: all 0.3s;
  border-radius: 20px;
}

.dev-tabbox .d-item .imgshow {
  width: 27%;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
}

.dev-tabbox .d-item .imgshow .img-box {
  padding-bottom: 53.36538%;
}

.dev-tabbox .tab-block {
  position: relative;
}

.dev-tabbox .tab-block h3 {
  position: absolute;
  top: 0;
  transform: translateY(-80%);
  width: 270px;
  text-align: right;
  padding-right: 50px;
  box-sizing: border-box;
}

.sales-filter {
  background-color: rgba(220, 231, 241, 0.5);
  padding: 32px 30px;
  margin: 60px 0;
}

.sales-filter dl {
  display: flex;
  flex-wrap: wrap;
}

.sales-filter dl dd {
  min-width: 11.11%;
  color: #003279;
}

.sales-filter dl dd.cur {
  font-weight: 600;
}

.sales-nylist {
  padding-bottom: 80px;
}

.sales-nylist ul {
  display: flex;
  flex-wrap: wrap;
}

.sales-nylist .s-item {
  padding: 12px 30px 40px;
  transition: all 0.3s;
  border-radius: 21px;
}

.sales-nylist .s-item:hover {
  color: #FFF;
  background-color: #0f3389;
}

.sales-nylist .s-item:hover h3 {
  color: #FFF;
}

.sales-nylist .s-item:hover .text-p {
  color: #FFF;
}

.sales-nylist .s-item:hover .s-cont .s-more em {
  color: #FFF;
  border-color: #FFF;
}

.sales-nylist .s-item:hover .s-cont .text .date {
  color: #FFF;
}

.sales-nylist li {
  width: 50%;
  margin-bottom: 45px;
}

.sales-nylist li h3 {
  margin-bottom: 14px;
}

.sales-nylist .s-cont {
  display: flex;
  flex-direction: row-reverse;
}

.sales-nylist .s-cont .imgshow {
  width: 49%;
}

.sales-nylist .s-cont .imgshow .img-box {
  padding-bottom: 60.29412%;
}

.sales-nylist .s-cont .text {
  width: 51%;
  padding: 0 30px 0 0px;
  box-sizing: border-box;
  color: #6D7278;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sales-nylist .s-cont .text .text-p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sales-nylist .s-cont .text .date {
  color: #B5B5B6;
  padding-top: 6px;
}

.sales-nylist .s-cont .text .s-more em {
  padding: 4px 14px;
  border: 1px solid #0f3389;
  color: #0f3389;
  display: inline-block;
  border-radius: 50px;
  line-height: 1;
}

.honor-list ul {
  margin: 0 -12px;
  display: flex;
  flex-wrap: wrap;
}

.honor-list .imgshow img {
  width: 100%;
}

.honor-list li {
  width: 25%;
  padding: 0 12px;
  box-sizing: border-box;
}
.about-fac .vjs-poster{
	background-size:cover;
}
.honor-list .h-item {
  padding: 20px;
  background-color: rgba(241, 241, 241, 0.5);
  transition: all 0.3s;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.honor-list .h-item img {
  max-width: 100%;
  max-height: 100%;
}

.honor-list .h-item:hover {
  background-color: #0f3389;
}

.honor-list li {
  margin-bottom: 55px;
}
.content-about{
	padding-bottom:40px;
}
.content-about-honor .page-box {
  padding: 30px 0 100px;
}

.con-tebitem {
  margin: 100px 0 30px;
  display: flex;
  justify-content: center;
}

.con-tebitem .icon {
  width: 83px;
  height: 83px;
  border-radius: 50%;
  border: 1px solid #979797;
  text-align: center;
  line-height: 83px;
  box-sizing: border-box;
  transition: all 0.4s;
  color: #9F9F9F;
  margin: 0 auto;
}

.con-tebitem .icon .iconfont {
  font-size: 40px;
}

.con-tebitem p {
  padding-top: 12px;
  color: #757575;
}

.con-tebitem .cur .icon {
  border-color: #0f3389;
  background-color: #0f3389;
  color: #FFF;
}

.con-tebitem a {
  padding: 0 70px;
}

.map-block .imgshow {
  text-align: center;
}

.map-block .imgshow img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.map-block .text {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: -50px auto 0;
  background-color: #0f3389;
  color: #FFF;
  padding: 20px 30px;
  box-sizing: border-box;
  line-height: 2;
}

.con-form {
  max-width: 1024px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.con-form h3 {
  color: #003279;
  font-weight: 400;
  border-bottom: 1px solid #979797;
  margin: 120px 0 28px;
}

.con-form .f-row {
  display: flex;
  margin: 0 -20px;
  flex-wrap: wrap;
}

.con-form .f-cell {
  width: 50%;
  padding: 0 20px;
  box-sizing: border-box;
  margin-bottom: 26px;
}

.con-form .f-cell.w100 {
  width: 100%;
}

.con-form .f-cell.wauto {
  width: auto;
  display: flex;
}

.con-form .f-cell .yzm {
  margin-left: 32px;
}

.con-form .f-cell .yzm img {
  width: 126px;
  height: 60px;
  object-fit: cover;
}

.con-form .layui-textarea {
  border: 1px solid #DFDFDF;
}

.con-form .layui-textarea::placeholder {
  font-size: 20px;
  color: #c3c3c3;
  font-weight: 400;
}

.con-form .layui-input {
  height: 60px;
  border: 1px solid #DFDFDF;
}

.con-form .layui-input::placeholder {
  font-size: 20px;
  color: #c3c3c3;
  font-weight: 400;
}

.con-form .layui-btn {
  font-size: 28px;
  padding: 16px 96px;
  height: auto;
  line-height: 1;
  background: #003389;
}

.right-fix {
  position: fixed;
  right: 10px;
  bottom:12%;
  z-index: 2;
}

.right-fix li {
  margin: 2px 0;
}

.right-fix .f-item {
  width: 47px;
  height: 47px;
  text-align: center;
  color: #FFF;
  background-color: #0f3389;
  text-align: center;
  line-height: 47px;
}

.right-fix .f-item .icon img {
  /*width: 24px;*/
  height: 24px;
  object-fit: cover;
}

.right-fix #toTop {
  background-color: #4E5963;
}

.search-inputbox {
  padding: 20px 0;
}

.search-inputbox input {
  width: 100%;
  height: 50px;
  box-sizing: border-box;
  padding: 0 11px;
  background-color: #F9F9F9;
  border: none;
  font-size: 14px;
  color: #333;
}

.search-inputbox .s-input {
  position: relative;
}

.search-inputbox .s-input button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background-color: #0f3389;
  color: #FFF;
  padding: 0 24px;
  font-size: 1.4rem;
  border: none;
}

.search-result {
  font-size: 14px;
  color: rgba(51, 51, 51, 0.3);
  padding: 14px 0;
}

.search-tebitem {
  margin: 0 0 50px;
}

.search-tebitem a {
  font-size: 14px;
  color: #333;
  padding: 10px 0;
  line-height: 1;
  display: inline-block;
  margin-right: 30px;
  transition: all 0.3s;
  position: relative;
}

.search-tebitem a.cur, .search-tebitem a:hover {
  color: #0f3389;
}

.search-tebitem a.cur:after, .search-tebitem a:hover:after {
  width: 100%;
}

.search-tebitem a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #0f3389;
  transition: all 0.3s;
}

.search-textlist {
  padding-top: 50px;
}

.search-textlist h3 {
  font-size: 20px;
  font-weight: bold;
}

.search-textlist h3 a {
  color: #333;
}

.search-textlist li {
  margin-bottom: 50px;
}

.search-textlist .text {
  margin: 12px 0;
  color: #666;
  line-height: 2.1;
}

.search-textlist .s-bro {
  color: rgba(85, 85, 85, 0.7);
  font-size: 14px;
}

.search-textlist .s-bro a {
  color: rgba(85, 85, 85, 0.7);
  transition: all 0.3s;
}

.search-textlist .s-bro a:hover {
  color: #0f3389;
}

.content-search {
  padding-bottom: 100px;
}

.index-app-grid {
  background-color: rgba(186, 187, 193, 0.5);
  padding: 1px 0;
}

.lingyu-swiper {
  /*padding-bottom: 100px;*/
  position: relative;
  padding-left: 90px;
    padding-right: 90px;
    margin-bottom: 90px;
}
.lingyu-swiper .swiper-button-next,.lingyu-swiper .swiper-button-prev{
    width: 52px;
    height: 52px;
    background: rgba(216, 216, 216, 0.34);
    border-radius: 50%;
    text-align: center;
    line-height: 52px;
    transition: all 0.3s;
    top: 40%;
  
}
.lingyu-swiper .swiper-button-next{
    right: -90px;
}
.lingyu-swiper .swiper-button-prev{
    left: -90px;
}
.lingyu-swiper .swiper-button-next .iconfont,.lingyu-swiper .swiper-button-prev .iconfont{
      font-size: 30px;
    color: rgba(151, 151, 151, 1);
}
.lingyu-swiper .swiper-button-next:hover,.lingyu-swiper .swiper-button-prev:hover{
    background: #1EA8EB;
}
.lingyu-swiper .swiper-button-next:hover .iconfont,.lingyu-swiper .swiper-button-prev:hover .iconfont{
    color: #FFF;
}
.lingyu-swiper .ly-item .img-box {
  padding-bottom: 140.20618%;
}

.lingyu-swiper .ly-item {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: block;
}

.lingyu-swiper .ly-item .text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 2;
  text-align: center;
  padding-bottom: 55px;
  background: rgba(30, 168, 235, 0.8);
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #FFF;
  transition: all 0.4s;
}
.lingyu-swiper .ly-item:hover{
    color: #fff;
}
.lingyu-swiper .ly-item:hover .text{
    background: rgba(33, 79, 179, 0.5);
}
.lingyu-swiper .ly-item:hover .text .look-more {
    opacity: 1;
    visibility: visible;
}
.lingyu-swiper .ly-item .text .look-more {
  display: inline-block;
  background-color: #FFF;
  color: rgba(16, 130, 231, 0.9);
  border-radius: 8px;
  line-height: 45px;
  padding: 0 37px;
  font-weight: 400;
  transition: all 0.4s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10%;
  opacity: 0;
  visibility: hidden;
}

/*.lingyu-swiper {*/
/*  position: relative;*/
/*  padding-bottom: 100px;*/
/*}*/

/*.lingyu-swiper .ly-item:hover h3 {*/
/*  background-color: #FFF;*/
/*  color: #003389;*/
/*  font-weight: 500;*/
/*}*/

.lingyu-swiper .swiper-pagination {
  left: 0;
  right: 0;
  height: 1px;
  top: 0;
}

.lingyu-swiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: #0052B3;
  height: 5px;
  top: -2px;
}

.swiper-pagination-progressbar {
  background-color: #979797;
}

/* .swiper-pagination-progressbar:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6.9px;
  border-color: transparent transparent transparent #979797;
} */

.ly-page {
  position: relative;
  text-align: right;
  margin-top: 100px;
}

.ly-page .line {
  display: flex;
  align-items: center;
}

.ly-page .lp-line {
  width: calc(100% - 6px);
  height: 1px;
  background-color: #979797;
  position: relative;
}

.ly-page .lp-line:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 5px;
  width: 32%;
  background-color: #0f3389;
  border-radius: 5px;
  transition: all 0.3s;
}

.ly-page:hover .lp-line:after {
  width: 100%;
}

.ly-page .icn {
  transition: all 0.3s;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6.9px;
  border-color: transparent transparent transparent #979797;
}

.ly-page:hover .icn {
  border-color: transparent transparent transparent #0f3389;
}

.ly-page a {
  margin-top: 12px;
  display: inline-block;
  color: #6D7278;
  font-weight: 400;
  transition: all 0.6s;
}

.ly-page a:hover {
  color: #0f3389;
}

.index-tellayer {
  display: none;
}

.layui-layer .lay-tt {
  display: flex;
  align-items: center;
  font-size: 26px;
  justify-content: space-between;
}

.layui-layer .lay-tt h3 {
  font-weight: 400;
}

.layui-layer .lay-tt .iconfont {
  font-size: 24px;
  color: #6D7278;
}

.layui-layer.rfix {
  position: relative;
  border-radius: 20px;
  color: #003389;
  padding: 20px 40px 4px;
  box-sizing: border-box;
}
.layui-layer.rfix.rfixvideo{
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 12px;
    background: #000;
}
.layui-layer.rfix.rfixvideo .lay-tt{
    margin-bottom: 12px !important;
    justify-content: flex-end;
}
.layui-layer.rfix.rfixvideo .lay-tt h3{
    display: none;
}
.layui-layer.rfix .img-box{
    padding-bottom: 60.66666%;
}
.layui-layer.rfix a {
  color: #003389;
}

.layui-layer.rfix h3 {
  display: flex;
  align-items: center;
  font-weight: 400;
}

.layui-layer.rfix h3 em {
  font-size: 30px;
  font-weight: bold;
}

.layui-layer.rfix h3 a {
  font-weight: bold;
  font-size: 30px;
}

.layui-layer.rfix h4 {
  font-weight: 400;
}

.layui-layer .layer-tel dl {
  display: flex;
}

.layui-layer .layer-tel dl dd {
  margin-right: 40px;
}

.layui-layer .layer-tel dl dd:nth-child(2) {
  margin-right: 0;
}

.layui-layer .layer-tel dl h4 {
  margin: 24px 0 10px;
}

.layui-layer .layer-code {
  text-align: center;
  font-size: 18px;
}
.ipd-20 {
padding: 0 20px;
}
@media screen and (max-width: 1930px) and (min-width: 1000px) {
  body, input, select, button, textarea {
    font-size: 14px;
  }

  .about-botlist em {
    font-size: 60px;
  }
  .footer-con a {
    /*font-size: 25px;*/
  }
  .footer .footer-top .f-ss input, .footer .footer-top .f-ss button {
    height: 50px;
  }
  .footer {
    padding: 50px 0 0;
  }
  .footer-con {
    padding: 12px 0 24px;
  }
  .foot-copy {
    padding: 12px 0;
    font-size: 12px;
  }
  .m-width-content {
    max-width: 1466px;
  }
  .crumbs-box {
    font-size: 18px;
  }
  .con-form .layui-btn {
    font-size: 20px;
  }
  .con-form .layui-input::placeholder {
    font-size: 16px;
  }
  .banner-bot ul li {
    width: 200px;
  }
  .f-84 {
    font-size: 4.375vw;
  }
  .f-46 {
    font-size: 2.39583vw;
  }
  .f-24 {
    font-size: 1.25vw;
  }
  .f-50 {
    font-size: 2.60417vw;
  }
  .f-32 {
    font-size: 1.66667vw;
  }
  .f-30 {
    font-size: 1.5625vw;
  }
  .f-26 {
    font-size: 1.35417vw;
  }
  .f-22 {
    font-size: 1.14583vw;
  }
  .f-20 {
    font-size: 1.04167vw;
  }
  .f-18 {
    font-size: 0.9375vw;
  }
  .f-16 {
    font-size: 0.83333vw;
  }
  .priduct-cat-list .p-num {
    font-size: 1.875vw;
  }
  .app-cat-list .img-boxauto img {
    height: 37.39583vw;
  }
  .app-cat-list {
    margin: 0vw 0vw 8.85417vw 0vw;
  }
  .index-newslist .n-item .text {
    padding: 1.25vw 2.39583vw 2.86458vw 2.39583vw;
  }
  .index-newslist .n-item .see-more {
    margin: 1.5625vw 0vw 0vw 0vw;
    padding: 0.42083vw 2.09583vw 0.42083vw 2.09583vw;
  }
  .index-news-grid {
    margin: 0vw 0vw 7.8125vw 0vw;
  }
  .pro-tabitem a {
    padding: 1vw 0vw 1vw 0vw;
  }
  .footer-con .icon {
    height: 4.27083vw;
    width: 4.27083vw;
    line-height: 4.27083vw;
  }
  .footer-con .icon img {
    width: auto;
    height: 2.29167vw;
  }
  .footer-con {
    padding: 2.08333vw 0vw 2.60417vw 0vw;
  }
   .footer-con p {
    line-height: 2.60417vw;
  }
}
@media screen and (max-width: 1900px) {
	.if-size{
		font-size:19px;
	}
}
@media screen and (max-width: 1700px) {
	.if-size{
		font-size:17px;
	}
}
@media screen and (max-width: 1600px) {
	.if-size{
		font-size:16px;
	}
	.priduct-cat-list .swiper-button-next{
        right: 0px;
    }
    .priduct-cat-list .swiper-button-prev{
        left: 0px;
    }
    .lingyu-swiper .swiper-button-next{
    right: 0px;
}
.lingyu-swiper .swiper-button-prev{
    left: 0px;
}
    /*.priduct-cat-list{*/
    /*    padding: 0 90px;*/
    /*}*/
}
@media screen and (max-width: 1466px) {
    .about-info-numbox .info-text{
        padding:50px;
        
    }
    /*.app-cat-list li{*/
    /*    width: 148px;*/
    /*}*/
    .app-cat-list li{
        width: 13.75%;
    }
    .app-cat-list li.cur{
        width: 45%;
    }
    
    .app-cat-list h3{
        font-size: 18px;
    }
    .priduct-cat-list .p-num{
        height: 54px;
    }
    .priduct-cat-list .text{
        transform: translateY(-54px);
    }
  .promaindetail-cont .content-right, .applicationdetail-cont .content-right {
    top: 106px;
  }
  .banner-bot ul li {
    width: 150px;
  }
  .m-width-content {
    max-width: 1200px;
  }
  #menuPc > ul > li > a{
	  padding:20px 5px 10px;
  }
  .nav-box nav#menuPc > ul > li.nav-up-selected > a::before,
  .nav-box nav#menuPc > ul > li:hover > a::before, 
  .nav-box nav#menuPc > ul > li.cur > a::before {
    width:calc(100% - 10px);
  }
  .header .h-left .logo img {
    height: 56px;
  }
  .about-cont .text {
    width: 60%;
    font-size: 14px;
  }
  .prodis-cont .prodis-text .p-cs {
    margin: 12px 0;
  }
  .crumbs-box {
    font-size: 16px;
  }
  .application-list li {
    margin-bottom: 46px;
  }
  .caserelated-list .text .text-p, .news-list1 .n-item .text-p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .footer-share .imgshow img {
    width: 130px;
    height: auto;
  }
  .con-form .layui-btn {
    font-size: 18px;
  }
  .index-mouse {
    width: 60px;
    height: 60px;
  }
}

@media screen and (max-width: 1300px) {
	.h-search{width:120px;}
	.h-search button .iconfont{font-size:16px;}
}

@media screen and (max-width: 1000px) {
    .applicationdetail-cont .text .text-video video{
        width:100%;
    }
    .applicationdetail-cont .text .text-p img{
        height:auto;
    }
      .if-menu-left{
      display: none;
  }
  .if-fixed .productny-list{
      width:100%;
      padding-left:0;
  }
    .priduct-cat-list .p-num{
        opacity: 1;
        visibility: visible;
    }
    .priduct-cat-list .text{
        transform: translateY(0);
    }
    .application-list, 
    .promaindetail-cont .content-left{
        width:100%;
        padding-left:0;
    }
    .if-menu-left{
        display: none;
    }
  html.mm-blocking body {
    overflow: initial;
  }
  .banner{
	  height:auto;
  }
  .header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.5);
  }
  .h-tool {
    color: #0f3389;
  }
  .header .h-left .logo img {
    height: 36px;
  }
  #menuPc {
    display: none;
  }
  .mm-opened #menuWap {
    display: block;
  }
  #page {
    background: #FFFFFF;
  }
  .youshi-list22 li {
    width: auto;
    float: none;
  }
  .youshi-list22 li .y-item {
    min-height: auto;
  }
  .app-yanfa-grid {
    padding-bottom: 10px;
  }
  .btn-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    background: transparent;
    border: none;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    z-index: 99999;
    display: block;
    width: 30px;
    float: right;
  }
  .icon-bar {
    display: block;
    margin: 6px 0;
    width: 30px;
    height: 3px;
    background-color: #0f3389;
    box-shadow: 0 1px 1px #000000;
    -webkit-transition: all .7s ease;
    -moz-transition: all .7s ease;
    -ms-transition: all .7s ease;
    -o-transition: all .7s ease;
    transition: all .7s ease;
    z-index: 999999;
  }
  .mm-opening .top {
    -webkit-transform: translateY(8px) rotateZ(45deg);
    -moz-transform: translateY(8px) rotateZ(45deg);
    -ms-transform: translateY(8px) rotateZ(45deg);
    -o-transform: translateY(8px) rotateZ(45deg);
    transform: translateY(8px) rotateZ(45deg);
  }
  .mm-opening .bottom {
    -webkit-transform: translateY(-10px) rotateZ(-45deg);
    -moz-transform: translateY(-10px) rotateZ(-45deg);
    -ms-transform: translateY(-10px) rotateZ(-45deg);
    -o-transform: translateY(-10px) rotateZ(-45deg);
    transform: translateY(-10px) rotateZ(-45deg);
  }
  .mm-opening .middle {
    width: 0;
  }
  .index-title .s-t {
    padding-top: 30px;
  }
  .h-search {
    display: none;
  }
  .header-box .h-right {
    padding-right: 50px;
  }
  .banner .bg-box img {
    height: auto;
  }
  .banner-bot {
    display: none;
  }
  .banner h2 {
    font-size: 16px;
  }
  .banner h3 {
    font-size: 12px;
  }
  .banner .banner-content .text .link-more {
    padding: 5px 30px;
    font-size: 14px;
  }
  .banner .banner-content .text h3 {
    margin: 12px 0;
  }
  .index-mouse {
    display: none;
  }
  .right-fix {
    right: 0;
  }
  .priduct-cat-list li {
    width: 100%;
    margin-bottom: 12px;
  }
  .priduct-cat-list .p-num {
    font-size: 24px;
	display:none;
  }
  .priduct-cat-list {
    margin-bottom: 32px;
  }
  .app-cat-list ul {
    flex-direction: column;
  }
  .app-cat-list li {
    width: 100% !important;
    height: 80px;
  }
  .app-cat-list li.cur {
    height: auto;
  }
  .app-cat-list .h-text {
    width: 100%;
  }
  .app-cat-list .img-boxauto {
    height: auto;
  }
  .app-cat-list .imgshow, .app-cat-list .a-item {
    height: auto;
  }
  .app-cat-list .h-text {
    padding: 12px;
  }
  .app-cat-list .img-boxauto img {
    width: 100%;
  }
  .app-cat-list .text {
    padding: 0;
    height: 80px;
    flex-direction: row;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
  }
  .app-cat-list .text .a-more-btn {
    display: none;
  }
  .app-cat-list .icon img {
    width: 24px;
    height: 24px;
  }
  a.more-link {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-end;
  }
  .app-cat-list h3 {
    font-size: 16px;
  }
  .app-cat-list {
    border-radius: 10px;
    margin-bottom: 32px;
  }
  .sales-cont .imgshow .hm3World {
    max-width: 60vw;
    width: 100%;
  }
  .sales-cont {
    display: block;
  }
  .sales-cont .imgshow {
    width: 100%;
  }
  .sales-cont .text li {
    margin-bottom: 12px;
  }
  .sales-cont .text {
    text-align: left;
    font-size: 14px;
    margin: 20px 0 0;
  }
  .index-sales-grid {
    padding-bottom: 32px;
  }
  .about-cont {
    display: block;
  }
  .about-cont .imgshow {
    width: 100%;
  }
  .about-cont .text {
    width: 100%;
  }
  .about-cont .a-num em {
    font-size: 20px;
  }
  .about-cont .a-num {
    margin: 12px 0;
  }
  .about-cont .text-p {
    margin: 0 0 12px;
  }
  .about-botlist em {
    font-size: 20px;
  }
  .about-botlist p {
    font-size: 12px;
  }
  .content-about{
      padding-bottom:0;
  }
  .about-botlist {
    border-radius: 20px 20px 0 0;
    padding: 24px 0 0;
    margin: 32px 0 0;
  }
  .news-tabitem a {
    margin: 0 8px;
    padding: 8px 20px;
  }
  .news-tabbox .news-top {
    display: block;
  }
  .news-tabbox .news-top .imgshow {
    width: 100%;
  }
  .news-tabbox .news-top .text {
    width: 100%;
    padding-left: 0;
    margin: 12px 0 0;
  }
  .news-tabbox .news-top h3 {
    font-size: 16px;
  }
  .news-tabbox .news-top .text-p {
    font-size: 14px;
  }
  .index-newslist li {
    width: 100%;
  }
  .index-newslist .n-item {
    border-radius: 12px;
    margin-bottom: 12px;
  }
  .index-newslist .n-item .text {
    padding: 16px;
  }
  .index-newslist .n-item .see-more {
    padding: 6px 24px;
    margin-top: 12px;
    font-size: 14px;
  }
  .index-news-grid {
    margin-bottom: 32px;
  }
  .footer .footer-top {
    display: block;
  }
  .footer .footer-top .f-ss {
    margin: 12px 0;
  }
  .footer .f-logo {
    text-align: center;
  }
  .footer .f-logo img {
    height: 54px;
  }
  .footer {
    padding: 32px 0 0;
  }
  .footer .footer-top .f-ss input {
    width: 100%;
  }
  .footer .footer-top .f-ss {
    display: flex;
  }
  .footer .f-nav {
    display: none;
  }
  .footer-con ul {
    display: block;
  }
  .footer-con p, .footer-con a {
    font-size: 12px;
    line-height: 1.5;
  }
  .footer-con label {
    font-size: 12px;
  }
  .footer-con {
    margin: 24px 0 0;
    padding-bottom: 0;
  }
  .footer-con li {
    margin-bottom: 12px;
  }
  a.more-link .c-line {
    width: 120px;
  }
  .news-tabitem {
    margin-bottom: 32px;
  }
  .pro-tabitem {
    display: none;
  }
  .about-toptt h3 {
    font-size: 24px;
  }
  .about-info-numbox .info-text {
    padding: 24px;
    font-size: 16px;
    margin: 0 20px;
    border-radius: 10px;
    width:calc(100% - 40px);
  }
  .about-info {
    padding: 32px 0;
  }
  .about-info-num em {
    font-size: 16px;
  }
  .about-info-num p {
    font-size: 14px;
  }
  .about-info-num ul .n-item {
    padding: 0px 20px;
  }
  .about-info-num {
    margin: 32px 0;
  }
  .about-fac {
    padding: 24px 0;
  }
  .dev-swiper .swiper-slide .d-item {
    font-size: 18px;
    transform: scale(1);
  }
  .dev-swiper .swiper-button-next, .dev-swiper .swiper-button-prev {
    width: 32px;
    height: 32px;
    line-height: 32px;
    margin-top: -16px;
  }
  .dev-tabbox .tab-block h3 {
    width: 100%;
    font-size: 20px;
    text-align: left;
    position: initial;
    transform: translateY(0);
    margin: 0 0 20px;
  }
  .dev-tabbox .d-item .year {
    width: 100%;
    padding-right: 0px;
    text-align: left;
    font-size: 16px;
  }
  .dev-tabbox .d-item {
    display: block;
  }
  .dev-tabbox .d-item .dot {
    display: none;
  }
  .dev-tabbox .d-item .text {
    width: 100%;
    margin-left: 0;
    padding: 12px 0;
  }
  .dev-tabbox .d-item .imgshow {
    width: 100%;
  }
  .dev-tabbox:after {
    display: none;
  }
  .dev-tabbox::before {
    display: none;
  }
  .dev-swiper {
    padding: 0 42px;
    margin-bottom: 32px;
  }
  .sales-filter dl dd {
    margin: 6px;
  }
  .sales-filter {
    margin: 32px 0;
    padding: 12px;
  }
  .sales-nylist li {
    width: 100%;
    margin-bottom: 12px;
  }
  .sales-nylist .s-item {
    padding: 12px;
  }
  .sales-nylist .s-cont .text .text-p {
    font-size: 12px;
  }
  .sales-nylist li h3 {
    font-size: 14px;
  }
  .sales-nylist .s-cont .text {
    padding-right: 10px;
  }
  .page-box .page-inner .larger {
    display: none;
  }
  .honor-list li {
    width: 50%;
    margin-bottom: 12px;
  }
  .application-list .p-item .imgshow {
    position: initial;
    width: 100%;
  }
  .application-list .p-item {
    display: block;
    padding-top: 0;
  }
  .application-list .p-item h3 {
    padding: 12px 0;
    margin-bottom: 0;
  }
  .application-list .text-p {
    padding-right: 0;
    display: block;
  }
  .application-list .more-link {
    margin: 12px 0 0;
  }
  .applicationdetail-cont .content-right {
    display: none;
  }
  .applicationdetail-cont .content-left {
    width: 100%;
    padding-left: 0;
  }
  .prodis-page {
    display: block;
  }
  .prodis-page > div {
    width: 100%;
    margin: 6px 0;
  }
  .prodis-page .p-mmenu {
    position: initial;
    transform: translate(0, 0);
  }
  .prodis-page .p-right a {
    justify-content: flex-start;
  }
  .productny-list li {
    width: 100%;
  }
  .productny-list .imgshow, .productny-list .text {
    width: 100%;
  }
  .productny-list .p-item {
    display: block;
  }
  .productny-list li {
    margin-bottom: 12px;
  }
  .productny-list .text {
    padding: 12px 0 0;
  }
  .prodetail-cont {
    display: block;
  }
  .prodetail-cont .text {
    width: 100%;
  }
  .promaindetail-cont .content-right {
    display: none;
  }
  .promaindetail-cont .content-left {
    width: 100%;
    padding-left:0;
  }
  .pd-tabitem a {
    margin: 0 5px;
    padding: 6px 18px;
  }
  .pd-tabitem {
    margin: 0 0 32px;
  }
  .crumbs-box {
    margin-bottom: 32px;
  }
  .prodis-cont {
    display: block;
  }
  .prodis-cont .prodis-swiper {
    width: 100%;
    padding: 0 42px;
  }
  .prodis-cont .prodis-swiper .swiper-button-next .iconfont, .prodis-cont .prodis-swiper .swiper-button-prev .iconfont {
    font-size: 14px;
  }
  .prodis-cont .prodis-swiper .swiper-button-next, .prodis-cont .prodis-swiper .swiper-button-prev {
    width: 32px;
    height: 32px;
    line-height: 32px;
  }
  .prodis-cont .prodis-text {
    width: 100%;
    padding-left: 0;
    margin-top: 12px;
  }
  .prodis-cont .prodis-text .p-cs2 {
    margin: 12px 0;
  }
  .prodis-block .pd-imgtext {
    display: block;
  }
  .prodis-block .pd-imgtext .imgshow {
    width: 100%;
  }
  .prodis-block .pd-imgtext .text {
    width: 100%;
    padding: 12px 0;
  }
  .prodis-block .prodis-tedian {
    padding: 12px;
  }
  .prodis-block .prodis-table {
    padding: 12px;
  }
  .related-list li {
    width: 100%;
    margin-bottom: 12px;
  }
  .content-product-detail {
    padding-bottom: 30px;
  }
  .banner-prodetail {
    padding: 50px 0;
  }
  .case-list li {
    width: 100%;
  }
  .case-list .c-item .text-p {
    margin: 0 0 16px;
  }
  .case-list li {
    margin-bottom: 24px;
  }
  .content-case {
    padding-bottom: 32px;
  }
  .news-topinfo {
    display: block;
  }
  .news-topinfo .imgshow, .news-topinfo .text {
    width: 100%;
  }
  .news-list1 li {
    width: 100%;
    margin-bottom: 12px;
  }
  .news-list1 {
    margin: 32px 0;
  }
  .news-list2 .n-item {
    display: block;
  }
  .news-list2 .n-item .imgshow, .news-list2 .n-item .text {
    width: 100%;
    padding: 0;
  }
  .news-list2 .n-item .imgshow .t-top, .news-list2 .n-item .text .t-top {
    margin-bottom: 12px;
  }
  .news-list2 .n-item .imgshow {
    margin-bottom: 12px;
  }
  .news-list2 li {
    margin-bottom: 20px;
  }
  .caserelated-list li {
    width: 100%;
    margin-bottom: 12px;
  }
  .con-tebitem a {
    padding: 0 10px;
    text-align: center;
  }
  .con-tebitem {
    margin: 32px 0;
  }
  .con-tebitem .icon {
    width: 42px;
    height: 42px;
    line-height: 42px;
  }
  .con-tebitem .icon .iconfont {
    font-size: 20px;
  }
  .con-tebitem p {
    font-size: 12px;
  }
  .map-block .text {
    margin: 12px 0 0;
  }
  .con-form h3 {
    margin: 24px 0;
  }
  .con-form .f-cell {
    width: 100%;
  }
  .con-form .layui-btn {
    width: 100%;
    padding: 16px;
    text-align: center;
  }
  .con-form {
    padding-bottom: 32px;
  }
  .content-search {
    padding-bottom: 32px;
  }
  .layer-form ul li {
    width: 100%;
  }
  .layer-form .f-item {
    line-height: 40px;
    border-radius: 5px;
  }
  #layer-con {
    padding: 12px;
  }
  .layer-form input {
    line-height: 40px;
    height: 40px;
  }
  .layer-form .yzm img {
    height: 40px;
  }
  .layer-form .f-item {
    padding-right: 0;
    margin-bottom: 12px;
  }
  .layer-form label {
    padding: 0 14px;
  }
  #layer-con .lay-tt .iconfont {
    font-size: 30px;
  }
  .banner .bg-box video {
    height: auto;
  }
  .lingyu-swiper {
    padding-bottom: 32px;
  }
  .ly-page {
    margin-top: 32px;
  }
  .footer-con .icon {
    line-height: 40px;
    width: 40px;
    height: 40px;
  }
  .footer-con .icon img {
    width: 25px;
    height: 22px;
  }
  .foot-copy .copy-cont {
    display: block;
  }
  .foot-copy .layui-form {
    width: 100%;
    margin-top: 12px;
  }
  .foot-copy .layui-input {
    font-size: 12px;
  }
  .about-info-numbox {
    padding-top: 20px;
  }
  
  .layui-layer .lay-tt{
      font-size: 16px;
  }
  .layui-layer.rfix h3 em{
      font-size: 18px;
  }
  .layui-layer .layer-tel dl dd{
      font-size: 12px;
  }
}
