@charset "utf-8";
/* CSS Document */

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
.product-detail-link {
  margin-top: 145px;
}
body {
  font-size: 16px;
  color: #666;
  background: #fff;
  font-family: 'Noto Sans SC', 'Microsoft YaHei', Arial, sans-serif;
  overflow-x: hidden;
}

ul, li, ol, dl, dt, dd, p, h1, h2, h3, h4, h5, h6 {
  list-style: none;
  padding: 0;
  margin: 0;
}

input, textarea {
  outline: none;
  font-family: 'Noto Sans SC', 'Microsoft YaHei', Arial, sans-serif;
  font-size: 16px;
}

::-webkit-input-placeholder {
  color: #bdbdbd;
}

::-moz-placeholder {
  color: #bdbdbd;
}

:-ms-input-placeholder {
  color: #bdbdbd;
}

a {
  text-decoration: none;
  color: #000;
}

a:hover {
  color: #8fbd3d;
}

.clearfix:after {
  content: "";
  height: 0;
  line-height: 0;
  display: block;
  visibility: hidden;
  clear: both
}

.clearfix {
  zoom: 1;
}

.clear {
  clear: both
}

/*图片放大*/
.imgZoom img {
  transition: all .4s;
  -webkit-transition: all .4s;
}

.imgZoom:hover img {
  transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
}

/* 水平镜像翻转 */
.mirrorRotateLevel img {
  transition: all .4s;
  -webkit-transition: all .4s;
}

.mirrorRotateLevel:hover img {
  -moz-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  transform: scaleX(-1);
  /*兼容IE*/
  filter: FlipH;
}

/*图片旋转*/
.imgRotate img {
  -webkit-transition: -webkit-transform 2s ease-out;
  -moz-transition: -moz-transform 2s ease-out;
  -o-transition: -o-transform 2s ease-out;
  -ms-transition: -ms-transform 2s ease-out;
}

.imgRotate img:hover {
  -webkit-transform: rotateZ(360deg);
  -moz-transform: rotateZ(360deg);
  -o-transform: rotateZ(360deg);
  -ms-transform: rotateZ(360deg);
  transform: rotateZ(360deg);
}

/*按钮鼠标经过变暗*/
.wlp-button:hover {
  filter: alpha(opacity=90);
  background-image: -webkit-linear-gradient(transparent, rgba(0, 0, 0, .05) 40%, rgba(0, 0, 0, .1)) !important;
  background-image: linear-gradient(transparent, rgba(0, 0, 0, .05) 40%, rgba(0, 0, 0, .1)) !important;
}

/*鼠标经过有阴影*/
.wlp-shadow:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3) !important;
}

/*鼠标经过上浮并加阴影*/
.wlp-flow-shadow {
  -webkit-transition: all .5s;
  transition: all .5s;
}

.wlp-flow-shadow:hover {
  transform: translate3d(0, -5px, 0);
  -webkit-transform: translate3d(0, -8px, 0);
  -webkit-box-shadow: 0 0px 10px #e9e9e9;
  box-shadow: 0 0px 10px #e9e9e9;
}

/*图片经过遮罩*/
.wlp-filter:hover img {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -webkit-opacity: 0.7;
  opacity: 0.7;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  max-height: 100%;
  height: auto;
  border: none;
}

.wrap {
  width: 1400px;
  margin: 0 auto;
}

.header {
  width: 100%;
  height: 120px;
}

.header .logo {
  float: left;
  padding-top: 26px;
}

.header .head_right {
  float: right;
  margin-top: 65px;
}

.header .nav {
  float: left;
}

.header .nav ul li {
  float: left;
  font-size: 18px;
  font-weight: bold;
  margin-right: 40px;
}

.header .nav ul li a {
  color: #000;
}

.header .nav ul li a:hover {
  color: #20a807;
}

.header .nav ul li.focus a {
  color: #20a807;
}

.header .search_btn {
  float: left;
  width: 21px;
  height: 21px;
  background: url(../images/icon01.png) no-repeat center;
  margin-right: 35px;
  cursor: pointer;
}

.header .lang {
  float: left;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}

.header .lang a {
  color: #000;
}

.header .lang a:hover {
  color: #20a807;
}

.header .menu-toggle {
  display: none;
}

/*搜索框*/
.search_box {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  display: none;
}

.search_box dl {
  max-width: 900px;
  margin: 200px auto 0;
  border-bottom: #fff solid 1px;
  overflow: hidden;
  padding-top: 200px;
  position: relative;
}

.search_box dl input[type='text'] {
  width: 80%;
  height: 50px;
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  float: left;
}

.search_box dl input[type='submit'] {
  width: 50px;
  height: 50px;
  float: right;
  background: url(../images/icon15.png) no-repeat center;
  font-size: 0;
  border: none;
  cursor: pointer;
}

.search_box dl .search_off {
  width: 30px;
  height: 30px;
  background: url(../images/icon16.png) no-repeat;
  position: absolute;
  top: 0px;
  right: 0;
  cursor: pointer;
}

.bg {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
}

/*首页bannner*/
.banner {
}

.banner .swiper-container {
  overflow: hidden;
  width: 100%;
  height: 844px;
}

.banner .swiper-container .swiper-slide {
  width: 100%;
  height: 844px;
  display: table;
  text-align: center;
}

.banner .swiper-container .swiper-slide .bannerText {
  display: table-cell;
  vertical-align: middle;
}

.banner .swiper-container .swiper-slide .bannerText h3 {
  font-size: 48px;
  color: #fff;
  line-height: 1;
  font-weight: bold;
  position: relative;
  margin-bottom: 35px;
}

.banner .swiper-container .swiper-slide .bannerText p {
  width: 880px;
  margin: 0 auto;
  font-size: 18px;
  color: #fff;
  line-height: 1.8;
  font-weight: 500;
}

.banner .swiper-container .pagination {
  position: absolute;
  left: 0;
  text-align: center;
  bottom: 40px;
  width: 100%;
}

.banner .swiper-container .swiper-pagination-switch {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 10px;
  background: #fff;
  margin: 0 5px;
  cursor: pointer;
}

.banner .swiper-container .swiper-active-switch {
  background: #20a807;
}

/*首页产品分类*/
.ifeilei {
  padding: 95px 0;
}

.ifeilei ul {
  overflow: hidden;
}

.ifeilei ul li {
  float: left;
  width: 25%;
  text-align: center;
}

.ifeilei ul li p {
  font-size: 21px;
  font-weight: bold;
  margin-top: 35px;
  transition: all .4s;
  -webkit-transition: all .4s;
}

/*首页大标题*/
.ititle {
  text-align: center;
  margin-bottom: 50px;
}

.ititle h2 {
  font-size: 48px;
  color: #20a807;
  line-height: 1;
}

.ititle p {
  font-size: 18px;
  color: #666;
  line-height: 1;
  margin-top: 30px;
}

/*首页产品*/
.ipro {
  padding: 0 65px;
}

.ipro .box {
}

.ipro .box ul {
  overflow: hidden;
  margin: 0 -15px;
}

.ipro .box ul li {
  width: 25%;
  float: left;
  padding: 0 15px;
  margin-bottom: 40px;
}

.ipro .box ul li a {
  display: block;
  position: relative;
  overflow: hidden;
}

.ipro .box ul li dl {
  position: relative;
  padding-bottom: 82.7%;
}

.ipro .box ul li dl img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}

.ipro .box ul li dl p {
  width: 100%;
  height: 60px;
  line-height: 60px;
  background: #e6e6e6;
  font-size: 18px;
  color: #000;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
}

.ipro .box ul li ol {
  position: absolute;
  width: 100%;
  padding-bottom: 82.7%;
  left: 0;
  bottom: -100%;
  background: #fff;
  z-index: 33;
  transition: all .4s;
  -webkit-transition: all .4s;
}

.ipro .box ul li ol p {
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #e6e6e6;
  font-size: 18px;
  color: #000;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}

.ipro .box ul li ol dd {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.ipro .box ul li ol dd img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.ipro .box ul li ol dt {
  width: 100%;
  height: 60px;
  font-size: 18px;
  color: #666;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
  padding-top: 20px;
}

.ipro .box ul li ol dt .see {
  background: url(../images/icon17.png) no-repeat left center;
  padding-left: 30px;
  margin-right: 10px;
}

.ipro .box ul li ol dt .link {
  background: url(../images/icon18.png) no-repeat left center;
  padding: 2px 0 2px 36px;
  margin-left: 10px;
}

.ipro .box ul li a:hover ol {
  bottom: 0;
}

/*inews*/
.inews {
  padding: 40px 0 90px;
}

.inews .newsTab {
  text-align: center;
  margin-bottom: 40px;
}

.inews .newsTab li {
  display: inline-block;
  width: 136px;
  height: 48px;
  line-height: 48px;
  font-size: 18px;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}

.inews .newsTab li.cue {
  background: #e6e6e6;
  color: #000;
}

.inews .newsTab li.cue:after {
  content: "";
  width: 24px;
  height: 14px;
  background: url(../images/icon22.png) no-repeat center;
  position: absolute;
  bottom: -14px;
  left: 50%;
  margin-left: -12px;
}

.inews ul.cue {
  display: block;
}

.inews ul {
  overflow: hidden;
  display: none;
}

.inews ul li {
  width: 33.33%;
  float: left;
  padding: 0 15px;
}

.inews ul li dl {
  padding-bottom: 55.8%;
  position: relative;
  overflow: hidden;
}

.inews ul li dl img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}

.inews ul li dd {
  text-align: center;
  background: #fff;
  width: 230px;
  height: 84px;
  display: block;
  margin: -34px auto 0;
  padding: 10px;
  position: relative;
  z-index: 11;
}

.inews ul li dd:after {
  content: "";
  width: 250px;
  height: 104px;
  background: #fff;
  position: absolute;
  top: -10px;
  left: -10px;
  opacity: 0.5;
}

.inews ul li dd a {
  display: inline-block;
  position: relative;
  z-index: 33;
}

.inews ul li ol {
  padding-top: 5px;
}

.inews ul li ol h3 {
  text-align: center;
  font-size: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333;
  margin-bottom: 10px;
}

.inews ul li ol p {
  color: #666666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.inews ul li dt {
  width: 86px;
  height: 90px;
  background: #e6e6e6;
  position: absolute;
  top: 0;
  left: 55px;
  text-align: center;
  color: #7e7e7e;
  line-height: 1.8;
}

.inews ul li dt b {
  width: 100%;
  height: 60px;
  line-height: 60px;
  display: block;
  font-size: 48px;
  color: #000;
  font-weight: normal;
  border-bottom: #a5a5a5 solid 1px;
}

.show > p {
  line-height: 60px;
  width: 330px;
  text-align: center;
  margin: 45px auto;
  border: 1px solid #CDCDCD;
}

.show span a {
  color: #666666;
}

/*footer*/
.footer {
}

.footer .zixun {
  width: 100%;
  height: 100px;
  line-height: 100px;
  background: #cecece;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

.footer .zixun dl {
  float: left;
}

.footer .zixun a {
  float: right;
  color: #fff;
  line-height: 1;
  background: url(../images/icon02.png) no-repeat right center;
  padding-right: 23px;
  border-bottom: #fff solid 1px;
  padding-bottom: 8px;
  margin-top: 33px;
}

.footer .fmain {
  overflow: hidden;
  padding-bottom: 30px;
}

.footer .fmain .wrap {
  padding: 0 100px;
  position: relative;
}

.footer .fmain .f_left {
  width: 345px;
  float: left;
  background: #f8f8f8;
}

.footer .fmain .f_left dl {
  width: 100%;
  line-height: 50px;
  border-bottom: #e2e1de solid 1px;
  padding-left: 15px;
  font-weight: bold;
  overflow: hidden;
}

.footer .fmain .f_left dl img {
  vertical-align: middle;
}

.footer .fmain .f_left dl a {
  margin-left: 20px;
  line-height: 40px;
}

.footer .fmain .f_left ol {
  padding-top: 27px;
  text-align: center;
}

.footer .fmain .f_left ul {
  padding: 30px 65px;
  font-size: 18px;
  color: #333;
  line-height: 2;
}

.footer .fmain .f_left ul img {
  margin-right: 10px;
}

.footer .fmain .f_middle {
  float: left;
  width: 650px;
  padding: 35px 35px 0;
}

.footer .fmain .f_middle ol {
  margin-bottom: 20px;
}

.footer .fmain .f_middle ol h3 {
  font-size: 18px;
  color: #333;
}

.footer .fmain .f_middle ul {
  overflow: hidden;
  margin-bottom: 20px;
  margin-left: -10px;
  margin-right: -10px;
}

.footer .fmain .f_middle ul li {
  float: left;
  width: 50%;
  padding: 0 10px;
}

.footer .fmain .f_middle dl {
  text-align: right;
}

.footer .fmain .f_middle input {
  width: 100%;
  height: 40px;
  line-height: 40px;
  border: #999999 solid 1px;
  border-radius: 5px;
  padding-left: 30px;
}

.footer .fmain .f_middle textarea {
  width: 100%;
  height: 150px;
  padding: 20px;
  border: #999999 solid 1px;
  border-radius: 5px;
}

.footer .fmain .f_middle button {
  width: 100px;
  height: 40px;
  border: none;
  font-size: 16px;
  background: #cecece;
  border-radius: 5px;
}

.footer .fmain .f_middle .name input {
  background: url(../images/icon12.png) no-repeat 6px center;
}

.footer .fmain .f_middle .tel input {
  background: url(../images/icon13.png) no-repeat 10px center;
}

.footer .fmain .f_right {
  float: right;
  text-align: center;
  padding-top: 95px;
  line-height: 2;
}

.footer .fmain .goto {
  width: 52px;
  height: 52px;
  background: url(../images/icon14.png) no-repeat center;
  position: fixed;
  right: 30px;
  bottom: 30px;
  cursor: pointer;
}

.footer .copyright {
  background: #ececec;
  text-align: center;
  color: #666666;
  line-height: 1.8;
  padding: 20px 0;
}

.w1200 {
  width: 1263px;
  margin: 0 auto;
}

.server-tabs {
  height: 80px;
  line-height: 80px;
  width: 100%;
  text-align: center;
  background-color: #EEEEEE;
  display: flex;
  justify-content: center;
}

.server-tabs li {
  box-sizing: border-box;
  float: left;
  display: block;
  padding: 0 38px;
  height: 80px;
}

.cur {
  background-color: #DBDBDB;
}

.server-tabs li a {
  font-size: 18px;
  color: #000000;
  font-weight: bold;
}

.server-title {
  text-align: center;
  width: 100%;
  padding-bottom: 95px;
}

.server-title-text {
  font-size: 24px;
  font-weight: bold;
  margin-top: 70px;
  margin-bottom: 30px;
  color: #000000;
}

.server-title-content {
  font-size: 12px;
  font-weight: bold;
  color: #000000;
}

.server-content {
  overflow: hidden;
  width: 100%;
}

.server-text p {
  padding: 0 30px;
}

.server-text-content {
  font-size: 18px;
  line-height: 30px;
  width: 550px;
}

.fr {
  float: right;
}

.server-text {
  padding-top: 60px;
}

.server-content li {
  width: 50%;
  height: 350px;
  float: left;
  overflow: hidden;
  position: relative;
}

.server-content li img {
  width: 100%;
  height: 100% !important;
}

.server-text-title span {
  font-size: 24px;
  line-height: 60px;
  color: #000000;
  font-weight: bold;
  position: relative;
}

.server-text-title span:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 1px;
  background-color: #000000;
  bottom: -10px;
  left: 0;
}

.text-right {
  text-align: left;
  float: right !important;
}

.text-left {
  text-align: right;
  float: left !important;
}

/*faq*/
.faq {
  width: 1200px;
  margin: 0 auto;
  padding-top: 120px;
}

.faq li {
  margin-bottom: 30px;
}

.question {
  padding-left: 35px;
  font-weight: bolder;
  font-size: 18px;
  line-height: 90px;
  border: 1px solid #CDCDCD;
  border-radius: 5px;
  position: relative;
}

.question:after {
  content: url(../images/services-icon.png);
  position: absolute;
  width: 36px;
  height: 36px;
  right: 40px;
  top: 10px;
}

.answer {
  padding: 15px 35px;
  border: 1px solid #CDCDCD;
  border-radius: 5px;
  font-size: 16px;
  line-height: 30px;
  margin-top: 20px;
}

.page {
  display: flex;
  justify-content: center;
  padding: 40px 0 60px;
}

.current {
  background-color: #666666;
  color: #ffffff !important;
}

.page span {
  width: 64px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  border: 1px dotted #D1D1D1;
  margin-right: 12px;
}

.page span a {
  display: block;
  color: #555555;
}

/*download*/
.download {
  overflow: hidden;
  margin: 0 auto;
  padding-top: 50px;
}

.download li {
  box-sizing: border-box;
  padding-left: 14px;
  height: 90px;
  line-height: 90px;
  float: left;
  width: 47.5%;
  border: 1px solid #CDCDCD;
  margin-right: 56px;
  border-radius: 5px;
  margin-bottom: 45px;
}

.download li:nth-child(2n) {
  margin-right: 0;
}

.download li a {
  display: block;
  font-size: 16px;
  color: #000000;
  font-weight: bolder;
  position: relative;
}

.download li a:after {
  content: '';
  position: absolute;
  background: url(../images/services-download.png) no-repeat center;
  background-size: cover;
  width: 32px;
  height: 30px;
  right: 30px;
  top: 30px;
}

.download li:hover a {
  color: #20a807;
}

.download li:hover a:after {
  background: url(../images/services-download2.png) no-repeat center;
}

/*contact*/
.contact {
  padding-top: 90px;
  overflow: hidden;
  width: 100%;
}

.contact li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  height: 96px;
  line-height: 96px;
  width: 25%;
  float: left;
  background-color: #EDEDED;
}

.contact li i {
  padding-left: 50px;
}

.contact li p {
  flex: 1;
  font-size: 18px;
  text-align: center;
}

.contact li:after {
  content: '';
  position: absolute;
  width: 1px;
  height: 30px;
  background-color: #777676;
  right: 0;
  top: 33px;
}

.contact li:last-child:after {
  content: '';
  display: none;
}

.map {
  width: 100%;
  height: 560px;
}

.address {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 120px;
  font-size: 16px;
  color: #000000;
  font-weight: bolder;
}

/*sample*/
.sample {
  padding: 30px 0 85px;
}

.sample-title {
  font-size: 16px;
  line-height: 32px;
  color: #000000;
}

.sample-title-text {
  font-size: 18px;
  color: #20a807;
  margin: 50px 0 80px;
}

.sample-request {
  margin-top: 50px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  text-align: right;
  margin-bottom: 55px;
}

.sample-request li {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.sample-request-title {
  line-height: 45px;
  color: #000000;
  width: 36%;
}

.sample-request-title b {
  color: red;
}

.sample-request li input {
  width: 60%;
  height: 45px;
  border-radius: 10px;
  border: 1px solid #CDCDCD;
  margin-left: 3%;
  padding-left: 10px;
}

.sample-info-title {
  font-size: 24px;
  color: #20a807;
  margin-bottom: 20px;
}

.sample-info p {
  font-size: 16px;
  color: #000000;
  font-weight: 500;
  line-height: 40px;
}

.sample-info p b {
  color: red;
}

.sample-info textarea {
  width: 100%;
  height: 280px;
  border: 1px solid #CDCDCD;
  border-radius: 10px;
  margin-bottom: 50px;
  padding: 10px;
}

.sample button {
  font-weight: bolder;
  width: 100px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  background-color: #CECECE;
  border-radius: 10px;
  border: 1px solid #CECECE;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}

.ctqrbox-two h4 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #333;
  font-family: "微软雅黑";
}

.ctqrbox-two-item {
  margin-bottom: 25px;
}

.select-item1 {
  padding-left: 33px;
  overflow: hidden;
}

.select-list1 {
  overflow: hidden;
}

.select-list1 li {
  float: left;
  width: 20%;
  margin-bottom: 15px;
}

.select-list1 li input {
  vertical-align: middle;
  margin-right: 10px;
}

.select-list1 li label {
  font-size: 16px;
  font-family: "微软雅黑";
  line-height: 30px;
}

.ctqrbox-two p {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  line-height: 26px;
}

.select-item1 .titinput1 {
  color: #000000;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 15px;
}

.select-item1 .inputbox2 input {
  width: 100%;
  height: 45px;
  border: 1px solid #CDCDCD;
  border-radius: 10px;
  padding-left: 10px;
}

.other {
  position: relative;
}

.other input {
  padding-left: 5px;
}

.tips1 {
  position: absolute;
}

.select-item1 {
  padding-left: 33px;
  overflow: hidden;
}

.formbox-item1 {
  overflow: hidden;
  width: 100%;
}

.select-item1 .tareabox1 {
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
  margin-right: 20px;
  border: 1px solid #CDCDCD;
  box-sizing: border-box;
  position: relative;
  padding: 10px 10px 10px 10px;
  border-radius: 10px;
}

.tareabox1 textarea {
  width: 100%;
  height: 100%;
  border: none;
  font-family: "微软雅黑";
  font-size: 14px;
  color: #999;
}

/*news*/
.news {
  overflow: hidden;
  padding: 20px 0;
}

.news li {
  width: 100%;
  position: relative;
  height: 200px;
  box-sizing: border-box;
  padding: 0 76px;
  display: flex;
  justify-content: space-between;
}

.news-time, .news-content, .news-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.news-time {
  width: 100px;
  height: 100px;
  border: 1px solid #CDCDCD;
  text-align: center;
  padding-top: 20px;
}

.month {
  font-size: 30px;
  color: #666666;
  font-weight: bolder;
}

.year {
  font-size: 18px;
  color: #666666;
}

.news-content {
  left: 210px;
}

.news-content-title {
  height: 40px;
  font-size: 18px;
  color: #000000 !important;
  font-weight: bold;
}

.news-content-title a {
  color: #000000;
}

.news-content-text {
  color: #747474;
  width: 620px;
  overflow: hidden;
  word-break: break-all;
  display: -webkit-box; /**对象作为伸缩盒子模型展示**/
  -webkit-box-orient: vertical; /**设置或检索伸缩盒子对象的子元素的排列方式**/
  -webkit-line-clamp: 2; /**显示的行数**/
}

.news-content-text a {
  color: #707070;
  font-size: 16px;
  line-height: 24px;
}

.news-button {
  right: 88px;
  width: 156px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 20px;
  border: 1px solid #CDCDCD;
}

.news li:hover {
  border: 1px solid #CDCDCD;
  box-shadow: 0 0 5px rgba(0, 0, 0, .57);
}

.news li:hover .news-content-title a {
  color: #20a807;
}

.news li:hover .news-button {
  background-color: #DFDFDF;
}

/*news-detail*/
.news-detail {
  padding: 60px 0;
}

.news-detail-title, .share {
  text-align: center;
}

.news-detail-title {
  font-size: 18px;
  color: #000000;
  font-weight: bolder;
}

.share {
  line-height: 42px;
  border-bottom: 1px dotted #CDCDCD;
}

.news-detail-content {
  padding: 30px 30px 70px;
  font-size: 16px;
  line-height: 30px;
}

.news-detail-img {
  text-align: center;
}

.news-detail-text {
  margin-top: 60px;
  font-size: 16px;
  line-height: 30px;
  text-indent: 2em;
}

.news-page {
  margin-top: 110px;
  display: flex;
  justify-content: space-between;
}

/*product*/
.product {
  padding: 50px;
  overflow: hidden;
}

.productmodl {
  float: left;
  width: 400px;
}

.prosidenav {
  background: #f2f2f2;
  padding: 40px;
}

.productmodr {
  padding-left: 470px;
}

.paddingLeft {
  padding-left: 0 !important;
}

.promodlist {
  position: relative;
  text-align: center;
}

.promodlist ul {
  overflow: hidden;
  margin: 0 -15px;
}

.promodlist ul li {
  width: 33.33%;
  float: left;
  margin-bottom: 40px;
}

.promodlist ul li a {
  display: block;
  position: relative;
  overflow: hidden;
}

.promodlist ul li dl {
  position: relative;
  padding-bottom: 82.7%;
}

.promodlist ul li dl img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}

.promodlist ul li dl p {
  width: 100%;
  height: 60px;
  line-height: 60px;
  background: #e6e6e6;
  font-size: 18px;
  color: #000;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
}

.promodlist ul li ol {
  position: absolute;
  width: 100%;
  padding-bottom: 82.7%;
  left: 0;
  bottom: -100%;
  background: #fff;
  z-index: 33;
  transition: all .4s;
  -webkit-transition: all .4s;
}

.promodlist ul li ol p {
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #e6e6e6;
  font-size: 18px;
  color: #000;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}

.promodlist ul li ol dd {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.promodlist ul li ol dd img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.promodlist ul li ol dt {
  width: 100%;
  height: 60px;
  font-size: 18px;
  color: #666;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
  padding-top: 20px;
}

.promodlist ul li ol dt .see {
  background: url(../images/icon17.png) no-repeat left center;
  padding-left: 30px;
  margin-right: 10px;
}

.promodlist ul li ol dt .link {
  background: url(../images/icon18.png) no-repeat left center;
  padding: 2px 0 2px 36px;
  margin-left: 10px;
}

.promodlist ul li a:hover ol {
  bottom: 0;
}

.promodlist ul {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.promodlist ul:after {
  content: '';
  width: 31%;
}

.promodlist ul li {
  width: 31%;
  text-align: center;
  box-sizing: border-box;
  border: 1px solid #fff;
  position: relative;
  margin-bottom: 40px;
}

.pro-title {
  height: 60px;
  line-height: 60px;
  font-size: 18px;
  font-weight: bolder;
  color: #000000;
  background-color: #E6E6E6;
  position: absolute;
  width: 100%;
  bottom: 0;
}

.pro-share {
  height: 60px;
  line-height: 60px;
}

.pro-share, .pro-share a {
  font-size: 18px;
}

.pro-share a {
  padding: 0 20px;
}

.pro-share a i {
  margin-right: 16px;
}

.promodlist ul li:hover .pro-title {
  top: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.prosidenav ul .curprosdnav h3 {
  color: #20a807;
}

.prosidenav ul .curprosdnav .tit h3 {
  background-image: url(../images/pic43.png);
}


.prosidenav ul .curprosdnav .prosidsub-nav {
  display: block;
}

.prosidsub-nav {
  display: none;
  margin-bottom: 10px;
}

.prosidsub-nav a {
  display: block;
  font-family: "微软雅黑";
  color: #666666;
  font-size: 14px;
  line-height: 40px;
}

.prosidenav ul li h3 {
  font-size: 18px;
  cursor: pointer;
  color: #000000;
  line-height: 50px;
}

.prosidenav ul li .tit h3 {
  background: url(../images/pic44.png) no-repeat right center;

}

/*product-detail*/

.line {
  border-bottom: 1px solid #CDCDCD;
  margin-bottom: 20px;
}

.orientation {
  height: 60px;
  line-height: 60px;
  text-align: left;
  position: relative;
}

.orientation > div {
  position: absolute;
  top: 50%;
  left: 42.6875%;
  transform: translateY(-50%);
}

.orientation a {
  padding: 0 10px;
}

.product-detail {
  overflow: hidden;
  margin-bottom: 50px;
}

.product-del-onel {
  float: left;
  width: 50%;
}

.proimgbshow1 {
  border: 1px solid #dfdfdf;
  width: 100%;
  height: 500px;
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
}

.proimgsshow1 {
  position: relative;
  text-align: center;
}

.proimgsshow1 ul {
  overflow: hidden;
  display: inline-block;
}

.proimgsshow1 ul li {
  margin: 0 10px;
  float: left;
  cursor: pointer;
}

.proimgsshow1 ul li img {
  width: 105px;
  height: 80px;
  display: block;
  box-sizing: border-box;
  border: 1px solid #dfdfdf;
}

.proimgsshow1 ul li img:hover {
  border-color: #4cbe85;
}

.proimgsshow1 .bigimg-arrbtn {
  top: 0px;
}

.bigimg-arrbtn {
  display: inline-block;
  cursor: pointer;
  width: 20px;
  height: 80px;
  position: absolute;
}

.bigimg-arrbtnl {
  left: 0px;
  background: url(../images/picarrl03.png) no-repeat;
}

.bigimg-arrbtnr {
  right: 0px;
  background: url(../images/picarrr03.png) no-repeat;
}

.bigimg-arrbtnl:hover {
  left: 0px;
  background: url(../images/picarrl03h.png) no-repeat;
}

.bigimg-arrbtnr:hover {
  right: 0px;
  background: url(../images/picarrr03h.png) no-repeat;
}

.procen_imgb ul {
  position: absolute;
  height: 100%;
}

.procen_imgb ul li {
  position: relative;
  width: 600px;
  float: left;
}

.product-detail-r {
  float: right;
  width: 50%;
  padding-left: 44px;
}

.product-detail-title {
  font-size: 18px;
  font-weight: bolder;
  color: #000000;
  margin-top: 20px;
  margin-bottom: 50px;
}

.product-detail-link {
  width: 320px;
  line-height: 60px;
  height: 60px;
  background-color: #F1F1F1;
  border: 1px solid #CDCDCD;
  border-radius: 30px;
  padding-left: 20px;
  margin-bottom: 20px;
}

.product-detail-link a {
  font-weight: 500;
  font-size: 18px;
  color: #000000;
}

.product-detail-link i {
  margin-right: 22px;
}

.product-detail-link:hover {
  background-color: #20a807;
}

.product-detail-link:hover a {
  color: white;
}

.product-detail-share p {
  font-size: 16px;
}

.product-detail-share p i {
  margin-right: 5px;
}

.product-detail-tle {
  height: 60px;
  line-height: 60px;
}

.product-detail-tle {
  /* text-align: center; */
}

.product-detail-tle p {
  padding-left: 13px;
  width: 615px;
  height: 58px;
  font-size: 18px;
  font-weight: bolder;
  color: #000000;
  background-color: #EBEBEB;
}

.product-detail-content {
  padding-top: 30px;
  padding-bottom: 30px;
  font-size: 16px;
  /* font-weight: bolder; */
  color: #000000;
  line-height: 30px;
}

.product-detail-page {
  border-top: 1px solid #CDCDCD;
  text-align: center;
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}

.product-detail-page .link {
  width: 100px;
  height: 40px;
  line-height: 40px;
  border-radius: 10px;
  background-color: #E5E5E5;
}

/*about*/
.about-title {
  text-align: center;
  margin: 0 auto;
  line-height: 130px;
  font-size: 36px;
  color: #20a807;
  font-weight: bold;
}

.company-content {
  width: 100%;
  font-size: 16px;
  line-height: 36px;
  color: #000000;
  word-wrap: break-word;
}

.company ul {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.history {
  background: url(../images/history.jpg) no-repeat center;
  background-size: cover;
  height: 660px;
  width: 100%;
  position: relative;
}

.slide_wrap {
  position: relative;
  overflow: hidden;
}

.slide_wrap ul {
  position: relative;
  left: 0px;
}

.slide_items {
  padding-top: 130px;
  position: relative;
}

.slide_wrap::after {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  content: '';
  position: absolute;
  top: 190px;
  left: 0px;
}

.slide_items li {
  float: left;
  font-size: 20px;
  width: 300px;
  text-align: center;
}

.slide_items li a {
  display: block;
}

.slide_items li span {
  font-weight: bolder;
  color: #ffffff;
  font-size: 24px;
  display: block;
  line-height: 47px;
}

.slide_items li div {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 12px;
  box-sizing: border-box;
}

.slide_items li i {
  position: relative;
  z-index: 99;
  display: block;
  width: 10px;
  height: 10px;
  background-color: #20A807;
  border-radius: 5px;
  box-shadow: 0 0 10px #20A807;
}

.slide_items li.on span {
  font-size: 36px;
  font-weight: bold;
  color: #20a807;
}

.slide-content {
  margin-top: 60px;
  height: 323px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
}

.slide-content ul {
  padding: 29px 27px;
  display: none;
  overflow: hidden;
}

.slide-content ul.on {
  display: block;
}

.history-content {
  width: 50%;
  float: left;
}

.history-content p {
  padding-left: 20px;
  font-size: 16px;
  line-height: 30px;
  color: #000000;
  font-weight: 500;
}

.history-content-title {
  font-size: 36px !important;
  font-weight: bold !important;
  margin-bottom: 20px;
}

.history-button {
  position: relative;
}

.button {
  position: absolute;
  cursor: pointer;
  top: 65%;
  font-size: 40px;
  color: #333;
  background: url(../images/history-icon.png) no-repeat center;
  background-size: cover;
  width: 25px;
  height: 58px;
}

.prev {
  left: -40px;
}

.next {
  right: -40px;
  transform: rotate(-180deg);
}

.culture {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

.culture:after {
  content: '';
  width: 345px;
}

.culture-list {
  margin-bottom: 20px;
  width: 345px;
  text-align: center;
  box-shadow: 0px 0px 30px #ECECEC;
  height: 390px;
  border: 1px solid #CDCDCD;
  border-top: 10px solid #20A807;
  padding: 10px;
}

.culture-list img {
  width: 146px;
  height: 146px;
  border-radius: 83px;
  margin-top: 24px;
  margin-bottom: 37px;
}

.culture-title {
  font-size: 24px;
  font-weight: 500;
  color: #000000;
}

.culture-content {
  font-size: 18px;
  line-height: 30px;
  color: #6E6E6E;
}

.certificate-list {
  text-align: center;
  width: 20%;
  display: flex;
  height: 360px;
}

.certificate-list img {
  border: 1px solid #CDCDCD;
  padding: 10px;
}


.video {
  text-align: center;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-bottom: 50px;
}
.video video{
  width: 32%;
}

.view .swiper-container {
  width: 100%;
  height: 500px;
}

.preview {
  width: 100%;
  margin-top: 10px;
  position: relative;
}

.preview .swiper-container {
  width: 100%;
  height: 80px;
  margin-left: 35px;
}

.preview .swiper-slide {
  width: 90px;
  height: 80px;
}

.preview .slide6 {
  width: 90px;
}

.preview .arrow-left {
  background: url(../images/picarrr03.png) no-repeat left top;
  position: absolute;
  left: 10px;
  width: 20px;
  height: 80px;
  z-index: 10;
  transform: rotate(180deg);
}

.preview .arrow-right {
  background: url(../images/picarrr03.png) no-repeat left bottom;
  position: absolute;
  right: 10px;
  width: 20px;
  height: 80px;
  z-index: 10;
}

.swiper-slide img {
}

.preview img {
  padding: 1px;
  height: 100%;
}

.preview .active-nav img {
  padding: 0;
}

@media screen and (max-width: 1600px) {
  .ipro .box ul li ol dt {
    font-size: 15px;
  }

  .ipro .box ul li ol dt .see {
    padding-left: 22px;
    background-size: 15px auto;
  }

  .ipro .box ul li ol dt .link {
    padding: 2px 0 2px 22px;
    background-size: 15px auto;
  }

  .inews ul li ol h3 {
    font-size: 20px;
  }

}

@media screen and (max-width: 1440px) {
  .wrap {
    width: 100%;
    padding: 0 20px;
  }

  .ipro {
    padding: 0 30px;
  }
}

@media screen and (max-width: 1390px) {
  .footer .fmain .wrap {
    padding: 0 20px;
  }
}

@media screen and (max-width: 1290px) {
  .slide-content {
    position: absolute;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
  }

  .prev {
    left: 0;
  }

  .next {
    right: 0;
  }

  .button {
    top: 200%;
  }

  .history-content img {
    height: 100%;
  }

  .history-content-title {
    font-size: 18px !important;
  }

  .history-content p {
    font-size: 14px;
    font-weight: normal;
  }

}

@media screen and (max-width: 1230px) {
  .header {
    height: 90px;
  }

  .header .logo {
    width: 200px;
    padding-top: 20px;
  }

  .header .head_right {
    margin-top: 35px;
  }

  .header .nav ul li {
    font-size: 16px;
    margin-right: 30px;
  }

  .ifeilei {
    padding: 70px 0;
  }

  .ifeilei ul li {
    padding: 0 30px;
  }

  .ifeilei ul li p {
    font-size: 18px;
    margin-top: 20px;
  }

  .ititle h2 {
    font-size: 35px;
  }

  .ititle p {
    font-size: 16px;
    margin-top: 10px;
  }

  .ipro .box ul {
    margin: 0 -5px;
  }

  .ipro .box ul li {
    padding: 0 5px;
  }

  .ipro .box ul li dl p {
    font-size: 16px;
    height: 50px;
    line-height: 50px;
  }

  .ipro .box ul li ol p {
    height: 40px;
    line-height: 40px;
    font-size: 15px;
  }

  .ipro .box ul li ol dt {
    height: 50px;
  }

  .inews {
    padding: 20px 0 70px;
  }

  .inews ul li {
    padding: 0 10px;
  }

  .inews ul li dt {
    left: 20px;
    width: 75px;
    height: 80px;
    font-size: 14px;
  }

  .inews ul li dt b {
    font-size: 34px;
    height: 50px;
    line-height: 50px;
  }

  .inews ul li ol h3 {
    font-size: 18px;
  }

  .inews ul li ol p {
    font-size: 14px;
  }

  .footer .zixun {
    font-size: 20px;
  }

  .footer .fmain .f_left {
    width: 310px;
  }

  .footer .fmain .f_left dl a {
    margin-left: 15px;
  }

  .footer .fmain .f_left ol {
    padding: 27px 20px 0;
  }

  .footer .fmain .f_left ul {
    padding: 30px 40px;
    font-size: 16px;
  }

  .footer .fmain .f_middle {
    padding: 30px 30px 0;
    width: 590px;
  }

  .footer .copyright {
    font-size: 14px;
    line-height: 1.5;
  }

  .w1200, .faq {
    width: 100%;
  }

  .company, .map {
    padding: 0 10px;
  }

  .download {
    padding: 50px 10px 0;
  }

  .product-detail-content, .product-detail-page {
    padding-left: 10px;
    padding-right: 10px;
  }

  .contact {
    padding: 50px 10px 0;
  }

  .sample {
    padding: 30px 10px 0;
  }

  .sample-request li, .sample-request-title, .sample-request li input {
    width: 100%;
  }

  .sample-request li input {
    margin-left: 0;
  }

  .sample-request {
    text-align: left;
  }

  .select-list1 li {
    width: 25%;
  }
}

@media screen and (max-width: 1030px) {
  .footer .fmain .f_middle {
    padding: 20px 20px 0;
    width: 470px;
  }

  .history-tabs {
    display: none;
  }

  .company ul {
    display: contents;
  }

  .company ul li {
    width: 100%;
    margin-bottom: 10px;
  }

  .company ul li img {
    width: 100%;
  }

  .culture {
    justify-content: space-evenly;
  }

  .culture-list {
    margin-bottom: 80px;
  }

  .certificate-list {
    margin-bottom: 20px;
  }

  .productmodl {
    width: 300px;
  }

  .prosidenav {
    padding: 10px;
  }

  .productmodr {
    padding-left: 335px
  }

  .promodlist ul li dl p {
    height: 40px;
    line-height: 40px;
    font-size: 9px;
  }

  .product {
    padding: 30px;
  }

  .news-content-text {
    width: 550px;
  }

  .server-text-content {
    width: 525px;
  }

  .contact li {
    width: 48%;
    margin-bottom: 20px;
    margin-left: 1%;
  }

  .contact li:after {
    display: none;
  }

  .product-detail-r {
    padding-left: 0;
    padding-right: 50px;
  }

  .proimgbshow1 {
    width: 600px;
  }

  .product-detail-r {
    width: auto;
  }
}


@media screen and (max-width: 1000px) {
  .wrap {
    padding: 0 15px;
  }

  .header {
    width: 100%;
    height: 70px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  }

  .header .logo {
    width: 150px;
    padding-top: 0px;
    line-height: 70px;
  }

  .header .head_right {
    display: none;
    width: 100%;
    position: fixed;
    top: 70px;
    left: 0;
    height: 100%;
    background: #fff;
    border-top: #eee solid 1px;
    margin-top: 0;
    float: none;
  }

  .header .nav {
    float: none;
    width: 100%;
    margin-bottom: 20px;
  }

  .header .nav ul li {
    float: none;
    font-size: 16px;
    font-weight: bold;
    margin-right: 0;
    border-bottom: #eee solid 1px;
  }

  .header .nav ul li a {
    color: #000;
    display: block;
    font-weight: normal;
    padding-left: 20px;
    line-height: 50px;
  }

  .header .nav ul li a:hover {
    color: #20a807;
  }

  .header .search_btn {
    margin-left: 20px;
  }

  .header .menu-toggle {
    width: 60px;
    height: 60px;
    position: absolute;
    right: 0px;
    top: 0px;
    float: right;
    z-index: 99999;
    display: block;
  }

  .header .menu-toggle span {
    width: 35px;
    height: 2px;
    background: #333;
    display: block;
    position: relative;
    opacity: 1;
    transition: all 300ms;
    margin: 35px 0 0 12px;
  }

  .header .menu-toggle span:before {
    content: "";
    width: 35px;
    height: 2px;
    background: #333;
    display: block;
    position: absolute;
    left: 0;
    top: -10px;
    transition: all 300ms;
  }

  .header .menu-toggle span:after {
    content: "";
    width: 35px;
    height: 2px;
    background: #333;
    display: block;
    position: absolute;
    left: 0;
    top: 10px;
    transition: all 300ms;
  }

  .header .menu-toggle.cur span {
    background-color: transparent;
  }

  .header .menu-toggle.cur span:before {
    transform: rotate(45deg);
    top: 0px;
  }

  .header .menu-toggle.cur span:after {
    transform: rotate(-45deg);
    top: 0px;
  }

  /*搜索框*/
  .search_box dl {
    max-width: 90%;
    margin: 250px auto 0;
    padding-top: 100px;
  }

  /*首页bannner*/
  .banner {
    height: 300px;
  }

  .banner .swiper-container {
    overflow: hidden;
    width: 100%;
    height: 300px;
  }

  .banner .swiper-container .swiper-slide {
    width: 100%;
    height: 300px;
  }

  .banner .swiper-container .swiper-slide .bannerText h3 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .banner .swiper-container .swiper-slide .bannerText p {
    width: 100%;
    font-size: 14px;
    line-height: 1.2;
  }

  .banner .swiper-container .pagination {
    position: absolute;
    left: 0;
    text-align: center;
    bottom: 20px;
    width: 100%;
  }

  /*首页产品分类*/
  .ifeilei {
    padding: 40px 0;
  }

  .ifeilei ul {
    overflow: hidden;
  }

  .ifeilei ul li {
    float: left;
    width: 50%;
    padding: 0 20px;
    margin-bottom: 10px;
  }

  .ifeilei ul li p {
    font-size: 15px;
    font-weight: normal;
    line-height: 1.2;
    height: 40px;
    margin-top: 10px;
  }

  /*首页大标题*/
  .ititle {
    margin-bottom: 30px;
  }

  .ititle h2 {
    font-size: 26px;
  }

  .ititle p {
    font-size: 13px;
    line-height: 1;
    margin-top: 10px;
  }

  /*首页产品*/
  .ipro {
    padding: 0 15px;
  }

  .ipro .box {
  }

  .ipro .box ul {
    overflow: hidden;
    margin: 0 -5px;
  }

  .ipro .box ul li {
    width: 50%;
    float: left;
    padding: 0 5px;
    margin-bottom: 20px;
  }

  .ipro .box ul li dl p {
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    padding: 0 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ipro .box ul li ol, .promodlist ul li ol {
    display: none;
  }

  /*inews*/
  .inews {
    padding: 40px 0 40px;
  }

  .inews .newsTab {
    text-align: center;
    margin-bottom: 30px;
  }

  .inews .newsTab li {
    display: inline-block;
    width: 130px;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
  }

  .inews ul.cue {
    display: block;
  }

  .inews ul {
    overflow: hidden;
    display: none;
  }

  .inews ul li {
    width: 100%;
    float: none;
    padding: 0;
    margin-bottom: 20px;
  }

  .inews ul li dd {
    text-align: center;
    background: #fff;
    width: 230px;
    height: 84px;
    display: block;
    margin: -34px auto 0;
    padding: 10px;
    position: relative;
    z-index: 11;
  }

  .inews ul li dd:after {
    content: "";
    width: 250px;
    height: 104px;
    background: #fff;
    position: absolute;
    top: -10px;
    left: -10px;
    opacity: 0.5;
  }

  .inews ul li dd a {
    display: inline-block;
    position: relative;
    z-index: 33;
  }

  .inews ul li ol {
    padding-top: 5px;
  }

  .inews ul li ol h3 {
    font-size: 17px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #333;
    margin-bottom: 5px;
  }

  .inews ul li ol p {
    color: #666666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .inews ul li dt {
    width: 70px;
    height: 80px;
    left: 20px;
    line-height: 1.8;
  }

  .inews ul li dt b {
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 30px;
  }

  /*footer*/
  .footer {
  }

  .footer .zixun {
    width: 100%;
    height: 100px;
    line-height: 1.4;
    font-size: 15px;
    padding: 15px 0;
  }

  .footer .zixun dl {
    float: none;
  }

  .footer .zixun a {
    float: none;
    line-height: 1;
    padding-bottom: 5px;
    margin-top: 33px;
  }

  .footer .fmain {
    overflow: hidden;
    padding-bottom: 30px;
  }

  .footer .fmain .wrap {
    padding: 0;
    position: relative;
  }

  .footer .fmain .f_left {
    width: 100%;
    float: none;
  }

  .footer .fmain .f_left dl {
    width: 100%;
    line-height: 50px;
    border-bottom: #e2e1de solid 1px;
    padding-left: 15px;
    font-weight: bold;
    overflow: hidden;
  }

  .footer .fmain .f_left dl img {
    vertical-align: middle;
  }

  .footer .fmain .f_left dl a {
    margin-left: 20px;
    line-height: 40px;
  }

  .footer .fmain .f_left ol {
    padding-top: 20px;
    text-align: center;
    height: 60px;
  }

  .footer .fmain .f_left ul {
    padding: 15px 20px;
    font-size: 14px;
    line-height: 2;
    overflow: hidden;
  }

  .footer .fmain .f_left ul li {
    width: 50%;
    float: left;
  }

  .footer .fmain .f_left ul img {
    margin-right: 8px;
  }

  .footer .fmain .f_middle {
    float: none;
    width: 100%;
    padding: 20px 20px 0;
  }

  .footer .fmain .f_middle ol {
    margin-bottom: 20px;
  }

  .footer .fmain .f_middle ol h3 {
    font-size: 16px;
  }

  .footer .fmain .f_middle ul {
    overflow: hidden;
    margin-bottom: 15px;
    margin-left: -10px;
    margin-right: -10px;
  }

  .footer .fmain .f_middle ul li {
    float: left;
    width: 50%;
    padding: 0 10px;
  }

  .footer .fmain .f_middle dl {
    text-align: center;
  }

  .footer .fmain .f_middle input {
    width: 100%;
    height: 40px;
    line-height: 40px;
    border: #999999 solid 1px;
    border-radius: 5px;
    padding-left: 30px;
  }

  .footer .fmain .f_middle textarea {
    width: 100%;
    height: 150px;
    padding: 20px;
    border: #999999 solid 1px;
    border-radius: 5px;
  }

  .footer .fmain .f_middle button {
    width: 100%;
    height: 40px;
    border: none;
    font-size: 16px;
    background: #cecece;
    border-radius: 5px;
  }

  .footer .fmain .f_right {
    float: none;
    text-align: center;
    padding-top: 40px;
    line-height: 2;
  }

  .footer .fmain .goto {
    width: 52px;
    height: 52px;
    background: url(../images/icon14.png) no-repeat center;
    position: fixed;
    right: 0;
    bottom: 0;
    cursor: pointer;
  }

  .footer .copyright {
    font-size: 13px;
    line-height: 1.4;
    padding: 20px 0;
  }

  .contact li {
    width: 50%;
  }

  .contact li:after {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .product-detail-r {
    padding-left: 40px;
  }

  .news li {
    padding: 0 10px;
  }

  .news-content {
    left: 130px;
  }

  .news-button {
    right: 20px;
  }

  .news-content-text {
    width: 455px;
  }

  .server-text-content {
    width: 410px;
  }

  .select-list1 li {
    width: 33%;
  }

  .culture {
    justify-content: center;
  }

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

  .product-detail-page {
    padding: 20px 10px;
  }

  .product-detail-r {
    padding-right: 219px;
  }

  .product-del-onel {
    width: 600px;
  }

  .certificate-list {
    width: 38%;
    margin-bottom: 27px;
  }

  .orientation > div {
    position: static;
    transform: translate(0);
  }
}

@media screen and (max-width: 500px) {
  .productmodl {
    float: none;
    width: 100%;
  }

  .productmodr {
    margin-top: 20px;
    padding-left: 0;
  }

  .promodlist ul li {
    width: 48%;
    margin-bottom: 15px;
  }

  .news li {
    border-bottom: 1px solid #CDCDCD;
  }

  .news-time, .news-button {
    display: none;
  }

  .news-content {
    left: 10px;
    width: 100%;
  }

  .news-content-text {
    width: 90%;
  }

  .news-content-title {
    font-size: 17px;
  }

  .server-tabs li {
    padding: 0 30px;
    overflow: hidden;
  }

  .server-content li, .server-text-content {
    width: 100%;
  }

  .text-left {
    text-align: left;
  }

  .server-title {
    padding-bottom: 0;
  }

  .question {
    padding-left: 5px;
  }

  .question:after {
    right: 10px;
  }

  .faq {
    padding: 50px 5px 0;
  }

  .download li {
    width: 100%;
    padding-left: 5px;
  }

  .download li a:after {
    right: 5px;
  }

  .contact li i {
    padding: 0;
  }

  .contact li p {
    font-size: 14px;
  }

  .sample-request li, .select-list1 li {
    width: 100%;
  }

  .select-item1 {
    padding-left: 0;
  }

  .sample {
    padding: 0 10px;
  }

  .product-detail-r, .product-del-onel {
    width: 100%;
  }

  .procen_imgb ul li {
    width: 375px;
  }

  .proimgbshow1 {
    height: 375px;
  }

  .history-content {
    width: 100%;
    height: 160px;
  }

  .slide-content ul {
    padding: 0;
  }

  .history-content p {
    padding-left: 5px;
    line-height: normal;
    font-size: 10px;
  }

  .history-content-title {
    margin: 5px 0;
  }

  .product-detail-r {
    margin-top: 20px;
    padding-left: 25px;
    padding-right:25px;
  }


  .download li a {
    font-size: 14px;
  }

  .product-del-onel {
    padding-left: 0;
  }

  .company ul {
    display: contents;
  }

  .culture-list {
    margin-bottom: 20px;
  }

  .culture {
    padding-bottom: 0;
  }

  .about-title {
    line-height: 80px;
    font-size: 24px;
  }

  .certificate-list {
    width: 100%;
    margin-bottom: 15px;
  }

  .news-detail {
    padding: 20px 10px;
  }

  .news-page {
    margin-top: 50px;
    display: grid;
  }

  .news-page a {
    margin-bottom: 10px;
  }

  .contact li {
    width: 49%;
    padding-left: 10px;
  }

  .preview .arrow-left {
    left: 0;
  }

  .preview .swiper-container {
    margin-left: 20px;
  }

  .orientation > div {
    left: 0;
  }
  .view .swiper-container{
    height: 380px;
  }
}



