body {
  background: #eff3f6;
}

.swiper-box {
  position: relative;

}

.bold {
  font-weight: bold;
}

.modular1 .swiper-box {
  text-align: center;
  padding: 0 80px 0 80px;
  background: #fff;
  transform: translate(0, -50%);
}

.modular1 .swiper-box .swiper-button-next,
.modular1 .swiper-box .swiper-button-prev {
  left: 30px;
}

.modular1 .swiper-box .swiper-button-next {
  left: auto;
  right: 30px;
}

.modular1 .swiper-box .icon {
  width: 80px;
  height: 80px;
  border: 1px solid #000;
  box-sizing: border-box;
  border-radius: 20px;
  display: inline-block;
  position: relative;
  transition: .5s;
}

.modular1 .swiper-box .icon img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: .5s;
  max-width: 60%;
  max-height: 60%;
}

.modular1 .swiper-box .icon .ison {
  opacity: 0;
}


.modular1 .swiper-slide:hover .icon,
.modular1 .swiper-slide.on .icon {
  background: #979798;
  border-color: #979798;
}

.modular1 .swiper-slide:hover .icon img,
.modular1 .swiper-slide.on .icon img {
  opacity: 0;
}

.modular1 .swiper-slide:hover .icon .ison,
.modular1 .swiper-slide.on .icon .ison {
  opacity: 1;
}

.modular1 .swiper-box .text {
  margin-top: 1em;
  margin-bottom: 2em;
}

.modular1 .swiper-box .swiper-slide {
  padding-top: 40px;
  position: relative;
  transition: .5s;
}

.modular1 .swiper-box .swiper-slide::after {
  content: '';
  position: absolute;
  border-bottom: 2px solid transparent;
  width: 0%;
  bottom: 0;
  left: 0;
  transition: .5s;
}

.modular1 .swiper-box .swiper-slide:hover,
.modular1 .swiper-box .swiper-slide.on {
  background: linear-gradient(to bottom, #ffffff, #eff3f6);
}

.modular1 .swiper-box .swiper-slide:hover::after,
.modular1 .swiper-box .swiper-slide.on::after {
  border-color: #000;
  width: 100%;
}


.swiper-box .swiper-button-next,
.swiper-box .swiper-button-prev {
  left: 30px;
  background: none;
  height: auto;
  margin-top: 0;
  transform: translate(0, -50%);
}

.swiper-box .swiper-button-next {
  left: auto;
  right: 30px;
}

.modular2 .filter-btn {
  margin-bottom: 2em;
  float: right;
  display: none;
}

.modular2 .wrap {
  display: flex;
}

.modular2 .wrap .left {
  width: 300px;
  margin-right: 60px;
}

.modular2 .wrap .right {
  flex: 1;
  font-size: 14px;
}

.modular2 .wrap .head .title {
  font-weight: bold;
}

.modular2 .wrap .right .head {
  display: flex;
  margin-bottom: 20px;
  clear: both;
}

.modular2 .wrap .right .head .r {
  text-align: right;
  align-items: center;
  flex: 1;
}

.modular2 .wrap .right .head .btn {
  padding: 10px 40px;
  border: 1px solid #000;
  display: inline-block;
  margin-right: 40px;
}



.modular2 .filter-more {
  font-size: 14px;
  position: relative;
}

.modular2 .filter-list .title {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  padding-left: 1em;
}

.modular2 .filter-list .list .item {
  display: block;
  margin: 0.5em 0;
  padding: 0.5em 0;
  padding-left: 1em;
  color: #787878;
  position: relative;
}

.modular2 .filter-list .list .item::after {
  content: '';
  height: 100%;
  border-left: 2px solid #000;
  opacity: 0;
  transition: .5s;
  left: 0;
  top: 0;
  position: absolute;
}

.modular2 .filter-list .list .item.on {
  font-weight: bold;
  color: #000;
}

.modular2 .filter-list .list .item.on::after {
  opacity: 1;
}

.modular2 .filter .filter-head {
  display: flex;
  padding: 1em 0;
  margin: 1em 0;
  border: 1px solid #070808;
  border-left: 0;
  border-right: 0;
}

.modular2 .filter .filter-head .r {
  display: flex;
}

.modular2 .filter .filter-head .r .item {
  margin-left: 1em;
  position: relative;
  padding-left: calc(12px + 0.5em);
  cursor: pointer;
}

.modular2 .filter .filter-head .r .item.on::before {
  background: #000;
}

.modular2 .filter .filter-head .r .item::before {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 12px;
  height: 12px;
  border: 1px solid #000;
  border-radius: 12px;
}

.modular2 .filter-more {
  padding: 10px 20px;
  width: 100%;
  text-align: center;
  border: 1px solid #000;
  cursor: pointer;
}

.modular2 .right .list {
  font-size: 14px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.modular2 .right .list .text {
  color: #787878;
  padding: 30px;
  padding-top: 0;
  display: block;
}

.modular2 .right .list .text * {
  color: #787878;
}

.modular2 .right .list .title {
  color: #000;
  margin-bottom: 1em;
  font-weight: bold;
}

.modular2 .right .list .text:hover .title {
  color: #398acd;
}


.modular2 .right .list .title img {
  float: right;
}

.modular2 .right .list .item {
  background: #fff;
  position: relative;
  width: calc(33.333% - 20px);
}

.modular2 .right .list .item.new::before,
.modular2 .right .list .item.new::after {
  content: attr(data-left-text);
  position: absolute;
  left: -1em;
  top: 1em;
  background: #398acd;
  color: #fff;
  padding: 1em 1.2em;
  line-height: 1;
}

.modular2 .right .list .item.new::before {
  content: '';
  top: 4em;
  border: 0.5em solid transparent;
  border-right-color: #398acd;
  border-top-color: #398acd;
  background: none;
  padding: 0;
}

.modular2 .right .list .item .img:hover img {
  transform: scale(1.1);
}

.modular2 .right .list .item .img {
  height: 260px;
  line-height: 260px;
  text-align: center;
  background: linear-gradient(to bottom, #dde5e9, #fff);
  display: block;
}

.modular2 .right .list .item .img img {
  max-width: 75%;
  max-height: 75%;
  vertical-align: middle;
  transition: .5s;
}

.modular2 .right .list .item .num {
  position: absolute;
  right: 20px;
  top: 15px;
}

.modular2 .right .list .item .btns {
  border-top: 1px solid #dedede;
  display: flex;
}

.modular2 .right .list .item .btns .item+.item {
  border-left: 1px solid #dedede;
}

.modular2 .right .list .item .btns .item {
  display: block;
  width: 50%;
  flex: 1;
  text-align: center;
  padding: 1em 0;
}

.filter-box,
.assist-box {
  position: fixed;
  left: 0;
  top: 0;
  background: #000;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  z-index: 99998;
  display: none;
  cursor: default;
}

.filter-box.show,
.assist.show,
.assist-box.show {
  display: block;
}



.assist {
  position: absolute;
  z-index: 99999;
  width: 100vw;
  top: 0;
  left: calc(100% + 60px);
  display: none;
}

.assist .wrap {
  margin: 0;
}

.assist .wrap .right {
  background: #fff;
}

.assist .tags-box {
  display: flex;
}

.assist .tags-box .tag-head {
  background: #eff3f6;
}

.assist .tags-box .tag-head .item {
  padding: 0.5em 1em;
  margin: 1.5em 0;
  position: relative;
}

.assist .tags-box .tag-head .item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-left: 2px solid #000;
  opacity: 0;
  transition: .5s;
}


.assist .tags-box .tag-head .item.on {
  color: #398acd;
}

.assist .tags-box .tag-head .item.on::after {
  opacity: 1;
}

.assist .tags-box .tag-body {
  padding: 4em;
}

.assist .tags-box .tag-head {
  padding: 1em 2em;
}

.assist .tags-box .tag-body {
  flex: 1;
  position: relative;
  padding-bottom: 7.5em;
}

.assist .tags-box .tag-body .item {
  display: none;
}

.assist .tags-box .tag-body .item.on {
  display: block;
}

.assist .tags-box .tag-body .item .layui-form {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 10px;
  text-align: left;
}

.assist .tags-box .tag-body .item .layui-form-checkbox[lay-skin=primary] {
  width: calc(25% - 8px);
}

.assist .tags-box .tag-body .btns {
  position: absolute;
  right: 4em;
  bottom: 4em;
}

.assist .tags-box .tag-body .btns .btn {
  padding: 0.8em 2em;
  line-height: 1;
  border: 1px solid #000;
  margin-left: 1em;
  display: inline-block;
}

.assist .tags-box .tag-body .btns .btn.confirm {
  background: #398acd;
  color: #fff !important;
  border-color: #398acd;
}

.assist .tags-box .tag-body .btns .btn.confirm:hover {
  opacity: 0.8;
}

.modular3 {
  background: no-repeat center center;
  background-size: cover;
  padding: 166px 0;
}

.modular3 .wrap {
  display: flex;
  align-items: center;
}

.modular3 .left {
  background: #fff;
  padding: 50px;
  box-sizing: border-box;
  width: 460px;
}

.modular3 .right {
  flex: 1;
  text-align: center;
}

.modular3 .product-img {
  max-width: 100%;
  max-height: 100%;
}

.modular3 .btns {
  display: flex;
  justify-content: center;
}

.modular3 .btns .btn {
  display: inline-block;
  padding: 1em 3em;
  border: 1px solid #000;
  font-size: 14px;
  margin: 2em 1em;
  margin-bottom: 0;
}

.modular3 .authentication {
  font-size: 0;
}

.modular3 .authentication .list,
.modular3 .authentication {
  display: flex;
  align-items: center;
}

.modular3 .authentication .list .item {
  margin-right: 10px;
}

.modular3 .model {
  padding-top: 10px;
  padding-bottom: 20px;
  margin-bottom: 40px;
  position: relative;
}

.modular3 .model::after {
  content: '';
  width: 2em;
  position: absolute;
  left: 0;
  bottom: 0;
  border-bottom: 1px solid #000;
}

.modular3 .parameter-box {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 10px;
}

.modular3 .parameter {
  width: calc(50% - 5px);
}

.modular3 .download {
  display: inline-block;
  vertical-align: top;
  margin: auto;
  padding: 0.5em 1em 0.5em 2em;
  margin: 2em 0;
  border: 1px solid #000;
}

.modular3 .download-box {
  font-size: 0;
}

.modular3 .download i {
  margin-left: 2em;
}

.certimgicon {
  width: 30px;
  height: auto;
  vertical-align: middle; /* 使图标与文字对齐 */
  margin-right: 5px; /* 增加图标间的间距 */
}

.red {
  color: #f6565b;
}

.modular4 {
  background: #fff;
}

.modular4 .sub-nav {
  background: #fff;
  transform: translate(0, -85%);
  padding: 0 100px;
  position: relative;
  display: flex;
  align-items: center;
}

.modular4 .sub-nav .left {
  display: flex;
  gap: 1em;
}

.modular4 .sub-nav .left .item {
  padding: 40px 2em;
  position: relative;
}

.modular4 .sub-nav .left .item.on::after {
  content: '';
  position: absolute;
  bottom: 10px;
  width: 100%;
  left: 0;
  border-bottom: 4px solid #000;
}

.modular4 .right {
  flex: 1;
  text-align: right;
}

.modular4 .right .buy-consult {
  background: #398acd;
  padding: 1em 2.5em;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.modular4 .right .buy-consult:hover {
  color: #fff !important;
  opacity: 0.8;
}

.modular5 {
  background: #fff;
  text-align: center;
  margin-top: -30px;
}

.modular5 .title {
  margin-bottom: 1em;
}

.modular5 .text {
  line-height: 1.8;
  border-bottom: 1px solid #cecece;
  padding-bottom: 80px;
}

.modular5 .text p {
  margin-bottom: 1em;
}

.modular6 {
  background: #fff;
  text-align: center;
}

.modular9 .title,
.modular7 .title,
.modular6 .title {
  margin-bottom: 1em;
}

.modular6 .swiper-slide {
  border: 1px solid #000;
  box-sizing: border-box;
  padding: 50px 20px;
  transition: .5s;
}


.modular6 .swiper-slide .img {
  width: 5em;
  height: 5em;
  position: relative;
  margin: 0 auto;
  border: 1px solid #000;
  box-sizing: border-box;
  border-radius: 2em;
  margin-bottom: 2em;
  transition: .5s;
}

.modular6 .swiper-slide .img img {
  vertical-align: middle;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 50%;
  max-height: 50%;
}

.modular6 .swiper-slide .img img.ishover {
  opacity: 0;
}

.modular6 .swiper-slide .box {
  position: relative;
  z-index: 2;
}
.modular6 .swiper-slide .box .text{height: 4.5em; overflow: hidden;}

.modular6 .swiper-slide::before {
  content: '';
  position: absolute;
  left: 0;
  width: 0;
  height: 2px;
  background: #000;
  transition: .5s;
  bottom: 0;
  z-index: 1;
}

.modular6 .swiper-slide::after {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #ffffff, #b5bec8);
  opacity: 0;
  transition: .5s;
}

.modular6 .swiper-slide:hover {
  border-color: transparent;
}

.modular6 .swiper-slide:hover::before {
  width: 100%;
}

.modular6 .swiper-slide:hover::after {
  opacity: 1;
}

.modular6 .swiper-slide:hover .img {
  background: #757a7f;
  border-color: transparent;
}

.modular6 .swiper-slide:hover .img img {
  opacity: 0;
}

.modular6 .swiper-slide:hover .img img.ishover {
  opacity: 1;
}

.modular9 .wrap,
.modular6 .wrap {
  border-bottom: 1px solid #cecece;
  padding: 80px 0;
}

.swiper-box .swiper-button-next,
.swiper-box .swiper-button-prev {
  left: -60px;
}

.swiper-box .swiper-button-next {
  left: auto;
  right: -60px;
}

.modular7 {
  background: #fff;
  text-align: center;
}

.modular7 .wrap {
  border-bottom: 1px solid #cecece;
  padding: 80px 0;
}

.modular7 .tags-box .tag-head {
  display: flex;
  background: #abb5c1;
}

.modular7 .tags-box .tag-head .item {
  flex: 1;
  height: 80px;
  line-height: 80px;
  position: relative;
  transition: .5s;
  cursor: pointer;
  color: #fff;
}

.modular7 .tags-box .tag-head .item::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #000;
  transition: .5s;
}

.modular7 .tags-box .tag-head .item.on {
  background: linear-gradient(to bottom, #c3cad3, #acb6c2);
  font-weight: bold;
}

.modular7 .tags-box .tag-head .item.on::after,
.modular7 .tags-box .tag-head .item:hover::after {
  width: 100%;
}


.modular7 .tags-box .tag-body table {
  width: 100%;
  border: 1px solid #c0c7d0;
}

.modular7 .tags-box .tag-body table tr {
  background: #eff3f6;
  text-align: left;
}

.modular7 .tags-box .tag-body table tr+tr {
  border-top: 1px solid #c0c7d0;
}

.modular7 .tags-box .tag-body table tr td {
  padding: 1em 2em;
  width: 30%;
}

.modular7 .tags-box .tag-body table tr td .tb-box {
  display: flex;
  margin: -1em -2em;
  vertical-align: top;
}

.modular7 .tags-box .tag-body table tr td .tb {
  flex: 1;
  width: 50%;
  padding: 1em 2em;
}

.modular7 .tags-box .tag-body table tr td .tb+.tb {
  border-left: 1px solid #c0c7d0;
}

.modular7 .tags-box .tag-body table tr td+td {
  background: #fff;
  width: auto;
  border-left: 1px solid #c0c7d0;
}

.modular7 .tags-box .tag-body>.item {
  display: none;
}

.modular7 .tags-box .tag-body>.item.on {
  display: block;
}

.modular7 .download-list {
  border: 1px solid #c0c7d0;
  padding: 0 2em;
}

.modular7 .download-list .item {
  padding: 0.5em 0;
}

.modular7 .download-list .item .box {
  display: flex;
  padding: 0.5em 2em;
  align-items: center;
}

.modular7 .download-list .item .name {
  flex: 1;
  text-align: left;
}

.modular7 .download-list .item+.item {
  border-top: 1px solid #c0c7d0;
}

.modular7 .download-list .item:hover .box {
  background: #eff3f6;
}

.modular7 .img-list {
  padding: 3em;
  border: 1px solid #c0c7d0;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.modular7 .img-list .item {
  width: calc(20% - 32px);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.modular7 .img-list .item img {
  width: 100%;
  transition: .5s;
}

.modular7 .img-list .item::before,
.modular7 .img-list .item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: .5s;
  z-index: 1;
}

.modular7 .img-list .item::before {
  content: '\e691';
  font-family: 'iconfont';
  border-radius: 90px;
  width: 3em;
  height: 3em;
  text-align: center;
  line-height: 3em;
  opacity: 0;
  color: #fff;
  background: #00000055;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #fff;
}

.modular7 .img-list .item:hover img {
  transform: scale(1.1);
}

.modular7 .img-list .item:hover::after {
  opacity: 0.4;
}

.modular7 .img-list .item:hover::before {
  opacity: 1;
}

.modular8 .wrap {
  border: 0;
}

.modular8 .swiper-slide {
  padding: 0;
  border: 0;
  transition: none;
}

.modular8 .swiper-slide::after,
.modular8 .swiper-slide::before {
  display: none;
}

.modular8 .swiper-slide .box {
  transition: .5s;
}

.modular8 .swiper-slide .pic {
  overflow: hidden;
}

.modular8 .swiper-slide .pic img {
  width: 100%;
  transition: .5s;
}

.modular8 .swiper-slide .box .tit {
  background: #fff;
  padding: 1em;
  margin: 0 3em;
  transform: translate(0, -50%);
  position: relative;
  z-index: 2;
  transition: .5s;
}

.modular8 .swiper-slide .box:hover img {
  transform: scale(1.05);
}

.modular8 .swiper-slide .box:hover .tit {
  transform: translate(0, -100%);
  margin: 0;
  background: #398acd;
  color: #fff;
  padding: 0.8em 1em;
}

.modular9 {
  background: none;
}

.modular9 .right .list {
  display: flex;
  gap: 0;
  flex-wrap: nowrap;
}


.modular9 .wrap .title {
  text-align: center;
  font-weight: normal;
}

.modular9 .right .list .title {
  text-align: left;
}

.modular9 .wrap,
.modular9 .wrap .right {
  display: block;
  border: none;
}

.modular9 .swiper-box .swiper-button-prev,
.modular9 .swiper-box .swiper-button-next {
  width: 3em;
  height: 3em;
  background: #fff;
  text-align: center;
  line-height: 3em;
}

.modular10 {
  text-align: left;
}

.modular10 .title {
  text-align: center;
}

.modular10 .swiper-slide {
  border-color: transparent;
  padding: 50px;
  transition: border-color .5s;
}

.modular10 .swiper-slide::before {
  display: none;
}

.modular10 .swiper-slide::after {
  opacity: 1;
  background: #eff3f6;
}

.modular10 .swiper-slide:hover::after {
  opacity: 0;
}

.modular10 .swiper-slide:hover {
  border-color: #000;
}

.modular10 .swiper-slide .img {
  background: #fff;
  border-color: transparent;
}

.modular10 .swiper-slide .box .head {
  display: flex;
  align-items: center;
  margin-bottom: 2em;
}

.modular10 .swiper-slide .box .head .tit {
  flex: 1;
  margin-left: 1em;
}

.modular10 .swiper-slide .img {
  margin: auto;
  width: 4.5em;
  height: 4.5em;
  border-radius: 1.5em;
}

.modular10 .swiper-slide:hover .img {
  background: none;
  border-color: #000;

}

.modular10 .swiper-slide:hover .img img {
  opacity: 1;
}

.modular10 .btns {
  margin-top: 2em;
}

.modular10 .btns .item {
  display: inline-block;
  padding: 0.6em 2.5em;
  border: 1px solid #000;
  font-size: 14px;
}

.modular10 .btns .item:hover {
  background: #398acd;
  color: #fff !important;
  border-color: #398acd;
}

.modular11 .sub-nav {
  display: block;
  padding: 20px 80px;
}

.modular11 .sub-nav .title {
  padding: 1em 0;
  font-weight: bold;
  position: relative;
  margin-bottom: 1em;
}

.modular11 .sub-nav .info {
  line-height: 1.8;
}

.modular11 .sub-nav .title::after {
  content: '';
  display: block;
  width: 2em;
  height: 2px;
  background: #000;
  bottom: 0;
  left: 0;
  position: absolute;
}

.modular12 {
  background: #eff3f6;
  padding: 5% 0;
}

.modular12 .title {
  font-weight: bold;
  text-align: center;
  margin-bottom: 2em;
}

.modular12 .layui-form-label {
  float: none;
  width: auto;
  text-align: left;
  padding: 1em 0;
}

.modular12 .layui-input-block {
  display: block;
  margin-left: 0;
}

.worm-form-item {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 0;
}


.worm-form-item .worm-inline {
  width: calc(33.33% - 27px);
}

.worm-form-item .layui-form-label em {
  color: #fe0000;
}

.select-group {
  display: flex;
  gap: 10px;
}

.worm-text-center {
  text-align: center;
}

.worm-btn {
  margin-top: 2em;
  padding: 1em 3em;
  line-height: 1;
  width: auto;
  height: auto;
}

.modular19 {
  padding: 80px 0;
  background: #eff3f6;
  position: relative;
}

.modular19::after {
  content: '';
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 50vh;
  background: linear-gradient(to bottom, #a5b1c1, #eff3f6);
}

.modular19 .wrap {
  background: #fff;
  padding: 40px;
  position: relative;
  z-index: 1;
}

.modular19 .contrast table {
  width: 20%;
  position: relative;
}

.modular19 .contrast table::after {
  content: '';
  display: block;
  border-right: 1px solid #c1c8d1;
  right: -1px;
  top: 0;
  height: 100%;
  position: absolute;
}

.modular19 .contrast table th,
.modular19 .contrast table td {
  width: 160px;
  box-sizing: border-box;
}

.modular19 .contrast table th,
.modular19 .contrast table td {
  border: 1px solid #c1c8d1;
  padding: 20px 20px;
  background: #eff3f6;
}

.modular19 .contrast table th {
  background: #abb5c1;
  color: #fff !important;
  text-align: center;
  cursor: pointer;
}

.modular19 .contrast .layui-collapse table td:last-child {
  margin-right: -1px;
}

.modular19 .contrast .layui-collapse table td {
  border: none;
}

.modular19 .contrast .layui-collapse table td+td {
  border-left: 1px solid #c1c8d1;
}

.modular19 .contrast .layui-collapse table tr+tr td {
  border-top: 1px solid #c1c8d1;
}

.modular19 .contrast table th:nth-child(1),
.modular19 .contrast table td:nth-child(1) {
  font-weight: bold;
  color: #000000;
}

.modular19 .contrast-b table tr td {
  word-break: break-all;
}

.modular19 ._sr ._head {
  display: flex;
}

.modular19 ._sr ._head h2 {
  flex: 1;
  position: relative;
  padding-bottom: 0.8em;
  margin-bottom: 2em;
}

.modular19 ._sr ._head h2::after {
  content: '';
  width: 2em;
  position: absolute;
  left: 0;
  bottom: 0;
  border-bottom: 1px solid #000;
}

.modular19 ._sr ._head .worm-btn {
  background: #398acd;
  margin-top: 0;
  color: #fff !important;
}

.modular19 .layui-colla-content {
  padding: 0;
  overflow: hidden;
}

.modular19 .contrast-t {
  position: relative;
}

.modular19 .add_item {
  color: #398acd;
  position: absolute;
  left: 20%;
  top: 0;
  width: 20%;
  height: 100%;
  background: #fff;
  text-align: center;
  line-height: 160px;
  border: 1px solid #c1c8d1;
  box-sizing: border-box;
  border-left: 0;
  cursor: pointer;
}

.modular19 .layui-colla-title {
  background: #abb5c1;
  color: #fff;
}

.modular19 .contrast table td+td {
  background: none;
}

/*寮圭獥*/
.add_contrast {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 91000;
}

.add_contrast-con {
  width: 500px;
  max-height: 80%;
  overflow: auto;
  position: absolute;
  top: 50%;
  background: #fff;
  transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
  padding: 35px;
  box-sizing: border-box;
  position: relative;
  max-width: 100%;
}

.add_contrast-con .add_step2,
.add_contrast-con .add_step1 {
  min-height: 430px;
  position: relative;
}

.select_step1 dl dd {
  height: 40px;
  width: 100%;
  background: #fbfaf9;
  line-height: 40px;
  padding: 0 20px;
  box-sizing: border-box;
;
  margin: 20px 0;
}

.select_step1 dl dd p {
  float: left;
  width: calc(100% - 30px);
  height: 100%;
  line-height: 40px
}

.select_step1 dl dd i {
  float: right;
  width: 30px;
}

.select_step1 dl dt {
  overflow: auto;
  position: absolute;
  top: 120px;
  bottom: 0px;
  width: 100%;
}

.add_contrast-con .add_step2 .select_step1 dl dt {
  bottom: 50px;
}

.sort1 {
  margin-bottom: 1em;
  cursor: pointer;
}

.sort1 ul {
  padding-left: 2.5em;
  color: #989898;
  display: none;
}

.sort1 ul p {
  line-height: 35px;
}

.sort1 p i {
  color: #398acd;
}

.sort1 ul li span {
  display: block;
  line-height: 30px;
}

.sort1 i {
  margin-right: 0.5em;
}

.sort1 ul ul {
  padding-left: 10px;
}

.sort1 .ul1 {
  margin-top: 1em;
}

.sort1.on .ul1 {
  display: block;
}

.sort1.on p i {
  color: #000;
}

.ul1 li.on .ul2 {
  display: block;
}

.ul1 li.on>p {
  color: #363636;
}

.add_step2 {
  display: none;
}

.ul2 li span.on {
  color: #398acd;
}

.ul3 li span {
  line-height: 28px;
  cursor: pointer;
  display: block;
  padding: 0.5em 1em;
}

.ul2 li span:hover,
.ul3 li span:hover {
  color: #398acd;
}

.ul3 li span.on,
.ul3 li span:hover {
  color: #fff;
  background: #398acd;
  color: #fff;
}

.add_step3 {
  display: none;
}

.add_step3 h1 {
  text-align: center;
}

.last_chose {
  text-align: center;
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  color: #888;
  font-size: 14px;
}

.add_step3 .last_chose {
  bottom: 35px;
}

.p1,
.p2 {
  display: inline-block;
}

.close_modal {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  border: 1px solid #398acd;
  text-align: center;
  line-height: 24px;
  display: block;
  right: 20px;
  top: 20px;
  cursor: pointer;
}

.close_modal i {
  font-size: 18px;
  color: #398acd;
}

.success_icon {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  border: 1px solid #e7e7e7;
  text-align: center;
  line-height: 70px;
  margin: 30px auto;
  margin-bottom: 54px;
}

.success_icon i {
  color: #398acd;
  font-size: 40px;
}
/* 25-04-24鏂板浜у搧鍒楄〃 */
.product_list_wrap{}
.filter_wrap{padding-bottom: 2.0888%;border-bottom: 1px solid #dedede;padding-top: 6.9444%;}
.filter_wrap .filter{
  display: flex;
  margin-bottom: 15px;
}
.filter_wrap .filter em{font-size: 16px;line-height: 42px;width: 48px;white-space: nowrap;}

.select_wrap{
  display: flex;
  flex-wrap: wrap;
  height: 42px;
  overflow: hidden;
}
.select_wrap.show{height: auto;overflow: visible;}
.select_box dt{
  position: relative;
  width: 100%;
  height: 42px;
  line-height: 42px;
  color: #9d9d9d;
  font-size: 14px;
  background-color: #fff;
  padding: 0 15px;
  padding-right: 60px;
  cursor: pointer;
}
.select_box dt::after{
  content: "\e743";
  font-family: 'iconfont';
  position: absolute;
  right: 15px;
  top: 50%;
  width: 12px;
  height: 12px;
  line-height: 22px;
  font-size: 22px;
  margin-top: -11px;
  color: #000;
}
.select_box{position: relative;margin-left: 10px;margin-bottom: 10px;}
.select_box dd{
  position: absolute;
  top: 43px;
  left: 0;
  width: 374px;
  background-color: #fff;
  z-index: 10;
  padding: 26px 26px 26px 30px;
  display: none;
}
.select_box.on dd{display: block;}
.select_box.on dt{border-bottom: 2px solid #398acd;}
.select_box dd .scroll{
  height: 170px;
  overflow-y: auto;
}
.select_box dd li{
  padding: 0 15px;
  line-height: 15px;
  font-size: 16px;
  margin-bottom: 20px;
  cursor: pointer;
}
.select_box dd li i{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  border: 1px solid #828282;
  margin-right: 10px;
}
.select_box dd li.active i::before{
  content:'';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 7px;
  height: 7px;
  background-color: #398acd;
}

.select_box .confirm{
  width: 92px;
  height: 44px;
  text-align: center;
  line-height: 44px;
  color: #fff;
  font-size: 14px;
  background-color: #398acd;
  margin: 28px auto 0;
  cursor: pointer;
}
.filter_more{
  color: #398acd;
  font-size: 16px;
  cursor: pointer;
}
.product_list .list{
  font-size: 14px;
  display: flex;
  /*gap: 27px;*/
  flex-wrap: wrap;
  padding-top: 4.16666%;

}
.product_list .list .item{
  background: #fff;
  position: relative;
  width: calc(25% - 26px); margin:13px;
}
.product_list .list .item .img{
  height: 260px;
  line-height: 260px;
  text-align: center;
  background: linear-gradient(to bottom, #dde5e9, #fff);
  display: block;
}
.product_list .list .item .img img{max-width: 80%;}
.product_list_an .list .item .img img{max-width:50%;}
.product_list .list .text{
  color: #000;
  padding: 30px;
  padding-top: 0;
  display: block;
}
@media only screen and (max-width: 1366px) {
  .modular2 .right .list .item {
    width: calc(50% - 20px);
  }
  .product_list .list .item .img{ height: 220px;line-height: 220px;}
}

@media only screen and (max-width: 1365px) {
  .product_list .list .item .img{ height: 200px;line-height: 200px;}
}

@media only screen and (max-width: 1024px) {


  .modular3 {
    padding: 10% 0;
  }

  .modular3 .wrap {
    flex-flow: column-reverse;
  }

  .modular3 .left {
    width: 100%;
    margin-top: 5%;
  }

  .modular4 .sub-nav {
    display: none;
  }

  .modular5 .text br {
    display: none;
  }

  .modular5 {
    padding-top: 40px;
    margin-top: 0;
  }

  .modular5 .text {
    padding-bottom: 40px;
  }

  .modular9 .wrap,
  .modular6 .wrap {
    padding: 40px 0;
  }

  .modular7 .tags-box .tag-head {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0;
    overflow: auto;
  }

  .modular7 .tags-box .tag-head .item {
    padding: 0 1em;
    width: auto;
    display: inline-block;
  }

  .modular7 .img-list {
    gap: 10px;
    padding: 1.5em;
  }

  .modular7 .download-list .item .box {
    padding: 0.5em 1em;
  }

  .modular7 .img-list .item {
    width: calc(50% - 5px);
  }

  .modular2 .wrap .left {
    position: fixed;
    z-index: 99999;
    display: none;
    left: 0;
    top: 0;
    height: 100%;
    background: #fff;
    padding: 30px;
    overflow: auto;
    width: 90%;
  }

  .modular2 .wrap .left.on {
    display: block;
  }

  .assist {
    position: fixed;
    left: 0;
    top: 0;
    width: 90%;
    z-index: 999999;
    overflow: auto;
    height: 100%;
  }

  .assist .tags-box .tag-body .btns .btn {
    margin: 0 0.5em;
  }

  .assist .tags-box .tag-body {
    padding: 3em 1em;
    padding-bottom: 9em;
  }

  .assist .tags-box .tag-body .btns {
    position: fixed;
    right: auto;
    bottom: 0;
    left: 0;
    width: 90%;
    background: #fff;
    padding: 2em 0;
  }

  .assist .tags-box .tag-head {
    padding: 1em;
    padding-bottom: 9em;
  }

  .assist .wrap .left.on {
    display: none;
  }

  .modular1 .swiper-box {
    padding: 0 50px 0 50px;
  }

  .modular1 .swiper-box .icon {
    width: 50px;
    height: 50px;
  }

  .modular1 .swiper-box .swiper-button-next,
  .modular1 .swiper-box .swiper-button-prev {
    left: 10px;
  }

  .modular1 .swiper-box .swiper-button-next {
    left: auto;
    right: 10px;
  }

  .modular1 .swiper-box {
    transform: none;
    margin: 10% 0;
  }

  .modular2 .filter-btn {
    display: block;
  }

  .assist .tags-box .tag-body .item .layui-form-checkbox[lay-skin=primary] {
    width: 100%;
  }

  .assist .tags-box .tag-body {
    overflow: auto;
  }

  .assist .wrap {
    width: 100%;
    height: 100%;
    display: block;
  }

  .assist .tags-box,
  .assist .wrap .right {
    height: 100%;
  }

  .modular11 .sub-nav {
    display: block;
    transform: none;
    padding: 20px 0;
  }

  .worm-form-item .worm-inline{
    width: 100%;
  }
  .product_list .list .item{
    width: calc(33.33% - 20px); margin: 10px;
  }

}
@media only screen and (max-width: 768px) {
.modular6 .swiper-slide .box .text{height: auto;}
}
@media only screen and (max-width: 767px) {
  .product_list .list .item .img{ height: 250px; line-height: 250px;}
  .modular19 {
    padding: 40px 0;
  }

  .modular19 .wrap {
    padding: 20px;
  }

  .contrast-b,
  .contrast-t {
    width: 600px !important;
  }

  .contrast-t-table {
    overflow: hidden;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .fnt_14 {
    font-size: 14px;
  }
}

@media only screen and (max-width: 690px) {
  .modular2 .right .list .item {
    width: 100%;
  }

  .modular2 .wrap .right .head .r a:last-child {
    display: none;
  }

  .modular2 .wrap .right .head .r a {
    margin-right: 0;
  }
  .product_list .list .item{
    width: 100%; margin: 0 0 10px;
  }
}

.swiper6 .swiper-button-prev,.swiper6 .swiper-button-next,
.swiper8 .swiper-button-prev,.swiper8 .swiper-button-next,
.swiper9 .swiper-button-prev,.swiper9 .swiper-button-next{
  display: none;
}
@media only screen and (max-width: 768px) {
  .swiper6 .swiper-button-prev,.swiper6 .swiper-button-next,
  .swiper8 .swiper-button-prev,.swiper8 .swiper-button-next,
  .swiper9 .swiper-button-prev,.swiper9 .swiper-button-next{
    display: block!important;
    width: 3em;
    height: 3em;
    background: #fff;
    text-align: center;
    line-height: 3em;
  }
  .swiper-box .swiper-button-next{right: -15px;box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);}
  .swiper-box .swiper-button-prev{left: -15px;box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);}

}
.modular3{padding-bottom: 120px;}
.modular3 .wrap{display: block;overflow: hidden;}
.modular3-top{width: 100%;overflow: hidden;}
.modular3 .left{float: left;}
.modular3 .right{width: 27%;float: right;margin-right: 12%;}
.proimgList{width: 100%;position: relative;padding: 0 40px;box-sizing: border-box;margin-top: 15px;}
.proimgList .swiper-container{padding: 5px;box-sizing: border-box;}
.proImg{position: relative; text-align: center; padding:10% 5%;width:100%; height: 3.6rem;}
.proImg img{width: 100%; max-width: 70%;}
.magnifier{width: 45px;height: 45px;background: rgba(0,0,0,0.6);border: 1px solid #fff;border-radius: 100%;color: #fff;text-align: center;
  position: absolute;right: -15px;bottom: 30px;font-size: 20px;display: flex;align-items: center;justify-content: center;cursor: pointer;}
.proimgList li{outline: 1px solid #000000;padding: 15px; width: 0.86rem; height: 0.8rem; box-sizing: border-box;cursor: pointer; background: none; display: flex; align-items:center;}
.proimgList li img{width: 100%;}
.proimgList .lhl_but div{background: none;line-height: 44px;font-size: 22px;color: #000;}
.proimgList .swiper-button-next.swiper-button-disabled,.proimgList .swiper-button-prev.swiper-button-disabled{pointer-events: inherit;opacity: 1;cursor: pointer;}
.proimgList .swiper-button-next.swiper-button-disabled.disabled, .proimgList .swiper-button-prev.swiper-button-disabled.disabled{opacity: .35;pointer-events: none;cursor: auto;}
.proimgList li.on{outline: 2px solid #398acd;box-shadow: 0 0 10px rgba(0,0,0,.2);}
.modular3-bot{margin-top: 30px;}
.modular3-bot i{margin: 0 7px;}
.modular5-5{text-align: left;padding-top: 0.5rem;background: #fff;}
.modular5-5 .title{margin-bottom: 0.6rem;overflow: hidden;display: flex;justify-content: space-between;}
.modular5-5 .title p{float: left;}
.select_01{float: right;display: flex;align-items: center;cursor: pointer;}
.select_01 i{margin-left: 8px;margin-right: 20px;display: block;transition: all .3s;}
.select_01.on{color: #398ACD;}
.select_01.on i{transform: rotate(180deg);}
.oneList{border-bottom: 1px solid #cecece;}
.oneList-tit{display: flex;align-items: center;justify-content: space-between;padding: 25px 0;cursor: pointer;}
.oneList-tit p{color: #787878;}
.oneList-tit i{margin-right: 20px;display: block;transition: all .3s;}
.twoList-all{padding: 0 38px;box-sizing: border-box;display: none;}
.twoList{}
.twoList-tit{padding: 20px 0;color: #787878;border-bottom: 1px solid #d7dce2;cursor: pointer;}
.twoList-tit p{display: flex;align-items: center;}
.twoList-tit i{margin-right: 10px;}
.twoList-con{margin-bottom: 20px;display: none;}
.three_list{margin-bottom: 20px;}
.three_list-tit{margin-bottom: 20px;}
.twoList-con table{width: 100%;border: 1px solid #d6dbe1;}
.twoList-con table td{padding: 16px 40px;box-sizing: border-box;border-bottom: 1px solid #c0c8d1;border-right: 1px solid #c0c8d1;}
.twoList-con table td.td1{background: #eff3f6;width: 27%;text-align: center;font-weight: bold;}
.twoList-con table td:last-child{width: 73%;}
.twoList-con table td:last-child img{max-width: 150px;}

.oneList.on{padding-bottom: 60px;border-color:#398acd;}
.oneList-tit.on p{color: #398acd;}
.oneList-tit.on i{transform: rotate(180deg);color: #398acd;}
.twoList-all.on{display: block;}
.twoList.on .twoList-tit{color: #398acd;border-bottom:none;}
.twoList-tit.on{border-bottom: 0;color: #398acd;}
.twoList-tit.on i.icon-jiahao:before{content: "\eaf5";}
.specialDown table td{border: 0;}
.specialDown thead td{background: #abb5c1;color: #fff;}
.specialDown .twoList-con table td{text-align: center;}
.specialDown .twoList-con thead td:first-child{text-align: left;}
.specialDown .twoList-con thead td:first-child i{margin-right: 30px;}
.specialDown .twoList-con table td.td1{background: none;text-align: left;font-weight: inherit;}
.specialDown .twoList-con table td.td1,.specialDown .twoList-con table td:last-child{width: auto;}
.specialDown .twoList-con table td.td1 i{margin-right: 10px;display: inline-block;vertical-align: middle;margin-top: -2px;font-weight: bold;color: #000;transition: all .3s;}
.specialDown .twoList-con tbody td{border-bottom: 1px solid #d6dbe1;}
.modular9 .wrap, .modular6 .wrap{border-bottom: 0;}

.proImgModal-con{padding: 50px 40px;box-sizing: border-box;}
.proImgModal{position: fixed;width: 70%;left: 15%;top: 13%;z-index: 100;background: #fff;box-shadow: 0 0 10px rgba(0,0,0,.2);display: none;}
.proImgModal-all{width: 50%;margin: 0 auto;}
.proImgModal-top{text-align: center;}
.proImgModal-top img{width: 100%;}
.proImgModal-div ul{display: flex;justify-content: center;padding: 10px;box-sizing: border-box;}
.proImgModal-div li{width: 60px;height: 60px;outline: 1px solid #000000;margin: 0 5px;padding: 10px;box-sizing: border-box;
  display: flex;align-items: center;justify-content: center;cursor: pointer;}
.proImgModal-div li.on{outline: 2px solid #398acd;box-shadow: 0 0 10px rgba(0,0,0,.1);}
.proImgModal-bot{margin-top: 30px;}
.proImgModal-close{position: absolute;width: 40px;height: 40px;text-align: center;line-height: 40px;top: 10px;right: 10px;font-size: 24px;cursor: pointer;}

.pdfModal{position: fixed;width: 50%;left: 25%;top: 13%;z-index: 100;background: #fff;box-shadow: 0 0 10px rgba(0,0,0,.2);display: none;}
.pdfModal-con{padding: 50px;box-sizing: border-box;}
.pdfModal-con h2{text-align: center;padding-bottom: 20px;border-bottom: 1px solid #ccc;margin-bottom: 30px;}
.pdfModal-div>p{margin-bottom: 20px;}
.pdfModal-div dl em{width: 14px;height: 14px;border: 1px solid #000;box-sizing: border-box;margin-right: 6px;display: block;position: relative;}
.pdfModal-div dl em:after{content: "";width: 10px;height: 10px;position: absolute;left: 1px;top: 1px;background: #398ACD;display: none;}
.pdfModal-div dl p{display: flex;align-items: center;cursor: pointer;}
.pdfModal-div dt{margin-left: 25px;}
.pdfModal-div dt p{margin: 10px 0;}
.pdfModal-bot{text-align: center;margin-top: 30px;}
.pdfModal-bot button{display: inline-block;border: none;padding: 10px 20px;box-sizing: border-box;margin: 0 5px;box-shadow: 0 4px 8px #2020204d;}
.btn_cancel{background: #f4f4f4;}
.btn_download{color: #fff;padding: 0!important;}
.btn_download a{color: #fff;display: block;padding: 10px 20px;box-sizing: border-box;background: #398acd;}
.pdfModal-div dd.on em:after{display: block;}
.pdfModal-div dl p.on em:after{display: block;}
.pdfModal-close{position: absolute;width: 40px;height: 40px;text-align: center;line-height: 40px;top: 10px;right: 10px;font-size: 24px;cursor: pointer;}
.specialDown .twoList-con{overflow-x: auto;}
.specialDown .twoList-con table{width: 850px;}

/*2025-07-13*/
.modular5-5{position: relative;z-index: 3;}
.fitter-select{width: 500px;margin-bottom: 20px;}
.fitter-select dl{position: relative;}
.fitter-select dd{background: #f4f4f4;display: flex;align-items: center;justify-content: space-between;padding: 10px 20px;box-sizing: border-box;cursor: pointer;}
.fitter-select dd h4{margin-bottom: 2px;}
.fitter-select dd .f-r span{display: block;transition: all .3s;}
.fitter-select dt{position: absolute;background: #fff;width: 100%;box-shadow: 0 0 10px rgba(0,0,0,0.1);padding: 10px 0;max-height: 300px;overflow-y: auto;display: none;}
.fitter-select dt p{line-height: 50px;padding: 0 20px;box-sizing: border-box;display: flex;align-items: center;cursor: pointer;}
.fitter-select dt p span{width: 30px;display: block;opacity: 0;color: #398acd;}
.fitter-select dt p.on{background: #f4f4f4;}
.fitter-select dt p.on span{opacity: 1;}
.fitter-select.on dd .f-r span{transform: rotate(180deg);}

.fitter-tips{border: 2px solid #398acd;padding: 10px 20px;box-sizing: border-box;border-left: 16px solid #398acd;margin-bottom: 20px;color: #3a3a3a;}
.fitter-tips i{color: #398acd;margin-right: 10px;}
.fitter-list{display: inline-block;width: 100%;margin-bottom: 0px;}
.fitter-list ul{margin-left: -10px;margin-right: -10px;font-size: 0;}
.fitter-list li{width: 20%;padding: 10px;box-sizing: border-box;display: inline-block;vertical-align: top;}
.fitter-list li a{color: #3a3a3a;}
.fitter-list li dd{text-align: center;}
.fitter-list li dt{padding: 0 15px 25px;box-sizing: border-box;}
.fitter-list li dt h4{font-weight: inherit;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}
.fitter-list li dt h4 b,.fitter-list li dt h4 em{font-weight: bold;}
.fitter-list li dt span{margin: 10px 0;font-weight: 300;display: block;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
.fitter-list li dt div{font-weight: 400;}
.fitter-list li dt div i{color: #398acd;margin-right: 5px;}


.advantage_div{text-align: center;padding: 5% 0;box-sizing: border-box;background: #fff;}
.advantage_div h2{font-weight: inherit;margin-bottom: 1em;}
.advantage_list ul{display: inline-block;max-width: 50%;}
.advantage_list li{display: flex;align-items: center;margin-bottom: 0.2rem;}
.advantage_list li span{color: #398acd;font-size: 0.48rem;margin-right: 0.2rem;}
.advantage_list li p{text-align: left;}
@media only screen and (min-width: 1025px) {
  .specialDown .twoList-con table td.td1 a:hover i{color: #398acd!important;}
  .btn_download a:hover{background: #4D94CD;}
  .btn_download a:hover{color: #fff!important;}
}
@media only screen and (max-width: 1024px) {
  .modular3 .right{width: 100%;margin-right: 0;}
  .proImg{width: 60%;margin-left: auto;margin-right: auto;margin-top: 40px; height: auto;}
  .proimgList{width: 70%;margin-left: auto;margin-right: auto;}
  .proimgList li{height: 3rem;}
  .proImgModal{width: 80%;left: 10%;}
  .proImgModal-all{width: 90%;}
  .modular3{padding-bottom: 60px;}
  .pdfModal{width: 80%;left: 10%;}
  .modular5 .title{margin-bottom: 30px;}
  .advantage_list ul{max-width: 70%;}
}
@media only screen and (max-width: 1023px) {
.proimgList li{height: 0.8rem;}
}
@media only screen and (max-width: 767px) {
  .modular3 .left{padding: 30px;}
  .modular3-bot i{margin: 0 3px;}
  .proImg{width: 75%;}
  .proimgList{width: 90%;}
  .proimgList li{padding: 8px;}
  .proImgModal{width: 90%;left: 5%;}
  .proImgModal-con{padding: 50px 20px 30px;}
  .proImgModal-div li{width: 40px;height: 40px;padding: 5px;}
  .swiper-box .swiper-button-next, .swiper-box .swiper-button-prev{
    width: 3em;
    height: 3em;
    background: #fff;
    text-align: center;
    line-height: 3em;
  }
  .oneList-tit{padding: 15px 0;}
  .twoList-all{padding: 0;}
  .twoList-con table td{padding: 12px 10px;}
  .twoList-con table td.td1{width: 40%;}
  .twoList-con table td:last-child{width: 60%;}

  .fitter-select{width: 100%;}
  .fitter-tips{padding: 5px 10px;border-left: 8px solid #398acd;font-size: 14px;}
  .fitter-list ul{margin-left: 0;margin-right: 0;}
  .fitter-list li{width: 100%;padding: 0;margin-bottom: 0;}
  .fitter-list li a{width: 70%;margin: 0 auto;display: block;}
  .advantage_list ul{max-width: 100%;}
  .advantage_list li span{font-size: 24px;}
}


.modular5 .wrap,.modular5-5 .wrap{max-width: 1200px;}
.listBody .site_banner{display: none;}