/* ==================== 重置默认样式 start ==================== */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Microsoft YaHei", "微软雅黑", "Microsoft JhengHei", "华文细黑", "STHeiti", "MingLiu";
}
*:before,
*:after {
  vertical-align: middle;
  box-sizing: border-box;
}
html {
  margin: 0 auto;
}
ul,
li,
ol {
  list-style: none;
}
em {
  font-style: normal;
}
img {
  vertical-align: middle;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
  outline: none;
  -webkit-backface-visibility: hidden;
}
a:hover {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  outline: -webkit-focus-ring-color auto 0;
}
button,
input {
  border: 0;
  outline: none;
  background: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
th,
td {
  vertical-align: middle;
}
i {
  font-style: inherit;
}
#map label {
  max-width: initial;
}
#map img {
  max-width: initial;
}
/* ==================== 重置默认样式 end ==================== */
/* ==================== 常用样式 start ==================== */
/* 清除浮动 */
.clearfix {
  display: block;
  zoom: 1;
}
.clearfix:after {
  content: " ";
  display: block;
  font-size: 0;
  height: 0;
  clear: both;
  visibility: hidden;
}
/* bootstart ul */
ul,
h1,
h2,
h3,
h4,
li,
p {
  padding: 0;
  margin: 0;
}
/* 外层容器样式 */
section {
  overflow: hidden;
}
/* 通用正文样式 */
article {
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
  color: #333;
}
/* 图片统一动画 */
.mxw-image {
  overflow: hidden;
}
.mxw-image:hover img {
  transform: scale(1.1);
}
.mxw-image img {
  transition: all 0.4s;
  width: 100%;
}
/* ==================== 常用样式 end ==================== */
/* ==================== 文本行数限制 start ==================== */
.u-line-1 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.u-line-2 {
  -webkit-line-clamp: 2;
}
.u-line-3 {
  -webkit-line-clamp: 3;
}
.u-line-4 {
  -webkit-line-clamp: 4;
}
.u-line-5 {
  -webkit-line-clamp: 5;
}
.u-line-6 {
  -webkit-line-clamp: 6;
}
.u-line-2,
.u-line-3,
.u-line-4,
.u-line-5,
.u-line-6 {
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
/* ==================== 文本行数限制 end ==================== */
/* ==================== flex通用布局 start ==================== */
.u-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.u-flex-wrap {
  flex-wrap: wrap;
}
.u-flex-nowrap {
  flex-wrap: nowrap;
}
.u-flex-col {
  flex-direction: column;
}
.u-grow-1 {
  flex-grow: 1;
}
.u-col-center {
  align-items: center;
}
.u-col-top {
  align-items: flex-start;
}
.u-col-bottom {
  align-items: flex-end;
}
.u-row-center {
  justify-content: center;
}
.u-row-left {
  justify-content: flex-start;
}
.u-row-right {
  justify-content: flex-end;
}
.u-row-between {
  justify-content: space-between;
}
.u-row-around {
  justify-content: space-around;
}
/* ==================== flex通用布局 end ==================== */
/* ==================== 通用布局 start ==================== */
@media screen and (min-width: 1201px) {
  .u-row-2,
  .u-row-3,
  .u-row-4,
  .u-row-5,
  .u-row-6 {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .u-row-2 > .u-col {
    width: 48%;
  }
  .u-row-2 > .u-col:nth-child(2n) {
    margin-left: 4%;
  }
  .u-row-2 > .u-col:nth-child(2) ~ .u-col {
    margin-top: 4%;
  }
  .u-row-3 > .u-col {
    width: 32%;
  }
  .u-row-3 > .u-col:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
  .u-row-3 > .u-col:nth-child(3) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-4 > .u-col {
    width: 23.5%;
    margin-right: 2%;
  }
  .u-row-4 > .u-col:nth-child(4n) {
    margin-right: 0%;
  }
  .u-row-4 > .u-col:nth-child(4) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-5 > .u-col {
    width: 18.4%;
    margin-right: 2%;
  }
  .u-row-5 > .u-col:nth-child(5n) {
    margin-right: 0%;
  }
  .u-row-5 > .u-col:nth-child(5) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-6 > .u-col {
    width: 15%;
    margin-right: 2%;
  }
  .u-row-6 > .u-col:nth-child(6n) {
    margin-right: 0%;
  }
  .u-row-6 > .u-col:nth-child(6) ~ .u-col {
    margin-top: 2%;
  }
}
@media screen and (max-width: 1200px) {
  .u-row-2,
  .u-row-3,
  .u-row-4,
  .u-row-5,
  .u-row-6 {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .u-row-2 .u-col {
    width: 100%;
  }
  .u-row-2 .u-col:nth-child(1) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-3 > .u-col,
  .u-row-4 > .u-col,
  .u-row-5 > .u-col,
  .u-row-6 > .u-col {
    width: 48%;
  }
  .u-row-3 > .u-col:nth-child(2n),
  .u-row-4 > .u-col:nth-child(2n),
  .u-row-5 > .u-col:nth-child(2n),
  .u-row-6 > .u-col:nth-child(2n) {
    margin-left: 4%;
  }
  .u-row-3 > .u-col:nth-child(2) ~ .u-col,
  .u-row-4 > .u-col:nth-child(2) ~ .u-col,
  .u-row-5 > .u-col:nth-child(2) ~ .u-col,
  .u-row-6 > .u-col:nth-child(2) ~ .u-col {
    margin-top: 4%;
  }
}
/* ==================== 通用布局 end ==================== */
/* 容器大小 */
.mxw-box {
  max-width: 1500px;
  margin: 0 auto;
  font-size: 0;
  color: #333;
}
.mxw-box p {
  margin-bottom: 0;
}
.mxw-box a:hover {
  color: #b4a06c;
}
/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1201px) {
  /* pc端固定html标签文字大小(rem适配) */
  html {
    font-size: 60px !important;
  }
}
@media screen and (max-width: 1580px) {
  .mxw-box {
    max-width: 90%;
  }
}
@media screen and (min-width: 1201px) {
  .pc-none,
  .mob-nav {
    display: none !important;
  }
  .mxw-ny-box {
    padding-top: 60px;
    padding-bottom: 100px;
    max-width: 1200px;
    overflow: hidden;
  }
}
@media screen and (max-width: 1280px) {
  .mxw-ny-box {
    max-width: 90%;
  }
}
@media screen and (max-width: 1200px) {
  body {
    margin-top: 50px;
  }
  html {
    font-size: 50px;
  }
  .m-none,
  .pc-nav {
    display: none !important;
  }
  .mxw-box {
    padding: 30px 20px;
    max-width: 100%;
  }
  .mxw-section {
    padding-left: 0;
    padding-right: 0;
  }
  article {
    font-size: 15px;
  }
  .mxw-ny-box {
    max-width: 100%;
  }
}
/* ==================== 页面自定义样式 end ==================== */
/* ==================== 动画 start ==================== */
@keyframes arrowAnimate {
  0% {
    transform: translate(0rem, 0rem);
  }
  50% {
    transform: translate(0rem, -0.1667rem);
  }
  100% {
    transform: translate(0rem, 0rem);
  }
}
/* ==================== 动画 end ==================== */
.product_container {
  width: 100%;
  background: #fff;
  text-align: center;
}
.product_container .title {
  padding-top: 0.825rem;
  color: #181818;
  font-size: 0.495rem;
}
.product_title {
  padding-bottom: 0.7425rem;
}
.product_list {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 3.465rem;
  flex-wrap: wrap;
  margin: 0;
}
.product_list li {
  width: 25%;
  cursor: pointer;
}
.product_list li.mb60 {
  margin-bottom: 0.99rem;
}
.product_list li span {
  font-size: 0.264rem;
  position: relative;
  width: auto;
  display: inline-block;
  margin-left: 0.2475rem;
}
.product_list li span::after {
  content: '';
  display: block;
  /*开始时候下划线的宽度为100%*/
  width: 100%;
  height: 0.0495rem;
  position: absolute;
  bottom: -0.165rem;
  background: #ff6a00;
  transition: all 0.3s ease-in-out;
  /*通过transform的缩放scale来让初始时x轴为0*/
  transform: scale3d(0, 1, 1);
  /*将坐标原点移到元素的中间，以原点为中心进行缩放*/
  transform-origin: 50% 0;
}
.product_list li.active span::after {
  transform: scale3d(1, 1, 1);
}
.product_list li.active {
  color: #ff6a00;
}
.product_list li img {
  height: 0.9405rem;
  width: 0.9405rem;
}
.product_tabs {
  height: 0;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
.product_list_tabs {
  background: #f4f5f7;
  padding: 0.7425rem 3.465rem;
}
.product_list_tabs_item {
  display: flex;
}
.product_lf {
  width: 8.3325rem;
  background-color: #fff;
  position: relative;
  border-radius: 0.066rem;
  margin-right: 1%;
}
.product_lf img {
  width: 100%;
}
.product_list_tabs .pro_txt {
  display: block;
  font-size: 0.231rem;
  width: 100%;
  cursor: pointer;
  padding: 0.25rem 0;
}
.product_list_tabs .pro_txt img {
  width: 0.231rem;
  height: 0.231rem;
  margin-left: 0.165rem;
}
.product_rg li {
  background-color: #fff;
  position: relative;
  border-radius: 0.066rem;
}
.product_rg li {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
}
.product_rg li .image {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product_rg li img {
  width: 100%;
}
.science_product {
  background-color: #f4f5f7;
}
.science_product .mxw-title {
  background: #fff;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  margin-bottom: 0;
}
.science_product .pro_ken {
  padding-top: 0.8333rem;
  padding-bottom: 0.8333rem;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}
.science_product .title {
  font-size: 0.5rem;
  line-height: 1.2;
  margin-bottom: 0.4167rem;
}
.science_product_list {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.science_product_list ul {
  display: flex;
  flex-wrap: wrap;
}
.science_product_list ul li {
  width: 20%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #fff;
}
.science_product_list ul li .img_list {
  border-left: 1px solid #eee;
}
.science_product_list ul li span {
  height: 0.5775rem;
  border: 1px solid #eee;
  width: 100%;
  line-height: 0.5775rem;
  font-size: 0.231rem;
  text-align: center;
  cursor: pointer;
}
.science_product_list ul li span:hover {
  background: #ff6a00;
  color: #fff;
}
.process_container {
  position: relative;
}
.process_container .line {
  height: 0.165rem;
  position: absolute;
  background: #eaeaea;
  bottom: 2.2925rem;
  left: 0;
  width: 100%;
  z-index: 1;
}
.process_list {
  display: flex;
  padding: 0.7425rem 3.465rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.process_list .process_item {
  text-align: center;
  font-size: 0.231rem;
  width: 20%;
}
.process_list .process_item .img_item {
  width: 1.551rem;
  height: 1.551rem;
  margin: auto;
  margin-bottom: 0.33rem;
}
.process_list .process_item .img_item img {
  width: 1.551rem;
  height: 1.551rem;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.process_list .process_item .img_item img:hover {
  transform: rotateY(180deg);
}
.process_list .process_item p {
  margin-top: 0.66rem;
}
.process_list .process_item .line_y {
  width: 0.429rem;
  height: 0.429rem;
  background: #eaeaea;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.process_list .process_item .line_y_little {
  width: 0.231rem;
  height: 0.231rem;
  background: #ff6a00;
  border-radius: 50%;
}
.server_list {
  display: flex;
  padding: 0.7425rem 3.465rem;
  flex-wrap: wrap;
}
.server_list ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.server_list ul li {
  width: 20%;
  height: 4.2075rem;
  margin-left: 0.495rem;
  margin-bottom: 0.495rem;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 0.066rem;
  font-size: 0.297rem;
  transition: all 0.3s;
}
.server_list ul li div {
  width: 5.8575rem;
}
.server_list ul li.m0 {
  margin-left: 0;
}
.server_list ul li:hover {
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
.server_list ul li p {
  margin: 0;
}
.server_list ul li p:last-of-type {
  margin-top: 0.1667rem;
  width: 10px;
  height: 10px;
  background: url(../images/arrow.png) no-repeat center;
  background-size: 100%;
}
.server_list ul li img {
  width: 0.6333rem;
  margin-bottom: 0.4667rem;
}
.about_product {
  background-image: url(../images/aboutUs_bg.png);
  height: 6.5505rem;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about_product .about_txt {
  text-align: center;
  padding: 0.7425rem 3.465rem;
}
.about_product p {
  font-size: 0.231rem;
}
.about_product .tls {
  padding: 0 0.33rem;
  margin: 0 0.33rem;
  border-right: 1px solid #ff6a00;
  border-left: 1px solid #ff6a00;
}
.about_product h2 {
  font-size: 0.495rem;
}
.about_product h3 {
  color: #ff6a00;
  font-size: 0.264rem;
  margin-bottom: 0.495rem;
}
.link_vn {
  content: "";
  display: inline-block;
  margin-top: -3px;
  margin-left: 5px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 0.264rem;
  font-weight: bold;
}
.about_t {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 0.231rem;
  overflow: hidden;
}
.about_t.about_more {
  overflow: initial;
  -webkit-line-clamp: inherit;
}
.msg_container {
  background-image: url(../images/about.png);
  height: 4.3395rem;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}
.msg_container .msg_list {
  padding: 0 3.465rem;
  color: #fff;
  font-size: 0.231rem;
}
.msg_container .msg_list .title {
  font-size: 0.297rem;
}
.msg_container .msg_list .title1 {
  width: 6.765rem;
  margin-top: 0.33rem;
  margin-bottom: 0.495rem;
}
.select_word .word_title {
  color: #181818;
  font-size: 0.495rem;
  text-align: center;
  padding: 0.825rem 0;
}
.select_word .word_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.465rem;
}
.select_word .word_item li {
  width: 20%;
  text-align: center;
  cursor: pointer;
  font-size: 0.231rem;
  color: #181818;
  transition: all 0.1s linear;
  padding-bottom: 0.2475rem;
  position: relative;
}
.select_word .word_item li.active::before {
  width: 100%;
  left: 0;
}
.select_word .word_item li::before {
  content: "";
  position: absolute;
  border-radius: 0;
  width: 0;
  left: 50%;
  bottom: 0;
  border-bottom: 3px solid #ff6a00;
  transition: all 0.3s ease;
}
.select_word .word_item li:hover {
  color: #ff6a00;
}
.word_container {
  background: #fff;
  width: 100%;
  display: none;
}
.word_container.active {
  display: flex;
}
.export_contianer {
  width: 100%;
  background-color: #e0e0e0;
}
.export_img {
  width: 100%;
}
.export_contianer p {
  color: #181818;
  font-size: 0.495rem;
  padding: 0.825rem 0;
  text-align: center;
}
.export_data {
  height: 2.2275rem;
  background: #2c2c2c;
  padding: 0 3.465rem;
  display: flex;
  align-items: center;
}
.export_data .eport_list {
  display: flex;
  width: 100%;
}
.export_data .eport_list p {
  margin: 0;
}
.eport_list .export_data_item {
  color: #fff;
  width: 25%;
  padding-left: 0.7425rem;
  border-left: 1px solid #fff;
}
.eport_list .export_data_item .title1 {
  font-size: 0.231rem;
}
.eport_list .export_data_item .title2 {
  font-size: 0.396rem;
}
.eport_list .export_data_item .title2 span {
  font-size: 0.693rem;
}
.word_container .word_lf .word_lf_big {
  width: 15.84rem;
  height: 4.6695rem;
}
.word_container .word_lf .word_lf_bottom {
  display: flex;
  margin-left: 3.96rem;
}
.word_container .word_lf .word_lf_bottom img {
  width: 2.97rem;
  height: 1.5675rem;
  border-right: 1px solid #efefef;
}
.word_rg_item {
  display: flex;
}
.word_rg_item img {
  width: 6.1875rem;
  height: 2.0955rem;
  border: 1px solid #efefef;
}
.word_rg_item img:hover {
  border-color: #ff6a00;
}
.new_container .new_list {
  display: flex;
  align-items: flex-start;
}
.new_lf {
  width: 9.075rem;
  margin-right: 0.4333rem;
  flex-shrink: 0;
}
.new_lf .image {
  border: 1px solid #efefef;
}
.new_lf img {
  width: 100%;
}
.new_list p {
  margin: 0;
}
.new_lf .new_title {
  background: #252525;
  color: #fff;
  text-align: left;
  padding: 0.4167rem 0.6667rem;
}
.new_rg {
  flex-grow: 1;
  min-width: 0;
}
.new_rg .new_item {
  border: 1px solid #efefef;
  padding: 0.45rem 0.3333rem;
  text-align: left;
}
.new_rg .new_item .line {
  height: 0.0165rem;
  background: #efefef;
  width: 100%;
  margin-bottom: 0.33rem;
}
.new_item h3 {
  font-size: 0.2333rem;
  margin: 0;
  line-height: 1.2;
  color: #181818;
}
.new_item p:first-of-type {
  font-size: 0.2rem;
  color: #999999;
  margin-top: 0.2rem;
  line-height: 2;
  margin-bottom: 0.4167rem;
}
.new_item .time {
  font-size: 12px;
  color: #999;
  line-height: 1.2;
}
/* ==================== 新闻中心 start ==================== */
@media screen and (min-width: 1201px) {
  .new_container {
    overflow: hidden;
    padding-top: 50px;
  }
  .new_container .new_rg .new_item {
    width: 48.5%;
  }
  .new_container .new_rg .new_item:nth-child(2n) {
    margin-left: 3%;
  }
  .new_container .new_rg .new_item:nth-child(2) ~ .new_item {
    margin-top: 0.3333rem;
  }
}
@media screen and (max-width: 1200px) {
  .new_container {
    overflow: hidden;
    padding-top: 0.6rem;
  }
  .new_container .mxw-title {
    margin-bottom: 0;
  }
  .new_container .new_list {
    flex-wrap: wrap;
  }
  .new_container .new_lf {
    width: 100%;
    margin-bottom: 0.4rem;
  }
  .new_container .new_lf .new_title {
    padding: 0.3rem 0.4rem;
  }
  .new_container .new_lf .new_title .title1 {
    font-size: 0.28rem;
    font-weight: bold;
  }
  .new_container .new_lf .new_title .title2 {
    font-size: 0.24rem;
    opacity: 0.8;
  }
  .new_container .new_rg .new_item {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
  }
  .new_container .new_rg .new_item .line {
    margin-bottom: 0.2rem;
  }
  .new_container .new_rg .new_item p:first-of-type {
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
  }
  .new_container .new_rg .new_item:nth-child(1) ~ .new_item {
    margin-top: 0.4rem;
  }
}
/* ==================== 新闻中心 end ==================== */
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ellipsis_wrap {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.ellipsis_wrap.ellipsis_wrap3 {
  -webkit-line-clamp: 3;
}
.new_lf .new_title .title1 {
  font-size: 0.2333rem;
  margin-bottom: 10px;
  line-height: 1.2;
}
.new_lf .new_title .title2 {
  font-size: 0.2rem;
  line-height: 1.2;
}
.all_server_list {
  width: 100%;
  border-top: 1px solid #efefef;
  display: flex;
  flex-wrap: wrap;
}
.server_item {
  position: relative;
  display: flex;
  justify-content: flex-end;
  border-bottom: 1px solid #efefef;
  border-right: 1px solid #efefef;
  overflow: hidden;
}
.ace-col-12 {
  flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
}
.server_bg {
  width: 100%;
  position: absolute;
  height: 3.069rem;
  transform: scale(1.06);
  background: hsla(0, 0%, 100%, 0);
  opacity: 0;
  transform-origin: 50% 50%;
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.all_server_list .server_item:hover .server_bg {
  opacity: 1;
  transform: scale(1);
}
.server_msg.p21 {
  padding-left: 3.465rem;
}
.server_msg {
  width: 100%;
  text-align: left;
  padding: 0.66rem;
  position: relative;
  z-index: 2;
}
.server_msg .server_title {
  color: #181818;
  font-size: 0.297rem;
  font-weight: bold;
}
.server_msg .server_title2 {
  color: #999;
  font-size: 0.231rem;
  margin-top: 0.2475rem;
  margin-bottom: 0.495rem;
}
.server_msg .server_title3 {
  color: #ff6a00;
  font-size: 0.231rem;
}
.server1 {
  background-image: url(https://img.alicdn.com/tfs/TB10lhIiODsXe8jSZR0XXXK6FXa-1440-424.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.server2 {
  background-image: url("https://img.alicdn.com/tfs/TB1yoaSWoY1gK0jSZFMXXaWcVXa-1440-424.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.server3 {
  background-image: url("https://img.alicdn.com/tfs/TB174mJWbY1gK0jSZTEXXXDQVXa-1440-424.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.server4 {
  background-image: url("https://img.alicdn.com/tfs/TB1JHvjmWNj0u4jSZFyXXXgMVXa-1440-424.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.ny_container {
  background: #fff;
}
.ny_container ul {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.8975rem;
}
.ny_container ul li {
  margin-left: 1.056rem;
  color: #181818;
  transition: all 0.1s linear;
  font-size: 0.231rem;
  cursor: pointer;
  position: relative;
}
.ny_container ul li.active::before {
  width: 100%;
  left: 0;
}
.ny_container ul li::before {
  content: "";
  position: absolute;
  border-radius: 0;
  width: 0;
  left: 50%;
  bottom: 0;
  border-bottom: 2px solid #ff6a00;
  transition: all 0.3s ease;
}
.ny_container ul li:hover {
  color: #ff6a00;
}
.ny_container ul li.active::before {
  width: 100%;
  left: 0;
}
.ny_list {
  display: none;
}
.ny_list.active {
  display: block;
}
.ny_item {
  padding: 0.825rem 3.465rem;
  display: flex;
}
.ny_item .ny_lf {
  height: 5.544rem;
  width: 6.435rem;
}
.ny_item:hover {
  background: #f4f5f7;
}
.ny_item_rg {
  margin-left: 1.155rem;
}
.ny_item_rg .title {
  font-size: 0.297rem;
  color: #ff6a00;
  margin-top: 0.33rem;
}
.ny_item_rg .lines {
  display: flex;
  align-items: center;
}
.ny_p {
  color: #181818;
  margin: 0.33rem 0;
  font-size: 0.231rem;
}
.ny_item_rg .ny_line {
  width: calc(100% - 0.396rem);
  height: 0.0165rem;
  background: #ff6a00;
}
.ny_item_rg .ny_btn {
  width: 3.465rem;
  height: 0.5775rem;
  line-height: 0.5775rem;
  background: #ff6a00;
  color: #fff;
  text-align: center;
  margin-top: 0.825rem;
  display: block;
}
.contact_container p {
  padding: 0 0.825rem;
  text-align: center;
  font-size: 0.495rem;
}
.contact_list {
  display: flex;
  justify-content: center;
  padding-bottom: 0.825rem;
}
.contact_list .con_nam {
  font-size: 0.297rem;
  display: block;
  width: 100%;
  text-align: center;
}
.contact_list .con_ts p {
  font-size: 0.231rem;
}
.contact_list .con_btn {
  width: 2.64rem;
  height: 0.66rem;
  line-height: 0.66rem;
  text-align: center;
  color: #fff;
  background: #ff6a00;
  font-size: 0.231rem;
  cursor: pointer;
}
.contact_item {
  height: 4.62rem;
  width: 4.7025rem;
  background: #fff;
  margin-left: 0.297rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.form_container {
  background: #fff;
}
.form_container .titles {
  font-size: 0.495rem;
  text-align: center;
  padding-top: 0.7425rem;
}
.form_item {
  display: flex;
  padding: 0 3.465rem;
  margin-top: 0.7425rem;
}
.form_item .form_list {
  width: 50%;
}
.form_lf input::placeholder,
.form_lf textarea::placeholder {
  color: #999;
}
.form_lf input,
.form_lf textarea {
  border: 1px solid #e5e5e5;
  width: 100%;
  padding-left: 0.165rem;
  background: transparent;
  outline: none;
  margin-bottom: 0.2475rem;
  height: 0.5775rem;
  line-height: 0.5775rem;
}
.form_lf .form_btn {
  width: 1.8975rem;
  height: 0.66rem;
  line-height: 0.66rem;
  text-align: center;
  color: #fff;
  background: #ff6a00;
  font-size: 0.231rem;
  margin-top: 0.33rem;
  cursor: pointer;
}
.form_item .form_lf textarea {
  height: 1.7325rem;
}
.form_rg {
  padding-left: 0.66rem;
}
.form_rg h3 {
  font-size: 0.297rem;
  font-weight: bold;
  color: #ff6a00;
}
.form_rg .form_txt {
  font-size: 0.231rem;
}
.form_rg .form_txt a {
  color: #ff6a00;
}
.footer_container {
  background: #252525;
  display: flex;
  align-items: center;
}
.footer_container_flex {
  display: flex;
  align-items: center;
  padding-top: 0.8333rem;
  padding-bottom: 0.8333rem;
}
.footer_container .footer_logo {
  width: 1.353rem;
  margin-right: 1.32rem;
  flex-shrink: 0;
}
.footer_item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.footer_item .footer_list {
  width: 16.66%;
  display: flex;
  flex-wrap: wrap;
}
.footer_item .footer_list a {
  color: #fff;
  font-size: 0.198rem;
  display: block;
  width: 100%;
  margin-bottom: 0.33rem;
  transition: color 0.3s;
}
.footer_item .footer_list a:hover {
  color: #ff6a00;
}
.footer_item .footer_list a:last-of-type {
  margin-bottom: 0;
}
.footer_item .footer_list span {
  font-size: 0.231rem;
  color: #fff;
  display: block;
  width: 100%;
  margin-bottom: 0.495rem;
}
.footer_form .text {
  font-size: 0.2333rem;
  color: #fff;
  margin-bottom: 0.4167rem;
}
.footer_form .footer_input input::placeholder,
.footer_form .footer_area textarea::placeholder {
  color: #fff;
  font-size: 0.198rem;
}
.footer_form .footer_input {
  display: flex;
}
.footer_form .footer_input input:first-of-type {
  margin-right: 0.2475rem;
}
.footer_form .footer_input input {
  width: 2.475rem;
  height: 0.5775rem;
  background: transparent;
  border: 1px solid #676767;
  font-size: 0.198rem;
  color: #fff;
  padding-left: 0.2475rem;
  outline: none;
  display: inline-block;
}
.footer_form .footer_area textarea {
  width: 100%;
  height: 0.825rem;
  margin-top: 0.165rem;
  background: transparent;
  border: 1px solid #676767;
  border-radius: 0.066rem;
  font-size: 0.198rem;
  color: #fff;
  padding-left: 0.2475rem;
  outline: none;
  display: inline-block;
  padding-top: 0.1667rem;
}
.footer_form .footer_btn .btns {
  height: 0.5775rem;
  line-height: 0.5775rem;
  background: #ff6a00;
  width: 100%;
  margin-top: 0.165rem;
  text-align: center;
  font-size: 12px;
  color: #fff;
}
.footer_copy {
  background: #181818;
  width: 100%;
}
.footer_copy > .mxw-box {
  font-size: 0.2rem;
  line-height: 1.2;
  justify-content: space-between;
  display: flex;
  color: #fff;
  align-items: center;
  padding-top: 0.3333rem;
  padding-bottom: 0.3333rem;
  max-width: 63.5416%;
}
.footer_copy p {
  margin: 0;
}
.footer_copy .copy_itm a {
  margin-right: 0.165rem;
}
/* ==================== 通用 - 底部样式 start ==================== */
@media screen and (min-width: 1201px) {
  footer .mxw-box {
    padding-top: 1.6667rem;
    padding-bottom: 1.6667rem;
  }
}
@media screen and (max-width: 1200px) {
  footer .footer_container_flex {
    flex-wrap: wrap;
  }
  footer .footer_logo {
    margin-right: auto!important;
    margin-left: auto!important;
    margin-bottom: 20px;
  }
  footer .footer_form {
    width: 100%;
  }
  footer .footer_form .footer_area textarea {
    height: 80px;
  }
  footer .footer_form .footer_input input {
    width: 48%;
  }
  footer .footer_form .footer_input input:nth-child(1) {
    margin-right: 4%;
  }
  footer .footer_copy > .mxw-box {
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px 20px;
    text-align: center;
  }
  footer .footer_copy .copy_itm {
    margin-top: 20px;
  }
}
/* ==================== 通用 - 底部样式 end ==================== */
/* ==================== 轮播图 start ==================== */
.banner-swiper {
  font-size: 0;
  position: relative;
  width: 100%;
  height: 100%;
  --swiper-navigation-color: #fff;
  /* 单独设置按钮颜色 */
  --swiper-navigation-size: 24px;
  /* 设置按钮大小 */
}
.banner-swiper .swiper-slide img {
  width: 100%;
}
.banner-swiper .swiper-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 20px;
  right: 0;
}
.banner-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 0.5667rem;
  height: 0.0667rem;
  opacity: 1;
  background: #fff;
  margin-left: 3px;
  margin-right: 3px;
  border-radius: 100px;
}
.banner-swiper .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.banner-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ff6a00;
}
.banner-swiper .swiper-button-next,
.banner-swiper .swiper-button-prev {
  width: 2rem;
  height: 1.2667rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.18);
  background-image: none;
}
.banner-swiper .swiper-button-next {
  right: 0px;
}
.banner-swiper .swiper-button-prev {
  left: 0px;
}
@media screen and (max-width: 1200px) {
  .banner-swiper .swiper-pagination {
    bottom: 10px;
  }
  .banner-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 5px;
  }
  .banner-swiper .swiper-button-next,
  .banner-swiper .swiper-button-prev {
    display: none;
  }
}
/* ==================== 轮播图 end ==================== */
/* ==================== 通用标题 start ==================== */
.mxw-title {
  text-align: center;
  overflow: hidden;
  margin-bottom: 0.8333rem;
}
.mxw-title .text1 {
  font-size: 0.5rem;
  line-height: 1.2;
  color: #181818;
  margin-bottom: 0.4167rem;
}
.mxw-title .more {
  font-size: 0.2333rem;
  color: #ff6a00;
  line-height: 1.2;
}
@media screen and (max-width: 1200px) {
  .mxw-title {
    margin-bottom: 0.6rem;
  }
  .mxw-title .text1 {
    font-size: 0.44rem;
    margin-bottom: 0.2rem;
    line-height: 1.2;
    font-weight: bold;
  }
  .mxw-title .more {
    font-size: 0.24rem;
  }
}
/* ==================== 通用标题 end ==================== */
/* ==================== 我要找产品 start ==================== */
.mxw-product {
  background-color: #fff;
  padding-top: 0.8333rem;
}
.mxw-product .cate {
  padding-bottom: 0.6667rem;
}
.mxw-product .cate > .mxw-box {
  padding-left: 2.3333rem;
  padding-right: 2.3333rem;
}
.mxw-product .cate-item {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.mxw-product .cate-item.active .icon,
.mxw-product .cate-item:hover .icon {
  border-color: #ff6a00;
}
.mxw-product .cate-item.active .text,
.mxw-product .cate-item:hover .text {
  color: #ff6a00;
}
.mxw-product .cate-item.active .text:after,
.mxw-product .cate-item:hover .text:after {
  width: 100%;
}
.mxw-product .cate-item .icon {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  background-color: #fff;
  border-radius: 100%;
  border: 1px solid #181818;
  transition: all 0.4s;
  margin-right: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5px;
}
.mxw-product .cate-item .text {
  font-size: 0.2667rem;
  color: #181818;
  line-height: 1.2;
  padding-bottom: 0.1667rem;
  position: relative;
}
.mxw-product .cate-item .text:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #ff6a00;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.4s;
}
.mxw-product .body {
  background-color: #f4f5f7;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.mxw-product .product-swiper {
  max-width: 25rem;
  margin: 0 auto;
}
.mxw-product .itembox {
  display: flex;
  align-items: flex-start;
}
.mxw-product .itembox .left {
  width: 40%;
  flex-shrink: 0;
  margin-right: 0.3333rem;
}
.mxw-product .itembox .right {
  min-width: 0;
  flex-grow: 1;
}
.mxw-product .item {
  background-color: #fff;
  display: flex;
  flex-flow: column;
}
.mxw-product .item .image {
  flex-grow: 1;
  text-align: center;
}
.mxw-product .item .text {
  padding-bottom: 0.5rem;
  text-align: center;
  font-size: 0.2333rem;
  color: #181818;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.mxw-product .item .text::after {
  content: "";
  display: block;
  background: url(../images/icon_7.png) no-repeat center;
  background-size: 100%;
  flex-shrink: 0;
  margin-left: 0.1667rem;
  width: 0.2333rem;
  height: 0.2333rem;
}
@media screen and (min-width: 1201px) {
  .mxw-product .u-row-4 > .u-col:nth-child(4) ~ .u-col {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 1580px) {
  .mxw-product .product-swiper {
    max-width: 90%;
  }
  .mxw-product .itembox .left {
    width: 36%;
  }
  .mxw-product .cate .mxw-box {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-product {
    padding-top: 0.6rem;
  }
  .mxw-product .cate {
    padding-bottom: 0;
  }
  .mxw-product .cate .mxw-box {
    padding-top: 0;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    padding-bottom: 0.6rem;
  }
  .mxw-product .cate-item {
    width: 23.5%;
    margin: 0!important;
    margin-right: 2%!important;
    flex-flow: column;
    align-items: center;
    justify-content: center;
  }
  .mxw-product .cate-item:nth-child(4n) {
    margin-right: 0!important;
  }
  .mxw-product .cate-item:nth-child(4) ~ .cate-item {
    margin-top: 4%!important;
  }
  .mxw-product .cate-item .icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0;
    margin-bottom: 0.2rem;
  }
  .mxw-product .cate-item .text {
    font-size: 0.24rem;
  }
  .mxw-product .body {
    padding-top: 0.4rem;
    padding-bottom: 0.6rem;
  }
  .mxw-product .itembox {
    flex-wrap: wrap;
  }
  .mxw-product .item .text {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
  }
  .mxw-product .left {
    display: none;
  }
}
/* ==================== 我要找产品 end ==================== */
/* ==================== 产品知识 start ==================== */
@media screen and (max-width: 1200px) {
  .mxw-product2 .mxw-title {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }
  .mxw-product2 .science_product_list {
    padding-top: 0;
    padding-bottom: 0;
  }
  .mxw-product2 .science_product_list > .mxw-box {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }
  .mxw-product2 .science_product_list ul li {
    width: 50%;
  }
}
/* ==================== 产品知识 end ==================== */
/* ==================== 生产流程 start ==================== */
.pro_process .process_list {
  padding-left: 0;
  padding-right: 0;
}
.pro_process .process_list .process_item p {
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 1200px) {
  .pro_process .process_container .line {
    display: none;
  }
  .pro_process .process_list {
    flex-wrap: wrap;
    padding-top: 0;
    padding-bottom: 0;
  }
  .pro_process .process_list .process_item {
    width: 50%;
    line-height: 1.8;
  }
  .pro_process .process_list .process_item:nth-child(2) ~ .process_item {
    margin-top: 0.4rem;
  }
  .pro_process .process_list .process_item p {
    margin-top: 0;
  }
  .pro_process .process_list .process_item .line_y {
    display: none;
  }
}
/* ==================== 生产流程 end ==================== */
/* ==================== 生产流程 start ==================== */
.mxw-server .mxw-title {
  margin-bottom: 0;
  background-color: #fff;
  padding-top: 0.8333rem;
  padding-bottom: 0.8333rem;
}
.mxw-server .mxw-title .text1 {
  margin-bottom: 0;
}
.mxw-server .list {
  display: flex;
  align-items: stretch;
}
.mxw-server .list-item {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding-top: 1.1667rem;
  padding-bottom: 1.1667rem;
  transition: all 0.4s;
  text-align: center;
  padding-left: 0.3333rem;
  padding-right: 0.3333rem;
}
.mxw-server .list-item:hover {
  transform: translateY(-0.0833rem);
  box-shadow: 0 0 0.1333rem -0.0333rem rgba(0, 0, 0, 0.2);
}
.mxw-server .list-item:after {
  content: "";
  display: block;
  width: 0.1667rem;
  height: 0.1667rem;
  background: url(../images/arrow.png) no-repeat center;
  background-size: 100%;
}
.mxw-server .list-item .icon {
  width: 0.8333rem;
  flex-shrink: 0;
  margin-bottom: 0.3333rem;
}
.mxw-server .list-item .text {
  font-size: 0.3rem;
  color: #181818;
  line-height: 1.6;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 1201px) {
  .mxw-server .body > .mxw-box {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-server .mxw-title {
    padding: 0.6rem 0.4rem;
  }
  .mxw-server .mxw-title .text1 {
    font-size: 0.36rem;
  }
  .mxw-server .list-item {
    padding: 0.4rem 0.2rem;
    justify-content: flex-start;
  }
  .mxw-server .list-item:after {
    display: none;
  }
  .mxw-server .list-item .icon {
    margin-bottom: 0.1rem;
  }
  .mxw-server .list-item .text {
    font-size: 0.24rem;
    margin-bottom: 0;
  }
}
/* ==================== 生产流程 end ==================== */
/* ==================== 首页 - 关于我们 start ==================== */
.mxw-about {
  overflow: hidden;
  background: url(../images/img01.jpg) no-repeat center bottom #fff;
  text-align: center;
}
.mxw-about .title {
  margin-bottom: 0.3333rem;
}
.mxw-about .title .text1 {
  font-size: 0.5rem;
  color: #181818;
  line-height: 1.2;
  margin-bottom: 0.4167rem;
}
.mxw-about .title .text2 {
  font-size: 0.2667rem;
  color: #ff6a00;
  line-height: 1.4;
}
.mxw-about .desc {
  font-size: 0.2333rem;
  color: #181818;
  line-height: 2.4em;
  margin-bottom: 0.3333rem;
}
.mxw-about .mxw-more {
  font-size: 0.2667rem;
  color: #ff6a00;
  line-height: 1.2;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mxw-about .mxw-more:after {
  content: "";
  display: inline-block;
  width: 0.1667rem;
  height: 0.1667rem;
  border-top: 0.0167rem solid #ff6a00;
  border-right: 0.0167rem solid #ff6a00;
  transform: rotate(135deg);
  margin-top: -0.1667rem;
  margin-left: 0.1667rem;
}
@media screen and (min-width: 1201px) {
  .mxw-about .mxw-box {
    padding-top: 0.8333rem;
    padding-bottom: 0.8333rem;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-about {
    background-size: 100%;
  }
  .mxw-about .title .text1 {
    font-size: 0.44rem;
    margin-bottom: 0.2rem;
    font-weight: bold;
  }
  .mxw-about .title .text2 {
    font-size: 0.24rem;
    line-height: 1.6;
  }
  .mxw-about .desc {
    font-size: 0.24rem;
  }
  .mxw-about .mxw-more {
    font-size: 0.24rem;
  }
  .mxw-about .mxw-more:after {
    width: 0.12rem;
    height: 0.12rem;
    margin-top: 0rem;
  }
}
/* ==================== 首页 - 关于我们 end ==================== */
/* ==================== 首页 - 人物介绍 start ==================== */
.mxw-figure {
  overflow: hidden;
  background-color: #2c2c2c;
}
.mxw-figure > .mxw-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mxw-figure .info {
  width: 410px;
  color: #fff;
}
.mxw-figure .info .text1 {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.mxw-figure .info .text2 {
  font-size: 14px;
  line-height: 1.8;
  text-align: justify;
}
.mxw-figure .info .more {
  margin-top: 30px;
  font-size: 16px;
  color: #ff6a00;
  line-height: 1.2;
  display: block;
}
.mxw-figure .image {
  height: 100%;
}
@media screen and (min-width: 1201px) {
  .mxw-figure {
    height: 263px;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-figure > .mxw-box {
    flex-wrap: wrap;
    padding-bottom: 0;
  }
  .mxw-figure .image {
    margin: 0 auto;
    height: auto;
    margin-top: 0.4rem;
  }
  .mxw-figure .info {
    width: 100%;
  }
  .mxw-figure .info .text1 {
    text-align: center;
    margin-bottom: 0.2rem;
    font-size: 0.32rem;
    font-weight: bold;
  }
  .mxw-figure .info .text2 {
    font-size: 0.26rem;
  }
  .mxw-figure .info .more {
    font-size: 0.24rem;
    text-align: center;
    margin-top: 0.3rem;
  }
}
/* ==================== 首页 - 人物介绍 end ==================== */
/* ==================== 首页 - 合作品牌 start ==================== */
.mxw-brand .title {
  text-align: center;
  font-size: 0.5rem;
  color: #181818;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.mxw-brand .brand-cate {
  margin-bottom: 0.3333rem;
}
.mxw-brand .brand-cate > .mxw-box {
  width: 100%;
  display: flex;
  align-items: center;
}
.mxw-brand .brand-cate .cate-item {
  flex-grow: 1;
  font-size: 0.2333rem;
  color: #181818;
  padding-top: 0.3333rem;
  padding-bottom: 0.3333rem;
  position: relative;
  text-align: center;
  line-height: 1.2;
}
.mxw-brand .brand-cate .cate-item.active:after,
.mxw-brand .brand-cate .cate-item:hover:after {
  width: 100%;
}
.mxw-brand .brand-cate .cate-item:after {
  content: "";
  display: block;
  width: 0;
  height: 0.05rem;
  background-color: #ff6a00;
  position: absolute;
  bottom: 0;
  left: 50%;
  transition: all 0.4s;
  transform: translateX(-50%);
}
.mxw-brand .body {
  background-color: #fff;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.mxw-brand .body .image {
  background-color: #fff;
  border: 0.0167rem solid #efefef;
}
.mxw-brand .body .image img {
  height: 100%;
  width: auto;
}
.mxw-brand .body .image:hover {
  border-color: #ff6a00;
}
.mxw-brand .left {
  width: 50%;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}
.mxw-brand .big-image {
  flex-grow: 1;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 4.6667rem;
}
.mxw-brand .four-image {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}
.mxw-brand .four-image .image {
  width: 3rem;
  height: 1.5833rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mxw-brand .right .image {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media screen and (min-width: 1201px) {
  .mxw-brand {
    padding-top: 0.8333rem;
  }
  .mxw-brand .right {
    width: 38%;
    display: grid;
    grid-template-rows: repeat(3, 33.3333%);
    grid-template-columns: repeat(2, 50%);
  }
}
@media screen and (max-width: 1580px) {
  .mxw-brand .left {
    width: 62%;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-brand {
    padding: 0.6rem 0.4rem;
  }
  .mxw-brand .title {
    line-height: 1.4;
    font-size: 0.36rem;
    font-weight: bold;
    margin-bottom: 0.6rem;
  }
  .mxw-brand .brand-cate > .mxw-box {
    padding: 0;
  }
  .mxw-brand .body {
    flex-wrap: wrap;
  }
  .mxw-brand .body .image {
    height: 1.6rem;
  }
  .mxw-brand .left {
    width: 100%;
  }
  .mxw-brand .right {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .mxw-brand .right .image {
    width: 50%;
  }
  .mxw-brand .four-image {
    flex-wrap: wrap;
  }
  .mxw-brand .four-image .image {
    width: 50%;
  }
  .mxw-brand .big-image {
    height: 2.4rem;
    min-height: inherit;
  }
}
/* ==================== 首页 - 合作品牌 end ==================== */
/* ==================== 首页 - 出口数据 start ==================== */
.mxw-export {
  background-color: #e0e0e0;
}
.mxw-export .title {
  text-align: center;
  font-size: 0.5rem;
  color: #181818;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.mxw-export .map-image {
  text-align: center;
  overflow: hidden;
}
.mxw-export .map-image img {
  width: 23rem;
}
.mxw-export .export-data {
  background-color: #2c2c2c;
  padding-top: 0.5833rem;
}
.mxw-export .export-data .item {
  color: #fff;
  border-left: 0.0167rem solid #fff;
  padding-left: 0.8333rem;
  padding-bottom: 0.5833rem;
}
.mxw-export .export-data .item .text1 {
  font-size: 0.2333rem;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.mxw-export .export-data .item .text2 {
  font-size: 0.4rem;
}
.mxw-export .export-data .item .text2 span {
  font-size: 0.7rem;
  line-height: 1.2;
}
@media screen and (min-width: 1201px) {
  .mxw-export {
    padding-top: 0.8333rem;
  }
  .mxw-export .map-image {
    padding-bottom: 0.5rem;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-export {
    padding-top: 0.6rem;
  }
  .mxw-export .title {
    line-height: 1.4;
    font-size: 0.36rem;
    font-weight: bold;
    margin-bottom: 0.6rem;
  }
  .mxw-export .export-data {
    padding-top: 0;
  }
  .mxw-export .export-data .item {
    padding-left: 0.2rem;
    padding-bottom: 0;
    border-left-color: rgba(255, 255, 255, 0.2);
  }
  .mxw-export .export-data .item .text1 {
    font-size: 0.24rem;
    line-height: 1.5;
    height: 3em;
  }
  .mxw-export .export-data .item .text2 {
    font-size: 0.24rem;
  }
  .mxw-export .export-data .item .text2 span {
    font-size: 0.52rem;
    margin-right: 0.2rem;
  }
}
/* ==================== 首页 - 出口数据 end ==================== */
/* ==================== 首页 - 无忧服务 start ==================== */
.server_container .server_bg {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .server_container {
    padding-bottom: 0.6rem;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }
  .server_container .title {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }
  .server_container .product_title {
    padding-bottom: 0;
  }
  .server_container .server_item {
    width: 100%;
    max-width: 100%;
    flex: inherit;
    border: 0.02rem solid #efefef;
    border-bottom-width: 0;
  }
  .server_container .server_item:last-child {
    border-bottom-width: 0.02rem;
  }
  .server_container .server_msg {
    padding: 0.4rem;
  }
  .server_container .server_msg .server_title2 {
    margin-bottom: 0.2rem;
  }
  .server_container .all_server_list {
    border-top: 0;
  }
}
/* ==================== 首页 - 无忧服务 end ==================== */
/* ==================== 内页 - banner start ==================== */
.ny-banner img {
  width: 100%;
}
@media screen and (min-width: 1201px) {
  .ny-banner .mxw-box {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
/* ==================== 内页 - banner end ==================== */
/* ==================== 内页 - 通用分类 start ==================== */
.ny-cate {
  background-color: #fff;
}
.ny-cate > .mxw-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.ny-cate .cate-item {
  font-size: 0.2333rem;
  color: #181818;
  line-height: 1.2;
  padding-bottom: 0.0833rem;
  position: relative;
  text-align: center;
  padding-left: 0.1667rem;
  padding-right: 0.1667rem;
  margin-right: 1rem;
  margin-bottom: 0.1667rem;
}
.ny-cate .cate-item:last-child {
  margin-right: 0;
}
.ny-cate .cate-item.active,
.ny-cate .cate-item:hover {
  color: #ff6a00;
}
.ny-cate .cate-item.active:after,
.ny-cate .cate-item:hover:after {
  width: 100%;
}
.ny-cate .cate-item::after {
  content: "";
  display: block;
  width: 0;
  height: 0.0167rem;
  background-color: #ff6a00;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s;
}
@media screen and (min-width: 1201px) {
  .ny-cate .mxw-box {
    padding-top: 0.8333rem;
    padding-bottom: 0.6667rem;
  }
}
@media screen and (max-width: 1200px) {
  .ny-cate > .mxw-box {
    padding-bottom: 0.4rem;
  }
  .ny-cate .cate-item {
    width: 32%;
    margin-right: 0;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    margin-bottom: 0.1rem;
  }
  .ny-cate .cate-item:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
}
/* ==================== 内页 - 通用分类 end ==================== */
/* ==================== 内页 - 产品中心 start ==================== */
.ny-product .item {
  display: block;
  padding-top: 0.8333rem;
  padding-bottom: 0.8333rem;
  transition: all 0.4s;
}
.ny-product .item:hover {
  position: relative;
  z-index: 9;
  box-shadow: 0 0 0.2333rem -0.0833rem #ff6a00;
}
.ny-product .item > .mxw-box {
  display: flex;
  align-items: center;
}
.ny-product .item:nth-child(2n-1) {
  background-color: #f4f5f7;
}
.ny-product .item:nth-child(2n) {
  background-color: #fff;
}
.ny-product .image {
  width: 6.5rem;
  flex-shrink: 0;
  margin-right: 1.1667rem;
}
.ny-product .info {
  min-width: 0;
  flex-grow: 1;
}
.ny-product .info .title {
  font-size: 0.3rem;
  color: #ff6a00;
  line-height: 1.2;
}
.ny-product .info .title:after {
  content: "";
  display: block;
  width: 100%;
  background: url(../images/img16.png) no-repeat center left;
  height: 0.3333rem;
  margin-top: 0.3333rem;
  margin-bottom: 0.3333rem;
  background-size: auto 100%;
}
.ny-product .info .tip {
  font-size: 0.2333rem;
  color: #181818;
  line-height: 1.4;
  margin-bottom: 0.8333rem;
}
.ny-product .info .desc {
  font-size: 0.2333rem;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 0.8333rem;
}
.ny-product .info .mxw-btn {
  display: block;
  background-color: #ff6a00;
  color: #fff;
  width: 3.5rem;
  height: 0.5833rem;
  line-height: 0.5833rem;
  text-align: center;
  font-size: 0.2333rem;
}
@media screen and (max-width: 1200px) {
  .ny-product .item {
    width: 100%;
    padding: 0;
  }
  .ny-product .item > .mxw-box {
    flex-wrap: wrap;
    width: 100%;
  }
  .ny-product .item .image {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.4rem;
  }
  .ny-product .info .title {
    font-size: 0.3rem;
    font-weight: bold;
  }
  .ny-product .info .tip {
    margin-bottom: 0.4rem;
  }
  .ny-product .info .desc {
    font-size: 0.24rem;
    line-height: 2;
    margin-bottom: 0.4rem;
  }
  .ny-product .info .mxw-btn {
    width: 100%;
    padding: 0.16rem 0.4rem;
    text-align: center;
    height: auto;
    line-height: inherit;
  }
}
/* ==================== 内页 - 产品中心 end ==================== */
/* ==================== 内页 - 联系我们 start ==================== */
.ny-contact .title {
  font-size: 0.5rem;
  color: #181818;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 0.8333rem;
}
.ny-contact .section1 {
  padding-top: 0.8333rem;
  padding-bottom: 0.9167rem;
}
.ny-contact .section1 .item {
  text-align: center;
  background-color: #fff;
  padding: 0.5rem;
}
.ny-contact .section1 .item .icon {
  display: block;
  margin: 0 auto;
  width: 1rem;
  margin-bottom: 0.3333rem;
}
.ny-contact .section1 .item .text1 {
  font-size: 0.3rem;
  color: #181818;
  line-height: 1.2;
  margin-bottom: 0.4167rem;
}
.ny-contact .section1 .item .desc {
  font-size: 0.2333rem;
  color: #181818;
  margin-bottom: 0.4167rem;
  line-height: 1.8;
  min-height: 3.6em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.ny-contact .section1 .item .desc p {
  width: 100%;
}
.ny-contact .section1 .item .mxw-btn {
  display: block;
  width: 2.6667rem;
  height: 0.6667rem;
  line-height: 0.6667rem;
  text-align: center;
  color: #fff;
  font-size: 0.2333rem;
  background-color: #ff6a00;
  margin-left: auto;
  margin-right: auto;
}
.ny-contact .section2 {
  overflow: hidden;
  background-color: #fff;
  padding-top: 0.8333rem;
}
.ny-contact .section2 .body {
  display: flex;
  align-items: center;
}
.ny-contact .section2 form input::-webkit-input-placeholder,
.ny-contact .section2 form textarea::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #999;
  font-size: inherit;
}
.ny-contact .section2 form input:-moz-placeholder,
.ny-contact .section2 form textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #999;
  font-size: inherit;
}
.ny-contact .section2 form input::-moz-placeholder,
.ny-contact .section2 form textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999;
  font-size: inherit;
}
.ny-contact .section2 form input:-ms-input-placeholder,
.ny-contact .section2 form textarea:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #999;
  font-size: inherit;
}
.ny-contact .section2 form input {
  background-color: #fff;
  border: solid 0.0167rem #e5e5e5;
  outline: none;
  height: 0.6333rem;
  line-height: 0.6333rem;
  padding-left: 0.1667rem;
  padding-right: 0.1667rem;
  font-size: 0.2rem;
  color: #181818;
  display: block;
  margin-bottom: 0.2667rem;
  width: 100%;
}
.ny-contact .section2 form textarea {
  background-color: #fff;
  border: solid 0.0167rem #e5e5e5;
  padding: 0.1667rem;
  color: #181818;
  height: 1.8333rem;
  margin-bottom: 0.4rem;
  display: block;
  width: 100%;
}
.ny-contact .section2 form button {
  display: block;
  width: 2rem;
  height: 0.6667rem;
  line-height: 0.6667rem;
  color: #fff;
  text-align: center;
  font-size: 0.2333rem;
  background-color: #ff6a00;
}
.ny-contact .section2 .desc {
  margin-bottom: 1.1667rem;
}
.ny-contact .section2 .desc .item {
  margin-bottom: 0.3333rem;
}
.ny-contact .section2 .desc .item:last-child {
  margin-bottom: 0rem;
}
.ny-contact .section2 .desc .text1 {
  font-size: 0.3rem;
  font-weight: bold;
  color: #ff6a00;
  margin-bottom: 0.1667rem;
}
.ny-contact .section2 .desc .text2 {
  font-size: 0.2333rem;
  color: #181818;
  text-align: justify;
  line-height: 1.8;
}
.ny-contact .section2 .desc .text2 a {
  color: #ff6a00;
}
@media screen and (max-width: 1200px) {
  .ny-contact .title {
    font-size: 0.36rem;
    font-weight: bold;
    margin-bottom: 0.6rem;
  }
  .ny-contact .section1 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .ny-contact .section1 .item {
    padding: 0.2rem;
  }
  .ny-contact .section1 .item .text1 {
    margin-bottom: 0.2rem;
  }
  .ny-contact .section1 .item .mxw-btn {
    width: 100%;
  }
  .ny-contact .section1 .item:last-child {
    width: 100%;
  }
  .ny-contact .section2 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .ny-contact .section2 form {
    margin-bottom: 0.4rem;
  }
  .ny-contact .section2 form input {
    font-size: 0.28rem;
  }
  .ny-contact .section2 form button {
    width: 100%;
  }
  .ny-contact .section2 .desc {
    margin-bottom: 0;
  }
  .ny-contact .science_product .mxw-title {
    padding-top: 0;
  }
}
/* ==================== 内页 - 联系我们 end ==================== */
