@import url(https://fonts.googleapis.com/css?family=Raleway);
/* line 2, ../sass/inc/_base.scss */
body {
  background-color: #fff;
  font-family: Raleway, sans-serif;
  margin: 0;
  padding: 0;
}

/* line 8, ../sass/inc/_base.scss */
* {
  box-sizing: border-box;
}

/* line 9, ../sass/inc/_base.scss */
a {
  color: #666666;
  font-size: 14px;
  letter-spacing: 0.125em;
  text-decoration: none;
  /*text-transform: uppercase;*/
}

/* line 16, ../sass/inc/_base.scss */
h1 {
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  /*font-size: 2.5rem;*/
}

/* line 22, ../sass/inc/_base.scss */
.pre {
  display: inline-block;
  padding: 20px;
  background: #f1f1f1;
  box-shadow: 3px 3px 0 1px rgba(0, 0, 0, 0.1);
  width: 100%;
}

@-webkit-keyframes ball-scale-multiple {
  0% {
    transform: scale(0) rotate(-90deg);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2) rotate(90deg);
    opacity: 0;
  }
}
@keyframes ball-scale-multiple {
  0% {
    transform: scale(0) rotate(-90deg);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2) rotate(90deg);
    opacity: 0;
  }
}
/* line 1, ../sass/inc/_loader.scss */
.loaderWrap {
  position: absolute;
  height: 520px;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 999;
  /*z-index: 123333333;*/
}

/* line 10, ../sass/inc/_loader.scss */
.ball-scale-multiple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
}
.video{
	width: 100%;height: 100%;object-fit: cover
}
/* line 15, ../sass/inc/_loader.scss */
.ball-scale-multiple > div {
  background-color: #fff;
  border-radius: 0;
  animation-fill-mode: both;
  position: absolute;
  left: -60px;
  top: -60px;
  opacity: 0;
  margin: 0;
  width: 120px;
  height: 120px;
  animation: ball-scale-multiple 1s 0s linear infinite;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}
/* line 28, ../sass/inc/_loader.scss */
.ball-scale-multiple > div:nth-child(1) {
  animation-delay: -1s;
}
/* line 31, ../sass/inc/_loader.scss */
.ball-scale-multiple > div:nth-child(2) {
  animation-delay: -0.8s;
}
/* line 34, ../sass/inc/_loader.scss */
.ball-scale-multiple > div:nth-child(3) {
  animation-delay: -0.6s;
}
/* line 37, ../sass/inc/_loader.scss */
.ball-scale-multiple > div:nth-child(4) {
  animation-delay: -0.4s;
}
/* line 40, ../sass/inc/_loader.scss */
.ball-scale-multiple > div:nth-child(5) {
  animation-delay: -0.2s;
}

/* line 7, ../sass/style.scss */
.a-container {
  width: 1170px;
  margin: 20px auto;
}

/* line 12, ../sass/style.scss */
.a-1_2 {
  width: 48%;
  display: inline-block;
  margin: 0 1%;
}

/* line 17, ../sass/style.scss */
/*.o-sliderContainer {*/
/*  overflow: hidden;*/
/*  position: relative;*/
/*  width: 100%;*/
/*  min-height: 520px;*/
/*  background: #fff;*/
/*  float: left;*/
/*  margin: 30px 0;*/
/*  height: auto;*/
/*}*/
/*!* line 27, ../sass/style.scss *!*/
/*.o-sliderContainer.hasShadow {*/
/*  box-shadow: 0 39px 22px -29px rgba(0, 0, 0, 0.2);*/
/*}*/
/*!* line 31, ../sass/style.scss *!*/
/*.o-sliderContainer:hover .o-slider-next {*/
/*  right: 0;*/
/*}*/
/*!* line 34, ../sass/style.scss *!*/
/*.o-sliderContainer:hover .o-slider-prev {*/
/*  left: 0;*/
/*}*/

/* line 39, ../sass/style.scss */
.o-slider--item {
  height: auto;
  width: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  float: left;
  transition: all 0.2s cubic-bezier(0.7, 0.18, 0.53, 0.75);
  opacity: 0.6;
  transform: scale(0.95, 0.95);
  transform-origin: center center;
  z-index: 99;
}
/* line 52, ../sass/style.scss */
.o-slider--item::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  background: -moz-linear-gradient(45deg, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(0, 0, 0, 0.6)), color-stop(70%, transparent));
  background: -webkit-linear-gradient(45deg, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
  background: -o-linear-gradient(45deg, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
  background: -ms-linear-gradient(45deg, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
  z-index: 0;
}
/* line 65, ../sass/style.scss */
.o-slider--item.isActive {
  opacity: 1;
  transform: scale(1, 1);
}
/* line 69, ../sass/style.scss */
.o-slider--item.isMoving {
  opacity: 0.6;
  transform: scale(0.95, 0.95);
  z-index: 100;
}

/* line 76, ../sass/style.scss */
.o-slider {
  width: auto;
  position: relative;
  display: none;
}
/* line 81, ../sass/style.scss */
.o-slider.isVisible {
  display: table;
  background: #000;
}
/* line 86, ../sass/style.scss */
.o-slider.isDraggable {
  cursor: move;
}

/* line 91, ../sass/style.scss */
.o-slider-textWrap {
  left: 2%;
  bottom: 45px;
  height: auto;
  position: absolute;
  text-align: left;
  padding: 0 0 20px 0;
  width: 96%;
  transition: all 0.4s;
  opacity: 1;
  overflow: visible;
  perspective: 1000px;
  z-index: 2;
}

/* line 107, ../sass/style.scss */
.isActive .o-slider-textWrap::after {
  width: 100%;
  left: 0;
}
/* line 112, ../sass/style.scss */
.isActive .o-slider-paragraph {
  opacity: 1;
  transform: perspective(0) rotateY(0) translate(0, 0);
  transform-origin: 0 0;
  transition-delay: 1s;
}
/* line 119, ../sass/style.scss */
.isActive .o-slider-title {
  opacity: 1;
  transform: perspective(0) rotateY(0) translate(0, 0);
  transform-origin: 0 0;
  transition-delay: 0.2s;
}
/* line 126, ../sass/style.scss */
.isActive .o-slider-subTitle {
  opacity: 1;
  transform: perspective(0) rotateY(0) translate(0, 0);
  transform-origin: 0 0;
  transition-delay: 0.6s;
}

/* line 155, ../sass/style.scss */
.o-slider-title {
  width: auto;
  margin: 0 0 5px 0;
  height: auto;
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  font-size: 0.4rem;
  display: inline-block;
  padding: 0;
  transition: all 0.4s;
  transform-origin: 0 0;
  transform: perspective(1000px) rotateY(120deg) translate(100px, -100px);
  opacity: 0;
  position: relative;
  z-index: 1;
}

/* line 172, ../sass/style.scss */
.o-slider-subTitle {
  width: auto;
  margin: 0 0 5px 0;
  height: auto;
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  font-size: 0.3rem;
  display: inline-block;
  padding: 0;
  transition: all 0.4s;
  transform-origin: 0 0;
  transform: perspective(1000px) rotateY(120deg) translate(100px, -100px);
  opacity: 0;
  position: relative;
  z-index: 1;
  font-size: 0.3rem;
}

/* line 190, ../sass/style.scss */
.o-slider-paragraph {
  width: auto;
  margin: 0 0 5px 0;
  height: auto;
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  font-size: 0.2rem;
  display: inline-block;
  padding: 0;
  transition: all 0.4s;
  transform-origin: 0 0;
  transform: perspective(1000px) rotateY(120deg) translate(100px, -100px);
  opacity: 0;
  position: relative;
  z-index: 1;
  font-size: 0.2rem;
  max-width: 100%;
  display: none;
}

.pc-bg-container {
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;

}
.home-market-section {
  text-align: center;
  /*background-color: #1CA045;*/
}
/*问题*/
.home-market-section .section-title {
  margin-bottom: 30px;
  font-size: 30px;
  min-width: 150px;
  text-align: left;
  color: #F8F8F8;
  display: inline-block;
  position: relative;
  border: none;
  height: 42px;
  line-height: 42px;
  padding-left: 10px;
}
.home-market-section .section-title a {
  width: 100%;
  display: block;
  position: relative;
}
.home-market-section .section-title a:before {
  position: absolute;
  content: '';
  right: -12px;
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  top: 50%;
  transform: translate(0, -50%);
  transition: .2s;
}
.home-market-section .section-title a:hover:before {
  right: -16px;
}
/*内容盒子*/
.home-market-section .section-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}
.home-market-section .section-inner .swiper-container {
  height: 364px;
  max-width: 1230px;
}
.home-market-section .section-inner .swiper-container .swiper-wrapper {
  align-items: center;
  height: 279px!important;
}
/*内容列表*/
.home-market-section .section-inner .swiper-container .swiper-wrapper .swiper-slide {
  /*height: 279px!important;*/
  background: 0 0;
  padding: 0 16px;
  box-sizing: border-box;
  text-align: center;
}
.home-market-section .section-inner .swiper-container .swiper-wrapper .swiper-slide .inner-content {
  display: block;
  float: left;
  position: relative;
  background-color: #f8f8f8;
  border: 1px solid rgba(201,164,103,.2);
  width: 95%;
  padding: 10px 10px 0;
  height: 100%;
  /*margin-right: 20px;*/
  margin-left: 8px;
  /*border-radius: 5px;*/
}
.home-market-section .section-inner .swiper-container .swiper-wrapper .swiper-slide .inner-content .time a {
  font-size:14px !important;
  letter-spacing:0.1em !important;
  normal:1px !important;
}
.home-market-section .section-inner .swiper-container .swiper-wrapper .swiper-slide .inner-content .time a:hover {
  color: #1CA045;
}
.home-market-section .section-inner .swiper-container .swiper-wrapper .swiper-slide .inner-content:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.30);
  border: 2px solid rgba(10,10,10,1.00);
  -webkit-box-shadow: 0 10px 40px rgba(0,0,0,0.30);
}
/*.home-market-section .section-inner .swiper-container .swiper-wrapper .swiper-slide img {*/
/*  height: 120px;*/
/*  width: auto;*/
/*}*/
.home-market-section .section-inner .swiper-container .swiper-wrapper .swiper-slide video {
  height: 65%;
  width: 100%;
  /*z-index: 1000;*/
}
/*.home-market-section .section-inner .swiper-container .swiper-wrapper .swiper-slide .time {*/
/*  height: 50%;*/
/*  width: auto;*/
/*}*/
.home-market-section .section-inner .swiper-container .swiper-wrapper .swiper-slide h3 {
  font-weight: normal;
  margin-top: 25px;
  font-size: 18px;
  color: #252b3a;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.home-market-section .section-inner .swiper-container .swiper-wrapper .swiper-slide p {
  margin-top: 10px;
  font-size: 14px;
  color: #a0a2a8;
  text-align: center;
  line-height: 22px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.home-market-section .section-inner .swiper-container .swiper-wrapper .swiper-slide .inner-content .time {
  font-size: 100%;
  position: absolute;
  height: 20%;
  width: 90%;
  /*bottom: 12px;*/
  /*width: calc(100% - 60px);*/
  text-align: center;
  border-top: 1px solid #e7e7e7;
  color: #666a75;
  /*padding-top: 10px;*/
  letter-spacing: .44px;
  line-height: 1%;
  /*normal: 1%;*/
}

.home-market-section .section-inner .swiper-container .swiper-wrapper .swiper-slide .inner-content .time span {
  font-size: 20px;
  color: #f8f8f8;
  letter-spacing: 0;
  line-height: 23px;
  margin-right: 3px;

}
.home-market-section .section-inner .swiper-container .swiper-wrapper .inner-content>a:last-of-type {
  margin-right: 0;
}
/*分页*/
.home-market-section .section-inner .swiper-container .swiper-pagination-bullets {
  bottom: 55px;
}
.home-market-section .section-inner .swiper-container .swiper-pagination-bullet {
  position: relative;
  margin: 0 5px;
  width: 24px;
  height: 4px;
  border-radius: 100px;
  opacity: 1;
  background: 0 0;
}
.home-market-section .section-inner .swiper-container .swiper-pagination-bullet:before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 24px!important;
  height: 4px;
  opacity: 1;
  left: 0;
  border-radius: 100px;
  background: #dfe1f1;
  vertical-align: middle;
  transition: opacity .8s, background-color .8s;
}
.home-market-section .section-inner .swiper-container .swiper-pagination-bullet-active {
  opacity: 1;
}
.home-market-section .section-inner .swiper-container .swiper-pagination-bullet-active:before {
  width: 24px!important;
  opacity: 1;
  border-radius: 100px;
  transform: scale(1.2);
  background: #1CA045;
}
/*左右箭头*/
.home-market-section .section-inner .swiper-button-prev {
  left: 0;
  /*top: 118px;*/
  margin-top: 0;
  /*background: url(/mcms/template/1/xydz/images/marketplace-home-arrow_big.svg);*/
}
.home-market-section .section-inner .swiper-button-next {
  right: 0;
  /*top: 118px;*/
  margin-top: 0;
  /*background: url(/mcms/template/1/xydz/images/marketplace-home-arrow_big.svg);*/
  /*transform: rotate(180deg);*/
}
/*.home-market-section .section-inner .swiper-button-next:hover {*/
/*  background: url(/mcms/template/1/xydz/images/marketplace-home-arrow_big_hover.svg);*/
/*}*/
/*.home-market-section .section-inner .swiper-button-prev:hover {*/
/*  background: url(/mcms/template/1/xydz/images/marketplace-home-arrow_big_hover.svg);*/
/*}*/

/*. 轮播图  */
.mySwiper {
  width: 100%;
  height: 540px;
}
.mySwiper .swiper-container {
  width: 100% !important;
  height: 100%!important;
}
.mySwiper .swiper-slide {
  width: 100% !important;
  text-align: center;
  font-size: 18px;
  /*background: #fff;*/
  background-position: center;
  background-size: cover;
  /* Center slide text vertically */
  /*display: -webkit-box;*/
  /*display: -ms-flexbox;*/
  /*display: -webkit-flex;*/
  /*display: flex;*/
  /*-webkit-box-pack: center;*/
  /*-ms-flex-pack: center;*/
  /*-webkit-justify-content: center;*/
  /*justify-content: center;*/
  /*-webkit-box-align: center;*/
  /*-ms-flex-align: center;*/
  /*-webkit-align-items: center;*/
  /*align-items: center;*/
}



/*解决计划*/
.clearfix::after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}
.clearfix {
}
/* 须要结构样式css */
.information-box {
  background-repeat: no-repeat;
  background-position: center;
  padding: 0px 0 58px;
  color: #fff;
  background-size: 100% 100%;
}
.information-con {
  width: 100%;
  margin: 0 auto;
}
.information-head {
  width: 100%;
}
.information-head h2 {
  font-weight: normal;
  line-height: 1;
  text-align: center;
  padding-top: 60px;
  font-size: 30px;
}
.information-head p {
  line-height: 1;
  padding-top: 20px;
  text-align: center;
  padding-bottom: 40px;
  font-size: 14px;
  margin-top: 20px;
}
.information-main {
  background: #fff;
}
.information-main-fl {
  width: 45%;
  overflow: hidden;
  float: left;
  height: 100%;
  position: relative;
  margin: 10px 10px;
}
.information-main-fl img{
  /*width: 100%;*/
  /*height: 100%;*/
  width: 560px;
  height: 400px;
}
.information-main-fr {
  width: 45%;
  overflow: hidden;
  float: right;
  height: 100%;
  margin: 10px 10px;
  background-color: #f8f8f8;
}
.prev {
  display: block;
  position: absolute;
  z-index: 1;
  top: 45%;
  margin-top: -30px;
  /*left: 10%;*/
  z-index: 1;
  width: 40px;
  height: 60px;
  background: url(/mcms/template/1/xydz/images/left.png)  no-repeat;
  cursor: pointer;
  /*background-color:#1CA045;*/
}
.next {
  display: block;
  position: absolute;
  /*right: auto;*/
  right: 0;
  top: 45%;
  margin-top: -30px;
  z-index: 1;
  width: 40px;
  height: 60px;
  background: url(/mcms/template/1/xydz/images/right.png)  no-repeat;
  cursor: pointer;
  /*background-color:#1CA045;*/
}
.information-main-back {
  background: #1CA045;
  filter: Alpha(opacity=70);
  /*opacity: 0.7;*/
  position: absolute;
  z-index: 1;
  height: 60px;
  bottom: 0;
  width: 100%;
}
.information-main-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 85%;
  line-height: 60px;
  padding: 0 16px;
  display: block;
  z-index: 2;
  text-align: left;
  margin-top: -20px;
  font-size: 18px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 60px;
}
.main-btn {
  padding: 10px 17px;
  margin: 11px 10px;
  border: 1px solid #7d7d7d;
  line-height: 1;
  color: #fff;
  border: 1px solid #ddd;
  float: right;
  font-size: 16px;
}

/*.bunner-btn{*/
/*  position:absolute;*/
/*  bottom:15%;*/
/*  right:10%;*/
/*  padding: 10px 17px;*/
/*  margin: 11px 10px;*/
/*  line-height: 1;*/
/*  color: #fff;*/
/*  background-color:#1CA045;*/
/*  border: 1px solid #1CA045;*/
/*  float: left;*/
/*  font-size: 17px;*/
/*  z-index: 20;*/
/*}*/
/*.bunner-btn:hover{*/
/*  color: #fff;*/
/*  font-size: 18px;*/
/*}*/
.main-btn:hover{
  color: #fff;
  font-size: 18px;
}

.information-main-fl .bd ul li {
  position: relative;
}
.information-main-fr .hd ul {
  font-size: 16px;
}
.information-main-fr .hd ul li {
  float: left;
  cursor: pointer;
  list-style: none;
  height: 60px;
  line-height: 60px;
  color: #666;
  text-align: center;
  border: 1px solid #e5e5e5;
  border-top: 0;
  width: 33%;
  border-left: 0;
}
.information-main-fr .hd ul .on {
  color: #1CA045;
  border-top: 4px solid #2bb000;
  height: 57px;
  background-color: #ffffff ;
  border-bottom: 0;
  line-height: 52px;
}
.information-main-fr .bd ul {
  color: #333;
  padding: 0 24px 0 32px;
}
.information-main-fr .bd ul li {
  height: 50px;
  font-size: 10%!important;
  border-bottom: 1px solid #e5e5e5;
  line-height: 50px;
  text-align: left;
  list-style-type: disc;
}
.information-main-fr .bd ul li span {
  float: right;
}
.information-main-fr .bd ul li a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  /*max-width: 350px;*/
  width: 70%;
  float: left;
}
.information-main-fr .bd ul li a:hover {
  color: #1CA045;
}
.information-more {
  cursor: pointer;
  color: #2bb000;
  text-align: center;
  line-height: 34px;
  /*margin-top: 12px;*/
  /*font-size: 14px;*/
}
.information-more a {
  cursor: pointer;
  color: #2bb000;
  text-align: center;
  line-height: 34px;
  margin-top: 12px;
}
.information-more a:hover {
  color: #1CA045;
}
/* Styles */
/*侧边浮窗*/
#reset{
  display:none;
  background:#eee;
  width:500px;
  height:450px;
  position:absolute;
  /*left:30%;*/
  /*top:35%;*/
  /*opacity:1;*/
  z-index: 100;

  left: -500px;
  top: -150px;
  opacity: 1;
  border-radius:10px;
}
#reset #talk{
  width: 100%;
  height: 40px;
  background: #1CA045;
  text-align: center;
  line-height: 35px;
  font-size: 19px;
  color: #fff;
  font-weight: 700;
  border-radius:10px;
}
#talk #close{
  position:absolute;
  right: 5px;
  top: 0;
  font-size:20px;
  width:20px;
  height:20px;
  color: #999;
  cursor:pointer;
}
#reset .group{
  margin: 5px 20px;
}
#reset .group label{
  color: #666;
  font-size: 14px;
}

#box{
  margin: 0 auto;
  width: 1000px;
  height: auto;
  background-repeat: no-repeat;
  background-position: top center;
  border-radius: 10px;
}
#box #btn{
  display: block;
  width: 150px;
  text-align: center;
  text-decoration: none;
  color: #4c4c4c;
  font-size: 20px;
  background: #fff;
  border-radius: 5px;
  padding: 5px;
  margin:10px ;
  cursor: pointer;
}

.xn_m_6_head{width: 100%;height: 20px;background: -webkit-gradient(linear, 0 0, 0 100%, from(#000), to(#333));color:#fff;display: none;}
.xn_m_6_wrap{position:fixed;height:auto;width: 60px;z-index: 10001;top: 70% !important;}
.xn_m_6_cent>div{margin-bottom: 2px;}
#xn_m_6_orderBox_6{margin-bottom:0;}
.xn_m_6_mbox img{width: 20px;clear:both;}
.xn_m_6_mbox ul li{
  width: 60px;
  /*text-align: left;*/
}
.xn_m_6_tel_box img{width: 20px}
.xn_m_6_head .close{cursor:pointer;text-align: left;padding-left:10px;}
.xn_m_6_mbox ul{width: 45px;height: 45px;}
.xn_m_6_markrt_code img
{ width: 180px;
  height: 200px;
  position: absolute;
  left: -185px;
  top: 10px;
  /*opacity: 0;*/
  display: none;
  filter: alpha(opacity=0);
  transition: 0.5s all;

}
.xn_m_6_markrt_code:active img{opacity: 10;filter: alpha(opacity=100);}
.xn_m_6_qq_li a,.xn_m_6_sky_li a,.xn_m_6_markrt_mail_ul .xn_m_6_mail_box a{display: block;width: 100%;height: 60px;color: #fff;}
.xn_m_6_tel_ul,.xn_m_6_markrt_mail_ul{width: 60px;height: 60px;border-radius: 5px;cursor: pointer;position:relative;}
.xn_m_6_tel_ul:hover .xn_m_6_tel_tel,.xn_m_6_markrt_mail_ul:hover .xn_m_6_mail_box{left:-200px;}
.xn_m_6_tel_tel,.xn_m_6_mail_box
{position:absolute;
  left:60px;
  width:200px;
  background-color:#1CA045;
  border-radius:8px;
  text-indent:20px;
  transition:0.3s all;
  z-index:-1;
}
.xn_m_6_tel_li,.xn_m_6_markrt_mail_li{width: 110px;padding-left: 45px;overflow: hidden;height: 44px;line-height: 44px;font-size: 16px;color: #fff;text-align: center;}
.xn_m_6_tel_li img,.xn_m_6_markrt_mail_li .xn_m_6_mailwz{display: none;}
.xn_m_6_small_but { width:20px; height:50px; background:#000; position:absolute; top:50%; margin-top:-25px; right:0px; cursor:pointer; color:#fff; font-size:12px; display:none; text-align:center; line-height:24px; }
/*.xn_m_6_foot{background-size: 45px !important;background-size: 45px;width: 100%;height: 60px;background: url(https://1.rc.xiniu.com/rc/Marketings/38612/images/index_m4.png?d=20180619102643478) no-repeat center;}*/
.xn_m_6_foot{background-size: 45px !important;background-size: 45px;width: 100%;height: 60px;}

.xn_m_6_orderId, .xn_m_6_xlwb, .xn_m_6_markrt_ali, .xn_m_6_markrt_sky, .xn_m_6_mbox h4, .xn_m_6_qq_li span, .xn_m_6_sky_li span{display: none !important;}
/*.xn_m_6_markrt_code {background-size: 45px !important;background: url(https://1.rc.xiniu.com/rc/Marketings/38612/images/index_m3.png?d=20180619102643478) no-repeat center;}*/
.xn_m_6_markrt_code {background-size: 45px !important;;}

/*.xn_m_6_markrt_qq {background-size: 45px !important;background: url(https://1.rc.xiniu.com/rc/Marketings/38612/images/index_m1.png?d=20180619102643478) no-repeat center;}*/
.xn_m_6_markrt_qq {background-size: 45px !important;}

/*.xn_m_6_telephone {background-size: 45px !important;background: url(https://1.rc.xiniu.com/rc/Marketings/38612/images/index_call.png?d=20180619102643478) no-repeat center;}*/
.xn_m_6_telephone {background-size: 45px !important;}
.xn_m_6_lyb {background-size: 45px !important; height: 40px;}

.xn_m_6_markrt_mail {display:block !important;background: url(https://0.rc.xiniu.com/g2/M00/2F/61/CgAGe1n6dB-AJUJSAABFc_c-hLk301.png?d=20180619102643478) no-repeat center;position: relative;}
#xn_m_6_orderBox_8,.xn_m_6_markrt_mail_ul{display: none !important;}
/*shipin左右箭头*/
.home-market-section .section-inner .swiper-button-prev {
  left: -3% !important;
}
.home-market-section .section-inner .swiper-button-next {
  right: -3%!important;
}
/* 底部*/
.foot .foot_1{
  width: 30%;
}
.foot .foot_2{
  width: 30%;
}
.foot .foot_3{
  width: 30%;
  float: left;
}
.foot .foot_nav {
  padding-right: 10px!important;
}
.foot_conWay p{
  font-size: 10px !important;
  color:#f0f0f0 !important;
}
.foot_conWay {
  width: 45%!important;
  max-width: 45%;
  left:200px;
  font-size: 10px !important;
  margin-right: -1rem !important;
  color:#f0f0f0 !important;
}
.left_code{
  color: #f0f0f0 !important;
  width: 20%!important;
  max-width: 20%;
  left:1px;
  font-size: 10px !important;
  text-align:center;
}
.right_code{
  color: #f0f0f0 !important;
  width: 20%!important;
  max-width: 20%;
  left:100px;
  font-size: 10px !important;
  text-align:center;
}
.el-button--primary {
  color: #FFF;
  background-color: #1CA045 !important;
  border-color: #1CA045 !important;
}
/* 新闻*/
.indNews_ImgShow {
  float: left !important;
}
.indNews_TxtList {
  float: right !important;
  width: calc(100% - 560px);
  box-sizing: border-box;
  padding-left: 15px;
}
.indNews_TxtList .indNews_Txt_one {
  width: 50% !important;
  cursor: pointer;
}
/* phone 手机 */
@media screen and (max-width: 480px) {
  /*. 轮播图  */
  .mySwiper {
    width: 100%;
    height: 200px !important;
  }
  /* line 211, ../sass/style.scss */
  .o-slider-textWrap {
    left: 5%;
    width: 70%;
  }

  /* line 216, ../sass/style.scss */
  .o-slider-title {
    font-size: 0.2rem;
  }

  /* line 220, ../sass/style.scss */
  .o-slider-subTitle {
    font-size: 0.1rem;
  }

  /* line 224, ../sass/style.scss */
  .o-slider-paragraph {
    max-width: 70%;
    font-size: 0.05rem;
    display: block;
  }
  /*解决计划*/
  .information-main-fl {
   display: none;
  }
  .information-main-fr {
    width: 95% !important;
  }

  .class-2
  {
    max-width:100%!important;
  }
  #c_picture{
    display: none;
  }
}
/* pad 平板*/
@media screen and (min-width: 768px)
and (max-device-width : 1024px) {
  /* line 211, ../sass/style.scss */
  .o-slider-textWrap {
    left: 5%;
    width: 90%;
  }

  /* line 216, ../sass/style.scss */
  .o-slider-title {
    font-size: 0.3rem;
  }

  /* line 220, ../sass/style.scss */
  .o-slider-subTitle {
    font-size: 0.2rem;
  }

  /* line 224, ../sass/style.scss */
  .o-slider-paragraph {
    max-width: 60%;
    font-size: 0.1rem;
    display: block;
  }
  /*解决计划*/
  .information-more {
    margin-top: 12px;
    font-size: 14px;
  }

}
/*桌面模式*/
@media screen and (min-width: 1024px) {
  /*解决计划*/
  .information-more {
    margin-top: 12px;
    font-size: 14px;
  }
  /* line 232, ../sass/style.scss */
  .o-slider-pagination {
    bottom: 6%;
  }

  /* line 234, ../sass/style.scss */
  .o-slider-textWrap {
    left: 70px;
    width: 80%;
    bottom: 50px;
  }

  /* line 240, ../sass/style.scss */
  .o-slider-title {
    font-size: 0.4rem;
  }

  /* line 244, ../sass/style.scss */
  .o-slider-subTitle {
    font-size: 0.3rem;
  }

  /* line 248, ../sass/style.scss */
  .o-slider-paragraph {
    max-width: 40%;
    font-size: 0.2rem;
  }
}
/* line 299, ../sass/style.scss */
.a-divider {
  display: block;
  width: 100%;
  height: 1px;
  margin: 2px 0;
}

/* line 306, ../sass/style.scss */
.o-slider-controls {
  display: none;
}
/* line 309, ../sass/style.scss */
.o-slider-controls.isVisible {
  display: block;
}

/* line 314, ../sass/style.scss */
.o-slider-pagination {
  bottom: 2%;
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 1000;
  /*z-index: 1444000;*/
  margin: 0;
  padding: 0;
}
/* line 324, ../sass/style.scss */
.o-slider-pagination > li {
  /* border-radius: 50%; */
	border-radius:10px;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9), 0 0 2px 0 rgba(0, 0, 0, 0.4) inset;
  display: inline-block;
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 30px;
  margin-left: 6px;
  margin-right: 6px;
  transition: all 250ms;
  cursor: pointer;
  background-clip: padding-box;
  z-index: 100;
}
/* line 340, ../sass/style.scss */
.isActive {
  background-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.3, 1.3);
}

/* line 347, ../sass/style.scss */
.o-slider--preview {
  position: absolute;
  top: -70px;
  right: auto;
  bottom: auto;
  left: -65px;
  opacity: 0;
  width: 140px;
  height: 60px;
  background-size: cover;
  background-position: center center;
  transition: all 250ms;
  z-index: -1;
  border: 3px solid #000;
  transform: scale(0.2, 0.2);
  transform-origin: center bottom;
  display: none;
}
/* line 362, ../sass/style.scss */
.o-slider--preview::before {
  content: "";
  position: absolute;
  top: auto;
  right: auto;
  bottom: -13px;
  left: 50%;
  margin: 0 0 0 -5px;
  height: 0;
  width: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #000;
}

/* line 374, ../sass/style.scss */
.o-slider--preview.isActive,
.o-slider-pagination li:hover .o-slider--preview {
  opacity: 1;
  position: absolute;
  top: -76px;
  right: auto;
  bottom: auto;
  left: -65px;
  transform: scale(1, 1);
}

@media screen and (min-width: 768px) {
  /* line 384, ../sass/style.scss */
  .o-slider--preview {
    display: block;
  }
}
/* line 389, ../sass/style.scss */
.o-slider-arrows {
  margin: 0;
  list-style: none;
  display: block;
}

/* line 395, ../sass/style.scss */
.o-slider-next,
.o-slider-prev {
  position: absolute;
  top: 0;
  left: -100px;
  margin: -12px 0 0;
  width: auto;
  z-index: 999;
  /*z-index: 1200122;*/
  padding: 0;
  margin: 0;
  height: 100%;
  list-style: none;
  cursor: pointer;
  text-align: center;
  padding: 10px 25px;
  background: rgba(0, 0, 0, 0.4);
  display: inline-block;
  vertical-align: middle;
  line-height: 100%;
  transition: all 0.4s;
}
/* line 416, ../sass/style.scss */
.o-slider-next i,
.o-slider-prev i {
  position: absolute;
  top: 50%;
  left: 0;
  margin: -12px 0 0;
  text-align: center;
  width: 100%;
  font-size: 0.4rem;
  color: #fff;
}

/* line 428, ../sass/style.scss */
.o-slider-next {
  left: auto;
  right: -100px;
}

/* line 433, ../sass/style.scss */
.isDisabled {
  opacity: 0.1;
  cursor: auto;
}

@media screen and (max-width: 1280px) {
  /* line 439, ../sass/style.scss */
  .a-container {
    width: 970px;
  }
}
@media screen and (max-width: 1024px) {
  /* line 445, ../sass/style.scss */
  /*.o-slider-arrows {*/
  /*  display: none;*/
  /*}*/

  /*!* line 449, ../sass/style.scss *!*/
  /*.o-sliderContainer {*/
  /*  height: 450px;*/
  /*  min-height: 450px !important;*/
  /*  width: 100%;*/
  /*  margin: 0 0 50px 0;*/
  /*}*/

  /*!* line 455, ../sass/style.scss *!*/
  /*.o-slider--item {*/
  /*  height: 450px;*/
  /*}*/
}
@media screen and (max-width: 768px) {
  /* line 461, ../sass/style.scss */
  .a-container {
    width: 90%;
    margin: 20px auto;
  }

  /* line 466, ../sass/style.scss */
  .a-1_2 {
    width: 100%;
    display: block;
    margin: 0;
  }

  /*!* line 472, ../sass/style.scss *!*/
  /*.o-slider-arrows {*/
  /*  display: none;*/
  /*}*/

  /*!* line 476, ../sass/style.scss *!*/
  /*.o-sliderContainer {*/
  /*  height: 350px;*/
  /*  min-height: 350px!important;*/
  /*}*/

  /*!* line 480, ../sass/style.scss *!*/
  /*.o-slider--item {*/
  /*  height: 350px;*/
  /*}*/

  /*!* line 484, ../sass/style.scss *!*/
  /*.o-slider-panel img {*/
  /*  left: -15%;*/
  /*  width: 130%;*/
  /*}*/
}
@media screen and (max-width: 480px) {
  /*!* line 491, ../sass/style.scss *!*/
  /*.o-slider--item {*/
  /*  height: 270px;*/
  /*}*/
  /*!* line 494, ../sass/style.scss *!*/
  /*.o-slider--item img {*/
  /*  left: -20%;*/
  /*  width: 140%;*/
  /*}*/

  /*!* line 500, ../sass/style.scss *!*/
  /*.o-sliderContainer {*/
  /*  height: 270px;*/
  /*  min-height: 200px !important;*/
  /*}*/
}
/* line 505, ../sass/style.scss */
.slider-pagination > li:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.3, 1.3);
}

/* Smartphones (portrait and landscape) ----------- */
/*手机 横竖屏都可*/
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
  /*. 轮播图  */
  .mySwiper {
    width: 100%;
    height: 200px !important;
  }
  .head_logo_1{
    display: none !important;
  }
  /* Styles */
  /*浮窗隐藏*/
  .xn_m_6_wrap{
    display:none;
  }
  .foot_conWay p{
    font-size: 9px !important;
    color:#f0f0f0 !important;
  }
  .foot_conWay {
    width: 40%!important;
    max-width: 45%;
    float: right;
    font-size: 9px !important;
    margin-right: 0.001rem !important;
    color:#f0f0f0 !important;
  }
   .left_code{
     width: 20%!important;
    max-width: 20%;
    left:0px;
    font-size: 9px !important;
    text-align:center;
     margin: 4px;
  }
   .right_code{
     width: 20%!important;
    max-width: 20%;
    left:100px;
    font-size: 9px !important;
    text-align:center;
     margin: 4px;
  }
  .foot .foot_3{
    width: 100%;
    float: left;
  }
  .el-button--primary {
    color: #FFF;
    background-color: #1CA045 !important;
    border-color: #1CA045 !important;
  }

}

/* Smartphones (landscape) ----------- */
/*手机宽屏*/
@media only screen
and (min-width : 321px) {
  /* Styles */


}

/* Smartphones (portrait) ----------- */
/*手机竖屏*/
@media only screen
and (max-width : 320px) {
  /* Styles */

}

/* iPads (portrait and landscape) ----------- */
/*平板横竖都行*/
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px) {
  /* Styles */
  /*浮窗隐藏*/
  .xn_m_6_wrap{
    display:none;
  }
  /* 相助同伴*/
  .swiper-partner{
    float: left;
    position: relative;
    width: 95%;
    padding: 10px 10px 0;
    height: 100%;
    /* margin-right: 20px; */
    margin-left: 8px;
  }
  .swiper-partner a img{
    margin: 36px 36px;
    vertical-align: baseline !important;
  }
  /* 底部*/
  .foot .foot_1{
    width: 30%!important;
  }
  .foot .foot_2{
    width: 30%!important;
  }
  .foot .foot_3{
    width: 30%!important;
    float: left;
  }
  .foot .foot_nav {
    padding-right: 10px!important;
  }
  .foot_conWay p{
    font-size: 10px !important;
    color:#f0f0f0 !important;
  }
  .foot_conWay {
    width: 45%!important;
    max-width: 45%;
    left:200px;
    font-size: 10px !important;
    margin-right: 1rem !important;
    color:#f0f0f0 !important;
  }
  .left_code{
    width: 20%!important;
    max-width: 20%;
    left:1px;
    font-size: 10px !important;
    text-align:center;

  }
  .right_code{
    width: 20%!important;
    max-width: 20%;
    left:100px;
    font-size: 10px !important;
    text-align:center;
  }
}

/* iPads (landscape) ----------- */
/*平板宽屏模式*/
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {
  /*. 轮播图  */
  .mySwiper {
    width: 100%;
    height: 400px !important;
  }
  /* Styles */
  /*.o-slider-textWrap {*/
  /*  left: 5% !important;*/
  /*  width: 90% !important;*/

  /*}*/
  /*.o-slider-title{*/
  /*  font-size:12px !important;*/
  /*}*/
  /*.o-slider-subTitle{*/
  /*  font-size:12px !important;*/
  /*}*/
  .head .head_logo_1 .head_logo_2{
    font-size:20px !important;
  }

  /* Styles */
  /* Styles */
  /*浮窗隐藏*/
  .xn_m_6_wrap{
    display:none !important;
  }
  /*解决计划*/
  .information-main-fl {
    display: none !important;
  }
  .information-main-fr {
    width: 95% !important;
  }
  /* 相助同伴*/
  .swiper-partner{
    float: left;
    position: relative;
    width: 95%;
    padding: 10px 10px 0;
    height: 100%;
    /* margin-right: 20px; */
    margin-left: 8px;
  }
  .swiper-partner a img{
    margin: 36px 36px;
    vertical-align: baseline !important;
  }
  /* 底部*/
  .foot .foot_2{
    display:none !important;
  }
  /*.foot .foot_2{*/
  /*  width: 40%!important;*/
  /*}*/
  .foot .foot_3{
    width: 95%!important;
    float: right;
  }
  .foot .foot_nav {
    padding-right: 10px!important;
  }
  .foot_conWay p{
    font-size: 10px !important;
    color:#f0f0f0 !important;
  }
  .foot_conWay {
    display:block !important;
    float: right !important;
    width: 40%!important;
    max-width: 40%;
    left:200px;
    font-size: 10px !important;
    /*margin-right: 1rem !important;*/
    color:#f0f0f0 !important;
  }
  .left_code{
    width: 20%!important;
    max-width: 20%;
    left:1px;
    font-size: 10px !important;
    text-align:center;

  }
  .right_code{
    width: 20%!important;
    max-width: 20%;
    left:100px;
    font-size: 10px !important;
    text-align:center;
  }
  .new_title {
    font-size: 16px !important;
  }
  /*.code-img{*/
  /*  margin-left: 120px !important;*/
  /*}*/
  /*.el-form-item__content{*/
  /*  margin-left: 60px !important;*/
  /*}*/
}

/* iPads (portrait) ----------- */
/*平板竖屏*/
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {
  /*. 轮播图  */
  .mySwiper {
    width: 100%;
    height: 400px !important;
  }
  /* Styles */
  /*.o-slider-textWrap {*/
  /*  left: 5% !important;*/
  /*  width: 90% !important;*/

  /*}*/
  /*.o-slider-title{*/
  /*  font-size:12px !important;*/
  /*}*/
  /*.o-slider-subTitle{*/
  /*  font-size:12px !important;*/
  /*}*/
  .head .head_logo_1 .head_logo_2{
    font-size:20px !important;
  }

  /* Styles */
  /* Styles */
  /*浮窗隐藏*/
  .xn_m_6_wrap{
    display:none !important;
  }
  /*解决计划*/
  .information-main-fl {
    display: none !important;
  }
  .information-main-fr {
    width: 95% !important;
  }
  /* 相助同伴*/
  .swiper-partner{
    float: left;
    position: relative;
    width: 95%;
    padding: 10px 10px 0;
    height: 100%;
    /* margin-right: 20px; */
    margin-left: 8px;
  }
  .swiper-partner a img{
    margin: 36px 36px;
    vertical-align: baseline !important;
  }
  /* 底部*/
  .foot .foot_2{
    display:none !important;
  }
  /*.foot .foot_2{*/
  /*  width: 40%!important;*/
  /*}*/
  .foot .foot_3{
    width: 95%!important;
    float: right;
  }
  .foot .foot_nav {
    padding-right: 10px!important;
  }
  .foot_conWay p{
    font-size: 10px !important;
    color:#f0f0f0 !important;
  }
  .foot_conWay {
    display:block !important;
    float: right !important;
    width: 40%!important;
    max-width: 40%;
    left:200px;
    font-size: 10px !important;
    /*margin-right: 1rem !important;*/
    color:#f0f0f0 !important;
  }
  .left_code{
    width: 20%!important;
    max-width: 20%;
    left:1px;
    font-size: 10px !important;
    text-align:center;

  }
  .right_code{
    width: 20%!important;
    max-width: 20%;
    left:100px;
    font-size: 10px !important;
    text-align:center;
  }
  .new_title {
    font-size: 16px !important;
  }
  /*.code-img{*/
  /*  margin-left: 120px !important;*/
  /*}*/
  /*.el-form-item__content{*/
  /*  margin-left: 60px !important;*/
  /*}*/
}

/* Desktops and laptops ----------- */



@media only screen
and (min-width : 1024px) {
  /*hezuohuoban*/

  .swiper-partner{
    float: left;
    position: relative;
    width: 95%;
    padding: 10px 10px 0;
    height: 100%;
    /* margin-right: 20px; */
    margin-left: 8px;
}
  .swiper-partner a img{
    /*margin: 36px 36px;*/
    vertical-align: baseline !important;
    width: 90%;
    height: 100%;
    object-fit: cover;
  }
.el-form-item__label{
  font-size:12px !important;
  color:#eee !important;
}


}
/* 三星手机折叠屏 ----------- */
/* iPads (landscape) ----------- */
/*平板宽屏模式*/
@media only screen
and (min-device-width : 430px)
and (max-device-width : 780px)
and (orientation : landscape) {
  /*.o-slider-textWrap {*/
  /*  left: 5% !important;*/
  /*  width: 90% !important;*/

  /*}*/
  /*.o-slider-title{*/
  /*  font-size:12px !important;*/
  /*}*/
  /*.o-slider-subTitle{*/
  /*  font-size:12px !important;*/
  /*}*/

  .head .head_logo_1 .head_logo_2{
    font-size:20px !important;
  }
  /* Styles */
  /* Styles */
  /*浮窗隐藏*/
  .xn_m_6_wrap{
    display:none !important;
  }
  /*解决计划*/
  .information-main-fl {
    display: none !important;
  }
  .information-main-fr {
    width: 95% !important;
  }
  /* 相助同伴*/
  .swiper-partner{
    float: left;
    position: relative;
    width: 95%;
    padding: 10px 10px 0;
    height: 100%;
    /* margin-right: 20px; */
    margin-left: 8px;
  }
  .swiper-partner a img{
    margin: 36px 36px;
    vertical-align: baseline !important;
  }
  /* 底部*/
  .foot .foot_2{
    display:none !important;
  }
  /*.foot .foot_2{*/
  /*  width: 40%!important;*/
  /*}*/
  .foot .foot_3{
    width: 40%!important;
    float: right;
  }
  .foot .foot_nav {
    padding-right: 10px!important;
  }
  .foot_conWay p{
    font-size: 10px !important;
    color:#f0f0f0 !important;
  }
  .foot_conWay {
    display:block !important;
    float: right !important;
    width: 45%!important;
    max-width: 45%;
    left:200px;
    font-size: 10px !important;
    /*margin-right: 1rem !important;*/
    color:#f0f0f0 !important;
  }
  .left_code{
    width: 20%!important;
    max-width: 20%;
    left:1px;
    font-size: 10px !important;
    text-align:center;

  }
  .right_code{
    width: 20%!important;
    max-width: 20%;
    left:100px;
    font-size: 10px !important;
    text-align:center;
  }
  .new_title {
    font-size: 16px !important;
  }
  /*.code-img{*/
  /*  margin-left: 120px  !important;*/
  /*}*/
  /*.el-form-item__content{*/
  /*  margin-left: 60px !important;*/
  /*}*/

}

/* iPads (portrait) ----------- */
/*平板竖屏*/
@media only screen
and (min-device-width : 430px)
and (max-device-width : 780px)
and (orientation : portrait) {
  /*.o-slider-textWrap {*/
  /*  left: 5% !important;*/
  /*  width: 90% !important;*/

  /*}*/
  /*.o-slider-title{*/
  /*  font-size:12px !important;*/
  /*}*/
  /*.o-slider-subTitle{*/
  /*  font-size:12px !important;*/
  /*}*/
  .head .head_logo_1 .head_logo_2{
    font-size:20px !important;
  }

  /* Styles */
  /* Styles */
  /*浮窗隐藏*/
  .xn_m_6_wrap{
    display:none !important;
  }
  /*解决计划*/
  .information-main-fl {
    display: none !important;
  }
  .information-main-fr {
    width: 95% !important;
  }
  /* 相助同伴*/
  .swiper-partner{
    float: left;
    position: relative;
    width: 95%;
    padding: 10px 10px 0;
    height: 100%;
    /* margin-right: 20px; */
    margin-left: 8px;
  }
  .swiper-partner a img{
    margin: 36px 36px;
    vertical-align: baseline !important;
  }
  /* 底部*/
  .foot .foot_2{
    display:none !important;
  }
  /*.foot .foot_2{*/
  /*  width: 40%!important;*/
  /*}*/
  .foot .foot_3{
    width: 95%!important;
    float: right;
  }
  .foot .foot_nav {
    padding-right: 10px!important;
  }
  .foot_conWay p{
    font-size: 10px !important;
    color:#f0f0f0 !important;
  }
  .foot_conWay {
    display:block !important;
    float: right !important;
    width: 40%!important;
    max-width: 40%;
    left:200px;
    font-size: 10px !important;
    /*margin-right: 1rem !important;*/
    color:#f0f0f0 !important;
  }
  .left_code{
    width: 20%!important;
    max-width: 20%;
    left:1px;
    font-size: 10px !important;
    text-align:center;

  }
  .right_code{
    width: 20%!important;
    max-width: 20%;
    left:100px;
    font-size: 10px !important;
    text-align:center;
  }
  .new_title {
    font-size: 16px !important;
  }
  /*.code-img{*/
  /*  margin-left: 120px !important;*/
  /*}*/
  /*.el-form-item__content{*/
  /*  margin-left: 60px !important;*/
  /*}*/

}
@media only screen
and (max-width  : 983px)
and (min-width: 658px) {
  .mySwiper {
    width: 100%;
    height: 340px!important;
  }
  .head_logo_1{
    display: none !important;
  }
  /* Styles */
  /*浮窗隐藏*/
  .xn_m_6_wrap{
    display:none;
  }
  .foot_conWay p{
    font-size: 9px !important;
    color:#f0f0f0 !important;
  }
  .foot_conWay {
    width: 40%!important;
    max-width: 45%;
    float: right;
    font-size: 9px !important;
    margin-right: 0.001rem !important;
    color:#f0f0f0 !important;
  }
  .left_code{
    width: 20%!important;
    max-width: 20%;
    left:0px;
    font-size: 9px !important;
    text-align:center;
    margin: 4px;
  }
  .right_code{
    width: 20%!important;
    max-width: 20%;
    left:100px;
    font-size: 9px !important;
    text-align:center;
    margin: 4px;
  }
  .foot .foot_3{
    width: 50% !important;
    float: left;
  }
  .foot .foot_2{
    display: none !important;
  }
  .el-button--primary {
    color: #FFF;
    background-color: #1CA045 !important;
    border-color: #1CA045 !important;
  }
  .isect3 .new_list_2 {
    display: none;
  }

  .isect3 .left {width: 50% !important;;
    margin-bottom: 5px;}

  .isect3 .right {width: 50% !important;
    margin-bottom: 5px;}
}
@media only screen
and (max-width  : 658px)
 {
  .mySwiper {
    height: 200px !important;
  }
}


/*
产品详情 图片展示

*/
.thumbnail { /*customize bootstrap*/
  padding: 1px;
  border-radius: 0;
  object-fit: cover;
  width:100%;
  height:100%;
  margin-bottom: 15px;
}

.infoboxwhite {
  background-color: #fff;
  color:#000;
}
.image-link img.gi {
  padding-bottom: 15px;
}
.infobox {
  background-color: #011b4a;
  color:white;
  margin-bottom:20px;
}

.infobox .infoboxtitle, .infobox .infoboxbutton {
  background: #57a639; /* Old browsers */
  background: -moz-linear-gradient(left, #57a639 33%, #011b4a 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #57a639 33%,#011b4a 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #57a639 33%,#011b4a 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#57a639', endColorstr='#011b4a',GradientType=1 ); /* IE6-9 */
}

.infobox .externalbutton {
  background: #011b4a;
  border:solid 1px #fff;
}

.infobox .externalbutton:hover {
  background: #fff;
}

.infobox .infoboxtitle span {
  font-size: 125%;
  padding-left:10px;
  line-height: 35px;
}

.infobox .infoboxcontent {
  padding:5px 30px 5px 30px;
}

.infobox .infoboxcontent a {
  color:white;
}

.infobox .infoboxcontent a:hover > .infoboxbutton span {
  text-decoration: underline;
}

.infobox .infoboxcontent h1 {
  color: #57a639;
  font-size:20px;
  font-weight: bold;
  margin: 0 0 0px;
}

.infobox .infoboxcontent h2 {
  color: #000;
  font-size:20px;
  font-weight: bold;
  margin: 0 0 0px;
}

.infobox .infoboxcontent h3 {
  color: #000;
  font-size:18px;
  font-weight: bold;
  margin: 0 0 0px;
}

.infobox .infoboxcontent h4 {
  color: #000;
  font-size:15px;
  font-weight: bold;
  margin: 0 0 0px;
}

.infobox .infoboxwhite a {
  color:black;
  text-decoration: underline;
  line-height: 26px;
}

.infobox .infoboxwhite a:hover {
  color: #57a639;
}

.infobox .infoboxbutton {
  float: right;
  height: 30px;
  margin-bottom: 15px;
  position: relative;
  width: 120px;
}

.infobox .infoboxbutton a.external:hover {
  color: #011b4a;
}

.infobox .infoboxbutton a {
  display: block;
  height: 100%;
  padding-top: 4px;
  text-align: center;
  width: 100%;
}

.infobox .infoboxbutton a:hover {
  text-decoration: underline;
}

.infobox ul {
  list-style-type: disc;
  padding-bottom:15px;
}

.infobox ul li {
  color: #57a639;
  padding-left: 10px;
  padding-bottom: 10px;
}

.infobox ul li > span {
  color:white;
  line-height: 26px;
}
