/* 
    Editor: fan
    Time: 2018.10.18

    Less compilation
    > npm install -g less
    > lessc style.less style.css
*/
html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
a,
address,
em,
img,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
tbody,
tfoot,
thead,
tr,
th,
td,
i,
b,
s {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

button::-moz-focus-inner {
  padding: 0;
}

input,
button,
textarea {
  resize: none;
  outline: none;
  border: none;
}

ul {
  list-style: none;
}

textarea:focus,
input:focus,
button:focus {
  outline: none;
}

a {
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
}

.ie-warning {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #000;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  padding: 50px 0;
}

.ie-warning h1 {
  margin: 0 0 30px;
}

.ie-warning p {
  font-size: 16px;
}

.ie-warning .ie-container {
  min-width: 1024px;
  width: 100%;
  height: 200px;
  background: #fff;
  margin: 60px 0;
}

.ie-warning .ie-download {
  list-style: none;
  padding: 30px 0;
  margin: 0 auto;
  width: 720px;
}

.ie-warning .ie-download>li>a {
  display: block;
  color: #000;
  width: 140px;
  font-size: 15px;
  padding: 15px 0;
  margin: 0 auto;
}

.ie-warning .ie-download>li>a>div {
  margin-top: 10px;
}

.ie-warning .ie-download>li>a:hover {
  background-color: #eee;
}

@keyframes fade1 {
  from {
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.fade1 {
  -webkit-animation-name: fade1;
  animation-name: fade1;
}

@keyframes da {
  from {
    width: 0;
    height: 0;
    opacity: 0;
  }

  to {
    width: 1070px !important;
    height: 1070px !important;
    opacity: 1;
  }

  @media (max-width: 1199px) {
    to {
      width: 800px !important;
      height: 800px !important;
    }
  }

  @media (max-width: 991px) {
    to {
      width: 600px !important;
      height: 600px !important;
    }
  }

  @media (max-width: 767px) {
    to {
      width: 500px !important;
      height: 500px !important;
    }
  }
}

.da {
  -webkit-animation-name: da;
  animation-name: da;
}

@keyframes xiao {
  from {
    width: 0;
    height: 0;
    opacity: 0;
  }
}

.xiao {
  -webkit-animation-name: xiao;
  animation-name: xiao;
}

.container::after,
.container::before {
  display: none;
}

.basecont {
  min-width: 88.5%;
}

.container {

  position: relative;
  width: 1520px;
  margin: 0 auto;
}

@media (min-width: 1441px) {

  /* .container {
    width: 1560px;
    padding: 0;
    max-width: 88.5%;
  } */
  .basecont {
    width: 1700px;
  }
}

@media (min-width: 2000px) {
  .container {
    width: 88.5%;
    padding: 0;
  }
}

@media (max-width: 1199px) {
  .container {
    min-width: 100%;
    width: 100%;
    padding: 0 15px;
  }
}

.transition {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.basebut {
  border-radius: 50px;
  width: 120px;
  height: 45px;
  border: 1px solid #eee;
  color: #030f21;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-size: 16px;
}

@media (max-width: 991px) {
  .basebut {
    width: 100px;
    height: 40px;
    font-size: 14px;
  }
}

.basebut>span {
  display: block;
  /* margin-right: 10px; */
}

.basebut i {
  display: none;
  align-items: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -30%;
  overflow: hidden;
  font-style: normal;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 991px) {
  .basebut i {
    right: -26%;
  }
}

.basebut i span {
  display: block;
  width: 40px;
  height: 1px;
  font-size: 18px;
  background-color: #030f21;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 991px) {
  .basebut i span {
    width: 33px;
  }
}

.basebut i strong {
  -webkit-transform: translateX(-7px) translateY(-1px);
  transform: translateX(-7px) translateY(-1px);
  font-size: 16px;
  line-height: 1.1;
  font-family: SimSun;
}

.basebut:hover {
  background-color: #FF0000;
  border-color: #FF0000;
}

.basebut:hover>span {
  color: #fff;
}

.basebut:hover i {
  right: -1%;
}

.basebut:hover i span {
  width: 20px;
  background-color: #fff;
}

.basebut:hover i strong {
  color: #fff;
}

.zhe {
  position: relative;
}

.zhe:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* 顶部 */
.headbox {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 888;
  height: 100px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.headboxhover {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

@media (max-width: 1199px) {
  .headbox {
    height: 80px;
  }
}

@media (max-width: 767px) {
  .headbox {
    height: 70px;
  }
}

.headbox .container {
  height: 100%;
}

.headbox .cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.headbox .cont .logo {
  display: flex;
  align-items: center;
}

.headbox .cont .logo h1 {
  margin: 0 26px 0 0;
  display: block;
  width: 215px;
  overflow: hidden;
}

@media (max-width: 1660px) {
  .headbox .cont .logo h1 {
    margin: 0 15px 0 0;
  }
}

@media (max-width: 1199px) {
  .headbox .cont .logo h1 {
    width: 160px;
    margin: 0;
  }
}

.headbox .cont .logo h1 a {
  display: block;
  width: 100%;
  overflow: hidden;
}

.headbox .cont .logo h1 a img {
  width: 100%;
  float: left;
}

.headbox .cont .logo h1 a img:nth-child(2) {
  display: none;
}

.headbox .cont .logo p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  display: block;
}

@media (max-width: 1440px) {
  .headbox .cont .logo p {
    display: none;
  }
}

@media (min-width: 1200px) {
  .headbox .cont .nav {
    display: flex !important;
    justify-content: center;
    align-items: center;
  }

  .headbox .cont .nav .ul {
    height: 60px;
    margin-right: 58px;
  }

  .headbox .cont .nav .ul:after {
    content: "";
    display: block;
    clear: both;
  }

  .headbox .cont .nav .ul li {
    float: left;
    line-height: 60px;
    display: block;
    margin-right: 28px;
    position: relative;
  }

  /*  .headbox .cont .nav .ul li:last-child {
    margin-right: 0;
  } */
  .headbox .cont .nav .ul li .tit {
    font-size: 16px;
    color: #fff;
    display: block;
    height: 100%;
    border-bottom: 3px solid transparent;
    padding: 0 10px;
    position: relative;
    z-index: 2;
  }

  .headbox .cont .nav .ul li .tit::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 5px;
    height: 5px;
    display: none;
    background-color: transparent;
    border-radius: 50%;
  }

  .headbox .cont .nav .ul li .tit:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -5px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid transparent;
    width: 0;
    height: 0;
  }

  .headbox .cont .nav .ul li .tit i {
    display: none;
  }

  .headbox .cont .nav .ul li .tit:hover {
    color: #FF0000 !important;
  }

  .headbox .cont .nav .ul li .tit:hover::before {
    background-color: #FF0000;
  }

  .headbox .cont .nav .ul li .hover {
    display: none;
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    z-index: 1;
    -webkit-transform: translateX(-35%);
    transform: translateX(-35%);
    background-color: #fff;
    width: 210px;
    box-shadow: 0 1px 20px rgba(1, 21, 39, 0.1);
  }

  .headbox .cont .nav .ul li .hover a {
    display: block;
    width: 100%;
    height: 55px;
    border-bottom: 2px solid #ddd;
    text-align: center;
    color: #666666;
    font-size: 16px;
  }

  .headbox .cont .nav .ul li .hover a:hover {
    color: #FF0000;
    border-bottom: 2px solid #FF0000;
  }

  .headbox .cont .nav .ul li .hover a:last-child {
    border-bottom: 2px solid #fff;
  }

  .headbox .cont .nav .ul .on .tit {
    color: #fff;
  }

  .headbox .cont .nav .ul .on .tit::before {
    background-color: #fff;
  }

  .headbox .cont .nav .ul .hv .tit:after {
    border-top: 5px solid #fff;
  }

  .headbox .cont .nav .ul .hv .tit:hover {
    border-bottom-color: #FF0000;
  }

  .headbox .cont .nav .ul .hv .tit:hover:after {
    border-top-color: #FF0000;
  }

  .headbox .cont .nav .ul .active .tit {
    border-bottom-color: #FF0000 !important;
    color: #FF0000 !important;
  }

  .headbox .cont .nav .ul .active .tit::before {
    background-color: #FF0000;
  }

  .headbox .cont .nav .ul .active .tit:after {
    border-top-color: #FF0000 !important;
  }
}

/* @media (min-width: 1200px) and (max-width: 1660px) {
  .headbox .cont .nav .ul {
    margin-right: 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1660px) {
  .headbox .cont .nav .ul {
    margin-right: 25px;
  }
} */
@media (min-width: 1200px) and (max-width: 1660px) {
  .headbox .cont .nav .ul li {
    margin-right: 10px;
  }

  .container {
    width: 1320px;
  }
}

@media (min-width: 1200px) and (max-width: 1440px) {
  .headbox .cont .nav .ul li {
    margin-right: 20px;
  }

  .headbox .cont .nav .ul li .tit {
    padding: 0 14px;
  }
}

@media (min-width: 1200px) and (max-width: 1366px) {
  .headbox .cont .nav .ul li .tit {
    padding: 0 10px;
  }
}

@media (max-width: 1199px) {
  .headbox .cont .nav {
    display: none;
    position: absolute;
    top: 100%;
    width: 100vw;
    height: 100vh;
    left: 0;
    background-color: #fff;
  }

  .headbox .cont .nav .ul {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto 15px;

  }

  .headbox .cont .nav .ul li {
    display: block;
    width: 100%;
    margin-bottom: 0;
    line-height: 50px;
    border-bottom: 1px solid #ddd;
    position: relative;

  }

  .headbox .cont .nav .ul li:before {
    content: "";
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 46px;
    background-color: #7e7e7e;
    height: 1px;
  }

  .headbox .cont .nav .ul li a {
    color: #262626;
  }

  .headbox .cont .nav .ul li .tit {
    font-size: 22px;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .headbox .cont .nav .ul li .tit i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }

  .headbox .cont .nav .ul li .tit i img {
    width: 10px;
  }

  .headbox .cont .nav .ul li .hover {
    display: none;
  }

  .headbox .cont .nav .ul li .hover a {
    font-size: 16px;
    display: block;
    padding: 5px 15px;
  }

  .headbox .cont .nav .ul .active .tit i {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .headbox .cont .nav .nu {
    /* margin-left: 3.5%; */
    padding: 0 15px;
  }

}

.headbox .cont .nav .nu span {
  font-size: 16px;
  display: block;
}

.headbox .cont .nav .nu strong {
  font-size: 18px;
}

@media (max-width: 1199px) and (max-width: 767px) {
  .headbox .cont .nav .ul li .tit {
    font-size: 16px;
  }
}

@media (max-width: 1750px) {
  .headbox .cont .nav .ul {
    margin-right: 8px;
  }

  .headbox .cont .nav .ul li {
    margin-right: 16px;
  }

}

@media (max-width: 1600px) {
  .headbox .cont .nav .ul li {
    margin-right: 14px;
  }
}

@media (max-width: 1549px) {

  /* 	.headbox .cont .nav .ul li .tit{
		font-size: 16px;
	} */
  .headbox .cont .nav .ul li {
    margin-right: 0px;
  }
}

.headbox .cont .nav .nu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  /* flex-direction: column; */
  width: auto;
  /* height: 35px; */
  border-radius: 3px;
  color: #fff;
  background-color: transparent;
  font-size: 14px;
}

@media (max-width: 1680px) {
  .headbox .cont .nav .nu {
    width: auto;
  }

  .headbox .cont .nav .nu span {
    font-size: 18px;
    white-space: nowrap;
  }

  .headbox .cont .nav .nu strong {
    font-size: 16px;
    white-space: nowrap;
  }
}

@media (max-width: 1199px) {
  .headbox .cont .nav .nu {
    width: 100%;
  }
}

.headbox .cont .nav .nu i {
  display: block;
  width: 42px;
  flex-shrink: 0;
  margin-right: 8px;
}

/* @media (max-width: 991px) {
  .headbox .cont .nav .nu i {
    width: 14px;
  }
} */
.headbox .cont .nav .nu i img {
  width: 100%;
}

.headbox .cont .nav .nu i img:nth-child(2) {
  display: none;
}

.headbox .cont .but {
  width: 35px;
  height: 22px;
  position: relative;
}

.headbox .cont .z-but {
  display: flex;
}

.headbox .cont .z-but .cn1 {
  font-size: 14px;
  margin-right: 10px;
  color: #fff;
}

@media (min-width: 1200px) {
  .headbox .cont .z-but {
    display: none;
  }

  .headbox .cont .but {
    display: none;
  }
}

.headbox .cont .but span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 20px;
  margin-bottom: 8px;
}

.headbox .cont .but span:last-child {
  margin-bottom: 0;
}

.headbox .cont .but:after,
.headbox .cont .but::before {
  content: "";
  display: none;
  width: 35px;
  height: 2px;
  background-color: #333;
  position: absolute;
  top: 10px;
}

.headbox .cont .but:after {
  right: 0;
  transform: rotate(-140deg);
}

.headbox .cont .but::before {
  left: 0;
  transform: rotate(140deg);
}

.headbox .cont .but.xian:after,
.headbox .cont .but.xian::before {
  display: block;
}

.headbox .cont .but.xian span {
  display: none;
}

.headbox:hover {
  background-color: #fff;
}

.headbox:hover .cont .logo h1 a img:nth-child(1) {
  display: none;
}

.headbox:hover .cont .logo h1 a img:nth-child(2) {
  display: block;
}

.headbox:hover .cont .logo p {
  color: #001b3f;
}

.headbox:hover .cont .nav .ul li .tit {
  color: #001b3f;
}

.headbox:hover .cont .nav .ul .hv .tit:after {
  border-top-color: #001b3f;
}

.headbox:hover .cont .nav .ul .on .tit {
  color: #FF0000;
}

.headbox:hover .cont .nav .ul .on .tit:before {
  background-color: #FF0000;
}

.headbox:hover .cont .nav .nu {
  /* background-color: #FF0000; */
  color: #333;
  display: flex;
  /* align-items: center; */
}

.headbox:hover .cont .nav .nu i {
  display: block;
  /* width: 20px; */
}

.headbox:hover .cont .nav .nu i img:nth-child(1) {
  display: none;
}

.headbox:hover .cont .nav .nu i img {
  width: 100%;
}

.headbox:hover .cont .nav .nu i img:nth-child(2) {
  display: block;
}

.headbox:hover .cont .but span {
  background-color: #333;
}

.headbox .cont .but.xian .cn1 {
  color: #333;
}

.headbox:hover .cont .z-but .cn1 {
  color: #333;
}

.headbox1 {
  background-color: #fff;
}

.headbox1 .cont .z-but .cn1 {
  color: #333;
}

.headbox1 .cont .logo h1 a img:nth-child(1) {
  display: none;
}

.headbox1 .cont .logo h1 a img:nth-child(2) {
  display: block;
}

.headbox1 .cont .logo p {
  color: #001b3f;
}

.headbox1 .cont .nav .ul li .tit {
  color: #001b3f;
}

.headbox1 .cont .nav .ul .hv .tit:after {
  border-top-color: #001b3f;
}

.headbox1 .cont .nav .ul .on .tit {
  color: #FF0000;
}

.headbox1 .cont .nav .ul .on .tit:before {
  background-color: #FF0000;
}

.headbox1 .cont .nav .nu {
  /* background-color: #FF0000; */
  color: #333;
}

.headbox1 .cont .nav .nu i img:nth-child(1) {
  display: none;
}

.headbox1 .cont .nav .nu i img:nth-child(2) {
  display: block;
}

.headbox1 .cont .but span {
  background-color: #333;
}

.headbox2 {
  background-color: #fff;
}

.headbox2 .cont .logo h1 a img:nth-child(1) {
  display: none;
}

.headbox2 .cont .logo h1 a img:nth-child(2) {
  display: block;
}

.headbox2 .cont .logo p {
  color: #001b3f;
}

.headbox2 .cont .nav .ul li .tit {
  color: #001b3f;
}

.headbox2 .cont .nav .ul .hv .tit:after {
  border-top-color: #001b3f;
}

.headbox2 .cont .nav .ul .on .tit {
  color: #FF0000;
}

.headbox2 .cont .nav .ul .on .tit:before {
  background-color: #FF0000;
}

.headbox2 .cont .nav .nu {
  /* background-color: #FF0000; */
  color: #333;
  cursor: auto;
}

.headbox2 .cont .nav .nu .font {
  display: block;
}

.headbox2 .cont .nav .nu i {
  overflow: hidden;
}

.headbox2 .cont .nav .nu i img {
  float: left;
}

.headbox2 .cont .nav .nu i img:nth-child(1) {
  display: none;
}

.headbox2 .cont .nav .nu i img:nth-child(2) {
  display: block;
}

.headbox2 .cont .but span {
  background-color: #333;
}

.breadbox {
  height: 80px;
}

.breadbox .w1420 a,.breadbox .w1420 div{
  font-size: 14px;
    color: #666;
}

@media (max-width: 991px) {
  .breadbox {
    height: 60px;
    margin-bottom: 10px;
  }
}

.breadbox .w1420 {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.breadbox .container div,
.breadbox .container a,
.breadbox .container span {
  font-size: 14px;
  color: #666;
}

.breadbox .container .on {
  color: #FF0000;
}

/* End */
/* 分页 */
.pagebox {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.pagebox .list .paev,
.pagebox .list .next {
  font-size: 14px;
  color: #262626;
  display: flex;
  align-items: cener;
}

@media (max-width: 575px) {

  .pagebox .list .paev,
  .pagebox .list .next {
    font-size: 12px;
  }
}

.pagebox .list .paev i,
.pagebox .list .next i {
  display: block;
  height: 14px;
}

.pagebox .list .paev i img,
.pagebox .list .next i img {
  height: 100%;
}

.pagebox .list .zhong a {
  font-size: 16px;
  color: #262626;
  display: inline-block;
  margin: 0 10px;
}

@media (max-width: 991px) {
  .pagebox .list .zhong a {
    font-size: 14px;
    margin: 0 5px;
  }
}

@media (max-width: 767px) {
  .pagebox .list .zhong a {
    font-size: 12px;
  }
}

.pagebox .list .zhong .on {
  text-decoration: underline;
  color: #FF0000;
}

.pagebox .list .paev {
  margin-right: 33px;
}

@media (max-width: 767px) {
  .pagebox .list .paev {
    margin-right: 20px;
  }
}

.pagebox .list .paev i {
  margin-right: 20px;
}

@media (max-width: 767px) {
  .pagebox .list .paev i {
    margin-right: 10px;
  }
}

.pagebox .list .next {
  margin-left: 33px;
}

@media (max-width: 767px) {
  .pagebox .list .next {
    margin-left: 20px;
  }
}

.pagebox .list .next i {
  margin-left: 20px;
}

@media (max-width: 767px) {
  .pagebox .list .next i {
    margin-left: 10px;
  }
}

/* Emd */
/* 证书放大 */
.imgscale {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.imgscale .bag {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.imgscale .img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 40%;
}

@media (max-width: 1440px) {
  .imgscale .img {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .imgscale .img {
    width: 90%;
  }
}

.imgscale .img img {
  width: 100%;
}

.imgscale .img .shutbox {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  cursor: pointer;
}

.imgscale .img .shutbox img {
  width: 100%;
}

/* End */
/* 底部 */
.footerbox {
  background-color: #262626;
  position: relative;
  z-index: 33;
}

.footerbox .container {
  position: relative;
}

.footerbox .container .cont {
  padding: 100px 0 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .footerbox .container .cont {
    padding: 80px 30px;
  }
}

@media (max-width: 767px) {
  .footerbox .container .cont {
    padding: 40px 0;
  }
}

.footerbox .container .cont .lt {
  width: 60%;
}

@media (max-width: 991px) {
  .footerbox .container .cont .lt {
    width: 100%;
    order: 1;
  }
}

.footerbox .container .cont .lt a {
  color: #fff;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.footerbox .container .cont .lt .menu {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 85px;
}

@media (max-width: 991px) {
  .footerbox .container .cont .lt .menu {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .footerbox .container .cont .lt .menu .item {
    width: 100%;
  }
}

.footerbox .container .cont .lt .menu .item .tit {
  font-size: 18px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .footerbox .container .cont .lt .menu .item .tit {
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {
  .footerbox .container .cont .lt .menu .item .tit {
    font-size: 16px;
  }
}

.footerbox .container .cont .lt .menu .item .tit a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footerbox .container .cont .lt .menu .item .tit a i {
  display: block;
  width: 20px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (min-width: 768px) {
  .footerbox .container .cont .lt .menu .item .tit a i {
    display: none;
  }
}

.footerbox .container .cont .lt .menu .item .tit a i img {
  width: 100%;
  float: left;
}

@media (min-width: 768px) {
  .footerbox .container .cont .lt .menu .item .list {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .footerbox .container .cont .lt .menu .item .list {
    display: none;
  }
}

.footerbox .container .cont .lt .menu .item .list a {
  color: #e3e3e3;
  font-size: 14px;
  display: block;
  margin-bottom: 15px;
}

.footerbox .container .cont .lt .menu .item .list a:hover {
  color: #fff;
}

.footerbox .container .cont .lt p {
  font-size: 14px;
  color: #e3e3e3;
}

@media (max-width: 767px) {
  .footerbox .container .cont .lt p {
    text-align: center;
  }
}

.footerbox .container .cont .lt p a {
  font-size: 14px;
  color: #e3e3e3;
}

.footerbox .container .cont .lt p a:hover {
  color: #fff;
}

.footerbox .container .cont .gt {
  width: 35%;
  display: flex;
  flex-direction: row-reverse;
}

@media (max-width: 991px) {
  .footerbox .container .cont .gt {
    order: 0;
    width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .footerbox .container .cont .gt .jut {
    width: 100%;
  }
}

.footerbox .container .cont .gt .logo {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .footerbox .container .cont .gt .logo {
    margin-bottom: 20px;
  }
}

.footerbox .container .cont .gt .logo h2 {
  display: block;
  width: 190px;
}

@media (max-width: 1199px) {
  .footerbox .container .cont .gt .logo h2 {
    width: 140px;
  }
}

@media (max-width: 991px) {
  .footerbox .container .cont .gt .logo h2 {
    width: 190px;
  }
}

@media (max-width: 575px) {
  .footerbox .container .cont .gt .logo h2 {
    width: 150px;
  }
}

.footerbox .container .cont .gt .logo h2 a {
  display: block;
  width: 100%;
}

.footerbox .container .cont .gt .logo h2 a img {
  width: 100%;
}

.footerbox .container .cont .gt .logo p {
  font-size: 14px;
  color: #fff;
  margin-top: 5px;
  margin-left: 10px;
}

@media (max-width: 1440px) {
  .footerbox .container .cont .gt .logo p {
    font-size: 14px;
  }
}

@media (max-width: 1199px) {
  .footerbox .container .cont .gt .logo p {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .footerbox .container .cont .gt .logo p {
    display: none;
  }
}

.footerbox .container .cont .gt .pho {
  padding-bottom: 25px;
  border-bottom: 1px solid #3c3c3c;
  margin-bottom: 23px;
}

.footerbox .container .cont .gt .pho span {
  font-size: 18px;
  color: #fff;
  opacity: 0.3;
  display: block;
}

.footerbox .container .cont .gt .pho strong {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}

@media (max-width: 1440px) {
  .footerbox .container .cont .gt .pho strong {
    font-size: 30px;
  }
}

@media (max-width: 1199px) {
  .footerbox .container .cont .gt .pho strong {
    /* font-size: px; */
  }
}

@media (max-width: 575px) {
  .footerbox .container .cont .gt .pho strong {
    font-size: 30px;
  }
}

.footerbox .container .cont .gt .cat {
  display: block;
  font-size: 14px;
  color: #fff;
  opacity: 0.5;
}

.offsetop {
  position: absolute;
  top: -45px;
  left: 0;
  width: 100%;
  height: 90px;
  background-color: #FF0000;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 991px) {
  .offsetop {
    height: 70px;
    top: -35px;
  }
}

@media (max-width: 767px) {
  .offsetop {
    height: 30px;
    top: -15px;
    display: none;
  }
}

.offsetop i {
  display: block;
  width: 33px;
}

@media (max-width: 991px) {
  .offsetop i {
    width: 28px;
  }
}

@media (max-width: 767px) {
  .offsetop i {
    width: 20px;
  }
}

.offsetop i img {
  width: 100%;
}

@media (max-width: 767px) {
  .offsetop {
    position: fixed;
    bottom: 35px;
    right: 15px;
    width: 35px;
    height: 35px;
    z-index: 666;
    left: auto;
    top: auto;
  }
}

/* End */
.base100 {
  padding: 100px 0;
}

@media (max-width: 1440px) {
  .base100 {
    padding: 80px 0;
  }
}

@media (max-width: 1199px) {
  .base100 {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .base100 {
    padding: 40px 0;
  }
}

.base120 {
  padding: 120px 0;
}

@media (max-width: 1440px) {
  .base120 {
    padding: 100px 0;
  }
}

@media (max-width: 1199px) {
  .base120 {
    padding: 80px 0;
  }
}

@media (max-width: 991px) {
  .base120 {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .base120 {
    padding: 40px 0;
  }
}

/* banner */
.bannerbox {
  background-color: #FF0000;
  width: 100%;
  height: 780px;
}

@media (max-width: 1199px) {
  .bannerbox {
    height: 100vh !important;
  }
}

@media (max-width: 1199px) {
  .bannerbox {
    height: 76vh !important;
  }
}

 
.bannerbox .swiper-slide {
  overflow: hidden;
  padding: 80px 0 60px;
}

.bannerbox .container {
  display: flex;
  height: 100%;
  align-items: center;
}

.bannerbox .container .cont {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}

.bannerbox .container .cont .img {
  position: relative;
  z-index: 2;
  width: 500px;
  margin-right: 9%;
}

@media (max-width: 1440px) {
  .bannerbox .container .cont .img {
    width: 400px;
  }
}

@media (max-width: 1366px) {
  .bannerbox .container .cont .img {
    width: 350px;
  }
}

@media (max-width: 991px) {
  .bannerbox .container .cont .img {
    width: 270px;
    margin-right: 12%;
  }
}

@media (max-width: 780px) {
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 767px) {
  .bannerbox .container .cont .img {
    width: 220px;
    margin-right: 0;
  }

  .bannerbox .container .cont {
    align-content: center;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .bannerbox .container .cont .img {
    /* width: 240px; */
    margin-right: 0;
  }
}

.bannerbox .container .cont .img img {
  width: 100%;
}

.bannerbox .container .cont .font {
  color: #fff;
}

@media (max-width: 767px) {
  .bannerbox .container .cont .font {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.bannerbox .container .cont .font .text {
  font-size: 38px;
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-bottom: 25px;
}

@media (max-width: 1440px) {
  .bannerbox .container .cont .font .text {
    font-size: 36px;
    margin-bottom: 20px;
  }
}

@media (max-width: 1199px) {
  .bannerbox .container .cont .font .text {
    font-size: 30px;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .bannerbox .container .cont .font .text {
    font-size: 28px;
    margin-bottom: 10px;
  }
}

@media (max-width: 376px) {
  .bannerbox .container .cont .font .text {
    font-size: 20px;
  }

  .bannerbox .container .cont .img {
    width: 240px;
  }
}

@media (max-width: 350px) {
  .bannerbox .container .cont .img {
    width: 200px;
  }
}

.bannerbox .container .cont .font .text span {
  display: block;
  padding: 3px 14px;
  background-color: #fff;
  color: #FF0000;
  font-size: 28px;
  border-radius: 3px;
  line-height: 1;
  margin-left: 10px;
}

@media (max-width: 1440px) {
  .bannerbox .container .cont .font .text span {
    font-size: 26px;
  }
}

@media (max-width: 1199px) {
  .bannerbox .container .cont .font .text span {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .bannerbox .container .cont .font .text span {
    font-size: 22px;
    border-radius: 6px;
  }
}

@media (max-width: 376px) {
  .bannerbox .container .cont .font .text span {
    font-size: 18px;
  }
}

.bannerbox .container .cont .font .tit {
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 95px;
}

.bannerbox .container .cont .font .but {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  width: 140px;
  height: 40px;
  border-radius: 0;
  border: 1px solid #fff;
  color: #fff;
  position: relative;
  border-radius: 3px;

}

.bannerbox .container .cont2 .font .but {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  width: 120px;
  height: 40px;
  border-radius: 3px;
  border: 1px solid #fff;
  color: #fff;
  position: relative;

}

/* .bannerbox .container .cont2 .font .but:hover{
	background-color: #FF0000;
	color: #fff;
	border-color: #FF0000;
} */
@media (max-width: 1440px) {
  .bannerbox .container .cont .font .tit {
    font-size: 40px;
    margin-bottom: 60px;
  }
}

@media (max-width: 1199px) {
  .bannerbox .container .cont .font .tit {
    font-size: 28px;
    margin-bottom: 65px;
  }
}

@media (max-width: 767px) {
  .bannerbox .container .cont .font .tit {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .bannerbox .container .cont2 .font .but {
    margin-top: 40px;
  }
}

@media (max-width: 376px) {
  .bannerbox .container .cont .font .tit {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

.bannerbox .container .cont .yuan {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 80%;
  height: 100%;
  z-index: 1;
}

.bannerbox .container .cont .yuan span {
  content: "";
  display: block;
  width: 512px;
  height: 512px;
  border: 107px solid #fff;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 1400px) {
  .bannerbox .container .cont .yuan span {
    width: 412px;
    height: 412px;
    border: 80px solid #fff;
  }
}

@media (max-width: 991px) {
  .bannerbox .container .cont .yuan span {
    width: 280px;
    height: 280px;
    border: 60px solid #fff;
  }
}

@media (max-width: 767px) {
  .bannerbox .container .cont .yuan span {
    top: 68%;
    right: 14%;
    border: 40px solid #fff;
    display: none;
  }
}

@media (max-width: 376px) {
  .bannerbox .container .cont .yuan span {
    right: 0;
  }

  .bannerbox .container .cont .yuan {
    top: 45%;
  }
}

.bannerbox .container .cont .yuan strong {
  content: "";
  display: block;
  width: 1070px;
  height: 1070px;
  border: 120px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  position: absolute;
  right: 20%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(50%);
  transform: translateX(50%) translateY(-50%);
}

@media (max-width: 1440px) {
  .bannerbox .container .cont .yuan strong {
    right: 25%;
    width: 900px;
    height: 900px;
  }
}

@media (max-width: 1199px) {
  .bannerbox .container .cont .yuan strong {
    width: 800px;
    height: 800px;
    border-width: 100px;
  }
}

@media (max-width: 991px) {
  .bannerbox .container .cont .yuan strong {
    width: 600px;
    height: 600px;
    border-width: 80px;
  }
}

@media (max-width: 767px) {
  .bannerbox .container .cont .yuan strong {
    right: 56%;
    top: 70%;
    width: 500px;
    height: 500px;
    border-width: 60px;
  }
}

.bannerbox .container .cont .basebut {
  border-color: #fff;
  color: #fff;
}

.bannerbox .container .cont .basebut i span {
  background-color: #fff;
}

.bannerbox .container .cont .basebut:hover {
  background-color: #fff;
}

.bannerbox .container .cont .basebut:hover>span {
  color: #FF0000;
}

.bannerbox .container .cont .basebut:hover i span {
  background-color: #FF0000;
}

.bannerbox .container .cont .basebut:hover i strong {
  color: #FF0000;
}

.inbanner {
  z-index: 9;
  /* margin-top: 100px; */
  position: relative;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 1199px) {
  /* .inbanner {
    margin-top: 80px;
  } */
}

@media (max-width: 767px) {
  /* .inbanner {
    margin-top: 70px;
  } */
}

.inbanner .img {
  width: 100%;
  height: 446px;
  overflow: hidden;

}

@media (max-width: 991px) {
  .inbanner .img {
    height: 200px;
  }
}

.inbanner .img img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.inbanner .img img:nth-child(2) {
  display: none;
}

@media (max-width: 991px) {
  .inbanner .img img {
    height: 100%;
    object-fit: cover;
  }
}

.inbanner .container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
}

.inbanner .container .font {
  color: #fff;
}

.inbanner .container .font strong,
.inbanner .container .font span {
  display: block;
}

.inbanner .container .font strong {
  font-weight: bold;
  font-size: 60px;
}

@media (max-width: 1199px) {
  .inbanner .container .font strong {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .inbanner .container .font strong {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .inbanner .container .font strong {
    font-size: 20px;
  }

  .inbanner .img img {
    overflow: hidden;
  }

  .inbanner .img img:nth-child(1) {
    /* display: none; */
    width: 165%;
    transform: translateX(-30%);
  }

  .inbanner .img img:nth-child(2) {
    display: block;
  }
}

.inbanner .container .font span {
  font-size: 36px;
}

@media (max-width: 1199px) {
  .inbanner .container .font span {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .inbanner .container .font span {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .inbanner .container .font span {
    font-size: 18px;
  }
}

.afterbanner {
  background-color: #FF0000;
}

.afterbanner .img {
  opacity: 0.1;
}

.afterbanner .container {
  display: flex;
  justify-content: center;
}

.afterbanner .container .text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.afterbanner .container .text i {
  display: block;
  width: 90px;
}

@media (max-width: 1199px) {
  .afterbanner .container .text i {
    width: 50px;
  }
}

@media (max-width: 767px) {
  .afterbanner .container .text i {
    width: 30px;
  }
}

.afterbanner .container .text i img {
  width: 100%;
}

.afterbanner .container .text .wen {
  margin-left: 26px;
  padding-right: 35px;
  margin-right: 40px;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
}

@media (max-width: 1199px) {
  .afterbanner .container .text .wen {
    margin-left: 20px;
    padding-right: 30px;
    margin-right: 35px;
  }
}

@media (max-width: 767px) {
  .afterbanner .container .text .wen {
    margin-left: 15px;
    padding-right: 20px;
    margin-right: 25px;
  }
}

.afterbanner .container .text .wen strong {
  font-size: 60px;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 1199px) {
  .afterbanner .container .text .wen strong {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .afterbanner .container .text .wen strong {
    font-size: 24px;
    margin-bottom: 4px;
  }
}

.afterbanner .container .text .wen span {
  color: #fff;
  font-size: 24px;
  letter-spacing: 2px;
}

@media (max-width: 1199px) {
  .afterbanner .container .text .wen span {
    font-size: 20px;
    letter-spacing: 0;
  }
}

@media (max-width: 767px) {
  .afterbanner .container .text .wen span {
    font-size: 12px;
  }
}

.afterbanner .container .text .zhong {
  color: #fff;
  line-height: 1;
}

.afterbanner .container .text .zhong span {
  font-size: 24px;
  display: block;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .afterbanner .container .text .zhong span {
    font-size: 20px;
    margin-bottom: 5px;
  }
}

@media (max-width: 767px) {
  .afterbanner .container .text .zhong span {
    font-size: 16px;
  }
}

.afterbanner .container .text .zhong strong {
  font-size: 48px;
  font-weight: bold;
}

@media (max-width: 1199px) {
  .afterbanner .container .text .zhong strong {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .afterbanner .container .text .zhong strong {
    font-size: 20px;
  }
}

.aboutbanner .aboutfont span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 22px;
  background-color: #fff;
  border-radius: 3px;
  font-weight: bold;
  color: #FF0000;
  margin-bottom: 18px;
  font-size: 16px;
}

@media (max-width: 991px) {
  .aboutbanner .aboutfont span {
    width: 80px;
    font-size: 14px;
    height: 20px;
    margin-bottom: 12px;
  }
}

@media (max-width: 767px) {
  .aboutbanner .aboutfont span {
    font-size: 12px;
    margin-bottom: 12px;
  }
}

.aboutbanner .aboutfont strong {
  display: block;
  font-size: 60px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .aboutbanner .aboutfont strong {
    font-size: 30px;
    margin-bottom: 15px;
  }
}

@media (max-width: 991px) {
  .aboutbanner .aboutfont strong {
    font-size: 20px;
    margin-bottom: 12px;
  }
}

@media (max-width: 767px) {
  .aboutbanner .aboutfont strong {
    margin-bottom: 10px;
  }
}

.aboutbanner .aboutfont p {
  /* width: 358px; */
  font-size: 18px;
  line-height: 24px;
  color: #fff;
}

@media (max-width: 991px) {
  .aboutbanner .aboutfont p {
    font-size: 16px;
    line-height: 22px;
  }
}

@media (max-width: 767px) {
  .aboutbanner .aboutfont p {
    font-size: 14px;
    line-height: 20px;
    width: 100%;
  }
}

.productbanner {
  height: 450px;
  background-color: #FF0000;
  overflow: hidden;
}

@media (max-width: 1440px) {
  .productbanner {
    height: 337.5px;
  }
}

@media (max-width: 1199px) {
  .productbanner {
    height: 281px;
  }
}

@media (max-width: 991px) {
  .productbanner {
    height: 160px;
  }
}

@media (max-width: 767px) {
  .productbanner {
    height: auto;
    padding: 80px 0;
    display: none;
  }
}

.productbanner .profont span {
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px;
  display: block;
}

@media (max-width: 991px) {
  .productbanner .profont span {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .productbanner .profont span {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.productbanner .profont strong {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  display: block;
  margin-bottom: 36px;
}

@media (max-width: 1199px) {
  .productbanner .profont strong {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .productbanner .profont strong {
    font-size: 22px;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .productbanner .profont strong {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

.productbanner .profont i {
  display: block;
  width: 30px;
  height: 4px;
  background-color: #fff;
  opacity: 0.5;
}

.productbanner .container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.productbanner .container .proimg {
  height: 100%;
  position: relative;
  padding-right: 22%;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .productbanner .container .proimg {
    padding-right: 0;
    width: 100%;
  }
}

.productbanner .container .proimg img {
  height: 78%;
  position: relative;
  z-index: 3;
}

@media (max-width: 767px) {
  .productbanner .container .proimg img {
    height: 240px;
    margin-top: 30px;
  }
}

.productbanner .container .proimg span {
  display: block;
  border: 78px solid #fff;
  border-radius: 50%;
  position: absolute;
  right: 30%;
  top: calc(50% - 176px);
  width: 200px;
  height: 200px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  z-index: 2;
}

@media (max-width: 1460px) {
  .container {
    width: 1120px;
  }
}

@media (max-width: 1440px) {
  .productbanner .container .proimg span {
    width: 140px;
    height: 140px;
    top: calc(50% - 146px);
  }
}

@media (max-width: 1199px) {
  .productbanner .container .proimg span {
    border: 48px solid #fff;
    top: calc(50% - 126px);
  }
}

@media (max-width: 991px) {
  .productbanner .container .proimg span {
    width: 80px;
    height: 80px;
    border: 28px solid #fff;
    top: calc(50% - 70px);
  }
}

@media (max-width: 767px) {
  .productbanner .container .proimg span {
    width: 200px;
    height: 200px;
    border: 40px solid #fff;
    left: 10%;
    top: 6px;
  }
}

@media (max-width: 376px) {
  .productbanner .container .proimg span {
    width: 160px;
    height: 160px;
    left: 14%;
    border: 28px solid #fff;
    top: calc(50% - 105px);
  }
}

.productbanner .container .proimg strong {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 750px;
  height: 750px;
  border: 84px solid #fff;
  opacity: 0.1;
  border-radius: 50%;
  animation: scale1 0.8s ease-out;
}

@media (max-width: 1440px) {
  .productbanner .container .proimg strong {
    width: 600px;
    height: 600px;
  }
}

@media (max-width: 1199px) {
  .productbanner .container .proimg strong {
    width: 500px;
    height: 500px;
    border: 74px solid #fff;
  }

  .container {
    width: 100%;
    padding: 0 20px;
  }
}

@media (max-width: 991px) {
  .productbanner .container .proimg strong {
    width: 240px;
    height: 240px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    border: 34px solid #fff;
  }
}

@media (max-width: 767px) {
  .productbanner .container .proimg strong {
    left: -14%;
    top: 11%;
    width: 350px;
    height: 350px;
    border-width: 60px;
  }
}

@media (max-width: 376px) {
  .productbanner .container .proimg strong {
    left: 0;
  }
}

.solutionbanner {
  margin-top: 100px;
  position: relative;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 1440px) {
  .solutionbanner {
    height: calc(100vh - 80px) !important;
  }

  .solutionbanner .swiper-slide .banren {
    display: none;
  }
}

@media (max-width: 1199px) {
  .solutionbanner {
    margin-top: 80px;
  }
}

@media (max-width: 767px) {
  .solutionbanner {
    margin-top: 70px;
  }

  .solutionbanner {
    height: calc(100vh - 70px) !important;
  }
}

.solution3banner {
  height: auto !important;
}

.solutionbanner .solu-cont {
  height: 640px;
}

@media (max-width: 1440px) {
  .solutionbanner .solu-cont {
    height: 440px;
  }
}

@media (max-width: 767px) {
  .solutionbanner .solu-cont {
    height: auto;
  }
}

.solutionbanner .solu-cont .swiper-slide>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solutionbanner .solu-cont .swiper-slide>img:nth-child(2) {
  display: none;
}

@media (max-width: 767px) {
  .solutionbanner .solu-cont .swiper-slide>img:nth-child(1) {
    display: none;
  }

  .solutionbanner .solu-cont .swiper-slide>img:nth-child(2) {
    display: block;
  }
}

.solutionbanner .solu-cont .swiper-slide:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 101, 213, 0.3);
}

.solutionbanner .solu-cont .swiper-slide .font {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  color: #fff;
}

@media (max-width: 767px) {
  .solutionbanner .solu-cont .swiper-slide .font {
    width: 100%;
  }
}

.solutionbanner .solu-cont .swiper-slide .font .shu {
  font-size: 200px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 24px;
}

@media (max-width: 1440px) {
  .solutionbanner .solu-cont .swiper-slide .font .shu {
    font-size: 140px;
    margin-bottom: 20px;
  }
}

@media (max-width: 1199px) {
  .solutionbanner .solu-cont .swiper-slide .font .shu {
    font-size: 80px;
  }
}

@media (max-width: 767px) {
  .solutionbanner .solu-cont .swiper-slide .font .shu {
    font-size: 60px;
  }
}

.solutionbanner .solu-cont .swiper-slide .font strong {
  font-size: 36px;
  letter-spacing: 20px;
  padding: 14px;
  background-color: #FF0000;
  margin-bottom: 50px;
}

@media (max-width: 1440px) {
  .solutionbanner .solu-cont .swiper-slide .font strong {
    font-size: 30px;
    letter-spacing: 14px;
    margin-bottom: 30px;
  }
}

@media (max-width: 1199px) {
  .solutionbanner .solu-cont .swiper-slide .font strong {
    font-size: 20px;
    margin-bottom: 26px;
    padding: 6px;
    letter-spacing: 3px;
  }
}

@media (max-width: 767px) {
  .solutionbanner .solu-cont .swiper-slide .font strong {
    margin-bottom: 20;
    font-size: 18px;
  }
}

.solutionbanner .solu-cont .swiper-slide .font .list {
  width: 70%;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  flex-wrap: wrap;
}

@media (max-width: 1440px) {
  .solutionbanner .solu-cont .swiper-slide .font .list {
    padding-top: 20px;
  }
}

@media (max-width: 767px) {
  .solutionbanner .solu-cont .swiper-slide .font .list {
    width: 100%;
  }
}

.solutionbanner .solu-cont .swiper-slide .font .list .item {
  width: 22%;
}

.solutionbanner .solu-cont .swiper-slide .font .list .item img {
  width: 100%;
}

.solutionbanner .solu-cont .solu-pagination {
  bottom: 4%;
}

.solutionbanner .solu-cont .solu-pagination .swiper-pagination-bullet {
  background-color: #8597ac;
  width: 14px;
  height: 14px;
  margin: 0 10px;
}

@media (max-width: 767px) {
  .solutionbanner .solu-cont .solu-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
  }
}

.solutionbanner .solu-cont .solu-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}

.solution2banner .font1 {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  color: #fff;
}

@media (max-width: 767px) {
  .solution2banner .font1 {
    width: 100%;
  }
}

.solution2banner .font1 .tit {
  display: block;
  font-weight: bold;
  font-size: 60px;
  margin-bottom: 50px;
}

@media (max-width: 1440px) {
  .solution2banner .font1 .tit {
    margin-bottom: 40px;
  }
}

@media (max-width: 1199px) {
  .solution2banner .font1 .tit {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .solution2banner .font1 .tit {
    font-size: 22px;
    margin-bottom: 26px;
  }
}

@media (max-width: 767px) {
  .solution2banner .font1 .tit {
    font-size: 20px;
  }
}

.solution2banner .font1 .list {
  display: flex;
  flex-wrap: wrap;
}

.solution2banner .font1 .list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 48px;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  margin-right: 20px;
  margin-bottom: 20px;
  font-size: 24px;
}

@media (max-width: 1199px) {
  .solution2banner .font1 .list a {
    font-size: 18px;
    margin-bottom: 10px;
    margin-right: 10px;
    width: 80px 40px;
  }
}

@media (max-width: 767px) {
  .solution2banner .font1 .list a {
    font-size: 16px;
    width: 18%;
    margin-right: 1%;
  }
}

@media (max-width: 575px) {
  .solution2banner .font1 .list a {
    width: 18%;
    height: 36px;
    margin-right: 2%;
    font-size: 14px;
  }

  .solution2banner .font1 .list a:last-child {
    margin-right: 0;
  }
}

.solution2banner .solu-cont .swiper-slide:after {
  background: -moz-linear-gradient(90deg, rgba(28, 101, 213, 0.9) 26%, #ffffff 100%);
  background: -webkit-gradient(linear, 90deg, left bottom, color-stop(26%, rgba(28, 101, 213, 0.9)), color-stop(100%, transparent));
  background: -webkit-linear-gradient(90deg, rgba(28, 101, 213, 0.9) 26%, transparent 100%);
  background: -o-linear-gradient(90deg, rgba(28, 101, 213, 0.9) 26%, transparent 100%);
  background: -ms-linear-gradient(90deg, rgba(28, 101, 213, 0.9) 26%, transparent 100%);
  background: linear-gradient(90deg, rgba(28, 101, 213, 0.9) 26%, transparent 100%);
}

.solution3banner .solu-cont .swiper-slide:after {
  display: none;
}

.solution3banner .font3 {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 767px) {
  .solution3banner .font3 {
    width: 100%;
  }
}

.solution3banner .font3 .tit {
  font-size: 60px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #FF0000;
}

@media (max-width: 1440px) {
  .solution3banner .font3 .tit {
    margin-bottom: 24px;
  }
}

@media (max-width: 1199px) {
  .solution3banner .font3 .tit {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .solution3banner .font3 .tit {
    font-size: 22px;
    margin-bottom: 18px;
  }
}

@media (max-width: 767px) {
  .solution3banner .font3 .tit {
    font-size: 20px;
  }

  .solution3banner {
    height: auto !important;
  }
}

.solution3banner .font3 span {
  padding: 10px 30px;
  border: 2px solid #FF0000;
  border-radius: 3px;
  font-size: 24px;
  font-weight: bold;
}

@media (max-width: 1199px) {
  .solution3banner .font3 span {
    font-size: 18px;
    padding: 6px 16px;
  }
}

@media (max-width: 767px) {
  .solution3banner .font3 span {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .solution3banner .font3 span {
    font-size: 14px;
  }
}

@keyframes scale1 {
  0% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.1;
  }
}

/* End */
/* home */
.home-section1 {
  width: 100%;
  height: 150px;
  background-color: #001b3f;
  position: relative;
  z-index: 22;
}

@media (max-width: 1440px) {
  .home-section1 {
    height: 120px;
  }
}

@media (max-width: 767px) {
  .home-section1 {
    height: 100px;
  }
}

.home-section1 .container {
  height: 100%;
}

.home-section1 .cont {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-section1 .cont .img {
  width: 350px;
  position: relative;
  height: 100%;
}

@media (max-width: 1440px) {
  .home-section1 .cont .img {
    width: 220px;
  }
}

@media (max-width: 1199px) {
  .home-section1 .cont .img {
    width: 220px;
  }
}

@media (max-width: 991px) {
  .home-section1 .cont .img {
    display: none;
  }
}

.home-section1 .cont .img img {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.home-section1 .cont .home-section1-cont {
  width: 68.2%;
  height: 100%;
}

@media (max-width: 991px) {
  .home-section1 .cont .home-section1-cont {
    width: 100%;
  }
}

.home-section1 .cont .home-section1-cont .item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 38px;
  width: 100%;
  border-right: 1px solid #334965;
}

.home-section1 .cont .home-section1-cont .item i {
  display: block;
  width: 52px;
  margin-right: 15px;
}

@media (max-width: 1440px) {
  .home-section1 .cont .home-section1-cont .item i {
    margin-right: 10px;
  }
}

@media (max-width:1199px) {
  .home-section1 .cont .home-section1-cont .item i {
    width: 36px;
    margin-right: 5px;
  }
}

.home-section1 .cont .home-section1-cont .item i img {
  width: 100%;
}

.home-section1 .cont .home-section1-cont .item .font strong {
  font-size: 16px;
  color: #fff;
  display: block;
  margin-bottom: 5px;
  line-height: 1;
}

@media (max-width: 1440px) {
  .home-section1 .cont .home-section1-cont .item .font strong {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .home-section1 .cont .home-section1-cont .item .font strong {
    margin-bottom: 0;
  }

  .home-section1 .cont .home-section1-cont .item {
    border-right: none;
  }

  .home-section1 .cont .home-section1-cont .item i {
    margin-right: 10px;
  }
}

.home-section1 .cont .home-section1-cont .item .font span {
  font-size: 14px;
  color: #fff;
  opacity: 0.7;
  line-height: 1;
}

@media (max-width: 1440px) {
  .home-section1 .cont .home-section1-cont .item .font span {
    font-size: 12px;
  }
}

.home-section1 .cont .home-section1-cont .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-section1 .cont .home-section1-cont .swiper-slide:last-child .item {
  border-right: none;
}

.home-section2 .cont {
  height: 800px;
  padding: 170px 0;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

@media (max-width: 1440px) {
  .home-section2 .cont {
    padding: 140px 0;
    height: 587px;
  }
}

@media (max-width: 1199px) {
  .home-section2 .cont {
    padding: 100px 0;
    height: 550px;
  }
}

@media (max-width: 991px) {
  .home-section2 .cont {
    padding: 60px 0;
    height: auto;
  }
}

@media (max-width: 767px) {
  .home-section2 .cont {
    padding: 40px 0;
  }
}

.home-section2 .jut {
  margin: 0 -15px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .home-section2 .jut {
    margin: 0;
  }
}

.home-section2 .jut .lt,
.home-section2 .jut .gt {
  width: 50%;
  padding: 0 15px;
  height: 100%;
}

@media (max-width: 1199px) {

  .home-section2 .jut .lt,
  .home-section2 .jut .gt {
    padding: 0 7.5px;
  }
}

@media (max-width: 991px) {

  .home-section2 .jut .lt,
  .home-section2 .jut .gt {
    padding: 0;
    width: 100%;
  }
}

.home-section2 .jut .item {
  width: 100%;
  background-color: #eef5fd;
  height: 100%;
  position: relative;
  padding: 7% 8% 0;
  overflow: hidden;
  display: block;
}

@media (max-width: 767px) {
  .home-section2 .jut .item {
    padding: 30px 15px 0 !important;
  }
}

.home-section2 .jut .item .img {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  -webkit-transform: translateY(32%);
  transform: translateY(32%);
  padding-bottom: 77%;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.home-section2 .jut .lt .item .img {
  -webkit-transform: translateY(30%);
  /* -webkit-transform: translateY(8%); */
  transform: translateY(30%);
  /* transform: translateY(8%); */
  padding-bottom: 87%;
}

@media (min-width: 2000px) {
  .home-section2 .jut .lt .item .img {
    padding-bottom: 72%;
  }
}

@media (max-width: 1440px) {
  .home-section2 .jut .lt .item .img {
    padding-bottom: 92%;
  }
}

@media (max-width: 991px) {
  .home-section2 .jut .lt .item .img {
    padding-bottom: 52%;
  }

  .home-section2 .jut .item .img {
    padding-bottom: 52%;
  }
}

.home-section2 .jut .item .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}

.home-section2 .jut .item .font .tit {
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 10px;
  font-weight: bold;
  color: #262626;
  position: relative;
  z-index: 5;
}

@media (max-width: 1440px) {
  .home-section2 .jut .item .font .tit {
    font-size: 22px;
  }
}

@media (max-width: 1199px) {
  .home-section2 .jut .item .font .tit {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .home-section2 .jut .item .font .tit {
    margin-bottom: 5px;
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .home-section2 .jut .item .font {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .home-section2 .jut .item .font .tit {
    font-size: 24px;
  }

  .home-section2 .jut .lt .item .img {
    padding-bottom: 40%;
  }

  .home-section2 .jut .item .img {
    padding-bottom: 40%;
  }
}

@media (max-width: 500px) {
  .home-section2 .jut .item .img {
    padding-bottom: 66%;
  }

  .home-section2 .jut .lt .item .img {
    padding-bottom: 66%;
  }
}

.home-section2 .jut .item .font p {
  font-size: 16px;
  color: #001b3f;
  margin-bottom: 30px;
  line-height: 1.6;
  position: relative;
  z-index: 5;
}

@media (max-width: 991px) {
  .home-section2 .jut .item .font p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.home-section2 .jut .item .font .but {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  width: 132px;
  height: 40px;
  border-radius: 3px;
  border: 1px solid #a6a6a6;
  color: #626262;
  position: relative;
  z-index: 5;
}

@media (max-width: 767px) {
  .home-section2 .jut .item .font .but {
    width: 100px;
    font-size: 12px;
  }
}

.home-section2 .jut .item .font .but strong {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 1;
  height: 100%;
}

.home-section2 .jut .item .font .but span {
  opacity: 0;
}

.home-section2 .jut .item:hover .img {
  -webkit-transform: translateY(28%);
  transform: translateY(28%);
}

.home-section2 .jut .item:hover .font .but {
  color: #fff;
  background-color: #FF0000;
  border-color: #FF0000;
}

.home-section2 .jut .item:hover .font .but strong {
  opacity: 1;
}

.home-section2 .jut .item:hover .font .but span {
  opacity: 0;
}

@media (max-width: 991px) {
  .home-section2 .jut .lt {
    height: 550px;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .home-section2 .jut .lt {
    height: 350px;
  }
}

.home-section2 .jut .gt .top {
  width: 100%;
  display: flex;
  margin-bottom: 30px;
  flex-wrap: wrap;
  height: 450px;
}

@media (max-width: 1440px) {
  .home-section2 .jut .gt .top {
    height: 386px;
  }
}

@media (max-width: 1199px) {
  .home-section2 .jut .gt .top {
    height: 335px;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .home-section2 .jut .gt .top {
    height: auto;
    margin-bottom: 0;
  }
}

.home-section2 .jut .gt .top .zhong {
  width: 50%;
  padding-right: 15px;
  height: 100%;
}

@media (max-width: 1199px) {
  .home-section2 .jut .gt .top .zhong {
    padding-right: 7.5px;
  }
}

@media (max-width: 767px) {
  .home-section2 .jut .gt .top .zhong {
    padding-right: 0;
    width: 100%;
    height: 320px;
    margin-bottom: 15px;
  }
}

.home-section2 .jut .gt .top .zhong:last-child {
  padding-right: 0;
  padding-left: 15px;
}

@media (max-width: 1199px) {
  .home-section2 .jut .gt .top .zhong:last-child {
    padding-left: 7.5px;
  }
}

@media (max-width: 767px) {
  .home-section2 .jut .gt .top .zhong:last-child {
    padding-left: 0px;
  }
}

.home-section2 .jut .gt .top .item {
  background-color: #fdfbec;
  padding: 13% 10% 0;
}

.home-section2 .jut .gt .top .zhong:last-child a {
  background-color: #e8fcfa;
}

.home-section2 .jut .gt .top .item .tit {
  font-size: 32px;
}

@media (max-width: 1440px) {
  .home-section2 .jut .gt .top .item .tit {
    font-size: 22px;
  }
}

@media (max-width: 1199px) {
  .home-section2 .jut .gt .top .item .tit {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .home-section2 .jut .gt .top .item .tit {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .home-section2 .jut .gt .top .item .tit {
    font-size: 24px;
  }
}

.home-section2 .jut .gt .top .item .font p {
  margin-bottom: 35px;
}

@media (max-width: 1440px) {
  .home-section2 .jut .gt .top .item .font p {
    margin-bottom: 20px;
  }
}

.home-section2 .jut .gt .top .item .font .but {
  width: 120px;
  height: 35px;
}

.home-section2 .jut .gt .bot {
  height: 320px;
}

@media (max-width: 1440px) {
  .home-section2 .jut .gt .bot {
    height: 233px;
  }
}

@media (max-width: 1199px) {
  .home-section2 .jut .gt .bot {
    height: 200px;
  }
}

@media (max-width: 767px) {
  .home-section2 .jut .gt .bot {
    height: 320px;
  }
}

.home-section2 .jut .gt .bot .item {
  background-color: #effaec;
  padding: 8% 5% 0;
}

@media (max-width: 1440px) {
  .home-section2 .jut .gt .bot .item {
    padding: 5% 5% 0;
  }
}

.home-section2 .jut .gt .bot .item .img {
  left: 42%;
  right: 0;
  padding-bottom: 46%;
}

@media (max-width: 1440px) {
  .home-section2 .jut .gt .bot .item .img {
    left: 48%;
    right: 0;
    padding-bottom: 40%;
  }
}

@media (max-width: 991px) {
  .home-section2 .jut .gt .bot .item .img {
    padding-bottom: 36%;
  }
}

@media (max-width: 767px) {
  .home-section2 .jut .gt .bot .item .img {
    left: 0;
    padding-bottom: 66%;
  }
}

.home-section3 {
  position: relative;
}

@media (max-width: 1199px) {
  .home-section3 {
    height: 605px;
  }
}

@media (max-width: 767px) {
  .home-section3 {
    height: 680px;
  }
}

.home-section3-img {
  height: 842px;
}

@media (max-width: 1440px) {
  .home-section3-img {
    height: 629px;
  }
}

@media (max-width: 1199px) {
  .home-section3-img {
    height: 100%;
  }
}

.home-section3-img .img {
  width: 100%;
  height: 100%;
  background-size: cover;
}

.home-section3-img .img:nth-child(2) {
  display: none;
}

@media (max-width: 767px) {
  .home-section3-img .img {
    background-position: -50% 0;
  }

  .home-section3-img .img:nth-child(1) {
    display: none;
  }

  .home-section3-img .img:nth-child(2) {
    display: block;
    transform: translateX(5%);
    width: 167%;
  }
}

.home-section3-img:after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 222;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(90deg, #031327 26%, #ffffff 100%);
  background: -webkit-gradient(linear, 90deg, left bottom, color-stop(26%, #031327), color-stop(100%, transparent));
  background: -webkit-linear-gradient(90deg, #031327 26%, transparent 100%);
  background: -o-linear-gradient(90deg, #031327 26%, transparent 100%);
  background: -ms-linear-gradient(90deg, #031327 26%, transparent 100%);
  background: linear-gradient(90deg, #031327 26%, transparent 100%);
}

.home-section3 .container {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 222;
  height: 100%;
  display: flex;
  align-items: center;
}

.home-section3 .container .cont {
  width: 100%;
}

.home-section3 .container .cont .font {
  color: #fff;
  margin-bottom: 60px;
}

@media (max-width: 1440px) {
  .home-section3 .container .cont .font {
    margin-bottom: 30px;
  }
}

.home-section3 .container .cont .font strong {
  font-size: 48px;
  display: block;
  margin-bottom: 15px;
}

@media (max-width: 1440px) {
  .home-section3 .container .cont .font strong {
    font-size: 38px;
    margin-bottom: 10px;
  }
}

@media (max-width: 1199px) {
  .home-section3 .container .cont .font strong {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .home-section3 .container .cont .font strong {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .home-section3 .container .cont .font strong {
    font-size: 20px;
  }

  .home-section3-img:after {
    background: #000;
    opacity: .7;
  }
}

.home-section3 .container .cont .font i {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #fff;
  opacity: 0.7;
  margin: 35px 0;
}

@media (max-width: 1440px) {
  .home-section3 .container .cont .font i {
    margin: 20px 0;
  }
}

.home-section3 .container .cont .font span {
  opacity: 0.5;
  font-size: 16px;
  display: block;
}

@media (max-width: 767px) {
  .home-section3 .container .cont .font span {
    font-size: 16px;
  }
}

.home-section3 .container .cont .jut {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .home-section3 .container .cont .jut {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .home-section3 .container .cont .jut {
    justify-content: space-between;
  }
}

.home-section3 .container .cont .jut .item,
.home-section3 .container .cont .jut .geng {
  width: 25%;
  height: 132px;
}

@media (max-width: 1440px) {

  .home-section3 .container .cont .jut .item,
  .home-section3 .container .cont .jut .geng {
    width: 29%;
    height: 120px;
  }
}

@media (max-width: 767px) {

  .home-section3 .container .cont .jut .item,
  .home-section3 .container .cont .jut .geng {
    width: 48%;
    height: 100px;
  }
}

.home-section3 .container .cont .jut .geng {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-section3 .container .cont .jut .geng em {
  display: block;
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  margin: 0 2px;
}

.home-section3 .container .cont .jut .item {
  padding: 17px 20px;
  border: 1px solid #586069;
  border-radius: 3px;
  margin-right: 50px;
  margin-bottom: 35px;
}

@media (max-width: 1440px) {
  .home-section3 .container .cont .jut .item {
    margin-right: 30px;
  }
}

@media (max-width: 767px) {
  .home-section3 .container .cont .jut .item {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.home-section3 .container .cont .jut .item i {
  display: flex;
  justify-content: flex-end;
  height: 26px;
  width: 100%;
  margin-bottom: 15px;
  opacity: 0.5;
}

@media (max-width: 767px) {
  .home-section3 .container .cont .jut .item i {
    height: 22px;
    margin-bottom: 10px;
  }
}

.home-section3 .container .cont .jut .item i img {
  height: 100%;
}

.home-section3 .container .cont .jut .item .text {
  color: #fff;
}

.home-section3 .container .cont .jut .item .text span {
  display: block;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}

@media (max-width: 991px) {
  .home-section3 .container .cont .jut .item .text span {
    font-size: 16px;
  }
}

.home-section3 .container .cont .jut .item .text strong {
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 991px) {
  .home-section3 .container .cont .jut .item .text strong {
    font-size: 14px;
  }
}

.home-section3 .container .cont .jut .item:nth-child(3n) {
  margin-right: 0;
}

.home-section3 .container .cont .jut .on {
  border-color: #FF0000;
  background-color: #FF0000;
}

.home-section3 .container .cont .jut .on i {
  opacity: 1;
}

.home-section4 .cont {
  padding: 180px 0;
}

@media (max-width: 1440px) {
  .home-section4 .cont {
    padding: 160px 0;
  }
}

@media (max-width: 1199px) {
  .home-section4 .cont {
    padding: 140px 0;
  }
}

@media (max-width: 991px) {
  .home-section4 .cont {
    padding: 80px 0;
  }
}

@media (max-width: 1199px) {
  .home-section4 .cont {
    padding: 60px 0;
  }
}

.home-section4 .cont .tit {
  width: 100%;
  margin-bottom: 75px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 1440px) {
  .home-section4 .cont .tit {
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .home-section4 .cont .tit {
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .home-section4 .cont .tit {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .home-section4 .cont .tit .lt {
    /* width: 100%; */
    /* margin-bottom: 15px; */
  }
}

.home-section4 .cont .tit .lt strong {
  font-size: 30px;
  color: #FF0000;
  font-weight: bold;
  display: block;
}

@media (max-width: 1440px) {
  .home-section4 .cont .tit .lt strong {
    font-size: 28px;
  }
}

@media (max-width: 1199px) {
  .home-section4 .cont .tit .lt strong {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .home-section4 .cont .tit .lt strong {
    font-size: 24px;
  }
}

.home-section4 .cont .tit .lt span {
  font-size: 18px;
  color: #262626;
  opacity: 0.7;
}

@media (max-width: 1199px) {
  .home-section4 .cont .tit .lt span {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .home-section4 .cont .tit .lt span {
    font-size: 14px;
  }
}

.home-section4 .cont .tit .gt {
  display: flex;
  align-items: center;
  margin: 0;
}

@media (max-width: 767px) {
  .home-section4 .cont .tit .gt {
    /* width: 100%; */
  }
}

.home-section4 .cont .tit .gt .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding-left: 30px;
}

@media (max-width: 991px) {
  .home-section4 .cont .tit .gt .swiper-slide {
    padding-left: 15px;
  }
}

@media (max-width: 767px) {
  .home-section4 .cont .tit .gt .swiper-slide {
    padding-left: 0px;
    justify-content: end;
  }
}

.home-section4 .cont .tit .gt .item {
  color: #262626;
  position: relative;
  font-size: 16px;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .home-section4 .cont .tit .gt .item {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .home-section4 .cont .tit .gt .item {
    font-size: 12px;
  }
}

.home-section4 .cont .tit .gt .item::before {
  content: "";
  display: block;
  position: absolute;
  top: 43%;
  left: -10px;
  width: 6px;
  height: 6px;
  background-color: #FF0000;
  border-radius: 50%;
  opacity: 0;
}

@media (max-width: 767px) {
  .home-section4 .cont .tit .gt .item::before {
    display: none;
  }
}

.home-section4 .cont .tit .gt .item:hover {
  color: #FF0000;
}

.home-section4 .cont .tit .gt .item:hover::before {
  opacity: 1;
}

.home-section4 .cont .tit .gt span {
  display: block;
  width: 1px;
  height: 13px;
  background-color: #a2a2a2;
  margin-left: 30px;
}

@media (max-width: 991px) {
  .home-section4 .cont .tit .gt span {
    margin-left: 15px;
  }
}

@media (max-width: 767px) {
  .home-section4 .cont .tit .gt span {
    margin-left: 10px;
    background-color: transparent;
    display: none;
  }
}

@media (max-width: 376px) {
  .home-section4 .cont .tit .gt span {
    margin-left: 2px;
  }
}

.home-section4 .cont .tit .gt .on {
  color: #FF0000;
}

.home-section4 .cont .tit .gt .on::before {
  opacity: 1;
}

.home-section4 .cont .cont {
  width: 100%;
  padding: 0 2%;
  position: relative;
}

.home-section4 .cont .tit .gt .but {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  width: 120px;
  height: 35px;
  border-radius: 3px;
  border: 1px solid #a6a6a6;
  color: #626262;
  position: relative;
}

.home-section4 .cont .tit .gt .but:hover {
  background-color: #FF0000;
  color: #fff;
  border-color: #FF0000;
}

@media (max-width: 767px) {
  .home-section4 .cont .cont {
    padding: 0;
  }
}

.home-section4 .cont .cont .swiper-slide {
  padding: 20px;
}

@media (max-width: 1199px) {
  .home-section4 .cont .cont .swiper-slide {
    padding: 10px;
  }
}

.home-section4 .cont .cont .swiper-slide .jut {
  width: 100%;
  padding: 30px 40px;
  display: block;
}

@media (max-width: 1199px) {
  .home-section4 .cont .cont .swiper-slide .jut {
    padding: 20px 25px;
  }
}

@media (max-width: 991px) {
  .home-section4 .cont .cont .swiper-slide .jut {
    padding: 15px 20px;
  }
}

@media (max-width: 767px) {
  .home-section4 .cont .cont .swiper-slide .jut {
    padding: 10px 15px;
  }
}

.home-section4 .cont .cont .swiper-slide .jut .wen {
  font-size: 20px;
  color: #262626;
  font-weight: bold;
  margin-bottom: 30px;
  opacity: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1199px) {
  .home-section4 .cont .cont .swiper-slide .jut .wen {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .home-section4 .cont .cont .swiper-slide .jut .wen {
    margin-bottom: 10px;
    font-size: 16px;
  }
}

.home-section4 .cont .cont .swiper-slide .jut .img {
  position: relative;
  margin: 0 auto;
  margin-bottom: 30px;
  padding-bottom: 60%;
}

@media (max-width: 1199px) {
  .home-section4 .cont .cont .swiper-slide .jut .img {
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .home-section4 .cont .cont .swiper-slide .jut .img {
    margin-bottom: 10px;
  }
}

.home-section4 .cont .cont .swiper-slide .jut .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.home-section4 .cont .cont .swiper-slide .jut .text {
  font-size: 16px;
  color: #666;
  text-align: center;
  margin: 0 auto;
  opacity: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  height: 68px;
}

@media (max-width: 1440px) {
  .home-section4 .cont .cont .swiper-slide .jut .text {
    font-size: 14px;
    height: 60px;
  }
}

.home-section4 .cont .cont .swiper-slide .jut:hover .img img {
  -webkit-transform: scale(1.01);
  transform: scale(1.01);
}

.home-section4 .cont .cont .swiper-slide .text {
  font-size: 16px;
  color: #666;
  text-align: center;
  margin: 0 auto;
  opacity: 0;
}

.home-section4 .cont .cont .swiper-slide-active .jut,
.home-section4 .cont .cont .swiper-slide-duplicate-active .jut {
  box-shadow: 0 0 20px rgba(0, 20, 50, 0.2);
}

@media (max-width: 1199px) {

  .home-section4 .cont .cont .swiper-slide-active .jut,
  .home-section4 .cont .cont .swiper-slide-duplicate-active .jut {
    box-shadow: 0 0 10px rgba(0, 20, 50, 0.2);
  }
}

.home-section4 .cont .cont .swiper-slide-active .jut .wen,
.home-section4 .cont .cont .swiper-slide-duplicate-active .jut .wen {
  opacity: 1;
  text-align: center;
}

.home-section4 .cont .cont .swiper-slide-active .jut .text,
.home-section4 .cont .cont .swiper-slide-duplicate-active .jut .text {
  opacity: 1;
}

.home-section4 .cont .cont .home-section4-pagination {
  bottom: -30px;
  width: 100%;
}

.home-section4 .cont .cont .home-section4-pagination span {
  margin: 0 5px;
}

.home-section4 .cont .cont .home-section4-next,
.home-section4 .cont .cont .home-section4-prev {
  width: 50px;
  height: 50px;
  background-color: #030f21;
  border-radius: 3px;
}

@media (max-width: 991px) {

  .home-section4 .cont .cont .home-section4-next,
  .home-section4 .cont .cont .home-section4-prev {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 767px) {

  .home-section4 .cont .cont .home-section4-next,
  .home-section4 .cont .cont .home-section4-prev {
    display: none;
  }
}

.home-section4 .cont .cont .home-section4-next {
  background: #030f21 url(../../images/gt.png) no-repeat center;
  background-size: 16px 25px;
}

@media (max-width: 991px) {
  .home-section4 .cont .cont .home-section4-next {
    background-size: 8px 15px;
  }
}

.home-section4 .cont .cont .home-section4-next:hover {
  background-color: #FF0000;
}

.home-section4 .cont .cont .home-section4-prev {
  background: #030f21 url(../../images/lt.png) no-repeat center;
  background-size: 16px 25px;
}

@media (max-width: 991px) {
  .home-section4 .cont .cont .home-section4-prev {
    background-size: 8px 15px;
  }
}

.home-section4 .cont .cont .home-section4-prev:hover {
  background-color: #FF0000;
}

.home-section5 {
  background-color: #eef5ff;
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
}

@media (max-width:1750px) {
  .home-section5 {
    height: 760px;
  }
}

@media (max-width: 1199px) {
  .home-section5 {
    height: 576px;
  }
}

@media (max-width: 991px) {
  .home-section5 {
    height: auto;
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .home-section5 {
    padding-bottom: 40px;
  }
}

.home-section5 .img {
  width: 50%;
}

@media (max-width:1750px) {
  .home-section5 .img {
    height: 100%;
  }
}

@media (max-width: 991px) {
  .home-section5 .img {
    width: 100%;
    height: 440px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .home-section5 .img {
    /* margin-bottom: 15px; */
    height: auto;
  }
}

.home-section5 .img img {
  width: 100%;
}

@media (max-width:1750px) {
  .home-section5 .img img {
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 1199px) {
  .home-section5 .img img {
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 767px) {
  .home-section5 .img img {
    height: auto;
    object-fit: cover;
  }
}

.home-section5 .container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  height: 100%;
}

@media (max-width: 991px) {
  .home-section5 .container {
    height: auto;
    position: relative;
  }
}

@media (max-width: 767px) {
  .home-section5 .container {
    width: 100%;
  }
}

.home-section5 .container .lt {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .home-section5 .container .lt {
    height: auto;
  }
}

@media (max-width: 767px) {
  .home-section5 .container .lt {
    width: 100%;
  }
}

.home-section5 .container .lt .tit {
  margin-bottom: 30px;
  width: 100%;
}

@media (max-width: 1440px) {
  .home-section5 .container .lt .tit {
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .home-section5 .container .lt .tit {
    margin-bottom: 25px;
  }
}

@media (max-width: 767px) {
  .home-section5 .container .lt .tit {
    margin-bottom: 15px;
  }
}

.home-section5 .container .lt .tit strong {
  color: #FF0000;
  font-size: 36px;
  font-weight: bold;
  display: block;
}

@media (max-width: 1440px) {
  .home-section5 .container .lt .tit strong {
    font-size: 34px;
  }
}

@media (max-width: 1199px) {
  .home-section5 .container .lt .tit strong {
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .home-section5 .container .lt .tit strong {
    font-size: 20px;
  }
}

/* @media (max-width: 767px) {
  .home-section5 .container .lt .tit strong {
    font-size: 18px;
  }
} */
.home-section5 .container .lt .tit span {
  font-size: 18px;
  color: #262626;
  opacity: 0.7;
}

@media (max-width: 991px) {
  .home-section5 .container .lt .tit span {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .home-section5 .container .lt .tit span {
    font-size: 14px;
  }
}

.home-section5 .container .lt .font {
  font-size: 16px;
  width: 39%;
  color: #666;
  line-height: 26px;
}

@media (max-width: 1440px) {
  .home-section5 .container .lt .font {
    width: 48%;
  }
}

@media (max-width: 991px) {
  .home-section5 .container .lt .font {
    font-size: 14px;
    width: 100%;
  }
}

.home-section5 .container .lt .shu {
  width: 100%;
  height: 260px;
  margin-top: 80px;
  margin-bottom: 60px;
}

.home-section5 .container .lt .but {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  width: 120px;
  height: 35px;
  border-radius: 3px;
  border: 1px solid #a6a6a6;
  color: #626262;
  position: relative;
}

.home-section5 .container .lt .but:hover {
  background-color: #FF0000;
  color: #fff;
  border-color: #FF0000;
}

@media (max-width: 1440px) {
  .home-section5 .container .lt .shu {
    margin-top: 50px;
    margin-bottom: 40px;
    height: 210px;
  }
}

@media (max-width: 1199px) {
  .home-section5 .container .lt .shu {
    margin-top: 40px;
    margin-bottom: 25px;
    height: 190px;
  }
}

@media (max-width: 991px) {
  .home-section5 .container .lt .shu {
    margin-top: 30px;
    margin-bottom: 20px;
    height: 170px;
  }
}

@media (max-width: 767px) {
  .home-section5 .container .lt .shu {
    margin-top: 15px;
    margin-bottom: 15px;
    height: auto;
  }
}

.home-section5 .container .lt .shu .home-section5-cont {
  width: 100%;
  height: 100%;
  padding: 15px 0;
}

@media (max-width: 767px) {
  .home-section5 .container .lt .shu .home-section5-cont {
    height: 210px;
  }
}

.home-section5 .container .lt .shu .home-section5-cont .swiper-wrapper .swiper-slide {
  background-color: #fff;
}

.home-section5 .container .lt .shu .item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
  width: 100%;
  flex-direction: column;
  color: #262626;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  line-height: 1;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.home-section5 .container .lt .shu .item .wen {
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .home-section5 .container .lt .shu .item .wen {
    font-size: 16px;
    margin-bottom: 5px;
  }
}

@media (max-width: 767px) {
  .home-section5 .container .lt .shu .home-section5-cont .swiper-wrapper .swiper-slide {
    height: auto;
  }

  /* 	.home-section5 .container .lt .shu .item{
		height: auto;
		position: relative;
	} */
  .home-section5 .container .lt .shu .item .wen {
    font-size: 14px;
  }
}

.home-section5 .container .lt .shu .item .scro {
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .home-section5 .container .lt .shu .item .scro {
    margin-bottom: 5px;
  }
}

.home-section5 .container .lt .shu .item .scro strong {
  font-size: 72px;
  font-weight: bold;
}

@media (max-width: 1440px) {
  .home-section5 .container .lt .shu .item .scro strong {
    font-size: 62px;
  }
}

@media (max-width: 1199px) {
  .home-section5 .container .lt .shu .item .scro strong {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .home-section5 .container .lt .shu .item .scro strong {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .home-section5 .container .lt .shu .item .scro strong {
    font-size: 22px;
  }
}

.home-section5 .container .lt .shu .item .scro span {
  font-size: 16px;
}

@media (max-width: 1199px) {
  .home-section5 .container .lt .shu .item .scro span {
    font-size: 14px;
  }
}

.home-section5 .container .lt .shu .item .xia {
  font-size: 16px;
  color: #fff;
}

@media (max-width: 1199px) {
  .home-section5 .container .lt .shu .item .xia {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .home-section5 .container .lt .shu .item .xia {
    font-size: 12px;
  }
}

.home-section5 .container .lt .shu .item:hover {
  background-color: #FF0000;
  height: calc(100% + 32px);
  top: -16px;
}

@media (max-width: 991px) {
  .home-section5 .container .lt .shu .item:hover {
    height: calc(100% + 16px);
    top: -8px;
  }
}

.home-section5 .container .lt .shu .item:hover .scro {
  color: #fff;
}

.home-section6 {
  padding-top: 140px;
  padding-bottom: 160px;
}

@media (max-width: 1440px) {
  .home-section6 {
    padding-top: 120px;
    padding-bottom: 140px;
  }
}

@media (max-width: 1199px) {
  .home-section6 {
    padding-top: 100px;
    padding-bottom: 120px;
  }
}

@media (max-width: 991px) {
  .home-section6 {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .home-section6 {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}

.home-section6 .tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

@media (max-width: 1440px) {
  .home-section6 .tit {
    margin-bottom: 60px;
  }
}

@media (max-width: 1199px) {
  .home-section6 .tit {
    margin-bottom: 40px;
  }
}

@media (max-width: 991px) {
  .home-section6 .tit {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .home-section6 .tit {
    margin-bottom: 15px;
  }
}

.home-section6 .tit .lt strong {
  font-size: 36px;
  color: #FF0000;
  font-weight: bold;
  display: block;
}

@media (max-width: 1440px) {
  .home-section6 .tit .lt strong {
    font-size: 34px;
  }
}

@media (max-width: 1199px) {
  .home-section6 .tit .lt strong {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .home-section6 .tit .lt strong {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .home-section6 .tit .lt strong {
    font-size: 24px;
    margin-bottom: 5px;
  }
}

.home-section6 .tit .lt span {
  display: block;
  font-size: 16px;
  color: #666666;
}

@media (max-width: 767px) {
  .home-section6 .tit .lt span {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .home-section6 .tit .lt span {
    font-size: 12px;
  }
}

.home-section6 .cont {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.home-section6 .cont .img {
  width: 20%;
  border-top: 1px solid #f2f3f4;
  border-left: 1px solid #f2f3f4;
  margin-left: -1px;
  margin-top: -1px;
  position: relative;
  padding-bottom: 8%;
  overflow: hidden;
  opacity: .5;
}

@media (max-width: 1199px) {
  .home-section6 .cont .img {
    padding-bottom: 10%;
  }
}

@media (max-width: 767px) {
  .home-section6 .cont .img {
    width: 33.333%;
    padding-bottom: 16%;
  }
}

.home-section6 .cont .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
}

.solu6-cont {
  height: 30px;
}

.solu6-cont .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  /*之前是ease-out*/
  -moz-transition-timing-function: linear;
  -ms-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}

.solu6-cont .swiper-wrapper .swiper-slide {
  display: flex;
}

.home-section6 .cont .img:hover {
  opacity: 1;
}

.home-section6 .cont .img:hover img {
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%);
  filter: gray;
}

.home-section6 .jut {
  position: relative;
}

.home-section6 .jut .but1 {
  top: 0;
  position: absolute;
  right: 0;
}

.home-section6 .jut .but1 .basebut>span {
  margin-right: 0;
}

.home-section6 .jut .but1 i {
  display: none;
}

@media (max-width: 767px) {
  .home-section6 .jut .but1 {
    position: relative;
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

.home-section7 {
  background-color: #eef5ff;
  padding: 100px 0 160px;
}

@media (max-width: 1440px) {
  .home-section7 {
    padding: 100px 0 140px;
  }
}

@media (max-width: 1199px) {
  .home-section7 {
    padding: 100px 0 120px;
  }
}

@media (max-width: 991px) {
  .home-section7 {
    padding: 60px 0 80px;
  }
}

@media (max-width: 767px) {
  .home-section7 {
    padding: 40px 0;
  }
}

.home-section7 .tit {
  width: 100%;
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 1440px) {
  .home-section7 .tit {
    margin-bottom: 40px;
  }
}

@media (max-width: 991px) {
  .home-section7 .tit {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .home-section7 .tit {
    margin-bottom: 25px;
    /* align-items: flex-end; */
  }
}

@media (max-width: 767px) {
  .home-section7 .tit .lt {
    /* width: 100%; */
    /* margin-bottom: 5px; */
  }
}

.home-section7 .tit .lt strong {
  font-size: 30px;
  color: #FF0000;
  font-weight: bold;
  display: block;
}

@media (max-width: 1440px) {
  .home-section7 .tit .lt strong {
    font-size: 28px;
  }
}

@media (max-width: 1199px) {
  .home-section7 .tit .lt strong {
    font-size: 24px;
  }
}

.home-section7 .tit .lt span {
  font-size: 18px;
  color: #262626;
  opacity: 0.7;
}

@media (max-width: 1199px) {
  .home-section7 .tit .lt span {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .home-section7 .tit .lt span {
    font-size: 14px;
  }
}

.home-section7 .tit .gt {
  display: flex;
  align-items: center;
  margin: 0;
}

@media (max-width: 767px) {
  .home-section7 .tit .gt {
    /* width: 100%; */
  }
}

.home-section7 .tit .gt .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
}

.home-section7 .tit .gt a {
  color: #262626;
  position: relative;
  font-size: 16px;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .home-section7 .tit .gt a {
    font-size: 14px;
    margin-right: 10px;
  }
}

.home-section7 .tit .gt a::before {
  content: "";
  display: block;
  position: absolute;
  top: 43%;
  left: -10px;
  width: 6px;
  height: 6px;
  background-color: #FF0000;
  border-radius: 50%;
  opacity: 0;
}

@media (max-width: 767px) {
  .home-section7 .tit .gt a::before {
    display: none;
  }
}

.home-section7 .tit .gt a:hover {
  color: #FF0000;
}

.home-section7 .tit .gt a:hover::before {
  opacity: 1;
}

.home-section7 .tit .gt span {
  display: block;
  width: 1px;
  height: 13px;
  background-color: #a2a2a2;
  margin: 0 30px;
}

.home-section7 .tit .gt span:last-child {
  display: none;
}

@media (max-width: 991px) {
  .home-section7 .tit .gt span {
    margin: 0 15px;
  }
}

@media (max-width: 767px) {
  .home-section7 .tit .gt span {
    margin: 0 10px;
    background-color: transparent;
  }
}

@media (max-width: 376px) {
  .home-section7 .tit .gt span {
    margin: 0 2px;
  }
}

.home-section7 .tit .gt .on {
  color: #FF0000;
}

.home-section7 .tit .gt .on::before {
  opacity: 1;
}

.home-section7 .cont {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.home-section7 .cont .lt {
  width: 37%;
  display: block;
  overflow: hidden;
}

@media (max-width: 991px) {
  .home-section7 .cont .lt {
    margin-bottom: 30px;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .home-section7 .cont .lt {
    margin-bottom: 15px;
  }
}

.home-section7 .cont .lt .img {
  width: 100%;
  height: 325px;
}

@media (max-width: 767px) {
  .home-section7 .cont .lt .img {
    height: 210px;
  }
}

.home-section7 .cont .lt .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.home-section7 .cont .lt .font {
  width: 100%;
  background-color: #FF0000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

@media (max-width: 991px) {
  .home-section7 .cont .lt .font {
    height: 60px;
  }
}

@media (max-width: 767px) {
  .home-section7 .cont .lt .font {
    height: 50px;
  }
}

.home-section7 .cont .lt .font strong {
  padding: 20px 16px;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
}

@media (max-width: 1199px) {
  .home-section7 .cont .lt .font strong {
    font-size: 20px;
    padding: 16px 14px;
  }
}

@media (max-width: 991px) {
  .home-section7 .cont .lt .font strong {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .home-section7 .cont .lt .font strong {
    font-size: 14px;
    padding: 10px 12px;
  }
}

.home-section7 .cont .lt .font i {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 70px;
  background-color: #262626;
}

.home-section7 .cont .lt .font i img {
  width: 11px;
}

.home-section7 .cont .lt:hover img {
  -webkit-transform: scale(1.01);
  transform: scale(1.01);
}

.home-section7 .cont .gt {
  width: 60%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 20px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .home-section7 .cont .gt {
    width: 100%;
  }
}

.home-section7 .cont .gt .item {
  display: block;
  width: 43%;
  margin-bottom: 80px;
}

@media (max-width: 1199px) {
  .home-section7 .cont .gt .item {
    margin-bottom: 60px;
  }
}

@media (max-width: 991px) {
  .home-section7 .cont .gt .item {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .home-section7 .cont .gt .item {
    width: 100%;
    margin-bottom: 20px;
  }
}

.home-section7 .cont .gt .item strong {
  font-size: 18px;
  color: #262626;
  display: block;
  font-weight: bold;
  margin-bottom: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

@media (max-width: 991px) {
  .home-section7 .cont .gt .item strong {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .home-section7 .cont .gt .item strong {
    margin-bottom: 8px;
  }
}

.home-section7 .cont .gt .item p {
  font-size: 14px;
  color: #999999;
  margin-bottom: 25px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 42px;
}

@media (max-width: 991px) {
  .home-section7 .cont .gt .item p {
    margin-bottom: 18px;
  }
}

@media (max-width: 767px) {
  .home-section7 .cont .gt .item p {
    margin-bottom: 5px;
  }
}

.home-section7 .cont .gt .item span {
  font-size: 28px;
  color: #262626;
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .home-section7 .cont .gt .item span {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .home-section7 .cont .gt .item span {
    font-size: 20px;
  }
}

.home-section7 .cont .gt .item span em {
  font-style: normal;
  color: #586271;
  font-size: 20px;
  display: block;
  margin: 0 5px;
}

@media (max-width: 991px) {
  .home-section7 .cont .gt .item span em {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .home-section7 .cont .gt .item span em {
    font-size: 16px;
  }
}

.home-section7 .cont .gt .item:hover strong,
.home-section7 .cont .gt .item:hover span {
  color: #FF0000;
}

.home-section7 .cont .gt .item:hover strong em,
.home-section7 .cont .gt .item:hover span em {
  color: #FF0000;
}

/* End */
/* service.html服务支持 */
.service {
  background-color: #f6f9fe;
}

.service-section1 .cont {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

@media (max-width: 991px) {
  .service-section1 .cont {
    margin: 0 -7.5px;
  }
}

@media (max-width: 767px) {
  .service-section1 .cont {
    margin: 0;
  }
}

.service-section1 .cont .itme {
  margin-bottom: 30px;
  width: 50%;
  padding: 0 15px;
}

@media (max-width: 991px) {
  .service-section1 .cont .itme {
    margin-bottom: 15px;
    padding: 0 7.5px;
  }
}

@media (max-width: 767px) {
  .service-section1 .cont .itme {
    width: 100%;
    margin-bottom: 10px;
    padding: 0;
  }
}

.service-section1 .cont .itme .jut {
  position: relative;
  overflow: hidden;
  display: block;
}

.service-section1 .cont .itme .jut .img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.service-section1 .cont .itme .jut .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-section1 .cont .itme .jut .img img:nth-child(2) {
  opacity: 0;
}

.service-section1 .cont .itme .jut .font {
  padding: 40px 52px;
  position: relative;
  z-index: 3;
}

@media (max-width: 1440px) {
  .service-section1 .cont .itme .jut .font {
    padding: 30px 42px;
  }
}

@media (max-width: 1199px) {
  .service-section1 .cont .itme .jut .font {
    padding: 26px 32px;
  }
}

@media (max-width: 991px) {
  .service-section1 .cont .itme .jut .font {
    padding: 22px 28px;
  }
}

.service-section1 .cont .itme .jut .font .shu {
  color: #FF0000;
  text-align: right;
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 65px;
}

@media (max-width: 1440px) {
  .service-section1 .cont .itme .jut .font .shu {
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .service-section1 .cont .itme .jut .font .shu {
    font-size: 22px;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .service-section1 .cont .itme .jut .font .shu {
    font-size: 20px;
    margin-bottom: 15px;
  }
}

.service-section1 .cont .itme .jut .font .text {
  width: 100%;
}

.service-section1 .cont .itme .jut .font .text i {
  display: block;
  height: 43px;
  margin-bottom: 15px;
}

@media (max-width: 1440px) {
  .service-section1 .cont .itme .jut .font .text i {
    margin-bottom: 10px;
    height: 35px;
  }
}

@media (max-width: 991px) {
  .service-section1 .cont .itme .jut .font .text i {
    height: 25px;
    margin-bottom: 5px;
  }
}

.service-section1 .cont .itme .jut .font .text i img {
  height: 100%;
}

.service-section1 .cont .itme .jut .font .text i img:nth-child(2) {
  display: none;
}

.service-section1 .cont .itme .jut .font .text strong {
  font-size: 30px;
  color: #262626;
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}

@media (max-width: 1440px) {
  .service-section1 .cont .itme .jut .font .text strong {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .service-section1 .cont .itme .jut .font .text strong {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .service-section1 .cont .itme .jut .font .text strong {
    font-size: 16px;
  }
}

.service-section1 .cont .itme .jut .font .text span {
  font-size: 14px;
  color: #262626;
  opacity: 0.5;
  line-height: 1;
  display: block;
  margin-bottom: 33px;
}

@media (max-width: 1440px) {
  .service-section1 .cont .itme .jut .font .text span {
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .service-section1 .cont .itme .jut .font .text span {
    margin-bottom: 10px;
  }
}

.service-section1 .cont .itme .jut .font .text .jian {
  width: 42px;
}

@media (max-width: 991px) {
  .service-section1 .cont .itme .jut .font .text .jian {
    width: 30px;
  }
}

.service-section1 .cont .itme .jut .font .text .jian img {
  width: 100%;
  float: left;
}

.service-section1 .cont .itme .jut .font .text .jian img:nth-child(2) {
  display: none;
}

.service-section1 .cont .itme .jut:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FF0000;
  z-index: 1;
}

.service-section1 .cont .itme:hover .jut .img img:nth-child(1) {
  opacity: 0.03;
}

.service-section1 .cont .itme:hover .jut .img img:nth-child(2) {
  opacity: 0.2;
}

.service-section1 .cont .itme:hover .jut .font .shu {
  color: #fff;
}

.service-section1 .cont .itme:hover .jut .font .text strong,
.service-section1 .cont .itme:hover .jut .font .text span {
  color: #fff;
}

.service-section1 .cont .itme:hover .jut .font .text i img:nth-child(2),
.service-section1 .cont .itme:hover .jut .font .text .jian img:nth-child(2) {
  display: block;
}

.service-section1 .cont .itme:hover .jut .font .text i img:nth-child(1),
.service-section1 .cont .itme:hover .jut .font .text .jian img:nth-child(1) {
  display: none;
}

.service-section2 {
  padding: 100px 0 200px;
}

@media (max-width: 1199px) {
  .service-section2 {
    padding: 80px 0 160px;
  }
}

@media (max-width: 991px) {
  .service-section2 {
    padding: 60px 0 80px;
  }
}

@media (max-width: 767px) {
  .service-section2 {
    padding: 40px 0;
  }
}

.service-section2-cont {
  width: 66.6%;
  margin: 0 auto;
}

@media (max-width: 1199px) {
  .service-section2-cont {
    width: 100%;
  }
}

.service-section2-cont .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-section2-cont .item i {
  display: block;
  height: 55px;
  margin-bottom: 35px;
}

@media (max-width: 991px) {
  .service-section2-cont .item i {
    margin-bottom: 20px;
    height: 34px;
  }
}

@media (max-width: 767px) {
  .service-section2-cont .item i {
    margin-bottom: 10px;
    height: 26px;
  }
}

.service-section2-cont .item i img {
  height: 100%;
}

.service-section2-cont .item strong {
  font-size: 30px;
  display: block;
  color: #262626;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 20px;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .service-section2-cont .item strong {
    font-size: 22px;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .service-section2-cont .item strong {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .service-section2-cont .item strong {
    font-size: 16px;
    margin-bottom: 8px;
  }
}

.service-section2-cont .item span {
  font-size: 16px;
  color: #262626;
  line-height: 1;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .service-section2-cont .item span {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .service-section2-cont .item span {
    font-size: 12px;
  }
}

.service-section2-cont .item span em {
  display: block;
  height: 14px;
  margin-left: 10px;
  margin-top: 3px;
}

@media (max-width: 575px) {
  .service-section2-cont .item span em {
    height: 10px;
    margin-left: 6px;
  }
}

.service-section2-cont .item span em img {
  height: 100%;
  float: left;
}

/* End */
/* case.html案例 */
.case {
  background-color: #fff;
}

.case-section1 {
  height: 80px;
  margin-bottom: 40px;
}

@media (max-width: 1199px) {
  .case-section1 {
    height: 60px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .case-section1 {
    height: 40px;
    margin-bottom: 10px;
  }
}

.case-section1-cont {
  height: 100%;
  width: 100%;
  background-color: #fff;
}

.case-section1-cont a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #262626;
}

@media (max-width: 991px) {
  .case-section1-cont a {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .case-section1-cont a {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .case-section1-cont a {
    font-size: 12px;
  }
}

.case-section1-cont a:hover {
  color: #fff;
  background-color: #FF0000;
}

.case-section1-cont .on a {
  color: #fff;
  background-color: #FF0000;
}

.case-section2 {
  padding-bottom: 100px;
  /* border-bottom: 1px solid #d4d4d4; */
  padding-top: 3.5rem;
}

@media (max-width: 991px) {
  .case-section2 {
    padding-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .case-section2 {
    padding-bottom: 40px;
  }
}

.case-section2 .cont {
  margin: 0 -20px;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 1199px) {
  .case-section2 .cont {
    margin: 0 -10px;
  }
}

@media (max-width: 991px) {
  .case-section2 .cont {
    margin: 0 -5px;
  }
}

@media (max-width: 767px) {
  .case-section2 .cont {
    margin: 0;
  }
}

.case-section2 .cont .item {
  width: 33.333%;
  margin-bottom: 40px;
  padding: 0 20px;
}

@media (max-width: 1199px) {
  .case-section2 .cont .item {
    margin-bottom: 20px;
    padding: 0 10px;
  }
}

@media (max-width: 991px) {
  .case-section2 .cont .item {
    margin-bottom: 10px;
    padding: 0 5px;
    width: 50%;
  }
}

@media (max-width: 767px) {
  .case-section2 .cont .item {
    padding: 0;
    width: 100%;
  }
}

.case-section2 .cont .item .jut {
  width: 100%;
  overflow: hidden;
  display: block;
  background-color: #fff;
  border-radius: 16px;
}

.case-section2 .cont .item .jut .img {
  position: relative;
  padding-bottom: 70%;
  overflow: hidden;
}

.case-section2 .cont .item .jut .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.case-section2 .cont .item .jut .font {
  background-color: #f8f8f8;
  padding: 20px;
  width: 100%;
}

@media (max-width: 991px) {
  .case-section2 .cont .item .jut .font {
    padding: 15px;
  }
}

@media (max-width: 767px) {
  .case-section2 .cont .item .jut .font {
    padding: 15px 10px;
  }
}

.case-section2 .cont .item .jut .font>strong {
  font-size: 22px;
  text-align: left;
  color: #262626;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .case-section2 .cont .item .jut .font>strong {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .case-section2 .cont .item .jut .font>strong {
    font-size: 18px;
  }
}

.case-section2 .cont .item .jut .font>span {
  display: block;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 20px;
  height: 48px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media (max-width: 991px) {
  .case-section2 .cont .item .jut .font>span {
    margin-bottom: 22px;
  }
}

@media (max-width: 767px) {
  .case-section2 .cont .item .jut .font>span {
    margin-bottom: 16px;
  }
}

.case-section2 .cont .item .jut:hover .img img {
  transform: scale(1.1);
}

.case-section2 .pagebox {
  margin-top: 34px;
}

@media (max-width: 991px) {
  .case-section2 .pagebox {
    margin-top: 26px;
  }
}

@media (max-width: 767px) {
  .case-section2 .pagebox {
    margin-top: 18px;
  }
}

/* End */
/* case_info.html 案例详情 */
.case_info {
  background-color: #f6f9fe;
  padding-bottom: 50px;
}

@media (max-width: 1199px) {
  .case_info {
    /* margin-top: 80px; */
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .case_info {
    /* margin-top: 60px; */
  }
}

.case_info-section1 .cont {
  display: flex;
  margin-bottom: 100px;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .case_info-section1 .cont {
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .case_info-section1 .cont {
    margin-bottom: 40px;
  }
}

.case_info-section1 .cont .lt {
  width: 64.3%;

}

.case_info-section1 .cont .gt {
  position: sticky;
  top: 110px;
}

@media (max-width: 991px) {
  .case_info-section1 .cont .lt {
    width: 100%;
  }
}

.case_info-section1 .cont .lt .font {
  background-color: #fff;
  padding: 26px 43px 43px;
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .case_info-section1 .cont .lt .font {
    padding: 18px 23px 23px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .case_info-section1 .cont .lt .font {
    padding: 14px 16px 16px;
  }
}

.case_info-section1 .cont .lt .font .tit {
  margin-bottom: 25px;
}

@media (max-width: 991px) {
  .case_info-section1 .cont .lt .font .tit {
    margin-bottom: 18px;
  }
}

@media (max-width: 767px) {
  .case_info-section1 .cont .lt .font .tit {
    margin-bottom: 10px;
  }
}

.case_info-section1 .cont .lt .font .tit strong {
  font-size: 30px;
  display: block;
  color: #262626;
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 20px;
}

.case_info-section1 .cont .lt .font .jut {
  line-height: 1.6;
}

.case_info-section1 .cont .lt .font .jut .f_list {
  width: 100%;
  margin-bottom: 30px;
}

.case_info-section1 .cont .lt .font .jut .f_list .f_ti {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 26px;
}

.case_info-section1 .cont .lt .font .jut .f_list .f_ti:before {
  content: "";
  display: block;
  width: 8px;
  height: 22px;
  margin-right: 10px;
  background-color: #FF0000;
}

.case_info-section1 .cont .lt .font .jut .f_list .f_img {
  width: 100%;
}

.case_info-section1 .cont .lt .font .jut .f_list .f_img img {
  width: 100%;
}

.case_info-section1 .cont .lt .font .jut p {
  color: #333;
  font-size: 16px;
}

@media (max-width: 991px) {
  .case_info-section1 .cont .lt .font .tit strong {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .case_info-section1 .cont .gt {
    top: 90px;
  }
}

@media (max-width: 767px) {
  .case_info-section1 .cont .lt .font .tit strong {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.case_info-section1 .cont .lt .font .tit span {
  font-size: 16px;
  color: #666666;
}

.case_info-section1 .cont .lt .font .jut img {
  max-width: 100%;
}

.case_info-section1 .cont .lt .font .fen {
  margin-top: 140px;
}

@media (max-width: 1199px) {
  .case_info-section1 .cont .lt .font .fen {
    margin-top: 120px;
  }
}

@media (max-width: 991px) {
  .case_info-section1 .cont .lt .font .fen {
    margin-top: 100px;
  }
}

@media (max-width: 767px) {
  .case_info-section1 .cont .lt .font .fen {
    margin-top: 60px;
  }
}

.case_info-section1 .cont .lt .font .fen span {
  display: block;
  padding-bottom: 10px;
  line-height: 1;
  border-bottom: 2px solid #d6d6d6;
  margin-bottom: 18px;
  color: 262626;
  font-size: 20px;
  font-weight: bold;
}

@media (max-width: 1199px) {
  .case_info-section1 .cont .lt .font .fen span {
    margin-bottom: 14px;
    padding-bottom: 6px;
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .case_info-section1 .cont .lt .font .fen span {
    margin-bottom: 10px;
    font-size: 16px;
  }
}

.case_info-section1 .cont .lt .font .fen .icon1 {
  display: flex;
  align-items: center;
  position: relative;
}

.case_info-section1 .cont .lt .font .fen .icon1 a {
  height: 22px;
  display: block;
  overflow: hidden;
  margin-right: 20px;
}

@media (max-width: 991px) {
  .case_info-section1 .cont .lt .font .fen .icon1 a {
    height: 18px;
    margin-right: 10px;
  }
}

.case_info-section1 .cont .lt .font .fen .icon1 a>img {
  float: left;
  height: 100%;
}

.case_info-section1 .cont .lt .font .fen .icon1 a>img:nth-child(2) {
  display: none;
}

.case_info-section1 .cont .lt .font .fen .icon1 a .hover1 {
  position: absolute;
  bottom: 110%;
  left: 0;
  width: 120px;
  height: 120px;
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  display: none;
}

.case_info-section1 .cont .lt .font .fen .icon1 a .hover1 img {
  width: 100%;
}

.case_info-section1 .cont .lt .font .fen .icon1 a:hover>img:nth-child(1) {
  display: none;
}

.case_info-section1 .cont .lt .font .fen .icon1 a:hover>img:nth-child(2) {
  display: block;
}

.case_info-section1 .cont .lt .font .fen .icon1 a:hover .hover1 {
  display: block;
}

.case_info-section1 .cont .lt .cli {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.case_info-section1 .cont .lt .cli a {
  font-size: 20px;
  color: #262626;
}

@media (max-width: 991px) {
  .case_info-section1 .cont .lt .cli a {
    font-size: 18px;
    width: 33.22%;
  }
}

@media (max-width: 767px) {
  .case_info-section1 .cont .lt .cli a {
    font-size: 16px;
  }
}

.case_info-section1 .cont .lt .cli a i {
  overflow: hidden;
}

.case_info-section1 .cont .lt .cli a i img {
  float: left;
}

.case_info-section1 .cont .lt .cli a span {
  display: block;
}

@media (max-width: 991px) {
  .case_info-section1 .cont .lt .cli a span {
    max-width: 60%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.case_info-section1 .cont .lt .cli .paev,
.case_info-section1 .cont .lt .cli .next {
  display: flex;
  align-items: center;
}

.case_info-section1 .cont .lt .cli .paev i,
.case_info-section1 .cont .lt .cli .next i {
  display: block;
  width: 22px;
}

@media (max-width: 991px) {

  .case_info-section1 .cont .lt .cli .paev i,
  .case_info-section1 .cont .lt .cli .next i {
    width: 18px;
  }
}

.case_info-section1 .cont .lt .cli .paev i img,
.case_info-section1 .cont .lt .cli .next i img {
  width: 100%;
}

.case_info-section1 .cont .lt .cli .paev i img:nth-child(2),
.case_info-section1 .cont .lt .cli .next i img:nth-child(2) {
  display: none;
}

.case_info-section1 .cont .lt .cli .paev i {
  margin-right: 13px;
}

@media (max-width: 991px) {
  .case_info-section1 .cont .lt .cli .paev i {
    margin-right: 8px;
  }
}

.case_info-section1 .cont .lt .cli .next i {
  margin-left: 13px;
}

@media (max-width: 991px) {
  .case_info-section1 .cont .lt .cli .next i {
    margin-left: 8px;
  }
}

.case_info-section1 .cont .lt .cli .center {
  display: flex;
  align-items: center;
}

.case_info-section1 .cont .lt .cli .center i {
  display: block;
  height: 20px;
  margin-right: 15px;
}

@media (max-width: 991px) {
  .case_info-section1 .cont .lt .cli .center i {
    height: 18px;
  }
}

@media (max-width: 991px) {
  .case_info-section1 .cont .lt .cli .center i {
    margin-right: 10px;
  }
}

.case_info-section1 .cont .lt .cli .center i img {
  height: 100%;
}

.case_info-section1 .cont .lt .cli .center i img:nth-child(2) {
  display: none;
}

.case_info-section1 .cont .gt {
  width: 33.4%;
}

@media (max-width: 991px) {
  .case_info-section1 .cont .gt {
    display: none;
    width: 100%;
  }
}

.case_info-section1 .cont .gt .jut {
  background-color: #fff;
  margin-bottom: 42px;
  padding-bottom: 47px;
}

@media (max-width: 1199px) {
  .case_info-section1 .cont .gt .jut {
    margin-bottom: 32px;
  }
}

.case_info-section1 .cont .gt .jut .tit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 75px;
  background-color: #002FA7;
  font-weight: bold;
  margin-bottom: 46px;
  color: #fff;
  font-size: 24px;
}

@media (max-width: 1199px) {
  .case_info-section1 .cont .gt .jut .tit {
    margin-bottom: 32px;
    font-size: 20px;
  }
}

.case_info-section1 .cont .gt .jut .list {
  width: 100%;
  padding: 0px 67px 0 32px;
}

@media (max-width: 1199px) {
  .case_info-section1 .cont .gt .jut .list {
    padding: 0 20px;
  }
}

.case_info-section1 .cont .gt .jut .list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  overflow: hidden;
  height: 96px;
}

@media (max-width: 1199px) {
  .case_info-section1 .cont .gt .jut .list a {
    margin-bottom: 18px;
  }
}

.case_info-section1 .cont .gt .jut .list a img {
  width: 37%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.case_info-section1 .cont .gt .jut .list a .font {
  width: 56%;
}

.case_info-section1 .cont .gt .jut .list a .font span {
  display: block;
  font-size: 14px;
  color: #666;
  line-height: 1;
  margin-bottom: 10px;
}

.case_info-section1 .cont .gt .jut .list a .font strong {
  font-size: 16px;
  color: #262626;
  display: block;
  height: 44px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.case_info-section1 .cont .gt .jut .list a:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.case_info-section2 {
  background-color: #fff;
  padding-top: 50px;
  padding-bottom: 50px;
}

@media (max-width: 991px) {
  .case_info-section2 {
    padding-top: 40px;
    padding-bottom: 25px;
  }
}

@media (max-width: 767px) {
  .case_info-section2 {
    padding-top: 20px;
    padding-bottom: 15px;
  }
}

.case_info-section2 .tit {
  display: block;
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .case_info-section2 .tit {
    padding-bottom: 20px;
    margin-bottom: 36px;
  }
}

@media (max-width: 767px) {
  .case_info-section2 .tit {
    padding-bottom: 14px;
    margin-bottom: 20px;
  }
}

.case_info-section2 .tit strong {
  font-weight: bold;
  display: block;
  font-size: 36px;
  color: #002FA7;
}

@media (max-width: 991px) {
  .case_info-section2 .tit strong {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .case_info-section2 .tit strong {
    font-size: 20px;
  }
}

.case_info-section2 .tit span {
  font-size: 16px;
  color: #262626;
  opacity: 0.5;
}

@media (max-width: 767px) {
  .case_info-section2 .tit span {
    font-size: 14px;
  }
}

.case_info-section2 .cont {
  padding: 0 64px;
}

@media (max-width: 991px) {
  .case_info-section2 .cont {
    padding: 0 36px;
  }
}

@media (max-width: 767px) {
  .case_info-section2 .cont {
    padding: 0;
  }
}

.case_info-section2-cont .item {
  display: block;
}

.case_info-section2-cont .item .img {
  position: relative;
  padding-bottom: 69%;
  overflow: hidden;
}

.case_info-section2-cont .item .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.case_info-section2-cont .item .font {
  padding-top: 25px;
  text-align: center;
}

@media (max-width: 991px) {
  .case_info-section2-cont .item .font {
    padding-top: 18px;
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .case_info-section2-cont .item .font {
    margin-top: 10px;
    margin-top: 15px;
  }
}

.case_info-section2-cont .item .font strong {
  display: block;
  color: #262626;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 20px;
  font-size: 22px;
}

@media (max-width: 991px) {
  .case_info-section2-cont .item .font strong {
    font-size: 20px;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .case_info-section2-cont .item .font strong {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.case_info-section2-cont .item .font span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #262626;
  font-size: 14px;
  opacity: 0.5;
}

.case_info-section2-cont .item .font span i {
  display: block;
  margin-left: 10px;
  height: 12px;
}

.case_info-section2-cont .item .font span i img {
  height: 12px;
  float: left;
}

.case_info-section2-cont .item:hover .img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

/* End */
/* news_info.html新闻详情 */
.news_info-section1 {
  padding-bottom: 120px;
  /* border-bottom: 1px solid #d4d4d4; */
}

@media (max-width: 1199px) {
  .news_info-section1 {
    padding-bottom: 100px;
  }
}

@media (max-width: 991px) {
  .news_info-section1 {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .news_info-section1 {
    padding-bottom: 40px;
  }
}

/* End */
/* after.html售后服务 */
.afterbox-section1 .cont .item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-color: #fff;
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}

.afterbox-section1 .cont .item .lt {
  width: 50%;
  padding: 0 66px 0 50px;
}

@media (max-width: 1199px) {
  .afterbox-section1 .cont .item .lt {
    padding: 0 56px 0 40px;
  }
}

@media (max-width: 991px) {
  .afterbox-section1 .cont .item .lt {
    padding: 0 36px 0 20px;
  }
}

@media (max-width: 767px) {
  .afterbox-section1 .cont .item .lt {
    width: 100%;
    order: 1;
    padding: 20px 15px 0px 15px;
  }
}

.afterbox-section1 .cont .item .lt strong {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5;
  display: block;
  color: #262626;
}

@media (max-width: 991px) {
  .afterbox-section1 .cont .item .lt strong {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .afterbox-section1 .cont .item .lt strong {
    font-size: 20px;
  }
}

.afterbox-section1 .cont .item .lt span {
  display: block;
  margin: 28px 0;
  width: 30px;
  height: 3px;
  background-color: #FF0000;
}

@media (max-width: 991px) {
  .afterbox-section1 .cont .item .lt span {
    margin: 20px 0;
  }
}

.afterbox-section1 .cont .item .lt pre {
  overflow: hidden;
  white-space: normal;
  padding: 0;
  margin: 0;
}

.afterbox-section1 .cont .item .lt p {
  font-size: 14px;
  color: #666666;
  line-height: 24px;
}

@media (max-width: 1199px) {
  .afterbox-section1 .cont .item .lt p {
    font-size: 14px;
  }
}

.afterbox-section1 .cont .item .gt {
  width: 50%;
  position: relative;
  padding-bottom: 35%;
  overflow: hidden;
}

@media (max-width: 767px) {
  .afterbox-section1 .cont .item .gt {
    width: 100%;
    order: 0;
    padding-bottom: 60%;
  }
}

.afterbox-section1 .cont .item .gt img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.afterbox-section1 .cont .item .shu {
  position: absolute;
  left: 47px;
  bottom: 0;
  font-size: 200px;
  color: #FF0000;
  opacity: 0.1;
  font-weight: bold;
  line-height: 1;
  -webkit-transform: translateY(30%);
  transform: translateY(30%);
}

@media (max-width: 1199px) {
  .afterbox-section1 .cont .item .shu {
    left: 36px;
    font-size: 120px;
  }
}

@media (max-width: 991px) {
  .afterbox-section1 .cont .item .shu {
    left: 16px;
    font-size: 80px;
  }
}

@media (max-width: 767px) {
  .afterbox-section1 .cont .item .shu {
    left: 15px;
    font-size: 40px;
    order: 2;
    position: relative;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    padding-bottom: 10px;
    margin-top: 10px;
  }
}

.afterbox-section1 .cont .item:hover .gt img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

.afterbox-section2 {
  padding-top: 100px;
  padding-bottom: 200px;
}

@media (max-width: 1199px) {
  .afterbox-section2 {
    padding-top: 80px;
    padding-bottom: 160px;
  }
}

@media (max-width: 991px) {
  .afterbox-section2 {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .afterbox-section2 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.afterbox-section2 .cont .itme {
  width: 33.33%;
}

@media (max-width: 767px) {
  .afterbox-section2 .cont .itme {
    width: 100%;
  }
}

.afterbox-section2 .cont .itme .jut .font .text i {
  height: 34px;
}

@media (max-width: 991px) {
  .afterbox-section2 .cont .itme .jut .font .text i {
    height: 24px;
  }
}

.afterbox-section2 .cont .itme .jut .font .text strong {
  font-size: 24px;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .afterbox-section2 .cont .itme .jut .font .text strong {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .afterbox-section2 .cont .itme .jut .font .text strong {
    font-size: 20px;
  }
}

.afterbox-section2 .cont .itme .jut .font {
  padding: 60px 40px 51px;
}

@media (max-width: 991px) {
  .afterbox-section2 .cont .itme .jut .font {
    padding: 25px 20px 25px;
  }
}

@media (max-width: 767px) {
  .afterbox-section2 .cont .itme .jut .font {
    padding: 30px 20px 30px;
  }
}

.afterbox-section2 .cont .itme .jut .font .text span {
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .afterbox-section2 .cont .itme .jut .font .text span {
    margin-bottom: 10px;
  }
}

/* End */
/* contact.html联系我们 */
.contactbox {
  background-color: #f1f4f8;
}

.contactbox-tit strong {
  font-size: 44px;
  font-weight: bold;
  color: #FF0000;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .contactbox-tit strong {
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .contactbox-tit strong {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .contactbox-tit strong {
    font-size: 20px;
  }
}

.contactbox-tit span {
  font-size: 18px;
  color: #262626;
  opacity: 0.7;
}

@media (max-width: 991px) {
  .contactbox-tit span {
    font-size: 16px;
  }
}

.contactbox-section1 {
  padding: 52px 0 150px;
}

@media (max-width: 1199px) {
  .contactbox-section1 {
    padding: 52px 0 80px;
  }
}

@media (max-width: 991px) {
  .contactbox-section1 {
    padding: 32px 0 60px;
  }
}

@media (max-width: 991px) {
  .contactbox-section1 {
    padding: 22px 0 60px;
  }
}

.contactbox-section1 .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contactbox-section1 .container .lt {
  width: 47%;
}

@media (max-width: 991px) {
  .contactbox-section1 .container .lt {
    width: 100%;
    margin-bottom: 25px;
  }
}

.contactbox-section1 .container .lt .contactbox-tit {
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .contactbox-section1 .container .lt .contactbox-tit {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .contactbox-section1 .container .lt .contactbox-tit {
    margin-bottom: 15px;
  }
}

.contactbox-section1 .container .lt .tu {
  width: 100%;
  height: 400px;
  padding: 8px;
  background-color: #fff;
}

@media (max-width: 991px) {
  .contactbox-section1 .container .lt .tu {
    height: 300px;
  }
}

.contactbox-section1 .container .lt .tu #map {
  width: 100%;
  height: 100%;
}

.contactbox-section1 .container .gt {
  width: 48.1%;
}

@media (max-width: 991px) {
  .contactbox-section1 .container .gt {
    width: 100%;
  }
}

.contactbox-section1 .container .gt .tit {
  margin-bottom: 50px;
}

@media (max-width: 1199px) {
  .contactbox-section1 .container .gt .tit {
    margin-bottom: 25px;
  }
}

@media (max-width: 991px) {
  .contactbox-section1 .container .gt .tit {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .contactbox-section1 .container .gt .tit {
    margin-bottom: 20px;
  }
}

.contactbox-section1 .container .gt .tit strong {
  display: block;
  font-size: 36px;
  padding-bottom: 10px;
  color: #262626;
}

@media (max-width: 1199px) {
  .contactbox-section1 .container .gt .tit strong {
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .contactbox-section1 .container .gt .tit strong {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .contactbox-section1 .container .gt .tit strong {
    font-size: 20px;
  }
}

.contactbox-section1 .container .gt .tit:after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background-color: #FF0000;
}

.contactbox-section1 .container .gt .jut {
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

@media (max-width: 1199px) {
  .contactbox-section1 .container .gt .jut {
    margin-bottom: 15px;
  }
}

.contactbox-section1 .container .gt .jut .item {
  display: flex;
  width: 48%;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .contactbox-section1 .container .gt .jut .item {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .contactbox-section1 .container .gt .jut .item {
    width: 48%;
  }
}

@media (max-width: 767px) {
  .contactbox-section1 .container .gt .jut .item {
    width: 100%;
    margin-bottom: 10px;
  }
}

.contactbox-section1 .container .gt .jut .item i {
  display: block;
  height: 20px;
  margin-right: 20px;
}

@media (max-width: 991px) {
  .contactbox-section1 .container .gt .jut .item i {
    margin-right: 15px;
    height: 15px;
  }
}

.contactbox-section1 .container .gt .jut .item i img {
  height: 100%;
}

.contactbox-section1 .container .gt .jut .item .font {
  display: block;
}

.contactbox-section1 .container .gt .jut .item .font strong {
  display: block;
  font-size: 18px;
  color: #262626;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .contactbox-section1 .container .gt .jut .item .font strong {
    font-size: 16px;
    margin-bottom: 8px;
  }
}

@media (max-width: 575px) {
  .contactbox-section1 .container .gt .jut .item .font strong {
    font-size: 14px;
  }
}

.contactbox-section1 .container .gt .jut .item .font span {
  font-size: 16px;
  display: block;
  color: #666666;
}

.contactbox-section1 .container .gt .jut .item .font pre {
  font-size: 16px;
  display: block;
  color: #666666;
  padding: 0;
  overflow: hidden;
}

.contactbox-section1 .container .gt .er {
  display: flex;
}

.contactbox-section1 .container .gt .er .list {
  margin-right: 20px;
  text-align: center;
}

.contactbox-section1 .container .gt .er .list .img {
  display: block;
  width: 140px;
  height: 140px;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .contactbox-section1 .container .gt .er .list .img {
    width: 120px;
    height: 120px;
  }
}

.contactbox-section1 .container .gt .er .list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contactbox-section1 .container .gt .er .list span {
  font-size: 16px;
}

@media (max-width: 991px) {
  .contactbox-section1 .container .gt .er .list span {
    font-size: 14px;
  }
}

.contactbox-section2 {
  display: flex;
  flex-direction: row-reverse;
  position: relative;
  background-color: #f6f9fe;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .contactbox-section2 {
    padding-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .contactbox-section2 {
    padding-bottom: 20px;
  }
}

.contactbox-section2 .img {
  width: 50%;
}

@media (max-width: 1199px) {
  .contactbox-section2 .img {
    height: 570px;
  }
}

@media (max-width: 991px) {
  .contactbox-section2 .img {
    width: 100%;
    height: 400px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .contactbox-section2 .img {
    margin-bottom: 20px;
    height: 260px;
  }
}

.contactbox-section2 .img img {
  width: 100%;
}

@media (max-width: 991px) {
  .contactbox-section2 .img img {
    height: 100%;
    object-fit: cover;
  }
}

.contactbox-section2 .container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  z-index: 1;
}

@media (max-width: 991px) {
  .contactbox-section2 .container {
    position: relative;
    width: 100%;
  }
}

.contactbox-section2 .container .lt {
  width: 100%;
}

.contactbox-section2 .container .form {
  display: block;
  margin-top: 70px;
  width: 100%;
}

@media (max-width: 1440px) {
  .contactbox-section2 .container .form {
    margin-top: 40px;
  }
}

@media (max-width: 1199px) {
  .contactbox-section2 .container .form {
    margin-top: 35px;
  }
}

@media (max-width: 991px) {
  .contactbox-section2 .container .form {
    margin-top: 25px;
  }
}

.contactbox-section2 .container .form textarea {
  width: 100%;
  height: 350px;
  background-color: #fff;
  font-size: 16px;
  color: #333;
  padding: 24px;
  margin-bottom: 24px;
}

@media (max-width: 1440px) {
  .contactbox-section2 .container .form textarea {
    height: 250px;
    margin-bottom: 18px;
    padding: 18px;
  }
}

@media (max-width: 1199px) {
  .contactbox-section2 .container .form textarea {
    margin-bottom: 18px;
    padding: 18px;
  }
}

@media (max-width: 991px) {
  .contactbox-section2 .container .form textarea {
    margin-bottom: 14px;
    padding: 14px;
  }
}

.contactbox-section2 .container .form .int {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 24px;
}

@media (max-width: 1440px) {
  .contactbox-section2 .container .form .int {
    margin-bottom: 18px;
  }
}

@media (max-width: 1199px) {
  .contactbox-section2 .container .form .int {
    margin-bottom: 18px;
  }
}

@media (max-width: 991px) {
  .contactbox-section2 .container .form .int {
    margin-bottom: 14px;
  }
}

.contactbox-section2 .container .form .int input,
.contactbox-section2 .container .form .int select {
  width: 32%;
  padding: 24px;
  font-size: 16px;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background-color: #fff;
  outline: none;
}

.contactbox-section2 .container .form .int input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #000;
}

.contactbox-section2 .container .form .int input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #000;
}

.contactbox-section2 .container .form .int input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #000;
}

@media (max-width: 1440px) {

  .contactbox-section2 .container .form .int input,
  .contactbox-section2 .container .form .int select {
    padding: 20px;
  }
}

@media (max-width: 1199px) {

  .contactbox-section2 .container .form .int input,
  .contactbox-section2 .container .form .int select {
    font-size: 14px;
    padding: 18px;
  }
}

@media (max-width: 767px) {

  .contactbox-section2 .container .form .int input,
  .contactbox-section2 .container .form .int select {
    padding: 14px;
    width: 100%;
    margin-bottom: 10px;
  }
}

.contactbox-section2 .container .form .int select {
  background: #fff url(../../images/sele.png) no-repeat;
  background-position: 95% 0;
  background-size: auto 100%;
}

@media (max-width: 767px) {
  .contactbox-section2 .container .form .int select {
    margin-bottom: 0;
  }
}

.contactbox-section2 .container .form .but {
  display: flex;
  flex-wrap: wrap;
}

.contactbox-section2 .container .form .but button {
  width: 230px;
  height: 70px;
  background-color: #fff;
  color: #FF0000;
  font-size: 16px;
  margin-right: 24px;
}

.contactbox-section2 .container .form .but .submit1 {
  background-color: #FF0000;
  color: #fff;
}

@media (max-width: 1440px) {
  .contactbox-section2 .container .form .but button {
    width: 200px;
    height: 60px;
  }
}

@media (max-width: 991px) {
  .contactbox-section2 .container .form .but button {
    width: 140px;
    height: 55px;
    margin-right: 16px;
    font-size: 14px;
  }
}

.contactbox-section2 .container .form .but button:hover {
  background-color: #FF0000;
  color: #fff;
}

/* End */
/* product_info.html产品详情 */
.product_info-section1 {
  margin-bottom: 40px;
  padding-top: 50px;
}

@media (max-width: 991px) {
  .product_info-section1 {
    margin-bottom: 20px;
  }
}

.product_info-section1 .cont {
  padding: 53px 95px 65px 53px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #fff;
  padding-top: 50px;
}

@media (max-width: 1199px) {
  .product_info-section1 .cont {
    padding: 33px 65px 35px 33px;
  }
}

@media (max-width: 991px) {
  .product_info-section1 .cont {
    padding: 40px 30px;
  }
}

@media (max-width: 767px) {
  .product_info-section1 .cont {
    padding: 40px 15px;
  }
}

.product_info-section1 .cont .lt {
  width: 50%;
  height: 400px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  justify-content: space-between;
}

@media (max-width: 1440px) {
  .product_info-section1 .cont .lt {
    height: 400px;
  }
}

@media (max-width: 1199px) {
  .product_info-section1 .cont .lt {
    height: 300px;
  }
}

@media (max-width: 991px) {
  .product_info-section1 .cont .lt {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }
}

.product_info-section1 .cont .lt .nav {
  width: 17%;
  height: 90%;
}

@media (max-width: 991px) {
  .product_info-section1 .cont .lt .nav {
    width: 100%;
    height: 80px;
    order: 1;
  }
}

@media (max-width: 767px) {
  .product_info-section1 .cont .lt .nav {
    height: 70px;
  }
}

.product_info-section1 .cont .lt .nav .product_info-section1-nav {
  height: 100%;
}

.product_info-section1 .cont .lt .nav .img {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border: 1px solid #dbdbdb;
  cursor: pointer;
  overflow: hidden;
}

.product_info-section1 .cont .lt .nav .img img {
  height: 86%;
  object-fit: cover;
}

.product_info-section1 .cont .lt .nav .img:hover {
  border: 1px solid #FF0000;
}

.product_info-section1 .cont .lt .nav .on .img {
  border: 1px solid #FF0000;
}

.product_info-section1 .cont .lt .cent {
  width: 100%;
  height: 100%;
}

@media (max-width: 991px) {
  .product_info-section1 .cont .lt .cent {
    width: 100%;
    height: 350px;
    order: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .product_info-section1 .cont .lt .cent {
    height: 260px;
  }
}

.product_info-section1 .cont .lt .cent .img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: calc(100% - 2px);
  overflow: hidden;
  border: 1px solid #dbdbdb;
}

.product_info-section1 .cont .lt .cent .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.product_info-section1 .cont .lt .cent .img:hover img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

.product_info-section1 .cont .lt .qie {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 17%;
  display: flex;
}

@media (max-width: 991px) {
  .product_info-section1 .cont .lt .qie {
    width: 100%;
    bottom: 8%;
  }
}

.product_info-section1 .cont .lt .qie .pro-prev,
.product_info-section1 .cont .lt .qie .pro-next {
  display: block;
  width: 45%;
  height: 20px;
  outline: none;
  pointer-events: auto !important;
}

@media (max-width: 991px) {

  .product_info-section1 .cont .lt .qie .pro-prev,
  .product_info-section1 .cont .lt .qie .pro-next {
    width: 20px;
    height: 40px;
  }
}

.product_info-section1 .cont .lt .qie .pro-prev {
  background: #d4d4d4 url(../../images/top.png) no-repeat;
  background-position: center;
  background-size: auto 6px;
  left: 0;
}

.product_info-section1 .cont .lt .qie .pro-prev:hover {
  background: #FF0000 url(../../images/top.png) no-repeat;
  background-position: center;
  background-size: auto 6px;
}

@media (max-width: 991px) {
  .product_info-section1 .cont .lt .qie .pro-prev {
    background: #d4d4d4 url(../../images/lt.png) no-repeat;
    background-position: center;
    background-size: auto 6px;
  }

  .product_info-section1 .cont .lt .qie .pro-prev:hover {
    background: #FF0000 url(../../images/lt.png) no-repeat;
    background-position: center;
    background-size: auto 6px;
  }
}

.product_info-section1 .cont .lt .qie .pro-next {
  background: #d4d4d4 url(../../images/b.png) no-repeat;
  background-position: center;
  background-size: auto 6px;
  right: 0;
}

.product_info-section1 .cont .lt .qie .pro-next:hover {
  background: #FF0000 url(../../images/b.png) no-repeat;
  background-position: center;
  background-size: auto 6px;
}

@media (max-width: 991px) {
  .product_info-section1 .cont .lt .qie .pro-next {
    background: #d4d4d4 url(../../images/gt.png) no-repeat;
    background-position: center;
    background-size: auto 6px;
  }

  .product_info-section1 .cont .lt .qie .pro-next:hover {
    background: #FF0000 url(../../images/gt.png) no-repeat;
    background-position: center;
    background-size: auto 6px;
  }
}

.product_info-section1 .cont .gt {
  width: 46%;
  display: flex;
  align-items: center;
  font-size: 16px;
}

@media (max-width: 991px) {
  .product_info-section1 .cont .gt {
    width: 100%;
    height: auto;
  }
}

.product_info-section1 .cont .gt strong {
  font-size: 30px;
  color: #262626;
  display: block;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .product_info-section1 .cont .gt strong {
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .product_info-section1 .cont .gt strong {
    font-size: 22px;
    margin-bottom: 16px;
  }
}

@media (max-width: 767px) {
  .product_info-section1 .cont .gt strong {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

.product_info-section1 .cont .gt p {
  font-size: 16px;
  line-height: 26px;
  color: #666666;
}

@media (max-width: 991px) {
  .product_info-section1 .cont .gt p {
    font-size: 14px;
    line-height: 24px;
  }
}

.product_info-section1 .cont .gt .but {
  margin-top: 74px;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 1199px) {
  .product_info-section1 .cont .gt .but {
    margin-top: 45px;
  }
}

@media (max-width: 991px) {
  .product_info-section1 .cont .gt .but {
    margin-top: 26px;
  }
}

@media (max-width: 767px) {
  .product_info-section1 .cont .gt .but {
    margin-top: 20px;
  }
}

.product_info-section1 .cont .gt .but span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 224px;
  height: 50px;
  background-color: #161ea1;
  color: #fff;
  font-size: 22px;
  margin-right: 10px;
  font-weight: bold;
  border-radius: 50px;
}

@media (max-width: 1199px) {
  .product_info-section1 .cont .gt .but span {
    font-size: 16px;
    margin-right: 10px;
    width: 180px;
  }
}

@media (max-width: 991px) {
  .product_info-section1 .cont .gt .but span {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .product_info-section1 .cont .gt .but span {
    height: 45px;
    width: 120px;
    font-size: 12px;
  }
}

.product_info-section1 .cont .gt .but span i {
  display: block;
  height: 20px;
  margin-right: 8px;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .product_info-section1 .cont .gt .but span i {
    height: 18px;
  }
}

@media (max-width: 767px) {
  .product_info-section1 .cont .gt .but span i {
    height: 12px;
    margin-right: 5px;
  }
}

.product_info-section1 .cont .gt .but span i img {
  height: 100%;
  float: left;
}

.product_info-section1 .cont .gt .but a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  width: 130px;
  height: 50px;
  background-color: #FF0000;
  color: #fff;
  border-radius: 50px;
  font-size: 20px;
}

@media (max-width: 767px) {
  .product_info-section1 .cont .gt .but a {
    width: 100px;
    height: 45px;
	font-size: 14px;
  }
}

.product_info-section2 .cont {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}

.product_info-section2 .cont .lt {
  width: 68%;
  padding-bottom: 120px;
  border-bottom: 2px solid #e9e9e9;
}

@media (max-width: 1440px) {
  .product_info-section2 .cont .lt {
    padding-bottom: 100px;
  }
}

@media (max-width: 1199px) {
  .product_info-section2 .cont .lt {
    padding-bottom: 80px;
  }
}

@media (max-width: 991px) {
  .product_info-section2 .cont .lt {
    padding-bottom: 60px;
    width: 100%;
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .product_info-section2 .cont .lt {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}

.product_info-section2 .cont .lt .tit {
  background-color: #fff;
  height: 75px;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 2px solid #e9e9e9;
}

@media (max-width: 991px) {
  .product_info-section2 .cont .lt .tit {
    height: 55px;
  }
}

@media (max-width: 767px) {
  .product_info-section2 .cont .lt .tit {
    height: 45px;
  }
}

.product_info-section2 .cont .lt .tit a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100% + 2px);
  color: #262626;
  font-size: 24px;
  padding: 0 34px;
}

@media (max-width: 991px) {
  .product_info-section2 .cont .lt .tit a {
    font-size: 22px;
    padding: 0 24px;
  }
}

@media (max-width: 767px) {
  .product_info-section2 .cont .lt .tit a {
    font-size: 16px;
    padding: 0 14px;
  }
}

@media (max-width: 575px) {
  .product_info-section2 .cont .lt .tit a {
    font-size: 14px;
  }
}

.product_info-section2 .cont .lt .tit a:hover {
  background-color: #FF0000;
  color: #fff;
}

.product_info-section2 .cont .lt .tit .on {
  background-color: #FF0000;
  color: #fff;
}

.product_info-section2 .cont .lt .jut {
  width: 100%;
  padding: 54px;
  background-color: #fff;
  margin-bottom: 50px;
}

.product_info-section2 .cont .lt .jut .item {
  display: none;
}

.product_info-section2 .cont .lt .jut .on {
  display: block;
}

@media (max-width: 991px) {
  .product_info-section2 .cont .lt .jut {
    padding: 24px;
    margin-bottom: 25px;
  }
}

@media (max-width: 767px) {
  .product_info-section2 .cont .lt .jut {
    padding: 12px;
    margin-bottom: 20px;
  }
}

.product_info-section2 .cont .lt .jut img {
  width: 100%;
}

.product_info-section2 .cont .lt .but {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 65px;
  background-color: #FF0000;
  color: #fff;
  font-size: 18px;
}

@media (max-width: 991px) {
  .product_info-section2 .cont .lt .but {
    font-size: 16px;
    width: 200px;
    height: 55px;
  }
}

@media (max-width: 767px) {
  .product_info-section2 .cont .lt .but {
    font-size: 14px;
    width: 100px;
    height: 45px;
  }
}

.product_info-section2 .cont .lt .but i {
  display: block;
  height: 17px;
  margin-right: 17px;
}

@media (max-width: 991px) {
  .product_info-section2 .cont .lt .but i {
    height: 14px;
    margin-right: 10px;
  }
}

@media (max-width: 767px) {
  .product_info-section2 .cont .lt .but i {
    height: 12px;
    margin-right: 8px;
  }
}

.product_info-section2 .cont .lt .but i img {
  height: 100%;
  float: left;
}

.product_info-section2 .cont .gt {
  width: 28%;
  position: sticky;
  top: 10px;
}

@media (max-width: 991px) {
  .product_info-section2 .cont .gt {
    width: 100%;
  }
}

.product_info-section2 .cont .gt .tit {
  background-color: #FF0000;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 24px;
  color: #fff;
}

@media (max-width: 991px) {
  .product_info-section2 .cont .gt .tit {
    height: 55px;
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .product_info-section2 .cont .gt .tit {
    height: 45px;
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .product_info-section2 .cont .gt .tit {
    font-size: 14px;
  }
}

.product_info-section2 .cont .gt .list {
  background-color: #fff;
  padding: 53px 48px;
  text-align: center;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .product_info-section2 .cont .gt .list {
    padding: 43px 38px;
  }
}

@media (max-width: 991px) {
  .product_info-section2 .cont .gt .list {
    padding: 33px 28px;
    display: flex;
    justify-content: space-between;
  }
}

@media (max-width: 1199px) {
  .product_info-section2 .cont .gt .list {
    padding: 23px 12px;
  }
}

.product_info-section2 .cont .gt .list a {
  display: block;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .product_info-section2 .cont .gt .list a {
    float: left;
    margin-bottom: 0;
    width: 32%;
  }

  .product_info-section2 .cont .gt .list a:last-child {
    margin-right: 0;
  }
}

.product_info-section2 .cont .gt .list a:last-child {
  margin-bottom: 0;
}

.product_info-section2 .cont .gt .list a .img {
  width: 100%;
  height: 240px;
  border: 1px solid #e2e2e2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

@media (max-width: 991px) {
  .product_info-section2 .cont .gt .list a .img {
    height: 200px;
    margin-bottom: 14px;
  }
}

@media (max-width: 767px) {
  .product_info-section2 .cont .gt .list a .img {
    margin-bottom: 10px;
    height: 265px;
  }

  .product_info-section2 .cont .gt .list {
    flex-wrap: wrap;
  }

  .product_info-section2 .cont .gt .list a {
    width: 100%;
    margin-bottom: 26px;
  }
}

.product_info-section2 .cont .gt .list a .img img {
  height: 60%;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.product_info-section2 .cont .gt .list a span {
  font-size: 18px;
  color: #262626;
}

@media (max-width: 991px) {
  .product_info-section2 .cont .gt .list a span {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .product_info-section2 .cont .gt .list a span {
    font-size: 14;
  }

  .product_info-section2 .cont .gt .list a .img img {
    height: 70%;
  }
}

@media (max-width: 575px) {
  .product_info-section2 .cont .gt .list a span {
    font-size: 12px;
  }
}

.product_info-section2 .cont .gt .list a:hover .img img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

/* End */
/* product.html产品中心 */
.product {
  background-color: #f6f9fe;
}

.product-section1 {
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .product-section1 {
    margin-bottom: 20px;
  }
}

.product-section1 .cont {
  width: 100%;
}

.product-section1 .cont .list {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #c6c9cf;
}

.product-section1 .cont .list .lt {
  width: 11%;
  text-indent: 4rem;
  padding: 24px 0;
  background-color: #ebeff6;
  font-size: 16px;
  color: #262626;
}

@media (max-width: 1600px) {
  .product-section1 .cont .list .lt {
    text-indent: 2rem;
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .product-section1 .cont .list .lt {
    padding: 18px 0;
  }
}

@media (max-width: 1199px) {
  .product-section1 .cont .list .lt {
    text-indent: 1rem;
    font-size: 14px;
    width: 14%;
  }
}

@media (max-width: 767px) {
  .product-section1 .cont .list .lt {
    font-size: 14px;
    width: 100%;
    text-indent: 20px;
    padding: 14px 0;
  }
}

.product-section1 .cont .list .gt {
  width: 89%;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .product-section1 .cont .list .gt {
    width: 86%;
  }
}

@media (max-width: 767px) {
  .product-section1 .cont .list .gt {
    width: 100%;
  }
}

.product-section1 .cont .list .gt .lei {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 24px;
}

@media (max-width: 991px) {
  .product-section1 .cont .list .gt .lei {
    padding-bottom: 18px;
  }
}

@media (max-width: 767px) {
  .product-section1 .cont .list .gt .lei {
    padding-bottom: 14px;
  }
}

.product-section1 .cont .list .gt .lei a {
  font-size: 16px;
  color: #262626;
  padding: 24px 28px 0;
  position: relative;
  display: block;
}

@media (max-width: 991px) {
  .product-section1 .cont .list .gt .lei a {
    padding: 18px 28px 0;
  }
}

@media (max-width: 991px) {
  .product-section1 .cont .list .gt .lei a {
    padding: 14px 20px 0;
  }
}

.product-section1 .cont .list .gt .lei a:hover {
  color: #FF0000;
}

.product-section1 .cont .list .gt .lei a:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 5%;
  width: 1px;
  height: 14px;
  background-color: #929292;
}

.product-section1 .cont .list .gt .lei a:last-child:after {
  display: none;
}

.product-section1 .cont .list .gt .lei .on {
  color: #FF0000;
}

.product-section1 .cont .list .gt .search {
  height: 20px;
  margin-right: 24px;
  cursor: pointer;
}

@media (max-width: 991px) {
  .product-section1 .cont .list .gt .search {
    margin-right: 18px;
  }
}

@media (max-width: 767px) {
  .product-section1 .cont .list .gt .search {
    margin-right: 14px;
  }
}

.product-section1 .cont .list .gt .search img {
  height: 100%;
}

.product-section1 .cont .list .gt .logo {
  padding: 26px 25px;
}

@media (max-width: 991px) {
  .product-section1 .cont .list .gt .logo {
    padding: 20px 19px;
  }
}

@media (max-width: 767px) {
  .product-section1 .cont .list .gt .logo {
    padding: 16px 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.product-section1 .cont .list .gt .logo .img {
  padding: 0;
  border: 1px solid #d6d6d6;
  height: 60px;
  margin-left: -1px;
  position: relative;
  z-index: 1;
  padding: 1px;
  overflow: hidden;
  margin-top: -1px;
  width: 14%;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 1199px) {
  .product-section1 .cont .list .gt .logo .img {
    width: 25%;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .product-section1 .cont .list .gt .logo .img {
    width: 48%;
    margin-bottom: 10px;
  }
}

.product-section1 .cont .list .gt .logo .img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.product-section1 .cont .list .gt .logo .img:after {
  display: none;
}

.product-section1 .cont .list .gt .logo .img:hover {
  border: 2px solid #FF0000;
  z-index: 2;
  box-shadow: 0 5px 5px rgba(0, 20, 50, 0.13);
}

.product-section1 .cont .list .gt .logo .act {
  border: 2px solid #FF0000;
  z-index: 2;
  box-shadow: 0 5px 5px rgba(0, 20, 50, 0.13);
}

.product-section2 {
  padding-bottom: 104px;
  border-bottom: 1px solid #d4d4d4;
}

@media (max-width: 1199px) {
  .product-section2 {
    padding-bottom: 62px;
  }
}

@media (max-width: 991px) {
  .product-section2 {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .product-section2 {
    padding-bottom: 40px;
  }
}

.product-section2 .cont {
  margin: 0 -20px;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 1199px) {
  .product-section2 .cont {
    margin: 0 -10px;
  }
}

@media (max-width: 991px) {
  .product-section2 .cont {
    margin: 0 -5px;
  }
}

@media (max-width: 767px) {
  .product-section2 .cont {
    margin: 0;
  }
}

.product-section2 .cont .item {
  display: block;
  width: 25%;
  padding: 0 20px;
  margin-bottom: 40px;
}

@media (max-width: 1199px) {
  .product-section2 .cont .item {
    padding: 0 10px;
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .product-section2 .cont .item {
    padding: 0 5px;
    margin-bottom: 10px;
    width: 50%;
  }
}

@media (max-width: 767px) {
  .product-section2 .cont .item {
    padding: 0;
    width: 100%;
  }
}

.product-section2 .cont .item .jut {
  background-color: #fff;
  padding-top: 30px;
  padding-bottom: 50px;
}

@media (max-width: 991px) {
  .product-section2 .cont .item .jut {
    padding-top: 15px;
    padding-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .product-section2 .cont .item .jut {
    padding-top: 10px;
    padding-bottom: 15px;
  }
}

.product-section2 .cont .item .jut .img {
  position: relative;
  padding-bottom: 79%;
  margin-bottom: 45px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .product-section2 .cont .item .jut .img {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .product-section2 .cont .item .jut .img {
    margin-bottom: 20px;
  }
}

.product-section2 .cont .item .jut .img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 100%;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.product-section2 .cont .item .jut .font {
  padding: 0 20px;
}

@media (max-width: 767px) {
  .product-section2 .cont .item .jut .font {
    padding: 0 12px;
  }
}

.product-section2 .cont .item .jut .font .tit {
  font-size: 22px;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 2px solid #262626;
  color: #262626;
  margin-bottom: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .product-section2 .cont .item .jut .font .tit {
    font-size: 20px;
    margin-bottom: 14px;
  }
}

@media (max-width: 767px) {
  .product-section2 .cont .item .jut .font .tit {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.product-section2 .cont .item .jut .font per {
  font-size: 14px;
  color: #666666;
  line-height: 24px;
  display: block;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .product-section2 .cont .item .jut .font per {
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .product-section2 .cont .item .jut .font per {
    margin-bottom: 10px;
  }
}

.product-section2 .cont .item .jut .font .but {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 114px;
  height: 40px;
  position: relative;
}

.product-section2 .cont .item .jut .font .but strong {
  font-size: 16px;
  color: #262626;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .product-section2 .cont .item .jut .font .but strong {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .product-section2 .cont .item .jut .font .but strong {
    font-size: 12px;
  }
}

.product-section2 .cont .item .jut .font .but i {
  display: block;
  height: 14px;
  overflow: hidden;
  position: relative;
  margin-left: 14px;
  z-index: 2;
}

@media (max-width: 991px) {
  .product-section2 .cont .item .jut .font .but i {
    margin-left: 12px;
    height: 12px;
  }
}

@media (max-width: 767px) {
  .product-section2 .cont .item .jut .font .but i {
    height: 10px;
    margin-left: 10px;
  }
}

.product-section2 .cont .item .jut .font .but i img {
  float: left;
  height: 100%;
}

.product-section2 .cont .item .jut .font .but i img:nth-child(2n) {
  display: none;
}

.product-section2 .cont .item .jut .font .but::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  z-index: 1;
  background-color: #eaeff8;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.product-section2 .cont .item:hover .img img {
  transform: scale(1.04);
}

.product-section2 .cont .item:hover .font .tit {
  color: #FF0000;
  border-color: #FF0000;
}

.product-section2 .cont .item:hover .font .but strong {
  color: #fff;
}

.product-section2 .cont .item:hover .font .but i img:nth-child(1) {
  display: none;
}

.product-section2 .cont .item:hover .font .but i img:nth-child(2) {
  display: block;
}

.product-section2 .cont .item:hover .font .but::before {
  width: 100%;
  background-color: #FF0000;
}

.product-section2 .pagebox {
  margin-top: 34px;
}

@media (max-width: 991px) {
  .product-section2 .pagebox {
    margin-top: 26px;
  }
}

@media (max-width: 767px) {
  .product-section2 .pagebox {
    margin-top: 18px;
  }
}

/* End */
/* about.html关于我们 */
.about {
  background-color: #f6f9fe;
}

.about-tit strong {
  font-size: 36px;
  font-weight: bold;
  color: #222;
  display: block;
  margin-bottom: 15px;
  line-height: 1;
}

@media (max-width: 1199px) {
  .about-tit strong {
    font-size: 34px;
  }
}

@media (max-width: 991px) {
  .about-tit strong {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .about-tit strong {
    font-size: 20px;
  }
}

.about-tit span {
  font-size: 18px;
  color: #262626;
  opacity: 0.7;
  display: block;
}

.about-tit p {
  font-size: 24px;
  color: #001b3f;
  margin-top: 20px;
}

@media (max-width: 1199px) {
  .about-tit p {
    margin-top: 15px;
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .about-tit p {
    margin-top: 10px;
    font-size: 14px;
  }
}

.about-section1 {
  width: 100%;
  height: 80px;
  /* position: sticky; */
  /* top: 100px; */
  z-index: 666;
  background-color: #f6f9fe;
}

@media (max-width: 1199px) {
  .about-section1 {
    top: 80px;
    height: 60px;
  }
}

@media (max-width: 991px) {
  .about-section1 {
    top: 70px;
    height: 45px;
  }
}

.about-section1-cont {
  height: 100%;
  border-bottom: 1px solid #dfdfdf;
}

.about-section1-cont a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 100%;
  height: calc(100% + 2px);
  border-right: 1px solid #dfdfdf;
  color: #001b3f;
}

@media (max-width: 991px) {
  .about-section1-cont a {
    font-size: 16px;
  }
}

@media (max-width: 1199px) {
  .about-section1-cont a {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .about-section1-cont a {
    font-size: 12px;
  }
}

.about-section1-cont a:hover {
  background-color: #FF0000;
  color: #fff;
}

.about-section1-cont .swiper-slide:last-child a {
  border-right: none;
}

.about-section1-cont .on a {
  background-color: #FF0000;
  border-right: 1px soldi #FF0000;
  color: #fff;
}

.about-section2 {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1440px) {
  .about-section2 {
    padding-top: 120px;
  }
}

@media (max-width: 1199px) {
  .about-section2 {
    padding-top: 100px;
    padding-bottom: 70px;
  }
}

@media (max-width: 991px) {
  .about-section2 {
    padding-top: 70px;
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .about-section2 {
    padding-top: 50px;
    padding-bottom: 40px;
  }
}

.about-section2 .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-section2 .container .lt {
  width: 37%;
}

@media (max-width: 991px) {
  .about-section2 .container .lt {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .about-section2 .container .lt {
    margin-bottom: 15px;
  }
}

.about-section2 .container .lt .about-tit {
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .about-section2 .container .lt .about-tit {
    margin-bottom: 35px;
  }
}

@media (max-width: 767px) {
  .about-section2 .container .lt .about-tit {
    margin-bottom: 25px;
  }
}

.about-section2 .container .lt .jut {
  color: #666;
}

.about-section2 .container .lt .jut p {
  color: #666;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .about-section2 .container .lt .jut p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 15px;
  }
}

.about-section2 .container .gt {
  width: 56%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}

@media (max-width: 991px) {
  .about-section2 .container .gt {
    width: 100%;
    flex-direction: row;
  }
}

.about-section2 .container .gt .shu {
  padding-bottom: 80px;
  display: flex;
}

@media (max-width: 991px) {
  .about-section2 .container .gt .shu {
    padding-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .about-section2 .container .gt .shu {
    padding-bottom: 20px;
  }
}

.about-section2 .container .gt .shu .item {
  color: #262626;
  text-align: center;
  margin-left: 90px;
}

@media (max-width: 991px) {
  .about-section2 .container .gt .shu .item {
    margin-left: 50px;
  }
}

@media (max-width: 767px) {
  .about-section2 .container .gt .shu .item {
    margin-left: 25px;
  }
}

.about-section2 .container .gt .shu .item:first-child {
  margin-left: 0;
}

.about-section2 .container .gt .shu .item strong {
  font-size: 64px;
  font-weight: bold;
}

@media (max-width: 991px) {
  .about-section2 .container .gt .shu .item strong {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .about-section2 .container .gt .shu .item strong {
    font-size: 26px;
  }
}

.about-section2 .container .gt .shu .item span {
  font-size: 16px;
}

@media (max-width: 991px) {
  .about-section2 .container .gt .shu .item span {
    font-size: 14px;
  }
}

.about-section2 .container .gt .shu .item .xia {
  font-size: 16px;
}

@media (max-width: 991px) {
  .about-section2 .container .gt .shu .item .xia {
    font-size: 14px;
  }
}

.about-section2 .container .gt .shu .item:hover {
  color: #FF0000;
}

.about-section2 .container .gt .img {
  position: absolute;
  width: 100%;
  top: 184px;
  right: 0;
  overflow: hidden;
  border-radius: 3px;
}

@media (max-width: 991px) {
  .about-section2 .container .gt .img {
    position: relative;
    top: 0;
  }
}

.about-section2 .container .gt .img img {
  width: 100%;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.about-section2 .container .gt .img:hover img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

.about-section3 {
  height: 650px;
  background-color: #262626;
  position: relative;
}

@media (max-width: 1440px) {
  .about-section3 {
    height: 600px;
  }
}

@media (max-width: 1199px) {
  .about-section3 {
    height: auto;
  }
}

.about-section3 .img {
  width: 57%;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.about-section3 .img img {
  width: 100%;
}

.about-section3 .container {
  position: relative;
  z-index: 1;
}

.about-section3 .container .cont {
  padding-top: 153px;
}

@media (max-width: 1440px) {
  .about-section3 .container .cont {
    padding-top: 120px;
  }
}

@media (max-width: 1199px) {
  .about-section3 .container .cont {
    padding-top: 80px;
    padding-bottom: 70px;
  }
}

@media (max-width: 991px) {
  .about-section3 .container .cont {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .about-section3 .container .cont {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.about-section3 .container .cont .about-tit {
  margin-bottom: 64px;
}

@media (max-width: 991px) {
  .about-section3 .container .cont .about-tit {
    margin-bottom: 44px;
  }
}

@media (max-width: 767px) {
  .about-section3 .container .cont .about-tit {
    margin-bottom: 22px;
  }
}

.about-section3 .container .cont .about-tit strong,
.about-section3 .container .cont .about-tit span,
.about-section3 .container .cont .about-tit p {
  color: #fff;
}

.about-section3 .container .cont .jut {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -13px;
}

@media (max-width: 1199px) {
  .about-section3 .container .cont .jut {
    margin: 0 -8px;
  }
}

@media (max-width: 767px) {
  .about-section3 .container .cont .jut {
    margin: 0;
  }
}

.about-section3 .container .cont .jut .list {
  width: 25%;
  padding: 0 13px;
}

@media (max-width: 1199px) {
  .about-section3 .container .cont .jut .list {
    padding: 0 8px;
    width: 50%;
  }
}

@media (max-width: 767px) {
  .about-section3 .container .cont .jut .list {
    padding: 0;
    width: 100%;
  }
}

.about-section3 .container .cont .jut .list .item {
  display: block;
  background-color: #fff;
  width: 100%;
  height: 450px;
  border-radius: 3px;
  padding: 60px 40px;
}

@media (max-width: 1440px) {
  .about-section3 .container .cont .jut .list .item {
    padding: 34px 24px;
    height: 400px;
  }
}

@media (max-width: 1440px) {
  .about-section3 .container .cont .jut .list .item {
    padding: 24px 15px;
    height: 350px;
  }
}

@media (max-width: 1199px) {
  .about-section3 .container .cont .jut .list .item {
    margin-bottom: 16px;
    height: 300px;
  }
}

@media (max-width: 767px) {
  .about-section3 .container .cont .jut .list .item {
    margin-bottom: 10px;
    height: auto;
  }
}

.about-section3 .container .cont .jut .list .item .shu {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

@media (max-width: 1440px) {
  .about-section3 .container .cont .jut .list .item .shu {
    margin-bottom: 34px;
  }
}

@media (max-width: 1199px) {
  .about-section3 .container .cont .jut .list .item .shu {
    margin-bottom: 24px;
  }
}

.about-section3 .container .cont .jut .list .item .shu span {
  font-size: 30px;
  color: #fff;
  background-color: #FF0000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 20px;
}

@media (max-width: 1440px) {
  .about-section3 .container .cont .jut .list .item .shu span {
    font-size: 24px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 1199px) {
  .about-section3 .container .cont .jut .list .item .shu span {
    font-size: 20px;
  }
}

.about-section3 .container .cont .jut .list .item .shu i {
  display: block;
  width: calc(100% - 80px);
  height: 1px;
  background-color: #e5e8eb;
}

.about-section3 .container .cont .jut .list .item .font strong {
  font-size: 30px;
  margin-bottom: 34px;
  font-weight: bold;
  display: block;
  color: #262626;
}

@media (max-width: 1440px) {
  .about-section3 .container .cont .jut .list .item .font strong {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

@media (max-width: 1199px) {
  .about-section3 .container .cont .jut .list .item .font strong {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.about-section3 .container .cont .jut .list .item .font span {
  font-size: 16px;
  color: #666;
  line-height: 30px;
}

.about-section4 {
  padding: 335px 0 180px;
}

@media (max-width: 1440px) {
  .about-section4 {
    padding: 285px 0 140px;
  }
}

@media (max-width: 1199px) {
  .about-section4 {
    padding: 100px 0 100px;
  }
}

@media (max-width: 991px) {
  .about-section4 {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .about-section4 {
    padding: 40px 0;
  }
}

.about-section4 .tit {
  display: flex;
  flex-wrap: wrap;
  height: 78px;
  justify-content: space-between;
  margin-bottom: 44px;
}

@media (max-width: 1199px) {
  .about-section4 .tit {
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .about-section4 .tit {
    height: auto;
    margin-bottom: 15px;
  }
}

.about-section4 .tit .about-tit strong {
  font-size: 36px;
  margin-bottom: 10px;
}

@media (max-width: 1440px) {
  .about-section4 .tit .about-tit strong {
    font-size: 34px;
    margin-bottom: 8px;
  }
}

@media (max-width: 1199px) {
  .about-section4 .tit .about-tit strong {
    font-size: 30px;
    margin-bottom: 5px;
  }
}

@media (max-width: 991px) {
  .about-section4 .tit .about-tit strong {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .about-section4 .tit .about-tit strong {
    font-size: 20px;
  }
}

.about-section4 .tit .tou {
  display: flex;
  flex-wrap: wrap;
  width: 58%;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .about-section4 .tit .tou {
    width: 100%;
  }
}

.about-section4 .tit .tou p {
  font-size: 20px;
  color: #666666;
  width: 69%;
}

@media (max-width: 1440px) {
  .about-section4 .tit .tou p {
    font-size: 16px;
    width: 72%;
  }
}

@media (max-width: 991px) {
  .about-section4 .tit .tou p {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .about-section4 .tit .tou p {
    font-size: 14px;
  }
}

.about-section4 .tit .ab4-nav {
  width: 34%;
  height: 748px;
  border: 5px solid #dde0e4;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1440px) {
  .about-section4 .tit .ab4-nav {
    height: 600px;
  }
}

@media (max-width: 991px) {
  .about-section4 .tit .ab4-nav {
    border: none;
    height: 40px;
    width: 100%;
  }
}

.about-section4 .tit .ab4-nav .nav {
  width: 65%;
  height: 434px;
  margin: 0 45px 0 auto;
}

@media (max-width: 1440px) {
  .about-section4 .tit .ab4-nav .nav {
    width: 60%;
    height: 434px;
  }
}

@media (max-width: 991px) {
  .about-section4 .tit .ab4-nav .nav {
    height: 100%;
    width: 100%;
  }
}

.about-section4 .tit .ab4-nav .nav a {
  display: flex;
}

.about-section4 .tit .ab4-nav .nav a:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #666;
  margin-right: 12px;
  margin-top: 8px;
}

.about-section4 .tit .ab4-nav .nav a .font strong {
  display: block;
  font-size: 22px;
  margin-bottom: 5px;
  color: #333;
  line-height: 1.1;
  font-weight: 500;
}

@media (max-width: 1440px) {
  .about-section4 .tit .ab4-nav .nav a .font strong {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .about-section4 .tit .ab4-nav .nav a .font strong {
    font-size: 16px;
  }
}

.about-section4 .tit .ab4-nav .nav a .font span {
  font-size: 14px;
  color: #999999;
}

.about-section4 .tit .ab4-nav .nav .on a::before {
  background-color: #FF0000;
}

.about-section4 .tit .ab4-nav .nav .on a .font strong,
.about-section4 .tit .ab4-nav .nav .on a .font span {
  color: #FF0000;
}

.about-section4 .cont {
  position: relative;
  z-index: 2;
  width: 72%;
}

@media (max-width: 991px) {
  .about-section4 .cont {
    width: 100%;
    margin-top: 30px;
  }
}

.about-section4 .cont .lt {
  width: 260px;
  height: 622px;
  background-color: #FF0000;
  margin-left: -90px;
  position: relative;
}

@media (max-width: 1440px) {
  .about-section4 .cont .lt {
    height: 494px;
    width: 200px;
    margin-left: -60px;
  }
}

@media (max-width: 991px) {
  .about-section4 .cont .lt {
    display: none;
  }
}

.about-section4 .cont .lt .qie {
  position: absolute;
  right: 0;
  bottom: 47px;
  width: 170px;
  display: none;
  align-items: center;
  justify-content: center;
  height: 26px;
}

@media (max-width: 1440px) {
  .about-section4 .cont .lt .qie {
    width: 148px;
  }
}

.about-section4 .cont .lt .qie .ab4-prev,
.about-section4 .cont .lt .qie .ab4-next {
  width: 17px;
  height: 25px;
  top: 0;
  margin: 0;
  outline: none;
}

.about-section4 .cont .lt .qie .ab4-prev {
  background: url(../../images/klt.png) no-repeat center;
  background-size: 14px 25px;
}

.about-section4 .cont .lt .qie .ab4-next {
  background: url(../../images/kgt.png) no-repeat center;
  background-size: 14px 25px;
}

.about-section4 .cont .lt .qie i {
  display: block;
  width: 1px;
  height: 25px;
  background-color: #fff;
  opacity: 0.5;
}

.about-section4 .cont .gt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

@media (max-width: 991px) {
  .about-section4 .cont .gt {
    position: relative;
  }
}

.about-section4 .cont .gt .ab4-cont {
  width: 100%;
}

.about-section4 .cont .gt .ab4-cont a {
  display: block;
}

.about-section4 .cont .gt .ab4-cont a .img {
  position: relative;
  height: 520px;
  margin-bottom: 46px;
  overflow: hidden;
}

@media (max-width: 1440px) {
  .about-section4 .cont .gt .ab4-cont a .img {
    height: 360px;
  }
}

@media (max-width: 991px) {
  .about-section4 .cont .gt .ab4-cont a .img {
    height: 300px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .about-section4 .cont .gt .ab4-cont a .img {
    height: 240px;
  }
}

.about-section4 .cont .gt .ab4-cont a .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.about-section4 .cont .gt .ab4-cont a p {
  width: 64%;
  text-align: center;
  margin: 0 auto;
  color: #333;
  font-size: 18px;
}

@media (max-width: 1440px) {
  .about-section4 .cont .gt .ab4-cont a p {
    text-align: left;
  }
}

@media (max-width: 1199px) {
  .about-section4 .cont .gt .ab4-cont a p {
    font-size: 16px;
    width: 58%;
  }
}

@media (max-width: 767px) {
  .about-section4 .cont .gt .ab4-cont a p {
    font-size: 14px;
    width: 100%;
  }
}

.about-section4 .cont .gt .ab4-cont a:hover .img img {
  transform: scale(1.02);
}

.about-section5 {
  /* background: #FF0000; */
  background: url(../../images/historyBg.png);
  padding: 100px 0 54px;
}

@media (max-width: 991px) {
  .about-section5 {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .about-section5 {
    padding: 40px 0;
  }
}

.about-section5 .tit {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 44px;
  padding-bottom: 56px;
  border-bottom: 2px solid #FF0000;
}

@media (max-width: 1199px) {
  .about-section5 .tit {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .about-section5 .tit {
    height: auto;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
}

.about-section5 .tit .about-tit strong {
  font-size: 36px;
  color: #000;
  margin-bottom: 10px;
}

@media (max-width: 1440px) {
  .about-section5 .tit .about-tit strong {
    font-size: 34px;
    margin-bottom: 8px;
  }
}

@media (max-width: 1199px) {
  .about-section5 .tit .about-tit strong {
    font-size: 30px;
    margin-bottom: 5px;
  }
}

@media (max-width: 991px) {
  .about-section5 .tit .about-tit strong {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .about-section5 .tit .about-tit strong {
    font-size: 20px;
  }
}

.about-section5 .tit .about-tit span {
  color: #000;
}

.about-section5 .tit .tou {
  display: flex;
  flex-wrap: wrap;
  width: 58%;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .about-section5 .tit .tou {
    width: 74%;
  }
}

@media (max-width: 991px) {
  .about-section5 .tit .tou {
    width: 100%;
  }
}

.about-section5 .tit .tou p {
  font-size: 20px;
  color: #000;
  width: 69%;
}

@media (max-width: 1440px) {
  .about-section5 .tit .tou p {
    font-size: 16px;
    width: 72%;
  }
}

@media (max-width: 1199px) {
  .about-section5 .tit .tou p {
    width: 68%;
  }
}

@media (max-width: 991px) {
  .about-section5 .tit .tou p {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .about-section5 .tit .tou p {
    font-size: 14px;
  }
}

.about-section5 .tit .gt {
  width: 21%;
  overflow: hidden;
}

@media (max-width: 991px) {
  .about-section5 .tit .gt {
    display: none;
  }
}

.about-section5 .tit .gt img {
  width: 100%;
  float: left;
}

.about-section5 .cont {
  width: 100%;
  margin-bottom: 50px;
}

@media (max-width: 1199px) {
  .about-section5 .cont {
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .about-section5 .cont {
    margin-bottom: 25px;
  }
}

@media (max-width: 767px) {
  .about-section5 .cont {
    margin-bottom: 15px;
  }
}

.about-section5 .cont .ab5 .swiper-slide {
  padding: 90px 0;
}

@media (max-width: 1199px) {
  .about-section5 .cont .ab5 .swiper-slide {
    padding: 30px 0;
  }
}

@media (max-width: 991px) {
  .about-section5 .cont .ab5 .swiper-slide {
    padding: 30px 0;
  }
}

.about-section5 .cont .ab5 .swiper-slide .shu {
  text-align: center;
  font-size: 320px;
  color: #fff;
  font-weight: bold;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  line-height: 1.1;
  margin: auto;
  position: absolute;
  opacity: .1;
}

@media (max-width: 1199px) {
  .about-section5 .cont .ab5 .swiper-slide .shu {
    font-size: 180px;
  }
}

@media (max-width: 991px) {
  .about-section5 .cont .ab5 .swiper-slide .shu {
    font-size: 140px;
  }
}

@media (max-width: 767px) {
  .about-section5 .cont .ab5 .swiper-slide .shu {
    font-size: 100px;
    line-height: 1.8;
  }
}

.about-section5 .cont .ab5 .swiper-slide .font {
  position: relative;
  z-index: 2;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.8);
  width: 35%;
  padding: 33px 22px;
}

@media (max-width: 1199px) {
  .about-section5 .cont .ab5 .swiper-slide .font {
    width: 50%;
    padding: 25px 18px;
  }
}

@media (max-width: 767px) {
  .about-section5 .cont .ab5 .swiper-slide .font {
    width: 100%;
    padding: 20px 10px;
    height: 176px;
  }
}

.about-section5 .cont .ab5 .swiper-slide .font .text {
  margin-bottom: 24px;
  font-size: 30px;
  line-height: 1;
}

@media (max-width: 991px) {
  .about-section5 .cont .ab5 .swiper-slide .font .text {
    font-size: 22px;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .about-section5 .cont .ab5 .swiper-slide .font .text {
    font-size: 20px;
  }
}

.about-section5 .cont .ab5 .swiper-slide .font span {
  font-size: 16px;
  color: #666;
  line-height: 32px;
}

@media (max-width: 991px) {
  .about-section5 .cont .ab5 .swiper-slide .font span {
    line-height: 24px;
    font-size: 14px;
  }
}

.about-section5 .basecont {
  position: relative;
}

.about-section5 .basecont:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  opacity: 0.5;
  position: absolute;
  top: 58%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.about-section5 .basecont .ab5-nav a {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-section5 .basecont .ab5-nav a span,
.about-section5 .basecont .ab5-nav a strong,
.about-section5 .basecont .ab5-nav a i {
  font-weight: 500;
  color: #000;
  display: block;
}

.about-section5 .basecont .ab5-nav a i {
  margin: 0 auto;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FF0000;
}

.about-section5 .basecont .ab5-nav a i:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0;
}

.about-section5 .basecont .ab5-nav a span {
  font-size: 24px;
  margin-bottom: 16px;
  opacity: 0;
  line-height: 1;
}

@media (max-width: 1199px) {
  .about-section5 .basecont .ab5-nav a span {
    font-size: 22px;
    margin-bottom: 14px;
  }
}

@media (max-width: 991px) {
  .about-section5 .basecont .ab5-nav a span {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .about-section5 .basecont .ab5-nav a span {
    font-size: 18px;
  }
}

.about-section5 .basecont .ab5-nav a strong {
  font-size: 14px;
  opacity: 0.5;
  margin-top: 12px;
  line-height: 1;
}

@media (max-width: 1199px) {
  .about-section5 .basecont .ab5-nav a strong {
    margin-top: 10px;
  }
}

@media (max-width: 991px) {
  .about-section5 .basecont .ab5-nav a strong {
    margin-top: 8px;
  }
}

.about-section5 .basecont .ab5-nav .swiper-wrapper .on a span {
  opacity: 1;
}

.about-section5 .basecont .ab5-nav .swiper-wrapper .on a strong {
  opacity: 0;
}

.about-section5 .basecont .ab5-nav .swiper-wrapper .on a i:after {
  opacity: 1;
}

.about-section6 {
  padding: 150px 0 120px;
  position: relative;
}

@media (max-width: 1440px) {
  .about-section6 {
    padding: 120px 0 100px;
  }
}

@media (max-width: 1199px) {
  .about-section6 {
    padding: 100px 0 80px;
  }
}

@media (max-width: 991px) {
  .about-section6 {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .about-section6 {
    padding: 40px 0;
  }
}

.about-section6 .tit {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1440px) {
  .about-section6 .tit {
    margin-bottom: 35px;
  }
}

@media (max-width: 1199px) {
  .about-section6 .tit {
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .about-section6 .tit {
    margin-bottom: 20px;
  }
}

.about-section6 .tit .about-tit strong {
  font-size: 36px;
  margin-bottom: 10px;
}

@media (max-width: 1440px) {
  .about-section6 .tit .about-tit strong {
    font-size: 34px;
    margin-bottom: 8px;
  }
}

@media (max-width: 1199px) {
  .about-section6 .tit .about-tit strong {
    font-size: 30px;
    margin-bottom: 5px;
  }
}

@media (max-width: 991px) {
  .about-section6 .tit .about-tit strong {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .about-section6 .tit .about-tit strong {
    font-size: 20px;
  }
}

.about-section6 .tit p {
  width: 40%;
  font-size: 18px;
}

@media (max-width: 1440px) {
  .about-section6 .tit p {
    font-size: 16px;
    width: 72%;
  }
}

@media (max-width: 991px) {
  .about-section6 .tit p {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .about-section6 .tit p {
    font-size: 14px;
  }
}

.about-section6 .cont {
  margin: 0 -25px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

@media (max-width: 1199px) {
  .about-section6 .cont {
    margin: 0 -14px;
  }
}

@media (max-width: 991px) {
  .about-section6 .cont {
    margin: 0 -5px;
  }
}

@media (max-width: 767px) {
  .about-section6 .cont {
    margin: 0;
  }
}

.about-section6 .cont .list {
  padding: 0 25px;
  width: 50%;
  margin-bottom: 80px;
}

@media (max-width: 1199px) {
  .about-section6 .cont .list {
    padding: 0 14px;
    margin-bottom: 48px;
  }
}

@media (max-width: 991px) {
  .about-section6 .cont .list {
    padding: 0 5px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .about-section6 .cont .list {
    padding: 0;
    width: 100%;
  }
}

.about-section6 .cont .list .item {
  position: relative;
}

.about-section6 .cont .list .item .img {
  position: relative;
  padding-bottom: 58%;
}

.about-section6 .cont .list .item .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section6 .cont .list .item .but {
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 340px;
  height: 80px;
  border-radius: 3px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #FF0000;
}

@media (max-width: 1199px) {
  .about-section6 .cont .list .item .but {
    font-size: 16px;
    width: 260px;
    height: 60px;
    bottom: -20px;
  }
}

@media (max-width: 991px) {
  .about-section6 .cont .list .item .but {
    width: 180px;
    height: 50px;
    bottom: -10px;
  }
}

@media (max-width: 767px) {
  .about-section6 .cont .list .item .but {
    font-size: 14px;
    width: 140px;
  }
}

.about-section6::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 70%;
  height: 470px;
  background-color: #e9f1fc;
}

@media (max-width: 991px) {
  .about-section6::before {
    display: none;
  }
}

.about-section6 .bot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 50px;
  margin: 0 auto;
  font-size: 18px;
  border: 1px solid #FF0000;
  border-radius: 3px;
  color: #FF0000;
}

@media (max-width: 1199px) {
  .about-section6 .bot {
    font-size: 16px;
    width: 140px;
  }
}

@media (max-width: 767px) {
  .about-section6 .bot {
    width: 120px;
    height: 45px;
  }
}

@media (max-width: 767px) {
  .about-section6 .bot {
    font-size: 14px;
  }
}

.about-section6 .bot i {
  display: block;
  font-style: normal;
  margin-left: 18px;
}

@media (max-width: 1199px) {
  .about-section6 .bot i {
    margin-left: 14px;
  }
}

@media (max-width: 991px) {
  .about-section6 .bot i {
    margin-left: 8px;
  }
}

@media (max-width: 1199px) {
  .about-section6 .bot {
    width: 140px;
  }
}

.about-section7 {
  height: 600px;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: none;
}

@media (max-width: 1440px) {
  .about-section7 {
    height: 500px;
  }
}

@media (max-width: 991px) {
  .about-section7 {
    height: auto;
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .about-section7 {
    padding-bottom: 40px;
  }
}

.about-section7 .img {
  position: absolute;
  top: 66px;
  left: 0;
}

.about-section7 .container {
  position: relative;
  z-index: 2;
}

.about-section7 .container .about-tit {
  padding-top: 100px;
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .about-section7 .container .about-tit {
    padding-top: 60px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .about-section7 .container .about-tit {
    padding-top: 40px;
    margin-bottom: 20px;
  }
}

.about-section7 .container .about-tit strong {
  font-size: 36px;
  color: #fff;
}

@media (max-width: 1440px) {
  .about-section7 .container .about-tit strong {
    font-size: 34px;
  }
}

@media (max-width: 1199px) {
  .about-section7 .container .about-tit strong {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .about-section7 .container .about-tit strong {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .about-section7 .container .about-tit strong {
    font-size: 20px;
  }
}

.about-section7 .container .about-tit span {
  color: #fff;
}

.about-section7 .container p {
  font-size: 18px;
}

@media (max-width: 1199px) {
  .about-section7 .container p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .about-section7 .container p {
    font-size: 14px;
  }
}

.about-section7 .basecont .cont {
  display: flex;
  flex-wrap: wrap;
  width: 64%;
  background-color: #fff;
  padding: 80px 0;
}

@media (max-width: 1440px) {
  .about-section7 .basecont .cont {
    padding: 70px 0;
  }
}

@media (max-width: 1199px) {
  .about-section7 .basecont .cont {
    padding: 30px 0;
  }
}

@media (max-width: 991px) {
  .about-section7 .basecont .cont {
    width: 100%;
    padding: 15px 0;
  }
}

.about-section7 .basecont .cont .item {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-bottom: 10%;
}

@media (max-width: 767px) {
  .about-section7 .basecont .cont .item {
    width: 25%;
  }
}

.about-section7 .basecont .cont .item img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 767px) {
  .about-section7 .basecont .cont .item img {
    width: 80%;
  }
}

.about-section7 .basecont .cont .item:hover img {
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%);
  filter: gray;
}

.about-section8 {
  padding: 280px 0 80px;
}

@media (max-width: 1440px) {
  .about-section8 {
    padding: 220px 0 80px;
  }
}

@media (max-width: 1199px) {
  .about-section8 {
    padding: 140px 0 80px;
  }
}

@media (max-width: 991px) {
  .about-section8 {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .about-section8 {
    padding: 40px 0;
  }
}

.about-section8 {
  padding-top: 0;
}

.about-section8 .tit {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 35px;
}

@media (max-width: 991px) {
  .about-section8 .tit {
    margin-bottom: 20px;
  }
}

.about-section8 .tit .about-tit strong {
  font-size: 36px;
  margin-bottom: 10px;
}

@media (max-width: 1440px) {
  .about-section8 .tit .about-tit strong {
    font-size: 34px;
    margin-bottom: 8px;
  }
}

@media (max-width: 1199px) {
  .about-section8 .tit .about-tit strong {
    font-size: 30px;
    margin-bottom: 5px;
  }
}

@media (max-width: 991px) {
  .about-section8 .tit .about-tit strong {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .about-section8 .tit .about-tit strong {
    font-size: 20px;
  }
}

.about-section8 .tit .gt {
  position: relative;
  display: flex;
}

@media (max-width: 991px) {
  .about-section8 .tit .gt {
    display: none;
  }
}

.about-section8 .tit .gt .ab8-prev,
.about-section8 .tit .gt .ab8-next {
  width: 50px;
  height: 60px;
  border: 1px solid #FF0000;
  border-radius: 3px;
  position: relative;
}

@media (max-width: 1440px) {

  .about-section8 .tit .gt .ab8-prev,
  .about-section8 .tit .gt .ab8-next {
    width: 38px;
    height: 38px;
    background-size: 19px 19px;
  }

}

.about-section8 .tit .gt .ab8-prev {
  left: 0;
}

.about-section8 .tit .gt .ab8-next {
  right: 0;
  margin-left: 8px;
}

.about-section8 .cont .ab8-cont {
  padding: 10px 0;
}

.about-section8 .cont .ab8-cont .img {
  background-color: #fff;
  overflow: hidden;
  padding-bottom: 42%;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.about-section8 .cont .ab8-cont img {
  /* -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.about-section8 .cont .ab8-cont .swiper-slide:hover .img {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

@media (max-width: 767px) {
  .about-section8 .cont .ab8-cont .swiper-slide:hover .img {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }
}

.about-section8 .cont .ab8-cont .swiper-slide:hover img {
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%);
  filter: gray;
}

/* End */
/* 大型中央空调solu_info1 */
.solu_info1-tit {
  text-align: center;
}

.solu_info1-tit strong {
  font-size: 44px;
  display: block;
  color: #FF0000;
  font-weight: bold;
}

@media (max-width: 1440px) {
  .solu_info1-tit strong {
    font-size: 30px;
  }
}

@media (max-width: 1199px) {
  .solu_info1-tit strong {
    font-size: 24px;
  }
}

@media (max-width: 991px) {
  .solu_info1-tit strong {
    font-size: 20px;
  }
}

.solu_info1-tit span {
  font-size: 18px;
  display: block;
  margin-top: 6px;
  color: #7b7b7b;
}

@media (max-width: 1199px) {
  .solu_info1-tit span {
    font-size: 16px;
  }
}

.solu_info1-section1 {
  padding: 120px 0 100px;
}

@media (max-width: 1440px) {
  .solu_info1-section1 {
    padding: 100px 0 80px;
  }
}

@media (max-width: 1199px) {
  .solu_info1-section1 {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .solu_info1-section1 {
    padding: 40px 0;
  }
}

.solu_info1-section1 .solu_info1-tit {
  margin-bottom: 60px;
}

@media (max-width: 1199px) {
  .solu_info1-section1 .solu_info1-tit {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .solu_info1-section1 .solu_info1-tit {
    margin-bottom: 26px;
  }
}

.solu_info1-section1 .solu_info1-cont {
  padding-top: 20px;
}

@media (max-width: 767px) {
  .solu_info1-section1 .solu_info1-cont {
    padding-top: 10px;
  }
}

.solu_info1-section1 .solu_info1-cont .item {
  width: 100%;
  position: relative;
  padding-bottom: 183%;
}

@media (max-width: 767px) {
  .solu_info1-section1 .solu_info1-cont .item {
    padding-bottom: 120%;
  }
}

.solu_info1-section1 .solu_info1-cont .item img {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.solu_info1-section1 .solu_info1-cont .item .font {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.solu_info1-section1 .solu_info1-cont .item .font strong {
  font-size: 24px;
  display: block;
}

@media (max-width: 1199px) {
  .solu_info1-section1 .solu_info1-cont .item .font strong {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .solu_info1-section1 .solu_info1-cont .item .font strong {
    font-size: 18px;
  }
}

.solu_info1-section1 .solu_info1-cont .item .font span {
  display: block;
  font-size: 18px;
  margin-top: 26px;
  opacity: 0.5;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 1199px) {
  .solu_info1-section1 .solu_info1-cont .item .font span {
    font-size: 16px;
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .solu_info1-section1 .solu_info1-cont .item .font span {
    font-size: 14px;
    margin-top: 16px;
  }
}

.solu_info1-section1 .solu_info1-cont .item .font .text {
  padding: 0 7%;
  width: 100%;
  margin-top: 34px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 1440px) {
  .solu_info1-section1 .solu_info1-cont .item .font .text {
    margin-top: 26px;
  }
}

@media (max-width: 1199px) {
  .solu_info1-section1 .solu_info1-cont .item .font .text {
    margin-top: 20px;
  }
}

.solu_info1-section1 .solu_info1-cont .item .font .text p {
  font-size: 16px;
  line-height: 30px;
}

@media (max-width: 767px) {
  .solu_info1-section1 .solu_info1-cont .item .font .text p {
    font-size: 14px;
    line-height: 26px;
  }
}

.solu_info1-section1 .solu_info1-cont .item .font .but {
  margin-top: 120px;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #FF0000;
  font-size: 16px;
  border-radius: 40px;
  width: 142px;
  height: 42px;
  text-align: center;
  line-height: 42px;
}

@media (max-width: 1440px) {
  .solu_info1-section1 .solu_info1-cont .item .font .but {
    margin-top: 80px;
    /* width: 100px; */
    height: 40px;
    line-height: 40px;
  }
}

@media (max-width: 1199px) {
  .solu_info1-section1 .solu_info1-cont .item .font .but {
    margin-top: 60px;
  }
}

@media (max-width: 767px) {
  .solu_info1-section1 .solu_info1-cont .item .font .but {
    height: 35px;
    line-height: 35px;
    font-size: 14px;
    margin-top: 40px;
  }
}

@media (max-width: 575px) {
  .solu_info1-section1 .solu_info1-cont .item .font .but {
    margin-top: 26px;
  }
}

.solu_info1-section1 .solu_info1-cont .item .font2 {
  opacity: 0;
}

@media (min-width:767px) {
  .solu_info1-section1 .solu_info1-cont .item:hover img {
    height: calc(100% + 20px);
  }

  .solu_info1-section1 .solu_info1-cont .item:hover .font {
    background-color: rgba(0, 161, 58, 0.8);
    height: calc(100% + 20px);
    opacity: 0;
  }
}

@media (max-width: 767px) {
  /*  .solu_info1-section1 .solu_info1-cont .item:hover img {
    height: calc(100% + 10px);
  } */
}

.solu_info1-section1 .solu_info1-cont .item:hover .font {
  background-color: rgba(0, 161, 58, 0.8);
  opacity: 0;
}

/* @media (max-width: 767px) {
  .solu_info1-section1 .solu_info1-cont .item:hover .font {
    height: calc(100% + 10px);
  }
} */

.solu_info1-section1 .solu_info1-cont .item:hover .font2 {
  opacity: 1;
}

.solu_info1-section1 .solu_info1-cont .on .item img {
  height: calc(100% + 20px);
}

@media (max-width: 767px) {
  .solu_info1-section1 .solu_info1-cont .on .item img {
    height: calc(100% + 10px);
  }
}

.solu_info1-section1 .solu_info1-cont .on .item .font {
  background-color: rgba(0, 161, 58, 0.8);
  height: calc(100% + 20px);
  opacity: 0;
}

@media (max-width: 767px) {
  .solu_info1-section1 .solu_info1-cont .on .item .font {
    height: calc(100% + 10px);
  }
}

.solu_info1-section1 .solu_info1-cont .on .item .font2 {
  opacity: 1;
}

.solu_info1-section2 {
  padding-top: 0;
  padding-bottom: 100px;
}

@media (max-width: 1440px) {
  .solu_info1-section2 {
    padding-bottom: 80px;
  }
}

@media (max-width: 1199px) {
  .solu_info1-section2 {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .solu_info1-section2 {
    padding-bottom: 40px;
  }
}

.solu_info1-section2 .solu_info1-tit {
  margin-bottom: 60px;
}

@media (max-width: 1199px) {
  .solu_info1-section2 .solu_info1-tit {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .solu_info1-section2 .solu_info1-tit {
    margin-bottom: 26px;
  }
}

.solu_info1-section2 .zhong {
  width: 95%;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .solu_info1-section2 .zhong {
    width: 100%;
  }
}

.solu_info1-section2 .zhong .jut {
  width: 100%;
  position: relative;
  margin-bottom: 60px;
}

@media (max-width: 1199px) {
  .solu_info1-section2 .zhong .jut {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .solu_info1-section2 .zhong .jut {
    margin-bottom: 30px;
  }
}

.solu_info1-section2 .zhong .jut .item {
  width: 100%;
  background-color: #e8effb;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.solu_info1-section2 .zhong .jut .item .lt {
  width: 54%;
  position: relative;
  padding-bottom: 34%;
}

@media (max-width: 991px) {
  .solu_info1-section2 .zhong .jut .item .lt {
    width: 100%;
  }
}

.solu_info1-section2 .zhong .jut .item .lt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.solu_info1-section2 .zhong .jut .item .gt {
  width: 46%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 6%;
}

@media (max-width: 991px) {
  .solu_info1-section2 .zhong .jut .item .gt {
    width: 100%;
    padding: 30px 6%;
  }
}

@media (max-width: 767px) {
  .solu_info1-section2 .zhong .jut .item .gt {
    padding: 20px 15px 30px;
  }

  .solu_info1-section2 .zhong .jut .item .lt {
    padding-bottom: 66%;
  }
}

.solu_info1-section2 .zhong .jut .item .gt>strong {
  display: block;
  font-size: 30px;
  margin-bottom: 36px;
}

@media (max-width: 1440px) {
  .solu_info1-section2 .zhong .jut .item .gt>strong {
    margin-bottom: 30px;
    font-size: 26px;
  }
}

@media (max-width: 1199px) {
  .solu_info1-section2 .zhong .jut .item .gt>strong {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .solu_info1-section2 .zhong .jut .item .gt>strong {
    font-size: 20px;
  }
}

.solu_info1-section2 .zhong .jut .item .gt .text {
  width: 100%;
  height: 90px;
  margin-bottom: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media (max-width: 1440px) {
  .solu_info1-section2 .zhong .jut .item .gt .text {
    margin-bottom: 60px;
  }
}

@media (max-width: 1199px) {
  .solu_info1-section2 .zhong .jut .item .gt .text {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .solu_info1-section2 .zhong .jut .item .gt .text {
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .solu_info1-section2 .zhong .jut .item .gt .text {
    height: 80px;
  }
}

.solu_info1-section2 .zhong .jut .item .gt .text p {
  font-size: 16px;
  color: #666666;
  line-height: 30px;
}

@media (max-width: 575px) {
  .solu_info1-section2 .zhong .jut .item .gt .text p {
    font-size: 14px;
    line-height: 26px;
  }
}

.solu_info1-section2 .zhong .jut .so-prev,
.solu_info1-section2 .zhong .jut .so-next {
  width: 50px;
  height: 60px;
  border: 1px solid #FF0000;
  border-radius: 3px;
}

@media (max-width: 991px) {

  .solu_info1-section2 .zhong .jut .so-prev,
  .solu_info1-section2 .zhong .jut .so-next {
    display: none;
  }
}

.solu_info1-section2 .zhong .jut .so-prev {
  background: url(../../images/lt1.png) no-repeat center;
  background-size: 11px 20px;
  left: -80px;
}

.solu_info1-section2 .zhong .jut .so-prev:hover {
  background: #FF0000 url(../../images/lt-1.png) no-repeat center;
  background-size: 11px 20px;
}

.solu_info1-section2 .zhong .jut .so-next {
  background: url(../../images/gt1.png) no-repeat center;
  background-size: 11px 20px;
  right: -80px;
}

.solu_info1-section2 .zhong .jut .so-next:hover {
  background: #FF0000 url(../../images/gt-1.png) no-repeat center;
  background-size: 11px 20px;
}

.solu_info1-section2 .zhong .cont .ab8-cont {
  padding: 10px;
}

.solu_info1-section3 {
  padding-top: 120px;
  background-color: #f5f5f5;
}

@media (max-width: 1440px) {
  .solu_info1-section3 {
    padding-top: 80px;
  }
}

@media (max-width: 1199px) {
  .solu_info1-section3 {
    padding-top: 60px;
  }
}

@media (max-width: 767px) {
  .solu_info1-section3 {
    padding-top: 40px;
  }
}

.solu_info1-section3 .solu_info1-tit {
  padding-bottom: 60px;
}

@media (max-width: 1440px) {
  .solu_info1-section3 .solu_info1-tit {
    padding-bottom: 40px;
  }
}

@media (max-width: 1199px) {
  .solu_info1-section3 .solu_info1-tit {
    padding-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .solu_info1-section3 .solu_info1-tit {
    padding-bottom: 26px;
  }
}

.solu_info1-section3 .cont {
  width: 100%;
}

.solu_info1-section3 .cont .item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #fff;
}

.solu_info1-section3 .cont .item .lt,
.solu_info1-section3 .cont .item .gt {
  width: 50%;
}

@media (max-width: 991px) {

  .solu_info1-section3 .cont .item .lt,
  .solu_info1-section3 .cont .item .gt {
    width: 100%;
  }
}

.solu_info1-section3 .cont .item .lt {
  overflow: hidden;
}

@media (max-width: 991px) {
  .solu_info1-section3 .cont .item .lt {
    order: 0;
    width: 100%;
    height: 380px;
  }
}

@media (max-width: 767px) {
  .solu_info1-section3 .cont .item .lt {
    height: auto;
  }
}

.solu_info1-section3 .cont .item .lt img {
  width: 100%;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 991px) {
  .solu_info1-section3 .cont .item .lt img {
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 767px) {
  .solu_info1-section3 .cont .item .lt img {
    height: auto;
  }
}

.solu_info1-section3 .cont .item .gt {
  padding-left: 6%;
}

@media (max-width: 991px) {
  .solu_info1-section3 .cont .item .gt {
    order: 1;
    padding: 30px 0 60px 6%;
  }
}

@media (max-width: 767px) {
  .solu_info1-section3 .cont .item .gt {
    padding: 26px 15px 40;
  }
}

.solu_info1-section3 .cont .item .gt .font .shu {
  font-size: 48px;
  font-weight: bold;
  color: #FF0000;
  margin-bottom: 30px;
  line-height: 1;
}

@media (max-width: 1440px) {
  .solu_info1-section3 .cont .item .gt .font .shu {
    font-size: 36px;
  }
}

@media (max-width: 1199px) {
  .solu_info1-section3 .cont .item .gt .font .shu {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .solu_info1-section3 .cont .item .gt .font .shu {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .solu_info1-section3 .cont .item .gt .font .shu {
    font-size: 20px;
  }
}

.solu_info1-section3 .cont .item .gt .font strong {
  font-weight: bold;
  font-size: 36px;
  display: block;
  margin-bottom: 40px;
  line-height: 1.4;
}

@media (max-width: 1440px) {
  .solu_info1-section3 .cont .item .gt .font strong {
    font-size: 30px;
    margin-bottom: 24px;
  }
}

@media (max-width: 1199px) {
  .solu_info1-section3 .cont .item .gt .font strong {
    font-size: 26px;
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .solu_info1-section3 .cont .item .gt .font strong {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .solu_info1-section3 .cont .item .gt .font strong {
    font-size: 18px;
  }
}

.solu_info1-section3 .cont .item .gt .font .list {
  width: 100%;
}

.solu_info1-section3 .cont .item .gt .font .list li {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #666666;
  margin-bottom: 14px;
}

@media (max-width: 991px) {
  .solu_info1-section3 .cont .item .gt .font .list li {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.solu_info1-section3 .cont .item .gt .font .list li:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid #FF0000;
  margin-right: 16px;
  border-radius: 50%;
}

@media (max-width: 991px) {
  .solu_info1-section3 .cont .item .gt .font .list li:before {
    margin-right: 8px;
  }
}

.solu_info1-section3 .cont .item .gt .font .list li:last-child {
  margin-bottom: 0;
}

.solu_info1-section3 .cont .item:nth-child(2n) .lt {
  order: 1;
}

@media (max-width: 991px) {
  .solu_info1-section3 .cont .item:nth-child(2n) .lt {
    order: 0;
  }
}

.solu_info1-section3 .cont .item:nth-child(2n) .gt {
  order: 0;
  flex-direction: row-reverse;
}

@media (max-width: 991px) {
  .solu_info1-section3 .cont .item:nth-child(2n) .gt {
    order: 1;
  }
}

.solu_info1-section3 .cont .item:nth-child(2n) .gt strong {
  margin-bottom: 16px;
}

@media (max-width: 1199px) {
  .solu_info1-section3 .cont .item:nth-child(2n) .gt strong {
    margin-bottom: 10px;
  }
}

.solu_info1-section3 .cont .item:nth-child(2n) .gt .shu {
  margin-bottom: 40px;
}

@media (max-width: 1440px) {
  .solu_info1-section3 .cont .item:nth-child(2n) .gt .shu {
    margin-bottom: 24px;
  }
}

@media (max-width: 1199px) {
  .solu_info1-section3 .cont .item:nth-child(2n) .gt .shu {
    margin-bottom: 20px;
  }
}

.solu_info1-section3 .cont .item:hover .lt img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

.solu_info1-section4 {
  position: relative;
  height: auto;
}

@media (max-width: 991px) {
  .solu_info1-section4 {
    height: 550px;
  }
}

.solu_info1-section4:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  background-color: rgba(0, 18, 43, 0.7);
}

.solu_info1-section4 .img {
  width: 100%;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .solu_info1-section4 .img {
    height: 100%;
  }
}

.solu_info1-section4 .img img {
  width: 100%;
}

@media (max-width: 991px) {
  .solu_info1-section4 .img img {
    height: 100%;
    object-fit: cover;
  }
}

.solu_info1-section4 .solu_info1-tit {
  margin-bottom: 82px;
}

@media (max-width: 1440px) {
  .solu_info1-section4 .solu_info1-tit {
    margin-bottom: 62px;
  }
}

@media (max-width: 1199px) {
  .solu_info1-section4 .solu_info1-tit {
    margin-bottom: 42px;
  }
}

@media (max-width: 767px) {
  .solu_info1-section4 .solu_info1-tit {
    margin-bottom: 30;
  }
}

.solu_info1-section4 .solu_info1-tit strong {
  color: #fff;
}

.solu_info1-section4 .container .cont .jut {
  width: 76%;
  margin: 0 auto;
}

@media (max-width: 1440px) {
  .solu_info1-section4 .container .cont .jut {
    width: 80%;
  }
}

@media (max-width: 991px) {
  .solu_info1-section4 .container .cont .jut {
    width: 100%;
  }
}

.solu_info1-section4 .container .cont .jut .item,
.solu_info1-section4 .container .cont .jut .geng {
  width: 15%;
}

.solu_info1-section4 .container .cont .jut .item:nth-child(3n) {
  margin-right: 50px;
}

@media (max-width: 1440px) {
  .solu_info1-section4 .container .cont .jut .item:nth-child(3n) {
    margin-right: 30px;
  }
}

@media (max-width: 767px) {
  .solu_info1-section4 .container .cont .jut .item:nth-child(3n) {
    margin-right: 0;
  }
}

.solu_info1-section4 .container .cont .jut .item:nth-child(5n) {
  margin-right: 0;
}

@media (max-width: 767px) {
  .solu_info1-section4 .container .cont .jut .item {
    width: 48%;
  }
}

.solu_info1-section4 .container .cont .jut .basebut {
  margin: 0 auto;
  border-color: #fff;
  color: #fff;
}

.solu_info1-section4 .container .cont .jut .but12 {
  width: 100%;
  margin-top: 50px;
}

.solu_info1-section4 .container .cont .jut .basebut:hover {
  border-color: #FF0000;
}

.solu_info1-section5 .cont .tit {
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-bottom: 1px solid #dddddd;
  /*padding-bottom: 30px;*/
}

.solu_info1-section4 .container .cont .jut .but12 .basebut {
  border-width: 1px;
}

@media (max-width: 1199px) {
  .solu_info1-section5 .cont .tit {
    padding-bottom: 26px;
  }

  .solu_info1-section4 .container .cont .jut .but12 {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .solu_info1-section5 .cont .tit {
    padding-bottom: 20px;
  }
}

.solu_info1-section5 .cont .tit .solu_info1-tit {
  margin-bottom: 54px;
}

@media (max-width: 1440px) {
  .solu_info1-section5 .cont .tit .solu_info1-tit {
    margin-bottom: 40px;
  }
}

@media (max-width: 1199px) {
  .solu_info1-section5 .cont .tit .solu_info1-tit {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .solu_info1-section5 .cont .tit .solu_info1-tit {
    margin-bottom: 26px;
  }
}

.solu_info1-section6 {
  background-color: #f5f5f5;
  padding: 100px 0 166px;
}

@media (max-width: 1440px) {
  .solu_info1-section6 {
    padding: 80px 0 140px;
  }
}

@media (max-width: 1199px) {
  .solu_info1-section6 {
    padding: 60px 0 80px;
  }
}

@media (max-width: 767px) {
  .solu_info1-section6 {
    padding: 40px 0;
  }
}

.solu_info1-section6 .solu_info1-tit {
  margin-bottom: 60px;
}

@media (max-width: 1199px) {
  .solu_info1-section6 .solu_info1-tit {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .solu_info1-section6 .solu_info1-tit {
    margin-bottom: 26px;
  }
}

@media (max-width: 376px) {
  .solu_info1-section6 .solu_info1-tit strong {
    font-size: 18px;
  }
}

.solu_info1-section6 .cont {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

.solu_info1-section6 .cont .lt {
  width: 50%;
  height: 480px;
}

@media (max-width: 1440px) {
  .solu_info1-section6 .cont .lt {
    height: 418px;
  }
}

@media (max-width: 991px) {
  .solu_info1-section6 .cont .lt {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .solu_info1-section6 .cont .lt {
    margin-bottom: 20px;
    height: auto;
  }
}

.solu_info1-section6 .cont .lt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solu_info1-section6 .cont .gt {
  width: 50%;
  padding: 0 6%;
}

@media (max-width: 991px) {
  .solu_info1-section6 .cont .gt {
    width: 100%;
    padding: 0;
  }
}

.solu_info1-section6 .cont .gt strong {
  display: block;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 20px;
}

@media (max-width: 1440px) {
  .solu_info1-section6 .cont .gt strong {
    font-size: 26px;
    margin-bottom: 16px;
  }
}

@media (max-width: 1199px) {
  .solu_info1-section6 .cont .gt strong {
    font-size: 24px;
  }
}

@media (max-width: 991px) {
  .solu_info1-section6 .cont .gt strong {
    font-size: 20px;
  }
}

.solu_info1-section6 .cont .gt span {
  font-size: 24px;
  font-weight: bold;
  background-color: #FF0000;
  padding: 4px 10px;
  color: #fff;
}

@media (max-width: 1440px) {
  .solu_info1-section6 .cont .gt span {
    font-size: 22px;
  }
}

@media (max-width: 1199px) {
  .solu_info1-section6 .cont .gt span {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .solu_info1-section6 .cont .gt span {
    font-size: 16px;
  }
}

.solu_info1-section6 .cont .gt .text {
  margin-top: 30px;
  margin-bottom: 46px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #666666;
}

.solu_info1-section6 .cont .gt .text p {
  color: #999;
  margin-right: 20px;
}

@media (max-width: 1440px) {
  .solu_info1-section6 .cont .gt .text {
    margin-top: 26px;
    margin-bottom: 40px;
  }
}

@media (max-width: 1199px) {
  .solu_info1-section6 .cont .gt .text {
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .solu_info1-section6 .cont .gt .text {
    margin-bottom: 26px;
    display: none;
  }
}

@media (max-width: 575px) {
  .solu_info1-section6 .cont .gt .text {
    font-size: 14px;
  }
}

.solu_info1-section6 .cont .gt .form {
  width: 100%;
}

@media (max-width: 767px) {
  .solu_info1-section6 .cont .gt .form {
    margin-top: 26px;
  }
}

.solu_info1-section6 .cont .gt .form input,
.solu_info1-section6 .cont .gt .form button {
  width: 100%;
  padding: 24px 30px;
  background-color: #fff;
  outline: none;
  border-radius: 3px;
  margin-bottom: 20px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.11);
}

@media (max-width: 1440px) {

  .solu_info1-section6 .cont .gt .form input,
  .solu_info1-section6 .cont .gt .form button {
    padding: 20px 26px;
  }
}

@media (max-width: 1199px) {

  .solu_info1-section6 .cont .gt .form input,
  .solu_info1-section6 .cont .gt .form button {
    padding: 18px 20px;
  }
}

@media (max-width: 767px) {

  .solu_info1-section6 .cont .gt .form input,
  .solu_info1-section6 .cont .gt .form button {
    padding: 10px 15px;
  }
}

.solu_info1-section6 .cont .gt .form button {
  box-shadow: none;
  background-color: #FF0000;
  color: #fff;
  margin-bottom: 0;
}

/* End */
/* 中小型中央空调 */
.solu_info2-section1 .solu_info1-tit {
  margin-bottom: 54px;
}

@media (max-width: 1440px) {
  .solu_info2-section1 .solu_info1-tit {
    margin-bottom: 34px;
  }
}

@media (max-width: 1199px) {
  .solu_info2-section1 .solu_info1-tit {
    margin-bottom: 26px;
  }
}

.solu_info2-section1 .cont {
  margin: 0 -10px;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 1199px) {
  .solu_info2-section1 .cont {
    margin: 0 -5px;
  }
}

.solu_info2-section1 .cont .item {
  display: block;
  width: 20%;
  margin-bottom: 20px;
  padding: 0 10px;
  cursor: auto;
}

@media (max-width: 991px) {
  .solu_info2-section1 .cont .item {
    margin-bottom: 10px;
    padding: 0 5px;
  }
}

@media (max-width: 767px) {
  .solu_info2-section1 .cont .item {
    margin-bottom: 16px;
    width: 50%;
  }
}

.solu_info2-section1 .cont .item .jut {
  width: 100%;
  position: relative;
  padding-bottom: 68%;
  overflow: hidden;
  border-radius: 10px;
}

.solu_info2-section1 .cont .item .jut img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.solu_info2-section1 .cont .item .jut .font {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 30px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 1440px) {
  .solu_info2-section1 .cont .item .jut .font {
    font-size: 26px;
  }
}

@media (max-width: 1199px) {
  .solu_info2-section1 .cont .item .jut .font {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .solu_info2-section1 .cont .item .jut .font {
    font-size: 20px;
  }
}

.solu_info2-section1 .cont .item .jut:hover .font {
  /* background-color: rgba(28, 101, 213, 0.88); */
}

.solu_info2-section2 {
  background-color: #F5F5F5;
}

.solu_info2-section2 .solu_info1-tit {
  margin: 0 0 56px;
  /*  font-size: 36px;
  text-align: center;
  line-height: 1;
  font-weight: bold; */
}

@media (max-width: 1440px) {
  .solu_info2-section2 .solu_info1-tit {
    /* font-size: 30px; */
    margin: 0 0 36px;
  }
}

@media (max-width: 1199px) {
  .solu_info2-section2 .solu_info1-tit {
    /* font-size: 24px; */
    margin: 0 0 26px;
  }
}

@media (max-width: 991px) {
  .solu_info2-section2 .tit {
    font-size: 18px;
  }
}

.solu_info2-section2 .cont .item {
  background-color: #fff;
  display: block;
}

.solu_info2-section2 .cont .item .img {
  position: relative;
  width: 100%;
  padding-bottom: 68%;
  overflow: hidden;
}

.solu_info2-section2 .cont .item .img>img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.solu_info2-section2 .cont .item .img .icon1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solu_info2-section2 .cont .item .img .icon1 i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1px solid #fff;
}

@media (max-width: 1440px) {
  .solu_info2-section2 .cont .item .img .icon1 i {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 1199px) {
  .solu_info2-section2 .cont .item .img .icon1 i {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 991px) {
  .solu_info2-section2 .cont .item .img .icon1 i {
    width: 60px;
    height: 60px;
  }
}

.solu_info2-section2 .cont .item .img .icon1 i img {
  height: 50px;
}

@media (max-width: 1440px) {
  .solu_info2-section2 .cont .item .img .icon1 i img {
    height: 40px;
  }
}

@media (max-width: 1199px) {
  .solu_info2-section2 .cont .item .img .icon1 i img {
    height: 30px;
  }
}

@media (max-width: 991px) {
  .solu_info2-section2 .cont .item .img .icon1 i img {
    height: 25px;
  }
}

.solu_info2-section2 .cont .item .img:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
}

.solu_info2-section2 .cont .item .font {
  padding: 80px 8% 0;
  text-align: center;
}

@media (max-width: 1440px) {
  .solu_info2-section2 .cont .item .font {
    padding: 60px 8% 0;
  }
}

@media (max-width: 1199px) {
  .solu_info2-section2 .cont .item .font {
    padding: 40px 8% 0;
  }
}

@media (max-width: 991px) {
  .solu_info2-section2 .cont .item .font {
    padding: 30px 4% 0;
  }
}

@media (max-width: 767px) {
  .solu_info2-section2 .cont .item .font {
    padding: 20px 4% 30px;
  }
}

.solu_info2-section2 .cont .item .font strong {
  display: block;
  font-size: 30px;
  color: #333;
  margin-bottom: 20px;
}

@media (max-width: 1440px) {
  .solu_info2-section2 .cont .item .font strong {
    font-size: 26px;
  }
}

@media (max-width: 1199px) {
  .solu_info2-section2 .cont .item .font strong {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

@media (max-width: 991px) {
  .solu_info2-section2 .cont .item .font strong {
    font-size: 18px;
  }
}

.solu_info2-section2 .cont .item .font .text {
  font-size: 16px;
  color: #666;
  height: 100px;
  line-height: 30px;
}

.solu_info2-section2 .cont .item .font .text p {
  font-size: 16px;
  color: #666;
}

@media (max-width: 991px) {
  .solu_info2-section2 .cont .item .font .text {
    font-size: 14px;
    line-height: 26px;
  }

  .solu_info2-section2 .cont .item .font .text p {
    font-size: 14px;
  }
}

.solu_info2-section2 .cont .item .font span {
  display: block;
  line-height: 1;
  font-size: 150px;
  -webkit-transform: translateY(30%);
  transform: translateY(30%);
  color: #f5f5f5;
  font-weight: bold;
}

@media (max-width: 1440px) {
  .solu_info2-section2 .cont .item .font span {
    font-size: 100px;
  }
}

@media (max-width: 1199px) {
  .solu_info2-section2 .cont .item .font span {
    font-size: 60px;
  }
}

@media (max-width: 767px) {
  .solu_info2-section2 .cont .item .font span {
    font-size: 40px;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

.solu_info2-section2 .cont .item:hover .img img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

.solu_info2-section3 {
  position: relative;
  padding: 46px 0;
  z-index: 3 !important;
}

@media (max-width: 1440px) {
  .solu_info2-section3 {
    padding: 36px 0;
  }
}

@media (max-width: 1199px) {
  .solu_info2-section3 {
    padding: 26px 0;
  }
}

@media (max-width: 767px) {
  .solu_info2-section3 {
    padding: 20px 0 26px;
  }
}

.solu_info2-section3>img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solu_info2-section3:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 161, 58, 0.8);
}

.solu_info2-section3 .container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.solu_info2-section3 .container .lt {
  width: 24%;
  /* position: relative; */
  display: flex;
  flex-direction: row-reverse;
}

@media (max-width: 991px) {
  .solu_info2-section3 .container .lt {
    width: 100%;
    margin-bottom: 30px;
    flex-direction: row;
    padding-left: 100px;
    position: relative;
  }
}

.solu_info2-section3 .container .lt i {
  position: absolute;
  bottom: 0;
  left: -50px;
  -webkit-transform: translateY(39%);
  transform: translateY(39%);
  width: 236px;
}

@media (max-width: 1440px) {
  .solu_info2-section3 .container .lt i {
    width: 180px;
    -webkit-transform: translateY(37%);
    transform: translateY(37%);
  }
}

@media (max-width: 991px) {
  .solu_info2-section3 .container .lt i {
    -webkit-transform: translateY(22%);
    transform: translateY(22%);
    width: 103px;
    bottom: 0;
    left: -12px;

  }
}

.solu_info2-section3 .container .lt i img {
  width: 100%;
}

.solu_info2-section3 .container .lt strong {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  display: block;
}

@media (max-width: 1440px) {
  .solu_info2-section3 .container .lt strong {
    font-size: 20px;
  }
}

@media (max-width: 1199px) {
  .solu_info2-section3 .container .lt strong {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .solu_info2-section3 .container .lt strong {
    font-size: 18px;
  }
}

.solu_info2-section3 .container .gt {
  width: 70%;
}

@media (max-width: 991px) {
  .solu_info2-section3 .container .gt {
    width: 100%;
  }
}

.solu_info2-section3 .container .gt form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.solu_info2-section3 .container .gt form input,
.solu_info2-section3 .container .gt form button {
  width: 36%;
  background-color: #fff;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 16px;
  color: #666;
}

@media (max-width: 1440px) {

  .solu_info2-section3 .container .gt form input,
  .solu_info2-section3 .container .gt form button {
    padding: 14px 14px;
  }
}

@media (max-width: 1199px) {

  .solu_info2-section3 .container .gt form input,
  .solu_info2-section3 .container .gt form button {
    padding: 14px 12px;
  }
}

@media (max-width: 991px) {

  .solu_info2-section3 .container .gt form input,
  .solu_info2-section3 .container .gt form button {
    padding: 14px 10px;
  }
}

@media (max-width: 767px) {

  .solu_info2-section3 .container .gt form input,
  .solu_info2-section3 .container .gt form button {
    font-size: 14px;
    width: 100%;
    margin-bottom: 16px;
    padding: 10px 6px;
  }
}

.solu_info2-section3 .container .gt form button {
  width: 23%;
  font-size: 18px;
  color: #FF0000;
  font-weight: bold;
}

@media (max-width: 767px) {
  .solu_info2-section3 .container .gt form button {
    font-size: 14px;
    width: 100%;
    margin-bottom: 0px;
  }
}

.solu_info2-section4 {
  padding: 120px 0;
  background-color: #fff;
}

@media (max-width: 1440px) {
  .solu_info2-section4 {
    padding: 100px 0;
  }
}

@media (max-width: 1199px) {
  .solu_info2-section4 {
    padding: 80px 0;
  }
}

@media (max-width: 991px) {
  .solu_info2-section4 {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .solu_info2-section4 {
    padding: 40px 0;
  }
}

.solu_info2-section4 .cont .item .gt .font .list li {
  font-size: 36px;
  color: #333;
  font-weight: bold;
}

@media (max-width: 1440px) {
  .solu_info2-section4 .cont .item .gt .font .list li {
    font-size: 30px;
  }
}

@media (max-width: 1199px) {
  .solu_info2-section4 .cont .item .gt .font .list li {
    font-size: 24px;
  }
}

@media (max-width: 991px) {
  .solu_info2-section4 .cont .item .gt .font .list li {
    font-size: 18px;
  }
}

.solu_info2-section4 .cont .item .gt .font .list li::before {
  display: none;
}

.solu_info2-section4 .cont .item .gt .font .list li i {
  font-style: normal;
  padding-right: 10px;
  font-weight: bold;
  color: #FF0000;
}

.solu_info2-section5 {
  position: relative;
  padding: 187px 0 167px;
}

@media (max-width: 1440px) {
  .solu_info2-section5 {
    padding: 147px 0 127px;
  }
}

@media (max-width: 1199px) {
  .solu_info2-section5 {
    padding: 100px 0;
  }
}

@media (max-width: 991px) {
  .solu_info2-section5 {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .solu_info2-section5 {
    padding: 40px 0;
  }
}

.solu_info2-section5>img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solu_info2-section5:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.solu_info2-section5 .container {
  position: relative;
  z-index: 3;
}

.solu_info2-section5 .container .solu_info1-tit span,
.solu_info2-section5 .container .solu_info1-tit strong {
  color: #fff;
}

.solu_info2-section5 .container .solu_info1-tit span {
  opacity: 0.5;
  margin-top: 20px;
}

@media (max-width: 1440px) {
  .solu_info2-section5 .container .solu_info1-tit span {
    margin-top: 16px;
  }
}

@media (max-width: 767px) {
  .solu_info2-section5 .container .solu_info1-tit span {
    margin-top: 10px;
  }
}

.solu_info2-section5 .container .cont {
  margin-top: 74px;
  width: 100%;
}

@media (max-width: 1440px) {
  .solu_info2-section5 .container .cont {
    margin-top: 64px;
  }
}

@media (max-width: 1199px) {
  .solu_info2-section5 .container .cont {
    margin-top: 44px;
  }
}

@media (max-width: 991px) {
  .solu_info2-section5 .container .cont {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .solu_info2-section5 .container .cont {
    margin-top: 26px;
  }
}

.solu_info2-section5 .container .cont .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 21%;
  color: #fff;
  text-align: center;
}

@media (max-width: 1440px) {
  .solu_info2-section5 .container .cont .item {
    padding: 0 11%;
  }
}

@media (max-width: 767px) {
  .solu_info2-section5 .container .cont .item {
    padding: 0 4%;
  }
}

.solu_info2-section5 .container .cont .item strong {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  background-color: #FF0000;
  border-radius: 50%;
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 38px;
}

@media (max-width: 1440px) {
  .solu_info2-section5 .container .cont .item strong {
    font-size: 26px;
    margin-bottom: 30px;
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 1199px) {
  .solu_info2-section5 .container .cont .item strong {
    font-size: 20px;
    margin-bottom: 20px;
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 991px) {
  .solu_info2-section5 .container .cont .item strong {
    font-size: 18px;
  }
}

.solu_info2-section5 .container .cont .item .text p {
  color: #fff;
  font-size: 16px;
  line-height: 35px;
}

@media (max-width: 767px) {
  .solu_info2-section5 .container .cont .item .text p {
    line-height: 30px;
  }
}

.solu_info2-section6 {
  padding: 120px 0;
}

@media (max-width: 1440px) {
  .solu_info2-section6 {
    padding: 100px 0;
  }
}

@media (max-width: 1199px) {
  .solu_info2-section6 {
    padding: 80px 0;
  }
}

@media (max-width: 991px) {
  .solu_info2-section6 {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .solu_info2-section6 {
    padding: 40px 0;
  }
}

.solu_info2-section7 {
  padding: 0 0 166px;
  background-color: #F5F5F5;
}

@media (max-width: 1440px) {
  .solu_info2-section7 {
    padding: 0 0 140px;
  }
}

@media (max-width: 1199px) {
  .solu_info2-section7 {
    padding: 0 0 80px;
  }
}

@media (max-width: 767px) {
  .solu_info2-section7 {
    padding: 0 0 40px;
  }
}

.solu_info2-section7 .so2_7 {
  width: 100%;
  padding-top: 20px;
}

.solu_info2-section7 .so2_7 .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
}

.solu_info2-section7 .so2_7 .item .text {
  font-size: 20px;
  color: #333;
}

@media (max-width: 1440px) {
  .solu_info2-section7 .so2_7 .item .text {
    font-size: 18px;
  }
}

@media (max-width: 1199px) {
  .solu_info2-section7 .so2_7 .item .text {
    font-size: 16px;
  }
}

.solu_info2-section7 .so2_7 .item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 125px;
  height: 125px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

@media (max-width: 1440px) {
  .solu_info2-section7 .so2_7 .item i {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 1199px) {
  .solu_info2-section7 .so2_7 .item i {
    margin-bottom: 16px;
    width: 80px;
    height: 80px;
  }
}

.solu_info2-section7 .so2_7 .item i img {
  width: 43px;
}

@media (max-width: 1199px) {
  .solu_info2-section7 .so2_7 .item i img {
    width: 30px;
  }
}

.solu_info2-section7 .so2_7 .item span {
  position: absolute;
  top: 36%;
  right: 0;
  -webkit-transform: translateX(50%) translateY(-50%);
  transform: translateX(50%) translateY(-50%);
  display: block;
  width: 38px;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .solu_info2-section7 .so2_7 .item span {
    width: 28px;
  }
}

.solu_info2-section7 .so2_7 .item span img {
  width: 100%;
  float: left;
}

/* End */
/* 分体空调安装 */
.solu_info3-section1 {
  background-color: #F5F5F5;
  padding: 120px 0;
}

@media (max-width: 1440px) {
  .solu_info3-section1 {
    padding: 100px 0;
  }
}

@media (max-width: 1199px) {
  .solu_info3-section1 {
    padding: 80px 0;
  }
}

@media (max-width: 991px) {
  .solu_info3-section1 {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .solu_info3-section1 {
    padding: 40px 0;
  }
}

.solu_info3-section1 .solu_info1-tit {
  margin-bottom: 60px;
}

@media (max-width: 1199px) {
  .solu_info3-section1 .solu_info1-tit {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .solu_info3-section1 .solu_info1-tit {
    margin-bottom: 26px;
  }
}

.solu_info3-section2 {
  background-color: #fff;
}

.solu_info3-section2 .solu_info1-tit {
  margin-bottom: 60px;
}

@media (max-width: 1199px) {
  .solu_info3-section2 .solu_info1-tit {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .solu_info3-section2 .solu_info1-tit {
    margin-bottom: 26px;
  }
}

.solu_info3-section2 .cont .item {
  background-color: #f5f5f5;
}

.solu_info3-section2 .cont .item .font span {
  color: #dddddd;
}

.solu_info3-section2 .cont .item .img {
  padding-bottom: 57%;
}

.solu_info3-section3 {
  background-color: #f6f9fe;
}

.solu_info3-section3 .solu_info1-tit {
  margin-bottom: 54px;
}

@media (max-width: 1440px) {
  .solu_info3-section3 .solu_info1-tit {
    margin-bottom: 34px;
  }
}

@media (max-width: 1199px) {
  .solu_info3-section3 .solu_info1-tit {
    margin-bottom: 26px;
  }
}

.solu_info3-section3 .solu3_3-cont .item {
  display: block;
  width: 100%;
}

.solu_info3-section3 .solu3_3-cont .item .jut {
  background-color: #fff;
  padding-top: 30px;
  padding-bottom: 50px;
}

@media (max-width: 991px) {
  .solu_info3-section3 .solu3_3-cont .item .jut {
    padding-top: 15px;
    padding-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .solu_info3-section3 .solu3_3-cont .item .jut {
    padding-top: 10px;
    padding-bottom: 15px;
  }
}

.solu_info3-section3 .solu3_3-cont .item .jut .img {
  position: relative;
  padding-bottom: 79%;
  margin-bottom: 45px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .solu_info3-section3 .solu3_3-cont .item .jut .img {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .solu_info3-section3 .solu3_3-cont .item .jut .img {
    margin-bottom: 20px;
  }
}

.solu_info3-section3 .solu3_3-cont .item .jut .img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 100%;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.solu_info3-section3 .solu3_3-cont .item .jut .font {
  padding: 0 20px;
}

@media (max-width: 767px) {
  .solu_info3-section3 .solu3_3-cont .item .jut .font {
    padding: 0 12px;
  }
}

.solu_info3-section3 .solu3_3-cont .item .jut .font .tit {
  font-size: 22px;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 2px solid #262626;
  color: #262626;
  margin-bottom: 22px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 991px) {
  .solu_info3-section3 .solu3_3-cont .item .jut .font .tit {
    font-size: 20px;
    margin-bottom: 14px;
  }
}

@media (max-width: 767px) {
  .solu_info3-section3 .solu3_3-cont .item .jut .font .tit {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.solu_info3-section3 .solu3_3-cont .item .jut .font pre {
  font-size: 14px;
  color: #666666;
  line-height: 24px;
  display: block;
  margin-bottom: 30px;
  overflow: hidden;
  white-space: normal;
  padding: 0;
}

@media (max-width: 991px) {
  .solu_info3-section3 .solu3_3-cont .item .jut .font pre {
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .solu_info3-section3 .solu3_3-cont .item .jut .font pre {
    margin-bottom: 10px;
  }
}

.solu_info3-section3 .solu3_3-cont .item .jut .font .but {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 114px;
  height: 40px;
  position: relative;
}

.solu_info3-section3 .solu3_3-cont .item .jut .font .but strong {
  font-size: 16px;
  color: #262626;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .solu_info3-section3 .solu3_3-cont .item .jut .font .but strong {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .solu_info3-section3 .solu3_3-cont .item .jut .font .but strong {
    font-size: 12px;
  }
}

.solu_info3-section3 .solu3_3-cont .item .jut .font .but i {
  display: block;
  height: 14px;
  overflow: hidden;
  position: relative;
  margin-left: 14px;
  z-index: 2;
}

@media (max-width: 991px) {
  .solu_info3-section3 .solu3_3-cont .item .jut .font .but i {
    margin-left: 12px;
    height: 12px;
  }
}

@media (max-width: 767px) {
  .solu_info3-section3 .solu3_3-cont .item .jut .font .but i {
    height: 10px;
    margin-left: 10px;
  }
}

.solu_info3-section3 .solu3_3-cont .item .jut .font .but i img {
  float: left;
  height: 100%;
}

.solu_info3-section3 .solu3_3-cont .item .jut .font .but i img:nth-child(2n) {
  display: none;
}

.solu_info3-section3 .solu3_3-cont .item .jut .font .but::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  z-index: 1;
  background-color: #eaeff8;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.solu_info3-section3 .solu3_3-cont .item:hover .img img {
  transform: scale(1.04);
}

.solu_info3-section3 .solu3_3-cont .item:hover .font .tit {
  color: #FF0000;
  border-color: #FF0000;
}

.solu_info3-section3 .solu3_3-cont .item:hover .font .but strong {
  color: #fff;
}

.solu_info3-section3 .solu3_3-cont .item:hover .font .but i img:nth-child(1) {
  display: none;
}

.solu_info3-section3 .solu3_3-cont .item:hover .font .but i img:nth-child(2) {
  display: block;
}

.solu_info3-section3 .solu3_3-cont .item:hover .font .but::before {
  width: 100%;
  background-color: #FF0000;
}

.solu_info3-section4 {
  padding: 120px 0;
}

@media (max-width: 1440px) {
  .solu_info3-section4 {
    padding: 100px 0;
  }
}

@media (max-width: 1199px) {
  .solu_info3-section4 {
    padding: 80px 0;
  }
}

@media (max-width: 991px) {
  .solu_info3-section4 {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .solu_info3-section4 {
    padding: 40px 0;
  }
}

.solu_info3-section5 {
  margin: 0 0 166px;
  background-color: #fff;
}

@media (max-width: 1440px) {
  .solu_info3-section5 {
    margin: 0 0 140px;
  }
}

@media (max-width: 1199px) {
  .solu_info3-section5 {
    margin: 0 0 80px;
  }
}

@media (max-width: 767px) {
  .solu_info3-section5 {
    margin: 0 0 40px;
  }
}

/* End */
/* 净水系统安装 */
.solu_info4-tit {
  margin-bottom: 60px;
}

@media (max-width: 1199px) {
  .solu_info4-tit {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .solu_info4-tit {
    margin-bottom: 26px;
  }
}

.solu_info4-section1 {
  width: 100%;
  position: relative;
  padding: 70px 0 50px;
}

@media (max-width: 1440px) {
  .solu_info4-section1 {
    padding: 60px 0 40px;
  }
}

@media (max-width: 1199px) {
  .solu_info4-section1 {
    padding: 50px 0 30px;
  }
}

@media (max-width: 767px) {
  .solu_info4-section1 {
    padding: 30px 0;
  }
}

@media (max-width: 575px) {
  .solu_info4-section1 {
    padding: 26px 0;
  }
}

.solu_info4-section1>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.solu_info4-section1 .container {
  position: relative;
  z-index: 3;
}

.solu_info4-section1 .container .solu_info1-tit span,
.solu_info4-section1 .container .solu_info1-tit strong {
  color: #fff;
}

.solu_info4-section1 .container .solu_info1-tit span {
  opacity: 0.7;
}

.solu_info4-section1:before,
.solu_info4-section1:after {
  content: "";
  display: block;
}

.solu_info4-section1:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #186ad6;
  opacity: 0.8;
  z-index: 2;
}

.solu_info4-section1::before {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: -14px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 14px solid #1357af;
}

.solu_info4-section2 .solu_info4-tit strong {
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .solu_info4-section2 .solu_info4-tit strong {
    margin-bottom: 14px;
  }
}

.solu_info4-section2 .solu_info4-tit span {
  color: #333;
  font-weight: bold;
  font-size: 24px;
}

@media (max-width: 1199px) {
  .solu_info4-section2 .solu_info4-tit span {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .solu_info4-section2 .solu_info4-tit span {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .solu_info4-section2 .solu_info4-tit span {
    font-size: 14px;
  }
}

.solu_info4-section2 .cont .item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  border: 1px solid #e1e1e1;
  border-radius: 180px;
  padding: 15px 6%;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .solu_info4-section2 .cont .item {
    margin-bottom: 26px;
  }
}

@media (max-width: 991px) {
  .solu_info4-section2 .cont .item {
    padding: 15px 4%;
  }
}

@media (max-width: 767px) {
  .solu_info4-section2 .cont .item {
    flex-wrap: wrap;
    border-radius: 10px;
  }
}

.solu_info4-section2 .cont .item:last-child {
  margin-bottom: 0;
}

.solu_info4-section2 .cont .item .lt {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 30%;
}

@media (max-width: 767px) {
  .solu_info4-section2 .cont .item .lt {
    width: 100%;
    flex-direction: column;
    margin-bottom: 26px;
  }
}

.solu_info4-section2 .cont .item .lt .img {
  position: relative;
  flex-shrink: 0;
  margin-right: 30px;
}

@media (max-width: 1440px) {
  .solu_info4-section2 .cont .item .lt .img {
    margin-right: 26px;
  }
}

@media (max-width: 1199px) {
  .solu_info4-section2 .cont .item .lt .img {
    margin-right: 20px;
  }
}

@media (max-width: 991px) {
  .solu_info4-section2 .cont .item .lt .img {
    margin-right: 10px;
  }
}

@media (max-width: 767px) {
  .solu_info4-section2 .cont .item .lt .img {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.solu_info4-section2 .cont .item .lt .img i {
  display: block;
  width: 158px;
  height: 158px;
  border-radius: 50%;
  overflow: hidden;
}

@media (max-width: 1440px) {
  .solu_info4-section2 .cont .item .lt .img i {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 1199px) {
  .solu_info4-section2 .cont .item .lt .img i {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 991px) {
  .solu_info4-section2 .cont .item .lt .img i {
    width: 70px;
    height: 70px;
  }
}

.solu_info4-section2 .cont .item .lt .img i img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.solu_info4-section2 .cont .item .lt .img:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ccdef6;
  border-radius: 50%;
  top: 0;
  left: 0;
  -webkit-transform: translateX(70%);
  transform: translateX(70%);
}

@media (max-width: 767px) {
  .solu_info4-section2 .cont .item .lt .img:after {
    display: none;
  }
}

.solu_info4-section2 .cont .item .lt span {
  position: relative;
  z-index: 2;
  color: #333;
  white-space: nowrap;
  font-weight: bold;
  font-size: 24px;
}

@media (max-width: 1199px) {
  .solu_info4-section2 .cont .item .lt span {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .solu_info4-section2 .cont .item .lt span {
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .solu_info4-section2 .cont .item .lt span {
    font-size: 20px;
  }
}

.solu_info4-section2 .cont .item .cent {
  width: 40%;
  font-size: 14px;
  line-height: 35px;
  color: #666;
}

@media (max-width: 1440px) {
  .solu_info4-section2 .cont .item .cent {
    width: 50%;
  }
}

@media (max-width: 1199px) {
  .solu_info4-section2 .cont .item .cent {
    width: 60%;
  }
}

@media (max-width: 991px) {
  .solu_info4-section2 .cont .item .cent {
    width: 66%;
    line-height: 30px;
  }
}

@media (max-width: 767px) {
  .solu_info4-section2 .cont .item .cent {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
}

.solu_info4-section2 .cont .item .gt {
  font-size: 48px;
  color: #333;
  font-weight: bold;
}

@media (max-width: 1440px) {
  .solu_info4-section2 .cont .item .gt {
    font-size: 40px;
  }
}

@media (max-width: 1199px) {
  .solu_info4-section2 .cont .item .gt {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .solu_info4-section2 .cont .item .gt {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .solu_info4-section2 .cont .item .gt {
    text-align: center;
    width: 100%;
  }
}

.solu_info4-section3 {
  position: relative;
  padding: 230px 0 135px;
}

@media (max-width: 1440px) {
  .solu_info4-section3 {
    padding: 160px 0 100px;
  }
}

@media (max-width: 1199px) {
  .solu_info4-section3 {
    padding: 120px 0 80px;
  }
}

@media (max-width: 991px) {
  .solu_info4-section3 {
    padding: 80px 0 60px;
  }
}

.solu_info4-section3>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.solu_info4-section3 .container {
  position: relative;
  z-index: 2;
}

.solu_info4-section3 .container .solu_info4-tit strong {
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .solu_info4-section3 .container .solu_info4-tit strong {
    margin-bottom: 14px;
  }
}

.solu_info4-section3 .container .solu_info4-tit span {
  color: #333;
  font-weight: bold;
  font-size: 36px;
}

@media (max-width: 1440px) {
  .solu_info4-section3 .container .solu_info4-tit span {
    font-size: 30px;
  }
}

@media (max-width: 1199px) {
  .solu_info4-section3 .container .solu_info4-tit span {
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .solu_info4-section3 .container .solu_info4-tit span {
    font-size: 20px;
  }
}

.solu_info4-section3 .container .item {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.solu_info4-section3 .container .item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px solid #FF0000;
  margin-bottom: 30px;
}

@media (max-width: 1440px) {
  .solu_info4-section3 .container .item i {
    width: 120px;
    height: 120px;
    margin-bottom: 26px;
  }
}

@media (max-width: 1199px) {
  .solu_info4-section3 .container .item i {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .solu_info4-section3 .container .item i {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 575px) {
  .solu_info4-section3 .container .item i {
    width: 70px;
    height: 70px;
  }
}

.solu_info4-section3 .container .item i img {
  height: 50px;
}

@media (max-width: 1440px) {
  .solu_info4-section3 .container .item i img {
    height: 40px;
  }
}

@media (max-width: 1199px) {
  .solu_info4-section3 .container .item i img {
    height: 30px;
  }
}

.solu_info4-section3 .container .item span {
  font-size: 20px;
  text-align: center;
}

@media (max-width: 1199px) {
  .solu_info4-section3 .container .item span {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .solu_info4-section3 .container .item span {
    font-size: 16px;
  }
}

.solu_info4-section4 {
  padding: 120px 0 0;
}

@media (max-width: 1440px) {
  .solu_info4-section4 {
    padding: 100px 0 0;
  }
}

@media (max-width: 1199px) {
  .solu_info4-section4 {
    padding: 80px 0 0;
  }
}

@media (max-width: 991px) {
  .solu_info4-section4 {
    padding: 60px 0 0;
  }
}

@media (max-width: 767px) {
  .solu_info4-section4 {
    padding: 40px 0 0;
  }
}

.solu_info4-section4 .container {
  position: relative;
}

@media (max-width: 767px) {
  .solu_info4-section4 .container {
    padding: 0;
  }
}

.solu_info4-section4 .img {
  width: 100%;
}

@media (max-width: 767px) {
  .solu_info4-section4 .img {
    height: 440px;
  }
}

.solu_info4-section4 .img img {
  width: 100%;
}

@media (max-width: 767px) {
  .solu_info4-section4 .img img {
    height: 100%;
    object-fit: cover;
  }
}

.solu_info4-section4 .cont {
  position: absolute;
  top: 50%;
  left: 4%;
  width: 50%;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: rgba(28, 101, 213, 0.95);
  padding: 80px 5%;
}

@media (max-width: 1440px) {
  .solu_info4-section4 .cont {
    padding: 60px 4%;
    width: 60%;
  }
}

@media (max-width: 991px) {
  .solu_info4-section4 .cont {
    width: 80%;
    padding: 40px 4%;
  }
}

@media (max-width: 767px) {
  .solu_info4-section4 .cont {
    width: 92%;
    left: 50%;
    padding: 30px 15px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }
}

.solu_info4-section4 .cont strong {
  font-size: 44px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  display: block;
  margin-bottom: 30px;
}

@media (max-width: 1440px) {
  .solu_info4-section4 .cont strong {
    margin-bottom: 24px;
  }
}

@media (max-width: 1199px) {
  .solu_info4-section4 .cont strong {
    font-size: 26px;
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .solu_info4-section4 .cont strong {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .solu_info4-section4 .cont strong {
    font-size: 20px;
  }
}

.solu_info4-section4 .cont .text {
  font-size: 16px;
  color: #fff;
  opacity: 0.7;
  line-height: 30px;
  margin-bottom: 40px;
}

@media (max-width: 1199px) {
  .solu_info4-section4 .cont .text {
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .solu_info4-section4 .cont .text {
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .solu_info4-section4 .cont .text {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 20px;
  }
}

.solu_info4-section4 .cont .text p {
  font-size: 16px;
  color: #fff;
}

.solu_info4-section4 .cont a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 205px;
  height: 66px;
  border-radius: 4px;
  background-color: #fff;
  color: #FF0000;
  font-size: 18px;
  font-weight: bold;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 1440px) {
  .solu_info4-section4 .cont a {
    width: 140px;
    height: 55px;
  }
}

@media (max-width: 1199px) {
  .solu_info4-section4 .cont a {
    width: 100px;
    height: 44px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .solu_info4-section4 .cont a {
    opacity: 1;
    font-size: 14px;
    height: 33px;
  }
}

.solu_info4-section4 .cont a i {
  width: 24px;
  margin-left: 18px;
}

@media (max-width: 1440px) {
  .solu_info4-section4 .cont a i {
    width: 20px;
  }
}

@media (max-width: 1199px) {
  .solu_info4-section4 .cont a i {
    margin-left: 10px;
    width: 14px;
  }
}

@media (max-width: 991px) {
  .solu_info4-section4 .cont a i {
    margin-left: 6px;
  }
}

.solu_info4-section4 .cont a i img {
  width: 100%;
}

.solu_info4-section5 .cont {
  width: 100%;
  overflow: auto;
}

.solu_info4-section5 .cont .jut {
  width: 100%;
}

@media (max-width: 991px) {
  .solu_info4-section5 .cont .jut {
    width: 200vw;
  }
}

@media (max-width: 575px) {
  .solu_info4-section5 .cont .jut {
    width: 230vw;
  }
}

.solu_info4-section5 .cont .jut img {
  width: 100%;
}

.solu_info4-section6 {
  background-color: #fff;
}

.solu_info4-section6 .cont {
  display: flex;
}

@media (max-width: 767px) {
  .solu_info4-section6 .cont {
    flex-wrap: wrap;
    padding: 0 15px;
  }
}

.solu_info4-section6 .cont .item {
  width: 16.66%;
  position: relative;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 767px) {
  .solu_info4-section6 .cont .item {
    width: 100%;
    margin-bottom: 26px;
  }
}

.solu_info4-section6 .cont .item .img {
  position: relative;
  height: 640px;
  width: 100%;
}

@media (max-width: 1440px) {
  .solu_info4-section6 .cont .item .img {
    height: 440px;
  }
}

@media (max-width: 767px) {
  .solu_info4-section6 .cont .item .img {
    height: 330px;
  }
}

.solu_info4-section6 .cont .item .img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.solu_info4-section6 .cont .item:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  z-index: 2;
}

.solu_info4-section6 .cont .item .font {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.solu_info4-section6 .cont .item .font strong {
  font-size: 30px;
  color: #fff;
  display: block;
  margin-bottom: 88px;
}

@media (max-width: 1440px) {
  .solu_info4-section6 .cont .item .font strong {
    font-size: 28px;
    margin-bottom: 66px;
  }
}

@media (max-width: 1199px) {
  .solu_info4-section6 .cont .item .font strong {
    font-size: 18px;
    margin-bottom: 44px;
  }
}

@media (max-width: 991px) {
  .solu_info4-section6 .cont .item .font strong {
    margin-bottom: 33px;
  }
}

@media (max-width: 767px) {
  .solu_info4-section6 .cont .item .font strong {
    margin-bottom: 26px;
  }
}

.solu_info4-section6 .cont .item .font a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 205px;
  height: 66px;
  border-radius: 4px;
  background-color: #fff;
  color: #FF0000;
  font-size: 18px;
  font-weight: bold;
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 1440px) {
  .solu_info4-section6 .cont .item .font a {
    width: 140px;
    height: 55px;
  }
}

@media (max-width: 1199px) {
  .solu_info4-section6 .cont .item .font a {
    width: 100px;
    height: 44px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .solu_info4-section6 .cont .item .font a {
    opacity: 1;
    font-size: 14px;
    height: 33px;
  }
}

@media (min-width: 768px) {
  .solu_info4-section6 .cont .item:hover {
    width: 32%;
  }

  .solu_info4-section6 .cont .item:hover .font a {
    opacity: 1;
  }
}

/* End */
/* 加入我们 */
.join {
  background-color: #f6f9fe;
}

.join-section1 .item {
  width: 100%;
  background-color: #fff;
  margin-bottom: 20px;
  padding: 40px 35px 30px;
}

@media (max-width: 1440px) {
  .join-section1 .item {
    padding: 30px 25px 25px;
  }
}

@media (max-width: 1199px) {
  .join-section1 .item {
    padding: 30px 25px;
  }
}

@media (max-width: 767px) {
  .join-section1 .item {
    padding: 30px 15px 30;
  }
}

.join-section1 .item .tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 26px;
  line-height: 1;
  border-bottom: 2px solid #dddddd;
}

.join-section1 .item .tit .lt {
  font-size: 30px;
  font-weight: bold;
  display: block;
  display: flex;
  align-items: center;
}

@media (max-width: 1440px) {
  .join-section1 .item .tit .lt {
    font-size: 28px;
  }
}

@media (max-width: 1199px) {
  .join-section1 .item .tit .lt {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .join-section1 .item .tit .lt {
    font-size: 18px;
  }
}

.join-section1 .item .tit .lt::before {
  content: "";
  display: block;
  width: 5px;
  height: 30px;
  background-color: #FF0000;
  margin-right: 15px;
}

@media (max-width: 1199px) {
  .join-section1 .item .tit .lt::before {
    width: 3px;
    height: 13px;
    margin-right: 10px;
  }
}

@media (max-width: 767px) {
  .join-section1 .item .tit .lt::before {
    margin-right: 8px;
  }
}

.join-section1 .item .tit .gt {
  width: 48px;
}

@media (max-width: 1440px) {
  .join-section1 .item .tit .gt {
    width: 40px;
  }
}

@media (max-width: 1199px) {
  .join-section1 .item .tit .gt {
    width: 30px;
  }
}

@media (max-width: 767px) {
  .join-section1 .item .tit .gt {
    width: 20px;
  }
}

.join-section1 .item .tit .gt img {
  width: 100%;
}

.join-section1 .item .tit .gt img:nth-child(2) {
  display: none;
}

.join-section1 .item .jut {
  width: 100%;
  padding-bottom: 30px;
  display: none;
}

@media (max-width: 1199px) {
  .join-section1 .item .jut {
    padding-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .join-section1 .item .jut {
    padding-bottom: 0;
  }
}

.join-section1 .item .jut .list {
  padding-top: 46px;
  padding-bottom: 40px;
  border-bottom: 1px dashed #999999;
}

@media (max-width: 1440px) {
  .join-section1 .item .jut .list {
    padding-top: 30px;
    padding-bottom: 26px;
  }
}

@media (max-width: 1199px) {
  .join-section1 .item .jut .list {
    padding-top: 26px;
  }
}

@media (max-width: 767px) {
  .join-section1 .item .jut .list:last-child {
    padding-bottom: 0;
  }
}

.join-section1 .item .jut .list .list_tit {
  font-size: 24px;
  display: block;
  margin-bottom: 28px;
}

@media (max-width: 1199px) {
  .join-section1 .item .jut .list .list_tit {
    font-size: 20px;
    margin-bottom: 16px;
  }
}

@media (max-width: 767px) {
  .join-section1 .item .jut .list .list_tit {
    font-size: 16px;
  }
}

.join-section1 .item .jut .list .text {
  font-size: 16px;
  color: #666;
  margin-bottom: 34px;
}

@media (max-width: 1440px) {
  .join-section1 .item .jut .list .text {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .join-section1 .item .jut .list .text {
    margin-bottom: 26px;
    font-size: 14px;
  }
}

.join-section1 .item .jut .list .tel {
  font-size: 16px;
  color: #FF0000;
}

@media (max-width: 767px) {
  .join-section1 .item .jut .list .tel {
    font-size: 14px;
  }
}

.join-section1 .item .jut .list:last-child {
  border-bottom: none;
}

.join-section1 .on .tit .gt img:nth-child(1) {
  display: none;
}

.join-section1 .on .tit .gt img:nth-child(2) {
  display: block;
}

/* End */
/* 服务优势 */
.advantage {
  background-color: #f6f9fe;
  padding-top: 80px;
}

.advantage-section1 {
  margin-bottom: 40px;
}

.advantage-section1 .item {
  width: 100%;
  padding: 100px 0 120px;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
}

@media (max-width: 1440px) {
  .advantage-section1 .item {
    padding: 80px 0 100px;
  }
}

@media (max-width: 1199px) {
  .advantage-section1 .item {
    padding: 60px 0 70px;
  }
}

@media (max-width: 767px) {
  .advantage-section1 .item {
    padding: 40px 0 50px;
  }
}

.advantage-section1 .item strong {
  display: block;
  font-size: 24px;
  line-height: 34px;
  width: 100%;
  margin-bottom: 15px;
}

@media (max-width: 1199px) {
  .advantage-section1 .item strong {
    font-size: 22px;
    margin-bottom: 10px;
  }
}

@media (max-width: 991px) {
  .advantage-section1 .item strong {
    font-size: 20px;
  }
}

.advantage-section1 .item span {
  font-size: 18px;
  display: block;
  margin-bottom: 54px;
}

@media (max-width: 1199px) {
  .advantage-section1 .item span {
    font-size: 16px;
    margin-bottom: 34px;
  }
}

.advantage-section1 .item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 142px;
  height: 142px;
  margin: 0 auto;
  border: 8px solid #FF0000;
  border-radius: 50%;
}

@media (max-width: 1440px) {
  .advantage-section1 .item i {
    width: 120px;
    height: 120px;
    border-width: 6px;
  }
}

@media (max-width: 1199px) {
  .advantage-section1 .item i {
    width: 100px;
    height: 100px;
    border-width: 4px;
  }
}

.advantage-section1 .item i img {
  height: 43%;
}

.advantage-section2 .cont .item:nth-child(2n) .shu {
  left: 65%;
}

.advantage-section2 .cont .item:nth-child(2n) .lt {
  order: 1;
}

.advantage-section2 .cont .item:nth-child(2n) .gt {
  order: 0;
}

@media (max-width: 767px) {
  .advantage-section2 .cont .item:nth-child(2n) .shu {
    left: 15px;
  }

  .advantage-section2 .cont .item:nth-child(2n) .lt {
    order: 1;
  }

  .advantage-section2 .cont .item:nth-child(2n) .gt {
    order: 0;
  }
}

.advantage-section3 {
  padding-bottom: 0;
}

.advantage-section3 .item {
  background-color: #fff;
  width: 100%;
  padding: 54px 33px 44px;
  display: block;
  text-align: center;
  color: #333;
  font-size: 18px;
}

@media (max-width: 1440px) {
  .advantage-section3 .item {
    padding: 44px 22px 33px;
  }
}

@media (max-width: 1199px) {
  .advantage-section3 .item {
    padding: 33px 16px 22px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .advantage-section3 .item {
    padding: 30px 14px;
  }
}

.advantage-section3 .item i {
  width: 100%;
  display: block;
  position: relative;
  padding-bottom: 65%;
  margin-bottom: 45px;
  overflow: hidden;
}

@media (max-width: 1440px) {
  .advantage-section3 .item i {
    margin-bottom: 35px;
  }
}

@media (max-width: 1199px) {
  .advantage-section3 .item i {
    margin-bottom: 25px;
  }
}

.advantage-section3 .item i img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.advantage-section3 .item:hover i img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

/* End */
/* 预约维修 */
.reservationbanner .img img {
  display: block !important;
}

.reservation {
  background-color: #f6f9fe;
}

.reservation-section1 {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .reservation-section1 {
    margin-bottom: 20px;
  }
}

.reservation-section1 .cont {
  background-color: #fff;
  padding: 50px 35px 30px;
}

@media (max-width: 1199px) {
  .reservation-section1 .cont {
    padding: 40px 26px 30px;
  }
}

@media (max-width: 767px) {
  .reservation-section1 .cont {
    padding: 30px 16px 20px;
  }
}

.reservation-section1 .cont .tit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 28px;
  line-height: 42px;
  font-size: 30px;
  font-weight: bold;
}

@media (max-width: 1440px) {
  .reservation-section1 .cont .tit {
    font-size: 28px;
    line-height: 40px;
  }
}

@media (max-width: 1199px) {
  .reservation-section1 .cont .tit {
    font-size: 22px;
    margin-bottom: 16px;
    line-height: 32px;
  }
}

@media (max-width: 767px) {
  .reservation-section1 .cont .tit {
    font-size: 20px;
  }
}

.reservation-section1 .cont .tit span {
  color: #FF0000;
}

.reservation-section1 .cont .tit:before {
  content: "";
  display: block;
  width: 5px;
  height: 31px;
  background-color: #FF0000;
  margin-right: 10px;
}

@media (max-width: 1440px) {
  .reservation-section1 .cont .tit:before {
    width: 4px;
    height: 29px;
    margin-right: 8px;
  }
}

@media (max-width: 1199px) {
  .reservation-section1 .cont .tit:before {
    width: 3px;
    height: 23px;
    margin-right: 8px;
  }
}

@media (max-width: 767px) {
  .reservation-section1 .cont .tit:before {
    width: 2px;
    height: 20px;
    margin-right: 6px;
  }
}

.reservation-section1 .cont .jut .list {
  display: flex;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .reservation-section1 .cont .jut .list {
    margin-bottom: 15px;
  }
}

.reservation-section1 .cont .jut .list input {
  width: 49%;
  padding: 26px 18px;
  border: 1px solid #e7e7e7;
  font-size: 16px;
  color: #666666;
  height: 70px;
}

@media (max-width: 1199px) {
  .reservation-section1 .cont .jut .list input {
    padding: 20px 16px;
    height: 50px;
  }
}

@media (max-width: 767px) {
  .reservation-section1 .cont .jut .list input {
    width: 100%;
    margin-bottom: 16px;
    height: 45px;
  }

  .reservation-section1 .cont .jut .list input:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 575px) {
  .reservation-section1 .cont .jut .list input {
    padding: 16px 14px;
  }
}

.reservation-section2 .cont .list .gt .lei label {
  margin-right: 46px;
  font-size: 16px;
  position: relative;
  font-weight: 500;
  padding-left: 26px;
  display: block;
}

@media (max-width: 1199px) {
  .reservation-section2 .cont .list .gt .lei label {
    margin-right: 36px;
  }
}

@media (max-width: 767px) {
  .reservation-section2 .cont .list .gt .lei label {
    margin-right: 26px;
    padding-left: 20px;
    margin-bottom: 14px;
  }
}

.reservation-section2 .cont .list .gt .lei label input {
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  background-color: transparent;
}

.reservation-section2 .cont .list .gt .lei label:after,
.reservation-section2 .cont .list .gt .lei label::before {
  content: "";
  display: block;
  position: absolute;
  top: 17px;
  left: 0;
  -webkit-transform: translateY(-90%);
  transform: translateY(-90%);
  border-radius: 50%;
}

@media (max-width: 767px) {

  .reservation-section2 .cont .list .gt .lei label:after,
  .reservation-section2 .cont .list .gt .lei label::before {
    left: 0;
  }

  .reservation-section2 .cont .list .gt .lei label input {
    display: none;
  }
}

.reservation-section2 .cont .list .gt .lei label::before {
  width: 14px;
  height: 14px;
  border: 4px solid #d4d4d4;
  background-color: #d4d4d4;
}

@media (max-width: 1199px) {
  .reservation-section2 .cont .list .gt .lei label::before {
    border-width: 3px;
    width: 12px;
    height: 12px;
  }
}

.reservation-section2 .cont .list .gt .lei label input:checked {
  color: #FF0000;
}

.reservation-section2 .cont .list .gt .lei .on::before {
  border-color: #FF0000;
  background-color: #fff;
}

.reservation-section2 .cont .list .gt .lei .on {
  color: #FF0000;
}

.reservation-section2 .cont .list .gt .lei textarea {
  width: 100%;
  height: 140px;
}

@media (max-width: 767px) {
  .reservation-section2 .cont .list .gt .radio1 {
    padding: 16px 15px 1px;
  }
}

.reservation-section2 .cont .but {
  width: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background-color: #FF0000;
  font-size: 16px;
  color: #fff;
  margin: 42px auto 0;
}

@media (max-width: 1440px) {
  .reservation-section2 .cont .but {
    width: 180px;
    height: 45px;
  }
}

@media (max-width: 1199px) {
  .reservation-section2 .cont .but {
    width: 160px;
    height: 40px;
    margin: 32px auto 0;
  }
}

/* End */
/* 服务评价 */
.sale {
  background-color: #f6f9fe;
}

.sale-tit {
  margin-bottom: 28px;
}

@media (max-width: 1440px) {
  .sale-tit {
    font-size: 28px;
  }
}

@media (max-width: 1199px) {
  .sale-tit {
    margin-bottom: 16px;
  }
}

.sale-tit .tit {
  margin-bottom: 0 !important;
}

.sale-tit .text p {
  color: #666666;
  font-size: 16px;
  line-height: 28px;
  margin-top: 15px;
}

.sale-section2 .cont .list .gt .zhi {
  width: 72%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 1199px) {
  .sale-section2 .cont .list .gt .zhi {
    width: 80%;
  }
}

@media (max-width: 991px) {
  .sale-section2 .cont .list .gt .zhi {
    width: 100%;
  }
}

.sale-section2 .cont .list .gt .zhi .item {
  width: 100%;
  display: flex;
  margin-bottom: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .sale-section2 .cont .list .gt .zhi .item {
    margin-bottom: 10;
  }
}

.sale-section2 .cont .list .gt .zhi .item .text {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .sale-section2 .cont .list .gt .zhi .item .text {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .sale-section2 .cont .list .gt .zhi .item .radio1 {
    padding: 0 15px 1px;
  }
}

.sale-section2 .cont .list .gt .zhi .item .radio1 label {
  width: 76px;
  margin-right: 36px;
}

.sale-section2 .cont .list .gt .zhi .item .radio1 label:last-child {
  margin-right: 0;
}

/* End */
/* banner分页 */
.bannerbox-pagination {
  display: flex;
  bottom: 40px !important;
  justify-content: center;
  align-items: center;
}

.bannerbox-pagination span {
  background-color: transparent;
  display: block;
  margin: 0 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  opacity: 1;
  pointer-events: auto;
  position: relative;
  width: 44px;
  height: 44px;
  border: 3px solid transparent;
}

@media (max-width: 991px) {
  .bannerbox-pagination span {
    font-size: 14px;
    width: 32px;
    height: 32px;
    border-width: 2px;
  }
}

.bannerbox-pagination span i {
  font-style: normal;
  opacity: 0;
}

.bannerbox-pagination span:last-child {
  margin-right: 0;
}

.bannerbox-pagination span .left,
.bannerbox-pagination span .right {
  opacity: 0;
  width: 22px;
  height: 44px;
  position: absolute;
  left: -3px;
  top: -3px;
  overflow: hidden;
}

@media (max-width: 991px) {

  .bannerbox-pagination span .left,
  .bannerbox-pagination span .right {
    width: 16px;
    height: 32px;
    left: -2px;
    top: -2px;
  }
}

.bannerbox-pagination span .left:after,
.bannerbox-pagination span .right:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 22px;
  height: 44px;
  border: 1px solid #fff;
  border-radius: 22px 0 0 22px;
  border-right: 0;
  background-position: 0 0;
}

@media (max-width: 991px) {

  .bannerbox-pagination span .left:after,
  .bannerbox-pagination span .right:after {
    border-width: 1px;
    width: 16px;
    height: 32px;
    border-radius: 16px 0 0 16px;
  }
}

.bannerbox-pagination span .right {
  left: auto;
  right: -3px;
}

@media (max-width: 991px) {
  .bannerbox-pagination span .right {
    right: -2px;
  }
}

.bannerbox-pagination span .right:after {
  content: "";
  position: absolute;
  display: block;
  border-radius: 0 22px 22px 0;
  border: 1px solid #fff;
  border-left: 0;
}

@media (max-width: 991px) {
  .bannerbox-pagination span .right:after {
    border-width: 1px;
    border-radius: 0 16px 16px 0;
  }
}

.bannerbox-pagination span:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background-color: #fff;
  opacity: 1;
}

.bannerbox-pagination .swiper-pagination-bullet-active {
  color: #fff;
}

.bannerbox-pagination .swiper-pagination-bullet-active i {
  opacity: 1;
}

.bannerbox-pagination .swiper-pagination-bullet-active:after {
  opacity: 0;
}

.bannerbox-pagination .swiper-pagination-bullet-active .left {
  opacity: 1;
}

.bannerbox-pagination .swiper-pagination-bullet-active .left:after {
  transform-origin: right center;
  /* animation-iteration-count: infinite; */
  animation-fill-mode: forwards;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-name: spinleft;
}

.bannerbox-pagination .swiper-pagination-bullet-active .right {
  opacity: 1;
}

.bannerbox-pagination .swiper-pagination-bullet-active .right:after {
  transform-origin: left center;
  /* animation-iteration-count: infinite; */
  animation-fill-mode: forwards;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-name: spinright;
}

@keyframes spinright {
  0% {
    transform: rotate(180deg);
  }

  50% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes spinleft {
  0% {
    transform: rotate(180deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* End */
/* banner轮播内容 */
.bannerbox .swiper-slide {
  padding: 0;
  height: auto;
}

.bannerbox .swiper-slide:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: #FF0000;
  opacity: 0.65;
}

.bannerbox .swiper-slide .f_img {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bannerbox .swiper-slide .f_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  visibility: visible !important;
}

.bannerbox .swiper-slide .banren {
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
  z-index: 4;
}

@media (max-width: 991px) {
  .bannerbox .swiper-slide .banren {
    display: block;
    z-index: 1;
    width: 100%;

  }

  .bannerbox .swiper-slide .banren img {
    -webkit-transform: translateX(0) !important;
    transform: translateX(0) !important;
  }
}

.bannerbox .swiper-slide .banren img {
  height: 100%;
  width: 100%;
  visibility: visible !important;
  object-fit: cover;
}

.bannerbox .swiper-slide .container {
  position: relative;
  z-index: 3;
  height: 100%;
}

.bannerbox .swiper-slide .container .cont2 .font .tit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .bannerbox .swiper-slide .container .cont2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .bannerbox .swiper-slide .container .cont2 .font {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .bannerbox .swiper-slide .container .cont2 .font .tit {
    margin-bottom: 20px;
  }

  .bannerbox .swiper-slide .container .cont2 {
    transform: translateY(-10%);
  }
}

.bannerbox .swiper-slide .container .cont2 .font .tit i {
  display: block;
  width: 90px;
}

@media (max-width: 1440px) {
  .bannerbox .swiper-slide .container .cont2 .font .tit i {
    width: 60px;
  }
}

@media (max-width: 1199px) {
  .bannerbox .swiper-slide .container .cont2 .font .tit i {
    width: 50px;
  }
}

@media (max-width: 767px) {
  .bannerbox .swiper-slide .container .cont2 .font .tit i {
    width: 55px;
  }

  .bannerbox .swiper-slide .container .cont2 .font .tit {
    justify-content: center;
  }
}

.bannerbox .swiper-slide .container .cont2 .font .tit i img {
  width: 100%;
}

.bannerbox .swiper-slide .container .cont2 .font .tit .wen {
  margin-left: 26px;
  padding-right: 35px;
  margin-right: 40px;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
}

@media (max-width: 1199px) {
  .bannerbox .swiper-slide .container .cont2 .font .tit .wen {
    margin-left: 20px;
    padding-right: 30px;
    margin-right: 35px;
  }
}

@media (max-width: 767px) {
  .bannerbox .swiper-slide .container .cont2 .font .tit .wen {
    margin-left: 15px;
    padding-right: 19px;
    margin-right: 0;
    border: none;
    margin-top: 5px;
  }
}

.bannerbox .swiper-slide .container .cont2 .font .tit .wen strong {
  font-size: 60px;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 1440px) {
  .bannerbox .swiper-slide .container .cont2 .font .tit .wen strong {
    font-size: 40px;
  }
}

@media (max-width: 1199px) {
  .bannerbox .swiper-slide .container .cont2 .font .tit .wen strong {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .bannerbox .swiper-slide .container .cont2 .font .tit .wen strong {
    font-size: 26px;
    margin-bottom: 4px;
    letter-spacing: 5px;
  }
}

.bannerbox .swiper-slide .container .cont2 .font .tit .wen span {
  color: #fff;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 2px;
}

@media (max-width: 1199px) {
  .bannerbox .swiper-slide .container .cont2 .font .tit .wen span {
    font-size: 20px;
    letter-spacing: 0;
  }
}

@media (max-width: 767px) {
  .bannerbox .swiper-slide .container .cont2 .font .tit .wen span {
    font-size: 12px;
    letter-spacing: 4px;
  }
}

.bannerbox .swiper-slide .container .cont2 .font .tit .zhong {
  color: #fff;
  line-height: 1;
}

.bannerbox .swiper-slide .container .cont2 .font .tit .zhong span {
  font-size: 24px;
  display: block;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .bannerbox .swiper-slide .container .cont2 .font .tit .zhong span {
    font-size: 20px;
    margin-bottom: 5px;
  }
}

@media (max-width: 767px) {
  .bannerbox .swiper-slide .container .cont2 .font .tit .zhong span {
    font-size: 16px;
    display: none;
  }

  .bannerbox .swiper-slide .container .cont2 .font .tit .zhong {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
}

.bannerbox .swiper-slide .container .cont2 .font .tit .zhong strong {
  font-size: 48px;
  font-weight: bold;
}

@media (max-width: 1440px) {
  .bannerbox .swiper-slide .container .cont2 .font .tit .zhong strong {
    font-size: 38px;
  }
}

@media (max-width: 1199px) {
  .bannerbox .swiper-slide .container .cont2 .font .tit .zhong strong {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .bannerbox .swiper-slide .container .cont2 .font .tit .zhong strong {
    font-size: 22px;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 0;
    display: block;
  }
}

.bannerbox .swiper-slide .container .cont2 .font .text {
  margin-bottom: 90px;
  color: #fff;
  display: flex;
  align-items: center;
}

@media (max-width: 1440px) {
  .bannerbox .swiper-slide .container .cont2 .font .text {
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .bannerbox .swiper-slide .container .cont2 .font .text {
    margin-bottom: 30px;
    display: none;
  }
}

.bannerbox .swiper-slide .container .cont2 .font .text strong,
.bannerbox .swiper-slide .container .cont2 .font .text span {
  display: inline-block;
  padding: 14px;
  font-size: 30px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  border: 2px solid #fff;
  font-weight: 500;
}

@media (max-width: 1440px) {

  .bannerbox .swiper-slide .container .cont2 .font .text strong,
  .bannerbox .swiper-slide .container .cont2 .font .text span {
    padding: 10px;
    font-size: 24px;
  }
}

@media (max-width: 1199px) {

  .bannerbox .swiper-slide .container .cont2 .font .text strong,
  .bannerbox .swiper-slide .container .cont2 .font .text span {
    font-size: 24px;
  }
}

@media (max-width: 767px) {

  .bannerbox .swiper-slide .container .cont2 .font .text strong,
  .bannerbox .swiper-slide .container .cont2 .font .text span {
    font-size: 16px;
    padding: 10px;
  }
}

@media (max-width: 575px) {

  .bannerbox .swiper-slide .container .cont2 .font .text strong,
  .bannerbox .swiper-slide .container .cont2 .font .text span {
    font-size: 12px;
    padding: 5px;
  }
}

.bannerbox .swiper-slide .container .cont2 .font .text span {
  color: #FF0000;
  background-color: #fff;
}

.bannerbox .swiper-slide .container .cont2 .font .basebut {
  color: #fff;
  border-color: #fff;
}

@media (max-width: 1199px) {
  .bannerbox .swiper-slide .container .cont2 .font .basebut {
    width: 120px;
    font-size: 14px;
  }
}

.bannerbox .swiper-slide .container .cont2 .font .basebut span {
  margin-right: 0;
}

.bannerbox .swiper-slide .container .cont2 .font .basebut:hover {
  color: #fff;
  border-color: #FF0000;
}

.bannerbox .swiper-slide .container .cont3 {
  width: 100%;
  text-align: center;
}

.bannerbox .swiper-slide .container .cont3 .font {
  width: 100%;
}

.bannerbox .swiper-slide .container .cont3 .font .tit {
  font-size: 60px;
  font-weight: bold;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 10px;
  text-shadow: 0px 0px 9px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1440px) {
  .bannerbox .swiper-slide .container .cont3 .font .tit {
    font-size: 40px;
  }
}

@media (max-width: 1199px) {
  .bannerbox .swiper-slide .container .cont3 .font .tit {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .bannerbox .swiper-slide .container .cont3 .font .tit {
    font-size: 26px;
    margin-bottom: 8px;
  }
}

@media (max-width: 376px) {
  .bannerbox .swiper-slide .container .cont3 .font .tit {
    font-size: 22px;
  }
}

.bannerbox .swiper-slide .container .cont3 .font .text {
  font-size: 30px;
  color: #fff;
  margin-bottom: 86px;
}

@media (max-width: 1440px) {
  .bannerbox .swiper-slide .container .cont3 .font .text {
    margin-bottom: 56px;
  }
}

@media (max-width: 1199px) {
  .bannerbox .swiper-slide .container .cont3 .font .text {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .bannerbox .swiper-slide .container .cont3 .font .text {
    /* font-size: 18px; */
    margin-bottom: 60px;
  }

  .bannerbox .swiper-slide .container .cont3 {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }
}

.bannerbox .swiper-slide .container .cont3 .font .basebut {
  width: 155px;
  color: #fff;
  border-color: #fff;
  margin: 0 auto;
  border-width: 1px;
  border-radius: 3px;
}

@media (max-width: 1199px) {
  .bannerbox .swiper-slide .container .cont3 .font .basebut {
    width: 120px;
    font-size: 14px;
  }
}

.bannerbox .swiper-slide .container .cont3 .font .basebut span {
  margin-right: 0;
}

.bannerbox .swiper-slide .container .cont3 .font .basebut:hover {
  color: #fff;
  border-color: #FF0000;
}

.bannerbox .swiper-slide .er1 {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
}

/* End */

/* 视差 */
.baseposi {
  position: relative;
  z-index: 2;
}

.basebag1 {
  background-color: #fff;
}

.basepoimg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.basepoimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* End */

/* 右侧固定 */
.float-right-fixed {
  position: fixed;
  width: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: auto;
  z-index: 100;
  transition: 0.3s;
  display: none;
}

@media (max-width: 767px) {
  .float-right-fixed {
    display: none !important;
  }
}

.float-right-fixed.on {
  visibility: visible;
  opacity: 1;
}

.float-right-fixed .floatbox {
  position: relative;
  right: 0;
  width: 60px;
  opacity: 1;
  margin: 0 0 0 -60px;
  background: #fff;
  border-radius: 3px;
  border: 1px solid #eee;
  transition: 0.5s;
}

.float-right-fixed .floatbox ul li {
  position: relative;
  z-index: 1;
  width: 100%;
  border-bottom: 1px solid #eee;
}

.float-right-fixed .floatbox ul li:last-child {
  border: 0;
}

.float-right-fixed .floatbox ul li a {
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  margin: 4px 0;
}

.float-right-fixed .floatbox ul li a img {
  width: 44px;
}

.float-right-fixed .floatbox ul li a p {
  text-align: center;
  font-size: 12px;
  color: #FF0000;
  line-height: 1;
}

.float-right-fixed .floatbox-big {
  position: absolute;
  z-index: 1;
  right: -170px;
  bottom: 50%;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  width: 170px;
  opacity: 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  border: 1px solid #eee;
  transition: 0.5s;
}

.float-right-fixed .floatbox-big ul {
  padding: 10px;
}

.float-right-fixed .floatbox-big ul li {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 9px 0;
}

.float-right-fixed .floatbox-big ul li:last-child {
  margin: 0;
}

.float-right-fixed .floatbox-big ul li .item {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 6px 15px;
  background: #fff;
  border-radius: 15px;
}

.float-right-fixed .floatbox-big ul li .item img {
  position: absolute;
  bottom: 0;
  left: 15px;
  width: 50px;
}

.float-right-fixed .floatbox-big ul li .item span {
  font-size: 16px;
  color: #FF0000;
}

.float-right-fixed .floatbox-big ul li .item-big {
  display: none;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 0;
  border-radius: 15px;
}

.float-right-fixed .floatbox-big ul li .item-big img {
  width: 100px;
}

.float-right-fixed .floatbox-big ul li .item-big span {
  width: 100%;
  font-size: 20px;
  background: #fff;
  display: block;
  border-radius: 15px;
  padding: 5px 10px;
  text-align: center;
  color: #FF0000;
}

.float-right-fixed .floatbox-big ul li .inline-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 15px;
  background: #fff;
  border-radius: 15px;
  cursor: default;
}

.float-right-fixed .floatbox-big ul li .inline-item.backtop {
  cursor: pointer;
}

.float-right-fixed .floatbox-big ul li .inline-item>img {
  flex: 0 0 20px;
  max-width: 20px;
  margin: 0 10px 0 0;
}

.float-right-fixed .floatbox-big ul li .inline-item>span {
  font-size: 16px;
  color: #FF0000;
  cursor: default;
}

.float-right-fixed .floatbox-big ul li .erweima-box {
  position: absolute;
  right: -100px;
  bottom: 0;
  opacity: 0;
  background: #fff;
  border: 1px solid #ddd;
  padding: 5px;
}

.float-right-fixed .floatbox-big ul li .erweima-box img {
  width: 100px;
  margin: 0 0 3px;
}

.float-right-fixed .floatbox-big ul li .erweima-box p {
  font-size: 14px;
  text-align: center;
  color: #FF0000;
}

.float-right-fixed .service__form__chat {
  position: absolute;
  right: -400px;
  top: 0;
  font-size: 0;
  opacity: 0;
  transition: 0.5s;
  display: block;
}

.float-right-fixed .service__form__chat .cox {
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 52px;
  z-index: 4;
}

.float-right-fixed .service__form__chat .service__chat__bg {
  width: 400px;
}

.float-right-fixed .service__form__chat .service__chat__box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.float-right-fixed .service__form__chat .service__chat__title {
  position: absolute;
  left: 183px;
  top: 14px;
  font-size: 16px;
  color: #fff;
}

.float-right-fixed .service__form__chat .service__chat__headline {
  position: absolute;
  left: 210px;
  top: 75px;
  font-size: 21px;
  color: #333;
}

.float-right-fixed .service__form__chat .service__chat__detail {
  position: absolute;
  left: 210px;
  top: 120px;
  width: 169px;
  font-size: 14px;
  color: #333;
}

.float-right-fixed .service__form__chat .service__chat__photo {
  position: absolute;
  left: 18px;
  top: 75px;
  width: 160px;
  height: 140px;
  object-fit: cover;
}

.float-right-fixed .service__form__chat .service__chat__logo1,
.float-right-fixed .service__form__chat .service__chat__logo2 {
  position: absolute;
  top: 235px;
  left: 18px;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  overflow: hidden;
}

.float-right-fixed .service__form__chat .service__chat__logo1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.float-right-fixed .service__form__chat .service__chat__logo2 {
  background-position: -113px -51px;
}

.float-right-fixed .service__form__chat .service__chat__hint {
  position: absolute;
  top: 235px;
  left: 72px;
  max-width: 260px;
  padding: 10px 15px;
  font-size: 14px;
  color: #333;
  background-color: #f6f6f6;
  border-radius: 5px;
}

.float-right-fixed .service__form__chat .service__chat__time {
  position: absolute;
  left: 72px;
  top: 326px;
  font-size: 12px;
  color: #ccc;
}

/* End */
/* 弹窗 */
.banner-next {
  right: 50px;
}

.banner-prev {
  left: 50px;
}

@media (max-width: 767px) {
  .banner-next {
    display: none;
  }

  .banner-prev {
    display: none;
  }
}

.altbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
}

.altbox.on {
  display: none !important;
}

.altbox .bag {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #000;
  opacity: 0.5;
}

.altbox .cont {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background-color: #fff;
  width: 890px;
  padding: 2%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media (max-width: 1199px) {
  .altbox .cont {
    width: 80%;
  }
}

@media (max-width: 991px) {
  .altbox .cont {
    width: 94%;
  }
}

@media (max-width: 767px) {
  .altbox .cont {
    padding: 4% 6%;
    width: calc(100% - 15px);
  }
}

@media (max-width: 340px) {
  .altbox .cont {
    padding: 2%;
    width: calc(100% - 15px);
  }
}

.altbox .cont .cox {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 22px;
  cursor: pointer;
}

.altbox .cont .cox img {
  width: 100%;
}

.altbox .cont .tit,
.altbox .cont .jut .gt,
.altbox .cont p {
  width: 70%;
}

@media (max-width: 767px) {

  .altbox .cont .tit,
  .altbox .cont .jut .gt,
  .altbox .cont p {
    width: 100%;
  }
}

.altbox .cont .tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .altbox .cont .tit {
    text-align: center;
  }
}

.altbox .cont .tit strong {
  font-size: 36px;
  color: #FF0000;
  font-weight: bold;
  display: block;
}

@media (max-width: 1440px) {
  .altbox .cont .tit strong {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .altbox .cont .tit strong {
    width: 100%;
    font-size: 24px;
    margin-bottom: 10px;
  }
}

.altbox .cont .tit span {
  font-size: 14px;
  color: #666666;
  display: block;
}

@media (max-width: 991px) {
  .altbox .cont .tit span {
    width: 100%;
  }
}

.altbox .cont .tit span em {
  font-style: normal;
  color: #FF0000;
}

.altbox .cont .jut {
  border: 1px solid #dddddd;
  padding: 34px 40px 15px;
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
}

@media (max-width: 575px) {
  .altbox .cont .jut {
    padding: 30px 14px;
  }
}

.altbox .cont .jut .lt {
  position: absolute;
  bottom: 0;
  left: 8%;
  width: 160px;
}

@media (max-width: 767px) {
  .altbox .cont .jut .lt {
    display: none;
  }
}

.altbox .cont .jut .lt img {
  width: 100%;
}

.altbox .cont .jut .gt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 72%;
}

@media (max-width: 767px) {
  .altbox .cont .jut .gt {
    width: 100%;
  }
}

.altbox .cont .jut .gt .form {
  width: 70%;
}

@media (max-width: 767px) {
  .altbox .cont .jut .gt .form {
    width: 100%;
  }
}

.altbox .cont .jut .gt .form .item {
  width: 100%;
  display: flex;
  margin-bottom: 15px;
  /* align-items: center; */
  justify-content: space-between;
}

.altbox .cont .jut .gt .form .item:last-child {
  margin-bottom: 0;
}

.altbox .cont .jut .gt .form .item span {
  display: block;
  width: 20%;
  font-size: 14px;
  margin-top: 8px;
}

@media (max-width: 575px) {
  .altbox .cont .jut .gt .form .item span {
    width: 24%;
  }
}

.altbox .cont .jut .gt .form .item .f_gt {
  width: 78%;
}

@media (max-width: 575px) {
  .altbox .cont .jut .gt .form .item .f_gt {
    width: 76%;
  }
}

.altbox .cont .jut .gt .form .item select,
.altbox .cont .jut .gt .form .item input,
.altbox .cont .jut .gt .form .item textarea,
.altbox .cont .jut .gt .form .item button {
  width: 100%;
  padding: 8px 12px;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #e8e8e8;
  height: 36px;
}

.altbox .cont .jut .gt .form .item button {
  background-color: #FF0000;
  color: #fff;
  border: none;
}

/* .altbox .cont .jut .gt .form .item textarea:{
	
} */
.altbox .cont .jut .gt .form .item textarea {
  height: 80px;
  color: #333;
}

.altbox .cont .jut .gt .form .item select {
  background: url(../../images/san1.png) no-repeat 94% 45%;
  background-size: 10px 4px;
}

@media (max-width: 767px) {
  .altbox .cont .jut .gt .form .list {
    align-items: flex-start;
  }

  .altbox .cont .jut .gt .form .item:nth-child(5) {
    display: none;
  }

  .altbox .cont .jut .gt .form .item textarea {
    display: none;
  }
}

@media (max-width: 767px) {
  .altbox .cont .jut .gt .form .list span {
    margin-top: 8px;
  }
}

.altbox .cont .jut .gt .form .list .f_gt {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.altbox .cont .jut .gt .form .list .f_gt select {
  width: 49%;
}

@media (max-width: 575px) {
  .altbox .cont .jut .gt .form .list .f_gt select {
    width: 100%;
    margin-bottom: 16px;
  }
}

.altbox .cont .jut .gt .form .list .f_gt select:last-child {
  margin-bottom: 0;
}

.altbox .cont .jut .gt .form .subm {
  display: none;
}

@media (max-width: 767px) {
  .altbox .cont .jut .gt .form .subm {
    display: flex;
  }
}

.altbox .cont .jut .gt .but {
  /* margin-top: 10px; */
  -webkit-transform: translateY(-20%);
  transform: translateY(-20%);
}

@media (max-width: 575px) {
  .altbox .cont .jut .gt .but {
    display: none;
  }
}

.altbox .cont .jut .gt .but .text {
  font-size: 14px;
  color: #666666;
  text-align: center;
}

.altbox .cont .jut .gt .but a {
  width: 126px;
  height: 126px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 18px;
}

.altbox .cont .jut .gt .but a span {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10%;
  background-color: #FF0000;
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 2;
}

.altbox .cont .jut .gt .but a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #FF0000;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-animation: scaleop1 1s linear infinite;
  animation: scaleop1 1s linear infinite;
  animation-fill-mode: both;
}

.altbox .cont p {
  font-size: 14px;
  color: #999;
  margin-top: 28px;
}

@-webkit-keyframes scaleop1 {
  from {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }

  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0;
  }
}

@keyframes scaleop1 {
  from {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }

  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0;
  }
}

/* End */
/* 右侧固定 */
.rightfixed {
  position: fixed;
  right: 10px;
  top: 50%;
  z-index: 888;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 62px;
}

@media (min-width: 767px) {
  .rightfixed {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .rightfixed {
    width: 100%;
    height: 60px;
    bottom: 0;
    right: 0;
    top: auto;
    display: none;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

.rightfixed a {
  display: block;
  width: 100%;
  height: 62px;
  margin-bottom: 2px;
  background-color: #FF0000;
  color: #fff;
  font-size: 12px;
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rightfixed a:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .rightfixed a {
    width: 25%;
    height: 100%;
    float: left;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .rightfixed a:last-child {
    border-right: none;
  }
}

.rightfixed a .tit {
  width: 100%;
  text-align: center;
}

.rightfixed a .tit span {
  display: block;
  font-size: 26px;
  font-weight: 100;
  line-height: 1;
}

@media (max-width: 767px) {
  .rightfixed a .tit span {
    font-size: 20px;
  }
}

.rightfixed a .tit i {
  display: block;
  width: 20px;
  flex-shrink: 0;
  margin-bottom: 5px;
  margin-left: auto;
  margin-right: auto;
}

.rightfixed a .tit i img {
  width: 100%;
}

.rightfixed a .tit strong {
  font-weight: 500;
  white-space: nowrap;
}

.rightfixed a .cont {
  position: absolute;
  top: 0;
  left: 0%;
  background-color: #FF0000;
  width: 220px;
  height: 100%;
  padding: 10px;
  font-size: 24px;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (min-width: 768px) {
  .rightfixed a:hover {
    color: #fff;
    background-color: #FF0000;
  }

  .rightfixed a:hover .cont {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 1;
  }
}

.rightfixed a:first-child .tit span {
  font-size: 20px;
}

@media (max-width: 767px) {
  .rightfixed a:first-child .tit span {
    font-size: 16px;
  }
}

.rightfixed .er .f_cont {
  width: 120px;
  height: auto;
  padding: 10px;
  background-color: #fff;
  box-shadow: -1px 0 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  .rightfixed .er .f_cont {
    display: none;
  }
}

.rightfixed .er .f_cont img {
  width: 100%;
}

@media (max-width: 767px) {
  .rightfixed .er:hover {
    color: #fff;
  }

  .rightfixed .er:hover .cont {
    -webkit-transform: translateX(-7%) translateY(-100%);
    transform: translateX(-7%) translateY(-100%);
    opacity: 1;
    display: block;
  }
}

.rightfixed .on {
  color: #fff;
  background-color: #FF0000;
}

/* End */
.jishuzhichi {
  color: #fff;
  opacity: .2;
  margin-left: 5px;
}

@media (max-width: 767px) {
  .jishuzhichi {
    /* margin-left: 0; */
  }
}

@media (max-width: 767px) {
  #fothig {
    height: 60px;
  }
}

.jishuzhichi:hover {
  opacity: 1;
}


/* 产品页面修改 */
.f_pro_info .cont .lt .nav {
  display: none;
  visibility: hidden;
}

.f_pro_info .cont .lt .qie {
  display: none;
  visibility: hidden;
}

.f_pro_info .cont .labelbox {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}

.f_pro_info .cont .labelbox .list1 {
  margin-right: 20px;
  margin-bottom: 10px;
  padding: 4px 10px;
  border: 1px solid #ddd;
}

.f_pro_info2 .pro_case {
  width: 100%;
  padding-top: 100px;
}

.f_pro_info2 .pro_case .tit {
  background-color: #FF0000;
  height: 75px;
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 24px;
  color: #fff;
  justify-content: center;
  padding-left: 10px;
  margin-bottom: 40px;
  text-align: center;
}

@media (max-width: 991px) {
  .f_pro_info2 .pro_case .tit {
    height: 55px;
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .f_pro_info2 .pro_case .tit {
    height: 45px;
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .f_pro_info2 .pro_case .tit {
    font-size: 14px;
  }
}

.f_pro_info2 .pro_case .f_jut {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

@media (max-width: 991px) {
  .f_pro_info2 .pro_case .f_jut {
    margin: 0 -5px;
  }
}

@media (max-width: 767px) {
  .f_pro_info2 .pro_case .f_jut {
    margin: 0;
  }
}

.f_pro_info2 .pro_case .f_jut a {
  display: block;
  width: 33.333%;
  padding: 0 10px;
}

@media (max-width: 991px) {
  .f_pro_info2 .pro_case .f_jut a {
    padding: 0 5px;
  }
}

@media (max-width: 575px) {
  .f_pro_info2 .pro_case .f_jut a {
    width: 100%;
    padding: 0;
  }
}

.f_pro_info2 .pro_case .f_jut a .img {
  width: 100%;
  position: relative;
  border: 1px solid #ddd;
  padding-bottom: 86%;
}

.f_pro_info2 .pro_case .f_jut a .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 60%;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.f_pro_info2 .pro_case .f_jut a span {
  text-align: center;
  display: block;
  font-size: 18px;
  color: #666;
  margin-top: 26px;
}

.f_pro_info2 .pro_case .f_jut a:hover .img img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

/* End */
.zhuantibanner {
  height: auto !important;
  background-color: #fff;
}

.zhuantibanner .img1 {
  width: 100%;
  height: 100%;
}

.zhuantibanner .img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zhuantibanner .swiper-slide:after {
  display: none;
}

.zhuantibanner .img1 img:nth-child(2) {
  display: none;
}

@media (max-width: 767px) {
  .zhuantibanner .img1 img:nth-child(2) {
    display: block;
  }

  .zhuantibanner .img1 img:nth-child(1) {
    display: none;
  }
}

/* 新增修改 */
.headbox .cont .but::before {
  transform: rotate(45deg);
}

.headbox .cont .but::after {
  transform: rotate(-45deg);
}

.headbox .cont .but {
  width: 25px;
}

.headbox .cont .but:after,
.headbox .cont .but::before {
  width: 25px;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.headbox .cont .but span {
  margin-bottom: 6px;
}

@media (min-width: 1200px) {
  .headbox .cont .nav .ul li .hover .list a {
    border-bottom: 2px solid #ddd;
  }

  .headbox .cont .nav .ul li .hover {
    border: 1px solid #ddd;
    border-top: none;
  }

  .headbox .cont .nav .ul li .hover .list {
    position: relative;
  }

  .headbox .cont .nav .ul li .hover .list .f_cont {
    position: absolute;
    top: 0;
    right: -120%;
    width: 120%;
    display: none;
  }

  .headbox .cont .nav .ul li .hover .list .f_cont a {
    text-align: center;
    background-color: #fff;
    border: none;
  }

  .headbox .cont .nav .ul li .hover .list>a i {
    display: none;
  }

  .headbox .cont .nav .ul li .hover .list:hover .f_cont {
    display: block;
  }

  .headbox .cont .nav .ul li .hover .list:last-child a {
    border-color: #fff;
  }
}

@media (max-width: 1199px) {
  .headbox .cont .nav .ul li .hover .list>a {
    padding: 5px 8px 5px 15px;
  }

  .headbox .cont .nav .ul .on .tit i {
    height: 18px;
  }

  .headbox .cont .nav .ul .on .tit i img {
    height: 100%;
  }

  .headbox .cont .nav .ul li .hover .list .f_cont {
    display: none;
  }

  .headbox .cont .nav .ul li .hover .list .f_cont a {
    padding-left: 30px;
  }

  .headbox .cont .nav .ul li .hover .list>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .headbox .cont .nav .ul li .hover .list>a i {
    display: block;
    height: 18px;
    overflow: hidden;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }

  .headbox .cont .nav .ul li .hover .list>a i img {
    float: left;
    height: 100%;
  }

  .headbox .cont .nav .ul li .hover .list>a.on1 i {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

@media (max-width:991px) {
  .headbox .cont .nav {
    overflow: auto;
    padding-bottom: 30vh;
  }
}

/* End */
#newBridge .icon-right-center {
  display: none !important;
}

#newBridge .nb-nodeboard-left-bottom {
  left: auto !important;
  right: 0 !important;
}







#newBridge .nb-comp-base {
  display: none;
}











.c-tag {
  font-size: 16px;
}