@charset "utf-8";

html {
  scroll-behavior: smooth;
}

html,
body {
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

.btn-swt {
  cursor: pointer;
}

html,
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
blockquote,
pre,
form,
fieldset,
figure,
figcaption,
table,
th,
td img {
  margin: 0;
  padding: 0;
}

a,
abbr,
acronym,
address,
big,
blockquote,
body,
caption,
cite,
code,
dd,
dl,
dt,
fieldset,
form,
h1,
time,
h2,
h3,
h4,
h5,
h6,
html,
img,
ins,
kbd,
label,
legend,
li,
ol,
p,
pre,
q,
s,
samp,
small,
span,
strike,
strong,
ul {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

body {
  font-family: Jost;
  font-size: 14px;
  text-align: left;
  margin: 0 auto;
  line-height: 24px;
  color: #333;
  font-weight: normal;
  overflow-x: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

a {
  text-decoration: none;
}

.transition {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  outline: none;
}

button {
  border-radius: 0px;
  -webkit-border-radius: 0px;
  outline: none;
}

input {
  border-radius: 0;
  outline: none;
}

input:-ms-clear {
  display: none;
}

input,
textarea {
  border: 0;
  font-family: "Microsoft YaHei";
}

textarea {
  resize: none;
  outline: none;
}

img {
  border: 0;
  vertical-align: middle;
}

ul,
li {
  list-style: none;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  font-size: 0px;
}

.warp-mb {
  width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.index-title {
  text-align: center;
}

.index-title .sp {
  display: block;
  text-align: center;
  color: #FF650E;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 500;
}

.index-title .h2 {
  font-weight: 700;
  color: #333;
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 30px;
  text-align: center;
  padding: 0;
  position: relative;
}

.index-title .h2::before {
  content: "";
  width: 90px;
  height: 4px;
  border-radius: 50px;
  position: absolute;
  background-color: #FF650E;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
}

.index-title .h2:after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(calc(-50% - 37.5px));
  bottom: -14px;
  height: 4px;
  width: 15px;
  border-radius: 50px;
  background-color: #fff;
  -webkit-animation: heading-move 5s infinite linear;
  animation: heading-move 5s infinite linear;
  z-index: 1;
}

@-webkit-keyframes heading-move {
  0% {
    transform: translateX(calc(-50% - 37.5px));
  }

  50% {
    transform: translateX(calc(-50% + 37.5px));
  }

  100% {
    transform: translateX(calc(-50% - 37.5px));
  }
}

@keyframes heading-move {
  0% {
    transform: translateX(calc(-50% - 37.5px));
  }

  50% {
    transform: translateX(calc(-50% + 37.5px));
  }

  100% {
    transform: translateX(calc(-50% - 37.5px));
  }
}

.index-title .text {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  text-align: center;
}

p {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

h1 {
  font-size: 34px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 26px;
}

.m-top {
  margin-top: 80px;
}

.m-btm {
  margin-bottom: 80px;
}

.p-top {
  padding-top: 80px;
}

.p-btm {
  padding-bottom: 80px;
}

.more-ck {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 25px;
  background-color: #FF650E;
  border-radius: 4px;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s ease-out 0s;
  cursor: pointer;
}

.more-ck:before {
  position: absolute;
  content: "";
  left: -110%;
  top: 0;
  width: 110%;
  height: 110%;
  background-color: #261106;
  z-index: -1;
  transition: all 0.5s ease-out 0s;
}

.more-ck:hover::before {
  left: 0;
}

@media screen and (max-width: 1440px) {
  .warp-mb {
    width: 1170px;
  }

  .m-top {
    margin-top: 70px;
  }

  .m-btm {
    margin-bottom: 70px;
  }

  .p-top {
    padding-top: 70px;
  }

  .p-btm {
    padding-bottom: 70px;
  }

  .index-title .h2 {
    font-size: 26px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 22px;
  }



  .index-title .text {
    font-size: 16px;
  }

  p {
    font-size: 16px;
  }
}

@media screen and (max-width: 1200px) {
  .more-ck {
    font-size: 14px;
    font-weight: 600;
    padding: 8px 18px;
  }

  .warp-mb {
    width: 980px;
  }

  .m-top {
    margin-top: 60px;
  }

  .m-btm {
    margin-bottom: 60px;
  }

  .p-top {
    padding-top: 60px;
  }

  .p-btm {
    padding-bottom: 60px;
  }

  .index-title .sp {
    font-size: 16px;
  }
}

@media screen and (max-width: 992px) {
  .warp-mb {
    width: 750px;
  }

  .index-title .text {
    font-size: 14px;
  }

  p {
    font-size: 14px;
  }


  .index-title .h2 {
    font-size: 24px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .index-title .text {
    font-size: 14px;
  }

  .m-top {
    margin-top: 50px;
  }

  .m-btm {
    margin-bottom: 50px;
  }

  .p-top {
    padding-top: 50px;
  }

  .p-btm {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 768px) {
  .more-ck {
    font-size: 14px;
    font-weight: 500;
    padding: 4px 10px;
  }

  .index-title .sp {
    font-size: 14px;
  }

  .warp-mb {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .index-title .h2 {
    font-size: 22px;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  .m-top {
    margin-top: 40px;
  }

  .m-btm {
    margin-bottom: 40px;
  }

  .p-top {
    padding-top: 40px;
  }

  .p-btm {
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 480px) {
  .m-top {
    margin-top: 30px;
  }

  .m-btm {
    margin-bottom: 30px;
  }

  .p-top {
    padding-top: 30px;
  }

  .p-btm {
    padding-bottom: 30px;
  }
}








/* header */
.header {
  position: relative;
  transition: all 0.3s;
}

.header.active {
  position: fixed;
  background-color: #fff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  left: 0;
  right: 0;
  top: 0;
  z-index: 99999;
}

.header.active .header-top {
  display: none;
}

.header-top {
  background-color: #261106;
  position: relative;
}

.header-top .left {
  color: #fff;
  font-size: 14px;
  line-height: 44px;
  padding-left: 40px;
  background: url(../images/come.png) no-repeat left 10px center;
  background-size: 22px;
  text-transform: capitalize;
  z-index: 2;
  font-weight: 500;
  float: left;
}

.header-top .icon {
  float: right;
}

.header-top .emil {
  color: #fff;
  font-size: 14px;
  line-height: 44px;
  padding-left: 33px;
  background: url(../images/top-emil.png) no-repeat left 10px center;
  background-size: 20px;
  text-transform: capitalize;
  position: relative;
  z-index: 2;
  font-weight: 500;
  padding-right: 20px;
  border-right: solid 1px rgba(255, 255, 255, 0.2);
}

.header-top .phone {
  color: #fff;
  font-size: 14px;
  line-height: 44px;
  padding-left: 33px;
  background: url(../images/top-tel.png) no-repeat left 10px center;
  background-size: 20px;
  text-transform: capitalize;
  position: relative;
  z-index: 2;
  font-weight: 500;
}


.header.active .header-btm {
  padding-top: 5px;
  padding-bottom: 5px;
}

.header-btm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: all 0.3s;
  position: relative;
}

.header-btm .logo {
  width: 169px;
}

.header-btm .logo img {
  display: block;
  width: 100%;
  height: auto;
}

.navlist {}

.navlist li {
  float: left;
  text-transform: capitalize;
}

.navlist li a {
  font-size: 16px;
  color: #261106;
  text-transform: capitalize;
  display: block;
  line-height: 59px;
  padding: 0 20px;
  text-align: center;
  font-weight: 500;
}

.navlist li a:hover {
  color: #FF650E;
}


.menu {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  height: auto;
  width: 40px;
  display: none;
}

.menu input {
  width: 40px;
  height: 40px;
  display: block;
  cursor: pointer;
  position: absolute;
  z-index: 9;
  opacity: 0;
}

.menu span {
  height: 3px;
  width: 35px;
  position: relative;
  background-color: #FF650E;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.2s linear;
}

.menu span:nth-of-type(1) {
  width: 20px;
  margin-right: auto;
}

.menu span:nth-of-type(2) {
  width: 40px;
}

.menu span:nth-of-type(3) {
  width: 20px;
  margin-left: auto;
}

.menu input:checked~span:nth-of-type(1) {
  transform: rotate(45deg) translate(4px, 1px);
  background-color: #FF650E;
  box-shadow: 0 0 2em 0.2em #FF650E;
}

.menu input:checked~span:nth-of-type(2) {
  transform: rotate(-45deg);
  background-color: #FF650E;
  box-shadow: 0 0 2em 0.2em #FF650E;
}

.menu input:checked~span:nth-of-type(3) {
  transform: rotate(45deg) translate(-4px, 0px);
  background-color: #FF650E;
  box-shadow: 0 0 2em 0.2em #FF650E;
}

@media screen and (max-width: 1200px) {
  .header-btm .logo {
    width: 140px;
  }

  .navlist li a {
    font-size: 14px;
    line-height: 49px;
    padding: 0 14px;

  }
}

@media screen and (max-width: 768px) {
  .header-btm .logo {
    width: 126px;
  }

  .header-btm .right-btns {
    display: flex;
    align-items: center;
  }

  .header-btm .navlist {
    display: none;
    width: 140px;
    border-radius: 20px 0 20px 0;
    background-color: #261106;
    padding: 10px;
    position: absolute;
    right: 0px;
    top: 70px;
    z-index: 33;
  }

  .menu {
    display: block;
    display: flex;
    margin-left: 10px;
  }

  .navlist li a {
    font-size: 14px;
    color: #fff;
    text-transform: capitalize;
    display: block;
    line-height: 40px;
    text-align: center;
    font-weight: 500;
  }
}

@media screen and (max-width: 414px) {
  .header-btm {
    padding-top: 10px;
    padding-bottom: 10px;

  }

  .header-top .icon {
    float: none;
    display: flex;
    justify-content: space-between;
  }

  .header-top .emil {
    border-right: none;
  }

  .header-top .left {
    display: none;
  }

  .header-btm .logo {
    width: 120px;
  }
}

@media screen and (max-width: 380px) {
  .header-btm {
    padding-top: 10px;
    padding-bottom: 10px;


  }

  .header-btm .logo {
    width: 120px;
  }
}

/* zxy-videoytb */
.zxy-videoytb ul {
  margin-left: -2%;
}

.zxy-videoytb li {
  width: 31.33333333%;
  float: left;
  margin-left: 2%;
  margin-top: 15px;
  background-color: #fff;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
}

.zxy-videoytb li .video {
  display: block;
  position: relative;
  padding-top: 75%;
  overflow: hidden;
}

.zxy-videoytb li .video iframe {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}

.zxy-videoytb li h3 {
  font-size: 18px;
  text-transform: capitalize;
  color: #333;
  line-height: 48px;
  font-weight: 500;
  padding: 0 5px;
  text-align: center;
}

@media screen and (max-width: 992px) {
  .zxy-videoytb li h3 {
    font-size: 18px;
  }

  .zxy-videoytb li {
    width: 48%;
  }
}

@media screen and (max-width:580px) {
  .zxy-videoytb li {
    width: 98%;
    float: none;
  }
}

/* zxy-videoytb */


.zxy-banner img {
  display: block;
  width: 100%;
  height: auto;
}



/* zxy-product */
.zxy-product {
  background-color: #fff5ef;
}

.zxy-product .top-title .sp {
  font-size: 18px;
  font-weight: 600;
  color: #FF650E;
  margin-bottom: 15px;
  display: block;
  text-transform: capitalize;
}

.zxy-product .top-title .btm-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.zxy-product .top-title .btm-box .h2 {
  line-height: 1.2;
}

.zxy-product .top-title .btm-box ul {
  display: flex;
}

.zxy-product .top-title .btm-box ul li {
  font-weight: 400;
  font-size: 18px;
  color: #1E2656;
  margin-left: 20px;
  text-transform: capitalize;
  cursor: pointer;
}

.zxy-product .top-title .btm-box ul li.active {
  color: #FF650E;
}

.zxy-product .btm-productbox {
  position: relative;
  margin-top: 20px;
}

.btm-productbox .product-item-list {
  display: none;
  margin-left: -2%;
}

.btm-productbox .product-item-list.active {
  display: block;
}

.product-item-list .pro-item {
  width: 31.33333333%;
  float: left;
  margin-left: 2%;
  margin-top: 20px;
  background-color: #fff;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 5px;
}

.product-item-list .pro-item .img {
  display: block;
  overflow: hidden;
}

.product-item-list .pro-item .img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
  transition: all 0.3s;
}

.product-item-list .pro-item:hover .img img {
  transform: scale(1.1);
  border-radius: 0;
}

.product-item-list .pro-item h3 a {
  font-size: 18px;
  display: block;
  text-transform: capitalize;
  margin-top: 10px;
  color: #333;
  line-height: 1.3;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-item-list .pro-item:hover h3 a {
  color: #FF650E;
}

@media screen and (max-width:992px) {


  .product-item-list .pro-item {
    width: 48%;
  }

  .zxy-product .top-title .sp,
  .zxy-product .top-title .btm-box ul li {
    font-size: 16px;
  }
}

@media screen and (max-width:600px) {
  .zxy-product .top-title {
    text-align: center;
  }

  .zxy-product .top-title .sp {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .zxy-product .top-title .btm-box {
    flex-direction: column
  }

  .zxy-product .top-title .btm-box .h2 {
    margin-bottom: 10px;
  }

  .zxy-product .btm-productbox {
    margin-top: 10px;
  }

  .product-item-list .pro-item {
    width: 98%;
  }
}

/* zxy-product */


/* zxy-pricing */
.zxy-pricingbg {
  background-color: rgb(237, 124, 30, 0.5);
}

.zxy-pricing ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

}

.zxy-pricing li {
  width: 31%;
  border-radius: 8px;
  padding: 50px 30px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
  position: relative;
}

.zxy-pricing li::after {
  content: "";
  width: 48px;
  height: 48px;
  background: url(../images/price-table-icon-1.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: 20px;
  top: 30px;
}

.zxy-pricing li:nth-of-type(2)::after {
  background: url(../images/price-table-icon-2.svg) no-repeat;
  background-size: contain;
}

.zxy-pricing li:nth-of-type(3)::after {
  background: url(../images/price-table-icon-3.svg) no-repeat;
  background-size: contain;
}

.zxy-pricing li h3 {
  font-weight: 600;
  font-size: 28px;
  color: #261106;
  text-transform: capitalize;
  margin-bottom: 5px;
  margin-bottom: 10px;
}

.zxy-pricing li .tit {
  font-weight: 600;
  font-size: 18px;
  color: #FF650E;
  text-transform: capitalize;
}

.zxy-pricing li .box-text {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px dashed #969A9D;
  margin-bottom: 20px;
}

.zxy-pricing li .box-text h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  color: #261106;
  margin-bottom: 0;
}

.zxy-pricing li .box-text .ps {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #1E2656;
  margin-top: 10px;
  position: relative;
  padding-left: 20px;
  background: url(../images/icon-duihao.png) no-repeat left center;
  background-size: 15px;
}

@media screen and (max-width:1200px) {
  .zxy-pricing li {
    width: 32%;
    padding: 35px 20px;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
  }

  .zxy-pricing li h3 {
    font-size: 24px;
  }

  .zxy-pricing li .tit {
    font-size: 16px;
  }

  .zxy-pricing li .box-text h4 {
    font-size: 18px;
  }

  .zxy-pricing li .box-text {
    padding-top: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
  }

}

@media screen and (max-width:992px) {
  .zxy-pricing li h3 {
    font-size: 20px;
  }

  .zxy-pricing li .tit {
    font-size: 14px;
  }

  .zxy-pricing li .box-text h4 {
    font-size: 16px;
  }

  .zxy-pricing li .box-text {
    padding-top: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .zxy-pricing li .box-text .ps {
    font-size: 14px;
  }

}

@media screen and (max-width:680px) {
  .zxy-pricing li {
    width: 100%;
    margin-top: 20px;
  }


}

/* zxy-pricing */

/* zxy-case */
.zxy-case {
  background-color: #F6F6F8;
}

.zxy-case ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.zxy-case li {
  width: 32%;
  border: solid 1px #e5e5e5;
  padding: 8px;
  border-radius: 5px;
  margin-top: 30px;
  background-color: #fff;
}

.zxy-case li .img {
  display: block;
  position: relative;
  overflow: hidden;
}

.zxy-case li .img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
  transition: all 0.3s;
}


.zxy-case li:hover .img img {
  transform: scale(1.1);
  border-radius: 0;
}

.zxy-case li .text {
  padding-top: 15px;
  text-align: center;
}

.zxy-case li .text h3 a {
  display: block;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 500;
  line-height: 1.3;
  color: #333;
  margin-bottom: 20px;
}

.zxy-case li:hover .text h3 a {
  color: #FF650E;
}

@media screen and (max-width:1200px) {
  .zxy-case li {
    width: 48%;
  }

  .zxy-case li .text h3 a {
    font-size: 18px;
  }
}

@media screen and (max-width:560px) {
  .zxy-case li {
    width: 100%;
    margin-top: 20px;
  }

  .zxy-case li .text h3 a {
    margin-bottom: 15px;
  }

}

/* zxy-case */


/* zxy-news */
.zxy-news {
  margin-top: 50px;
}

.zxy-news ul {
  width: 48%;
  float: left;
}

.zxy-news li {
  display: block;
  position: relative;
  overflow: hidden;
}

.zxy-news li+li {
  margin-top: 13px;
  padding-top: 13px;
  border-top: solid 1px #FF650E;
}



.zxy-news li .img {
  display: block;
  width: 125px;
  float: left;
  margin-right: 15px;
}

.zxy-news li .img img {
  display: block;
  width: 100%;
  height: auto;
}

.zxy-news li h3 a {
  display: block;
  font-size: 18px;
  text-transform: capitalize;
  line-height: 1.4;
  font-weight: 500;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-top: 10px;
}

.zxy-news li:hover h3 a {
  color: #FF650E;
}

.zxy-news .right-new {
  width: 48%;
  float: right;
  position: relative;
}


.zxy-news .right-new .img img {
  display: block;
  width: 100%;
  height: auto;
}

.zxy-news .right-new h3 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff
}

.zxy-news .right-new h3 a {
  display: block;
  font-size: 20px;
  text-transform: capitalize;
  line-height: 1.4;
  color: #fff;
  overflow: hidden;
  font-weight: 500;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

@media screen and (max-width:1440px) {
  .zxy-news ul {
    width: 44%;
  }

  .zxy-news .right-new {
    width: 53%;
  }
}

@media screen and (max-width:1200px) {

  .zxy-news ul {
    width: 40%;
  }

  .zxy-news .right-new {
    width: 57%;
  }

  .zxy-news li .img {
    width: 110px;
  }

  .zxy-news li h3 a {
    margin-top: 5px;
  }
}

@media screen and (max-width:992px) {
  .zxy-news {
    margin-top: 40px;
  }

  .zxy-news li h3 a,
  .zxy-news .right-new h3 a {
    font-size: 18px;
  }

  .zxy-news ul {
    width: 100%;
  }

  .zxy-news li .img {
    width: 130px;
  }

  .zxy-news .right-new {
    width: 100%;
    margin-top: 30px;
  }


}

@media screen and (max-width:768px) {

  .zxy-news li h3 a,
  .zxy-news .right-new h3 a {
    font-size: 16px;
  }

  .zxy-news .right-new h3 {
    padding: 10px;
  }
}

/* zxy-news */







/* customer-box */
.customer-box {
  background: url(../images/instructor-bg.jpg) no-repeat center;
  background-size: cover;
}

.customer-box .btm-img img {
  display: block;
  width: 100%;
  height: auto;
}

.customer-box .customer-onle {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}

.customer-onle .customer-text {
  width: 50%;
}

.customer-text .tit {
  color: #ff5500;
  display: block;
  font-size: 20px;
  text-transform: capitalize;
  line-height: 1.3;
  margin-bottom: 5px;
}

.customer-text .h2 {
  text-transform: capitalize;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
}

.customer-text .text {
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 30px;
}

.customer-text .more {
  border-radius: 5px;
}

.customer-onle .customer-img {
  width: 40%;
}

.customer-onle .customer-img img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 992px) {
  .customer-onle .customer-text {
    width: 56%;
  }

  .customer-onle .customer-img {
    width: 40%;
  }

  .customer-text .text {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .customer-text .text {
    margin-bottom: 20px;
  }

  .customer-box .customer-onle {
    flex-wrap: wrap;
    flex-direction: column-reverse
  }

  .customer-onle .customer-text {
    width: 100%;
    text-align: center;
    margin-top: 20px;

  }

  .customer-onle .customer-img {
    width: 100%;
  }

  .customer-text .more {
    margin: 0 auto;
  }
}

@media screen and (max-width: 480px) {
  .customer-text .h2 {
    font-size: 20px;
  }
}

/* customer-box */


/* zxy-aboutbg */
.zxy-aboutbg {
  background: url(../images/breadcrumb-bg.jpg) no-repeat bottom center;
  background-size: cover;
  text-align: center;
}

.zxy-aboutbg .h2 {
  color: #fff;
  text-transform: capitalize;
  text-shadow: 0 0 5px rgb(0, 0, 0, 0.5);
}

/* zxy-aboutbg */
/* about-choose */
.about-choose .about-choose-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.about-choose-box .about-choose-txt {
  width: 48%;
}

.about-choose-txt .sp {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #FF650E;
  margin-bottom: 10px;
}

.about-choose-txt .h2 {
  text-transform: capitalize;
  margin-bottom: 15px;
}

.about-choose-txt .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #1E2656;
  margin-bottom: 20px;
}
.about-choose-txt .text a{
    color: #FF650E;  
}
.about-choose-txt ul {
  margin-bottom: 20px;
}

.about-choose-txt li {
  font-weight: 600;
  font-size: 14px;
  line-height: 2;
  color: #1E2656;
  margin-bottom: 5px;
}

.about-choose-txt li img {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-right: 3px;
}

.about-choose-box .about-choose-img {
  width: 48%;
}

.about-choose-box .about-choose-img img {
  display: block;
  width: 100%;
  height: auto;
}

/* --  */
.about-number {}



.about-number .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.about-number .list li {
  width: 25%;
  text-align: center;
}

.about-number .list .numb {
  font-size: 40px;
  display: block;
  font-weight: bold;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  line-height: 1.3;
  margin-bottom: 5px;
  color: #261106;
}

.about-number .list .numb::after {
  content: "+";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-left: 3px;
}

.about-number .list .l4 .numb::after {
  content: "m²+";
}

.about-number .list .pt {
  font-size: 16px;
  color: #FF650E;
  text-transform: capitalize;
  font-weight: 500;
}

@media only screen and (max-width:1200px) {
  .about-choose-box .about-choose-txt {
    width: 58%;
  }

  .about-choose-box .about-choose-img {
    width: 42%;
  }
}

@media only screen and (max-width:992px) {
  .about-choose-box .about-choose-txt {
    width: 100%;
  }

  .about-choose-box .about-choose-img {
    width: 100%;
    margin-top: 20px;
  }
}

@media only screen and (max-width:768px) {

  .about-choose-txt .text {
    text-align: justify;
  }

  .about-number .list li {
    width: 50%;
    margin-bottom: 15px;
  }

  .about-number .list .numb {
    font-size: 30px;
  }

  .about-number::before {
    clip-path: none;
    opacity: 0.5;
  }
}



/* about-choose */


/* about-collaborative */
.about-collaborative {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-collaborative li {
  width: 23%;
  background-color: #fff;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  text-align: center;
  margin-top: 20px;
  border-radius: 10px;
}

.about-collaborative li img {
  display: block;
  width: 90px;
  height: auto;
  margin: 0 auto;
}

.about-choose .btm-chooseimg {
  margin-top: 40px;
}

.about-choose .btm-chooseimg img {
  display: block;
  width: 100%;
  height: auto;
}

@media only screen and (max-width:768px) {
  .about-collaborative li {
    width: 24%;
    padding: 15px 0;
  }

  .about-choose .btm-chooseimg {
    margin-top: 30px;
  }
}

@media only screen and (max-width:640px) {
  .about-choose .btm-chooseimg {
    margin-top: 20px;
  }

  .about-collaborative li {
    width: 48%;
  }
}

/* about-collaborative */



/* about-severs */
.about-severs .severs-swiper {
  overflow: hidden;
  position: relative;
}

.about-severs .severs-box {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding-top: 40px;
  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  flex-wrap: wrap;
}

.about-severs .severs-box .severs-text {
  width: 50%;
  box-shadow: 0px 0 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 0 75px 0 75px;
  background-color: #fff;
  padding: 50px 30px;
}

.severs-box .severs-text .dz-num {
  position: relative;
  display: flex;
  align-items: center;
}

.severs-text .dz-num .num1 {
  font-size: 50px;
  color: #FF650E;
  line-height: 1;
  font-weight: 500;
}

.severs-text .dz-num .num2 {
  font-size: 20px;
  color: #222;
  font-weight: 500;
  margin-left: 5px;
  position: relative;
}

.severs-text .dz-num .num2::before {
  content: "/";
  font-size: 20px;
  color: #222;
  font-weight: 500;
  margin-right: 5px;
}

.severs-box .severs-text .dz-num .it {
  height: 1px;
  background-color: #dcdcdc;
  width: auto;
  position: absolute;
  right: 0;
  top: 50%;
  left: 150px;
}

.severs-box .severs-text .dz-num .it::before {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #FF650E;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: 0px;
}

.severs-box .severs-text .dz-num.numb1 .it::before {
  width: 25%;
}

.severs-box .severs-text .dz-num.numb2 .it::before {
  width: 50%;
}

.severs-box .severs-text .dz-num.numb3 .it::before {
  width: 75%;
}

.severs-box .severs-text .dz-num.numb4 .it::before {
  width: 100%;
}

.severs-box .severs-text h3 {
  text-transform: capitalize;
  margin-top: 20px;
}

.severs-box .severs-text li {
  font-size: 17px;
  color: #444;
  text-transform: capitalize;
  line-height: 1.2;
  margin-top: 15px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.severs-box .severs-text li::before {
  content: "";
  width: 18px;
  background: url(../images/sever-icon.png) no-repeat;
  background-size: contain;
  height: 18px;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

.severs-box .severs-text .btn {
  margin-top: 20px;
}

.about-severs .severs-box .severs-img {
  width: 50%;
  box-shadow: 0px 0 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 75px 0 75px 0;
  overflow: hidden;
}

.about-severs .severs-box .severs-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-severs .severs-swiper {
  position: relative;
}

.about-severs .sever-btnbox {
  width: 100px;
  height: 100px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  z-index: 2;
  border-radius: 50%;
  padding: 10px;
  overflow: hidden;
}

.about-severs .sever-btnbox::after {
  content: "";
  position: absolute;
  width: auto;
  height: auto;
  border-radius: 50%;
  background-color: #FF650E;
  left: 10px;
  right: 10px;
  top: 10px;
  bottom: 10px;
  z-index: -1;
}

.about-severs .sever-btnbox .severs-next {
  width: 40px;
  height: 80px;
  position: relative;
}

.about-severs .sever-btnbox .severs-next::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  background: url(../images/swiper-jt.png) no-repeat center center;
  background-size: 24px;
  cursor: pointer;
}

.about-severs .sever-btnbox .severs-prev::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  background: url(../images/swiper-jt.png) no-repeat center center;
  background-size: 24px;
  transform: rotate(180deg);
  cursor: pointer;
}

.about-severs .sever-btnbox .severs-prev {
  width: 40px;
  height: 80px;
  position: relative;
}

@media only screen and (max-width:1200px) {
  .about-severs .severs-box .severs-text {
    border-radius: 0 50px 0 50px;
    padding: 30px 20px;
  }

  .about-severs .severs-box .severs-img {
    border-radius: 50px 0 50px 0;
  }

  .about-severs .sever-btnbox {
    width: 80px;
    height: 80px;
  }

  .about-severs .sever-btnbox .severs-next,
  .about-severs .sever-btnbox .severs-prev {
    width: 40px;
    height: 80px;
  }

  .severs-box .severs-text li {
    font-size: 15px;
    margin-top: 13px;
  }

  .severs-box .severs-text li::before {
    width: 14px;
    height: 14px;
  }
}

@media only screen and (max-width:992px) {
  .about-severs .severs-box .severs-text {
    border-radius: 0;
    padding: 30px 20px;
    width: 100%;
  }

  .about-severs .severs-box .severs-img {
    border-radius: 0;
    width: 100%;
  }

  .about-severs .sever-btnbox {
    top: 305px;
    transform: translate(0);
    right: 10px;
    left: inherit;
  }

}



/* about-severs */


/* about-team */
.about-team {
  position: relative;
}

.about-team::before {
  content: "";
  width: 100%;
  height: 50%;
  background-color: #f1f1f1;
  position: absolute;
  left: 0;
  bottom: 0;
}

.about-team .about-tit {
  position: relative;
}

.about-team .about-tit .h2 {
  text-align: left;
  line-height: 1.3;
}

.about-team .about-tit .team-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 90px;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

.about-tit .team-btn .btm {
  width: 40px;
  height: 40px;
  border-radius: 3px;
  display: block;
  cursor: pointer;
}

.about-tit .team-btn .team-next {
  background: #f0690e url(../images/swiper-jt.png) no-repeat center;
  background-size: 28px;
}

.about-tit .team-btn .team-prev {
  background: #f0690e url(../images/swiper-jt.png) no-repeat center;
  background-size: 28px;
  transform: rotate(180deg);

}

.about-team .team-swiper {
  overflow: hidden;
  margin-top: 40px;
}

.team-swiper .swiper-slide {
  overflow: hidden;
  position: relative;
  background-color: #f0690e;
}

.team-swiper .swiper-slide .team-img img {
  display: block;
  width: 100%;
  transition: 0.5s;
}

.team-swiper .swiper-slide .team-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  visibility: hidden;
  width: 100%;
  padding: 0 10px;
  text-align: center;
  transition: 0.5s;
}

.team-swiper .swiper-slide .team-text .h3 {
  color: #fff;
  text-transform: capitalize;
  line-height: 1.3;
  margin-bottom: 10px;
}

.team-swiper .swiper-slide .team-text .text {
  color: #fff;
  font-size: 14px;
}

.team-swiper .swiper-slide:hover .team-text {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.team-swiper .swiper-slide:hover .team-img img {
  transform: scale(0);
}

@media screen and (max-width: 992px) {
  .about-team .team-swiper {
    margin-top: 30px;
  }
}



@media screen and (max-width: 480px) {
  .about-team .about-tit {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-team .about-tit .h2 {
    text-align: center;

  }

  .about-team .about-tit .team-btn {
    position: static;
    right: inherit;
    top: inherit;
    transform: translateY(0%);
    /* justify-content: center;
    width: 100%; */
    margin-top: 15px;

  }
}

/* about-team */



/* about-customer */
.about-customer {
  background: linear-gradient(270.07deg, #efe3dc -0.1%, #fbdddd 14.35%, #ebebeb 86.15%, #f7d4bd 100.09%);
}

.about-customer ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;

}

.about-customer li {
  width: 24%;
  position: relative;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.08);
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 20px 20px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-customer li .text {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: #1E2656;
}

.about-customer li .star {
  width: 100px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.about-customer li .star img {
  display: block;
  width: 100%;
  height: auto;
}

.about-customer li .cust-name {
  background: url(../images/qoute.svg) no-repeat right center;
  background-size: 32px auto;
}

.about-customer li .cust-name strong {
  display: block;
  font-size: 18px;
  text-transform: capitalize;
  line-height: 1.2;
}

.about-customer li .cust-name .add {
  font-size: 14px;
  color: #1E2656;
  display: block;
  line-height: 1.5;
  font-weight: 400;
}

@media screen and (max-width: 1200px) {
  .about-customer li {
    width: 49%;
  }
}

@media screen and (max-width: 640px) {
  .about-customer li {
    width: 100%;
  }
}

/* about-customer */



/* contact */

/* item-contactlist */

.item-contactlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.item-contactlist li {
  width: 32%;
  padding: 25px 10px 25px 85px;
  position: relative;
  background: #FFFFFF;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

.item-contactlist li .img {
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FF650E;
  border-radius: 50%;
  padding: 15px;
}

.item-contactlist li .img img {
  display: block;
  width: 100%;
  height: auto;
}

.item-contactlist li h3 {
  font-size: 20px;
  font-weight: 500;
  display: block;
  color: #333;
  line-height: 1.2;
  margin-bottom: 5px;
}

.item-contactlist li p {
  font-size: 16px;
  color: #1E2656;
  line-height: 1.5;
}

.item-contactlist li p a {
  display: block;
  color: #1E2656;
}

.item-contactlist li p a:hover {
  color: #FF650E;
}

@media screen and (max-width: 992px) {
  .item-contactlist li {
    width: 100%;
    margin-top: 20px;
  }
}

/* item-contactlist */


/* contact-box */
.contact-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}

.contact-box .msg-img {
  width: 34%;
}

.contact-box .msg-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-box .lyb-box {
  width: 64%;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 40px 30px;
  text-align: center;
}

.contact-box .lyb-box .h3 {
  color: #333;
  line-height: 1.2;
  margin-bottom: 10px;
}

.contact-box .lyb-box .txt {
  color: #1E2656;
  font-size: 16px;
  line-height: 1.5;
}

.msg-from {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.msg-from li {
  width: 49%;
  margin-top: 15px;
      position: relative;
}
.wpcf7-not-valid-tip {
    color: #dc3232;
    display: block;
    position: absolute;
    left: 0;
    bottom: -24px;
    font-size: 13px;
}
.msg-from li.bg-message {
  width: 100%;
}



.msg-from li .wpcf7-form-control-wrap {
  display: block;
}

.msg-from li .tit {
  display: block;
  line-height: 2;
  color: #444;
  font-size: 14px;
  text-align: left;
}

.msg-from li .tit i {
  color: red;
}

.msg-from li input,
.msg-from li textarea {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  color: #fff;
  font-size: 14px;
  padding: 0 10px;
}

.msg-from li input {
  height: 44px;
  line-height: 44px;
  border-radius: 5px;
  box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.1);
  color: #0b2b51;
}

.msg-from li textarea {
  height: 120px;
  line-height: 36px;
  border-radius: 5px;
  box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.1);
  color: #0b2b51;
}

.msg-from .wpcf7-form-control.wpcf7-submit {
  display: block;
  width: 100%;
  line-height: 46px;
  border-radius: 60px;
  padding: 0;
  color: #fff;
  border: none;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  margin-top: 25px;
  background-color: #ff5500;
  background: #ff5500;
  box-shadow: 2px 5px 5px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.msg-from .wpcf7-form-control.wpcf7-submit:hover {
  border-radius: 5px;
}

@media screen and (max-width: 992px) {
  .contact-box .msg-img {
        display: none;
  }

  .contact-box .lyb-box {
    width: 100%;
    padding: 30px 20px;
  }
  .msg-from li {
  margin-top: 12px;
}
}

@media screen and (max-width: 480px) {
  .msg-from li {
    width: 100%;
  }
.msg-from li textarea {
  height: 100px;
}

}

.zx-aboutzsbox img {
  display: block;
  width: 100%;
  height: auto;
}

/* contact-box */


/* zxy-footer */
.zxy-footer {
  background-color: #261106;
  padding-top: 15px;
  padding-bottom: 15px;
}

.zxy-footer .footer-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.zxy-footer .footer-box .left {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
}

.zxy-footer .footer-box .left a {
  color: #FF650E;
}

.zxy-footer .footer-box .right-icon {
  width: 200px;
  display: flex;
}

.zxy-footer .footer-box .right-icon a {
  width: 30px;
  height: 30px;
  margin-left: 5px;
}

.zxy-footer .footer-box .right-icon a img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .zxy-footer .footer-box {

    flex-direction: column;
  }

  .zxy-footer .footer-box .left {
    font-size: 14px;
    margin-bottom: 10px;
    text-align: center;
  }
}

/* zxy-footer */



/* Backto Up */

.progress-wrap {
  position: fixed;
  right: 5px;
  bottom: 5px;
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(var(--color-two-rgb), 0.3);
  /* box-shadow: inset 0 0 0 2px rgba(223, 10, 10, 0.3); */
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  transform: translateY(15px);
  -webkit-transform: translateY(15px);
  -moz-transform: translateY(15px);
  -ms-transform: translateY(15px);
  -o-transform: translateY(15px);
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  content: '↑';
  font-family: 'FontAwesome';
  text-align: center;
  line-height: 40px;
  font-size: 17px;
  color: #FF650E;
  left: 0;
  top: 0;
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: #FF650E;
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}







/*弹窗*/
.msg-box {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2222;
    background-color: #fff;
    padding: 20px 30px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
    display: none;
}

.msg-box .title {
    font-size: 30px;
    color: #FF650E;
    text-transform: capitalize;
    line-height: 1.2;
    font-weight: bold;
      margin-bottom: 0px;
  padding-bottom: 8px;
  border-bottom: solid 2px #ddd;
  position: relative;
  padding-top: 0;
  margin-top: 0;
  font-weight: 600;
}
.msg-box .title::before {
  content: "";
  width: 110px;
  height: 2px;
  background-color: #FF650E;
  position: absolute;
  left: 0;
  bottom: -2px;
}
.msg-box .clock {
    width: 30px;
    height: 30px;
    background: url(../images/ck-cuo.png) no-repeat center;
    background-size: 24px;
    position: absolute;
    right: 10px;
    top: 6px;
    display: block;
    cursor: pointer;
    transition: all 0.3s;
    transform-origin: center;
    z-index: 6;
}

.msg-box .clock:hover {
    transform: rotate(360deg);
}

#msg-boxbg {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 2221;
}

.msg-from .btm-from{
   width: 100%;
	margin-top:10px;
}
.msg-from .btm-from .wpcf7-quiz-label{
	  display: block;
    line-height: 2;
    color: #444;
    font-size: 14px;
    text-align: left; 
	
}
.msg-from .btm-from input{
	   display: block;
    width: 100%;
    height: 46px;
    line-height: 46px;
    font-size: 14px;
    line-height: 36px;
    border-radius: 5px;
    box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.1);
    color: #0b2b51;
        padding: 0 10px;
        background-color: #f7f7f7;
}
@media screen and (max-width: 992px) {
    .msg-box {
        width: 90%;
            padding: 20px 13px;
    }
.msg-box .title{
     font-size: 24px;
}
}


@media screen and (max-width: 480px) {
    .msg-box {
        width: 98%;
    }
}

/*弹窗*/
/* manufact-box */
.manufact-box {
    background-color: #f1f1f1;
}
.manufact-box ul{
    padding-top:20px;
}
.manufact-box li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    margin-top: 20px;
}

.manufact-box li .img {
    width: 45%;
}

.manufact-box li .img img {
    display: block;
    width: 100%;
    height: auto;
}

.manufact-box li .text-box {
    width: 55%;
    padding-left: 30px;
       padding-right: 10px;
}

.manufact-box li .text-box h3 {
    color: #002c5b;
    line-height: 1.2;
    margin-bottom: 10px;
}

.manufact-box li .text-box p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;

}

@media screen and (max-width: 992px) {
    .manufact-box li .img {
        width: 100%;
    }

    .manufact-box li .text-box {
        width: 100%;
        padding: 25px 20px;
    }

    .manufact-box li .text-box p {
        font-size: 14px;
        text-align: justify;
    }

}


/* manufact-box */