@charset "UTF-8";
/* ==================== 重置默认样式 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 {
  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 ==================== */
#goto-top {
  position: fixed;
  z-index: 10;
  right: 0.3333rem;
  bottom: 10%;
  width: 0.6667rem;
  height: 0.6667rem;
  cursor: pointer;
  background: #cf2020;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: all 0.4s;
  visibility: hidden;
  opacity: 0;
  border: 1px solid #fff;
}
#goto-top.active {
  visibility: visible;
  opacity: 1;
}
#goto-top:after {
  content: "";
  display: block;
  width: 0.2333rem;
  height: 0.2333rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  margin-top: 6px;
}
@media screen and (max-width: 751px) {
  #goto-top {
    width: 30px;
    height: 30px;
    right: 10px;
  }
}
/* ==================== 置顶按钮 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: 751px) {
  .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: 751px) {
  .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 ==================== */
/* ==================== 分页样式 start ==================== */
.mxw-pagination {
  margin-top: 50px;
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.mxw-pagination > a {
  padding: 0 12px;
  font-size: 14px;
  color: #cecece;
  border: 1px solid #cecece;
  display: block;
  margin: 4px;
  border-radius: 4px;
  height: 28px;
  line-height: 28px;
}
.mxw-pagination > a.active,
.mxw-pagination > a:hover {
  background-color: #cf2020;
  color: #fff !important;
  border-color: #cf2020;
}
.mxw-pagination > a:first-child {
  margin-left: 0;
}
.mxw-pagination > a:last-child {
  margin-right: 0;
}
.mxw-pagination > a.mxw-prev,
.mxw-pagination > a.mxw-next {
  background-color: #eaeaea;
  color: #9d9d9d;
  font-size: 13px;
  width: 18px;
  padding: 0;
  text-align: center;
  border-color: #eaeaea !important;
}
.mxw-pagination > a.mxw-prev:hover,
.mxw-pagination > a.mxw-next:hover {
  background-color: #cf2020;
}
@media screen and (max-width: 751px) {
  .mxw-pagination {
    margin-top: 30px;
  }
  .mxw-pagination > a {
    font-size: 12px;
    margin: 2px;
    height: 24px;
    line-height: 20px;
    padding-left: 8px;
    padding-right: 8px;
  }
}
/* ==================== 分页样式 end ==================== */
/* ==================== 头部 start ==================== */
header {
  position: fixed;
  background-color: #fff;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.4s;
  box-shadow: 0px 0px 6px 0px rgba(6, 0, 1, 0.39);
}
header .pc-nav .logo {
  width: 121px;
  flex-shrink: 0;
  padding-top: 7px;
  padding-bottom: 10px;
}
header .pc-menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  flex-grow: 1;
}
header .pc-menu > li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-align: center;
}
header .pc-menu > li.active > a,
header .pc-menu > li:hover > a {
  color: #cf2020 !important;
}
header .pc-menu > li.active > a:before,
header .pc-menu > li:hover > a:before,
header .pc-menu > li.active > a:after,
header .pc-menu > li:hover > a:after {
  background-color: #cf2020;
}
header .pc-menu > li:hover .sub-menu {
  z-index: 9;
  opacity: 1;
  visibility: visible;
}
header .pc-menu > li > a {
  font-size: 16px;
  color: #303030;
  text-align: center;
  line-height: 1.2;
  width: 100%;
  text-transform: uppercase;
  z-index: 9;
  position: relative;
  padding-top: 30px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
}
header .pc-menu > li > a:before,
header .pc-menu > li > a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 20px;
  width: 1px;
  height: 20px;
}
header .pc-menu > li > a:before {
  left: 0;
}
header .pc-menu > li > a:after {
  right: 0;
}
header .sub-menu {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border: 1px solid #eee;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  box-shadow: inset 0px 6px 6px -5px rgba(6, 0, 1, 0.39);
}
header .sub-menu:hover {
  opacity: 1;
  visibility: visible;
}
header .sub-menu .menu-left {
  padding: 40px 50px;
  display: flex;
  flex-wrap: wrap;
  width: 700px;
  flex-shrink: 0;
}
header .sub-menu .menu-left > li {
  text-align: left;
  font-size: 14px;
  color: #cecece;
  line-height: 1.2;
  width: 25%;
}
header .sub-menu .menu-left > li > a {
  text-transform: uppercase;
}
header .sub-menu .menu-left > li > a.active {
  color: #cf2020;
}
header .sub-menu .menu-left > li:nth-child(4) ~ li {
  margin-top: 40px;
}
header .sub-menu .menu-right {
  padding-top: 30px;
  padding-bottom: 20px;
  padding-right: 50px;
  text-align: right;
}
header .sub-menu .menu-right img {
  display: none;
}
header .sub-menu .menu-right img.active {
  display: block;
}
header .three-menu > li {
  font-size: 13px;
  margin-top: 20px;
}
@media screen and (max-width: 1680px) {
  header .pc-nav > .mxw-box {
    max-width: 96%;
  }
}
/* ==================== 头部 end ==================== */
/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 751px) {
  header {
    z-index: 999;
  }
  .mxw-mob-nav .head {
    font-size: 0;
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    max-width: 750px;
    width: 100%;
    transform: translateX(-50%);
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 99;
    background: #fff;
    border-bottom: 1px solid #eee;
  }
  .mxw-mob-nav .logo {
    display: block;
    flex-shrink: 0;
  }
  .mxw-mob-nav .logo img {
    height: 40px;
  }
  .mxw-mob-nav .menu-btn {
    flex-shrink: 0;
    width: 26px;
    height: 20px;
    cursor: pointer;
    outline: none;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }
  .mxw-mob-nav .menu-btn i {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 100px;
    background: #333;
  }
  .mxw-mob-nav .menus-box {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 50%;
    max-width: 450px;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transform: translateX(50%);
  }
  .mxw-mob-nav .menus-box.active {
    visibility: visible;
    opacity: 1;
  }
  .mxw-mob-nav .menus-box.active .menus {
    transform: translateX(0);
  }
  .mxw-mob-nav .menus {
    width: 60%;
    height: 100%;
    margin-right: 0;
    margin-left: auto;
    background: #fff;
    transform: translateX(100%);
    transition: all 0.5s;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
  }
  .mxw-mob-nav .menus > ul {
    width: 100%;
    overflow: auto;
  }
  .mxw-mob-nav .menus > ul > li.active > ul {
    display: block;
  }
  .mxw-mob-nav .menus > ul > li > a {
    display: block;
    width: 100%;
    padding: 15px 18px;
    font-size: 14px;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mxw-mob-nav .menus > ul > li > a.sub:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    border-top: 4px solid #555;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 0;
    margin-left: 10px;
  }
  .mxw-mob-nav .menus > ul > li > ul {
    display: none;
    padding: 0px 24px;
  }
  .mxw-mob-nav .menus > ul > li > ul > li > a {
    font-size: 14px;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    line-height: 36px;
    height: 36px;
    border-bottom: 1px solid #f3f3f3;
  }
  .mxw-mob-nav .menus-head {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F8F8F8;
    border-bottom: 0.6px solid #eee;
    font-size: 16.8px;
    font-weight: bold;
    line-height: 54px;
    height: 54px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .mxw-mob-nav .menus-head .text {
    color: #333;
    line-height: 1.2;
  }
  .mxw-mob-nav .menus-head .mxw-close {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    outline: none;
    position: relative;
    transform: rotate(45deg);
  }
  .mxw-mob-nav .menus-head .mxw-close:before,
  .mxw-mob-nav .menus-head .mxw-close:after {
    content: "";
    display: block;
    border-radius: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #333;
    transform: translate(-50%, -50%);
  }
  .mxw-mob-nav .menus-head .mxw-close:before {
    width: 2px;
    height: 100%;
  }
  .mxw-mob-nav .menus-head .mxw-close:after {
    width: 100%;
    height: 2px;
  }
}
/* ==================== 移动端头部 end ==================== */
/* ==================== 轮播图 start ==================== */
.mxw-banner {
  font-size: 0;
  position: relative;
}
.mxw-banner .swiper-slide {
  overflow: hidden;
}
.mxw-banner .swiper-slide img {
  width: 100%;
}
.mxw-banner .swiper-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 25px;
  right: 50%;
  transform: translateX(50%);
  left: auto;
  padding-right: 40px;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: transparent;
  opacity: 1;
  margin-left: 4px;
  margin-right: 4px;
  border: 1px solid #fff;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
}
.mxw-banner .swiper-button-next,
.mxw-banner .swiper-button-prev {
  width: 1.1667rem;
  height: 1.1667rem;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.18);
  background-image: none;
  outline: none;
  margin-top: 0;
  transform: translateY(-50%);
}
.mxw-banner .swiper-button-next {
  right: 0.75rem;
}
.mxw-banner .swiper-button-prev {
  left: 0.75rem;
}
.mxw-banner .banner-swiper {
  --swiper-navigation-color: #fff;
  /* 单独设置按钮颜色 */
  --swiper-navigation-size: 24px;
  /* 设置按钮大小 */
}
@media screen and (max-width: 751px) {
  .mxw-banner .swiper-pagination {
    padding-right: 0px;
    bottom: 10px;
    max-width: 80%;
  }
  .mxw-banner .swiper-pagination .swiper-pagination-bullet {
    margin: 0 5px;
    font-size: 14px;
    width: 8px;
    height: 8px;
  }
  .mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    font-size: 18px;
  }
  .mxw-banner .swiper-button-next,
  .mxw-banner .swiper-button-prev {
    display: none;
  }
}
/* ==================== 轮播图 end ==================== */
/* ==================== 通用标题 start ==================== */
.mxw-title {
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-align: center;
  overflow: hidden;
  font-size: 0.5rem;
  color: #000;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 2px;
}
@media screen and (max-width: 751px) {
  .mxw-title {
    margin-bottom: 20px;
    font-size: 18px;
  }
}
/* ==================== 通用标题 end ==================== */
/* ==================== 产品中心 start ==================== */
.mxw-product .item {
  display: block;
  position: relative;
  padding: 0 0.8333rem;
}
.mxw-product .item .title {
  position: absolute;
  bottom: 0.6rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.3667rem;
  color: #171717;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.mxw-product .item .title:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 0.2rem solid #cf2020;
  border-top: 0.1rem solid transparent;
  border-bottom: 0.1rem solid transparent;
  margin-right: 0.6667rem;
}
@media screen and (min-width: 751px) {
  .mxw-product .mxw-box {
    padding-top: 1.1667rem;
    padding-bottom: 1.4167rem;
  }
  .mxw-product .item {
    width: 33.33%;
  }
  .mxw-product .item:nth-child(3n-1) {
    margin-left: 0;
    margin-right: 0;
  }
  .mxw-product .item:nth-child(3) ~ .item {
    border-top: 1px dashed #e3e3e3;
    margin-top: 0;
  }
}
@media screen and (max-width: 751px) {
  .mxw-product .item {
    padding-left: 10px;
    padding-right: 10px;
  }
  .mxw-product .item .title {
    position: static;
    font-size: 12px;
    font-weight: bold;
  }
  .mxw-product .item .title:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 6px solid #cf2020;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    margin-right: 10px;
  }
}
/* ==================== 产品中心 end ==================== */

/* ==================== 合作伙伴 start ==================== */

.mxw-coo .item {
  display: block;
  position: relative;
  padding: 0 0.8333rem;
}
.mxw-coo .item .title {
  position: absolute;
  bottom: 0.6rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.3667rem;
  color: #171717;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.mxw-coo .item .title:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 0.2rem solid #cf2020;
  border-top: 0.1rem solid transparent;
  border-bottom: 0.1rem solid transparent;
  margin-right: 0.6667rem;
}
.mxw-coo .item .mxw-image{
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-color: #fff;
  -webkit-background-size: contain;
  background-size: contain;
  background-position: center center;
}
@media screen and (min-width: 751px) {
  .mxw-coo .mxw-box {
    padding-top: 1.1667rem;
    padding-bottom: 1.4167rem;
  }
  .mxw-coo .item {
    width: 23.5%;
  }
  .mxw-coo .item:nth-child(3n-1) {
    margin-left: 0;
    margin-right: 0;
  }
  .mxw-coo .item:nth-child(3) ~ .item {
    /*border-top: 1px dashed #e3e3e3;*/
    margin-top: 0;
  }
}
@media screen and (max-width: 751px) {
  .mxw-coo .item {
    padding-left: 10px;
    padding-right: 10px;
  }
  .mxw-coo .item .title {
    position: static;
    font-size: 12px;
    font-weight: bold;
  }
  .mxw-coo .item .title:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 6px solid #cf2020;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    margin-right: 10px;
  }
}
/* ==================== 合作伙伴 end ==================== */

/* ==================== 关于我们 start ==================== */
.mxw-about .body {
  background: url(../images/img07.jpg) no-repeat center;
  background-size: cover;
}
.mxw-about .desc {
  color: #373737;
  font-size: 0.2667rem;
  line-height: 2.2em;
  letter-spacing: 0.0167rem;
}
.mxw-about .desc strong {
  font-size: 0.3rem;
}
@media screen and (min-width: 751px) {
  .mxw-about .mxw-box {
    padding-top: 1.4333rem;
    padding-bottom: 2rem;
  }
  .mxw-about .body > .mxw-box {
    display: flex;
    align-items: center;
  }
  .mxw-about .mxw-video {
    width: 13.6667rem;
    flex-shrink: 0;
    margin-right: 0.5rem;
  }
  .mxw-about .desc {
    min-width: 0;
    flex-grow: 1;
  }
}
@media screen and (max-width: 751px) {
  .mxw-about .mxw-video {
    width: 100%;
    margin-bottom: 20px;
  }
  .mxw-about .desc {
    font-size: 12px;
  }
  .mxw-about .desc strong {
    font-size: 14px;
  }
}
/* ==================== 关于我们 end ==================== */
/* ==================== 通用 - 视频样式 start ==================== */
.mxw-video {
  width: 100%;
  position: relative;
}
.mxw-video video {
  width: 100%;
  height: 100%;
  display: block;
}
.mxw-video iframe {
  width: 100%;
  height: 300px;
  display: block;
}
.mxw-video.active:after1 {
  opacity: 0;
  visibility: hidden;
}
.mxw-video:after {
  /*content: "";
  display: block;
  !*background: url(../images/img09.png) no-repeat center;*!
  background-size: 0.6833rem 0.6833rem;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 9;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.18);
  transition: all 0.4s;
  top: 0;
  left: 0;*/
}
/* ==================== 通用 - 视频样式 end ==================== */
/* ==================== 案例 start ==================== */
.mxw-cases .itembox {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.mxw-cases .item {
  display: block;
  position: relative;
}
.mxw-cases .info {
  pointer-events: none;
  padding: 0.3333rem;
  z-index: 9;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  transition: background-color 0.4s;
}
.mxw-cases .info .name {
  font-size: 0.2667rem;
  padding-left: 0.1667rem;
  position: relative;
  font-weight: bold;
}
.mxw-cases .info .name:before {
  content: "";
  display: block;
  width: 0.0667rem;
  height: 100%;
  background-color: #cf2020;
  left: 0rem;
  top: 0;
  position: absolute;
}
.mxw-cases .info .mxw-more {
  font-size: 0.2333rem;
  width: 1.5rem;
  height: 0.4167rem;
  line-height: 0.4167rem;
  text-align: center;
  border: 0.0167rem solid;
  border-radius: 0.05rem;
  font-weight: bold;
  margin-right: 0;
  margin-left: auto;
  display: block;
}
@media screen and (min-width: 751px) {
  .mxw-cases .mxw-box {
    padding-top: 1.3333rem;
    padding-bottom: 0.6667rem;
  }
  .mxw-cases .item {
    width: 33.3333%;
  }
  .mxw-cases .item:hover .info {
    background-color: rgba(207, 32, 32, 0.3);
  }
}
@media screen and (max-width: 751px) {
  .mxw-cases .item {
    width: 48%;
  }
  .mxw-cases .item:nth-child(2n) {
    margin-left: 4%;
  }
  .mxw-cases .item:nth-child(2) ~ .item {
    margin-top: 4%;
  }
  .mxw-cases .info {
    height: auto;
    padding: 8px 0;
    position: static;
    color: #333;
  }
  .mxw-cases .info .name {
    font-size: 12px;
  }
  .mxw-cases .info .mxw-more {
    display: none;
  }
}
/* ==================== 案例 end ==================== */
/* ==================== 留言板 start ==================== */
.mxw-message {
  background-color: #eee;
}
.mxw-message .left .head {
  margin-bottom: 0.3333rem;
  display: flex;
  align-items: center;
}
.mxw-message .left .head .img1 {
  margin-right: 1.6667rem;
  width: 4.6667rem;
  flex-shrink: 0;
}
.mxw-message .left .head .qr {
  width: 2rem;
  flex-shrink: 0;
}
.mxw-message .left .title {
  width: 2.6667rem;
  height: 0.8333rem;
  line-height: 0.8333rem;
  color: #fff;
  background-color: #cf2020;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.mxw-message .left .desc {
  font-size: 0.2667rem;
  color: #cf2020;
  line-height: 1.8;
}
.mxw-message .left .desc p {
  margin-bottom: 0.1667rem;
}
.mxw-message .left .desc p:last-child {
  margin-bottom: 0;
}
.mxw-message form {
  display: block;
}
.mxw-message form .top,
.mxw-message form textarea,
.mxw-message form input {
  margin-bottom: 0.1667rem;
}
.mxw-message form select {
  background: #fff url(../images/img21.png) no-repeat 90% center;
  border: none;
  appearance: none;
  cursor: pointer;
}
.mxw-message form select,
.mxw-message form input {
  height: 0.9rem;
  line-height: 0.9rem;
  width: 100%;
}
.mxw-message form select,
.mxw-message form input,
.mxw-message form textarea {
  background-color: #fff;
  font-size: 0.2667rem;
  color: #333;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
  outline: none;
  display: block;
  border: 0;
}
.mxw-message form select::-webkit-input-placeholder,
.mxw-message form input::-webkit-input-placeholder,
.mxw-message form textarea::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #d1d1d1;
}
.mxw-message form select:-moz-placeholder,
.mxw-message form input:-moz-placeholder,
.mxw-message form textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #d1d1d1;
}
.mxw-message form select::-moz-placeholder,
.mxw-message form input::-moz-placeholder,
.mxw-message form textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #d1d1d1;
}
.mxw-message form select:-ms-input-placeholder,
.mxw-message form input:-ms-input-placeholder,
.mxw-message form textarea:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #d1d1d1;
}
.mxw-message form textarea {
  width: 100%;
  height: 2rem;
  resize: none;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}
.mxw-message form .submit {
  width: 100%;
  height: 0.6667rem;
  line-height: 0.6667rem;
  color: #fff;
  font-size: 0.2667rem;
  text-transform: uppercase;
  letter-spacing: 0.0333rem;
  background-color: #cf2020;
  display: block;
  cursor: pointer;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .mxw-message .mxw-box {
    padding-top: 0.8333rem;
    padding-bottom: 1.1667rem;
    display: flex;
    align-items: center;
  }
  .mxw-message .left {
    margin-right: 0.3333rem;
    min-width: 0;
    flex-grow: 1;
  }
  .mxw-message .left .desc {
    max-width: 6.6667rem;
  }
  .mxw-message form {
    width: 12rem;
    flex-shrink: 0;
  }
  .mxw-message form .top {
    display: flex;
    align-items: center;
  }
  .mxw-message form .top input {
    width: 50%;
  }
  .mxw-message form .top input:first-child {
    margin-right: 0.1rem;
  }
}
@media screen and (max-width: 751px) {
  .mxw-message .left {
    margin-bottom: 20px;
  }
  .mxw-message .left .head .img1 {
    margin-right: 0;
    width: auto;
  }
  .mxw-message .left .head .img1 img {
    height: 100px;
  }
  .mxw-message .left .head .qr {
    width: 100px;
    display: block;
  }
  .mxw-message .left .title {
    font-size: 12px;
    padding: 8px 20px;
    height: auto;
    line-height: inherit;
  }
  .mxw-message .left .desc p {
    margin-bottom: 10px;
  }
  .mxw-message form .top {
    margin-bottom: 0;
  }
  .mxw-message form input,
  .mxw-message form textarea,
  .mxw-message form select {
    margin-bottom: 10px;
  }
}
/* ==================== 留言板 end ==================== */
/* ==================== 内页 - 联系我们 start ==================== */
.ny-contact .text1 {
  font-size: 0.2667rem;
  color: #000;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 0.5rem;
}
.ny-contact .itembox {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.ny-contact .item {
  width: 33.3333%;
  position: relative;
  display: flex;
  align-items: center;
}
.ny-contact .item:after {
  content: "";
  display: block;
  width: 0.0167rem;
  height: 0.2667rem;
  background-color: #cbcbcb;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ny-contact .item:nth-child(3n):after,
.ny-contact .item:last-child:after {
  display: none;
}
.ny-contact .item:nth-child(3) ~ .item {
  margin-top: 0.5rem;
}
.ny-contact .item .icon {
  margin-right: 0.1rem;
}
.ny-contact .item .text {
  font-size: 0.2333rem;
  color: #000;
}
.ny-contact .item .text strong {
  color: #cf2020;
  font-weight: 400;
}
.ny-contact .map {
  height: 13.1667rem;
  width: 100%;
  margin-top: 0.4167rem;
}
@media screen and (max-width: 751px) {
  .ny-contact .text1 {
    font-size: 12px;
  }
  .ny-contact .item {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 15px;
  }
  .ny-contact .item:after {
    display: none;
  }
  .ny-contact .item:nth-child(3) ~ .item {
    margin-top: 0;
  }
  .ny-contact .map {
    margin-top: 20px;
    height: 300px;
  }
}
/* ==================== 内页 - 联系我们 end ==================== */
/* ==================== 内页 - 关于我们 start ==================== */
.ny-about .section1 .text {
  margin-top: 0.1667rem;
  font-size: 0.2667rem;
  color: #cf2020;
  line-height: 1.2;
  text-align: center;
}
.ny-about .section2 {
  font-size: 12px;
}
.ny-about .section3 .mxw-video {
  margin-bottom: 0.5rem;
}
.ny-about .section3 iframe {
  width: 100%;
  height: 500px;
}
.ny-about .section3 .desc {
  font-size: 0.2rem;
  line-height: 2.4em;
}
.ny-about .section3 .desc strong {
  font-size: 0.25rem;
}
@media screen and (min-width: 751px) {
  .ny-about .section1 > .mxw-box {
    padding-top: 0.8333rem;
    padding-bottom: 0.4167rem;
  }
  .ny-about .section3 > .mxw-box {
    padding-top: 0.8333rem;
    padding-bottom: 0.4167rem;
  }
}
/* ==================== 内页 - 关于我们 end ==================== */
/* ==================== 内页 - 产品中心 start ==================== */
.ny-product .item {
  display: block;
}
.ny-product .item .image {
  margin-bottom: 0.25rem;
  transition: all 0.4s;
}
.ny-product .item .info .text1 {
  font-size: 0.2667rem;
  color: #303030;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0.1667rem;
}
.ny-product .item .info .text2,
.ny-product .item .info .text3 {
  font-size: 0.2333rem;
  color: #303030;
  line-height: 1.2;
}
.ny-product .item .info .text2:after {
  content: "";
  display: block;
  width: 2.1667rem;
  height: 0.0167rem;
  background-color: #e3e3e3;
  margin-top: 0.0833rem;
  margin-bottom: 0.0833rem;
}
.ny-product .item:hover .image {
  box-shadow: 0.0167rem 0.05rem 0.1167rem 0.0167rem rgba(6, 0, 1, 0.67);
}
.ny-product .item:hover .info .text1 {
  color: #9d373a;
}
@media screen and (min-width: 751px) {
  .ny-product .mxw-title {
    margin-bottom: 1rem;
  }
  .ny-product .item {
    width: 21.5%;
    margin-right: 4.6666%;
  }
  .ny-product .item:nth-child(4n) {
    margin-right: 0;
  }
}
/* ==================== 内页 - 产品中心 end ==================== */
/* ==================== 内页 - 产品详情 start ==================== */
.ny-product-desc {
  overflow: hidden;
}
.ny-product-desc .mxw-product-image {
  position: relative;
  margin-bottom: 1rem;
}
.ny-product-desc .product-big-swiper {
  width: 100%;
  height: 9.6667rem;
}
.ny-product-desc .product-big-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.ny-product-desc .product-min-image {
  padding: 0.3333rem;
  display: flex;
  align-items: center;
  padding-right: 0.5833rem;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.3);
}
.ny-product-desc .product-min-image .product-min-swiper .swiper-slide {
  cursor: pointer;
}
.ny-product-desc .product-min-image .swiper-pagination {
  position: absolute;
  right: 0.1333rem;
  top: 0;
  height: 100%;
  left: auto;
  bottom: auto;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.ny-product-desc .product-min-image .swiper-pagination .swiper-pagination-bullet {
  width: 0.2rem;
  height: 0.2rem;
  border: 0.0167rem solid #fff;
  margin-top: 0.1333rem;
  margin-bottom: 0.1333rem;
  background: none;
  opacity: 1;
}
.ny-product-desc .product-min-image .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
}
.ny-product-desc .text1 {
  font-size: 0.5rem;
  color: #303030;
  line-height: 1.2;
  margin-bottom: 0.3333rem;
}
.ny-product-desc .text2 {
  font-size: 0.2667rem;
  color: #cecece;
  line-height: 1.2;
  margin-bottom: 0.1667rem;
}
.ny-product-desc .text3 {
  font-size: 0.4rem;
  color: #303030;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.ny-product-desc .info {
  display: flex;
  align-items: center;
}
.ny-product-desc .info .image {
  width: 11.6667rem;
  flex-shrink: 0;
  margin-right: 0.3333rem;
}
.ny-product-desc .info .desc {
  min-width: 0;
  flex-grow: 1;
}
.ny-product-desc .info .desc strong {
  font-size: 0.2667rem;
  font-weight: bold;
  line-height: 2.4em;
}
.ny-product-desc .info .desc p {
  font-size: 0.25rem;
  line-height: 2.4em;
  color: #303030;
}
@media screen and (min-width: 751px) {
  .ny-product-desc .product-min-image .product-min-swiper {
    width: 4.3333rem;
    height: 8.3333rem;
  }
}
@media screen and (max-width: 751px) {
  .ny-product-desc .product-big-swiper {
    height: 220px;
  }
  .ny-product-desc .mxw-product-image {
    margin-bottom: 20px;
    position: relative;
    z-index: 99;
  }
  .ny-product-desc .product-min-image {
    position: static;
    background: none;
    bottom: 0;
    top: auto;
    width: 100%;
    height: auto;
    padding: 0;
    margin-top: 15px;
  }
  .ny-product-desc .product-min-image .swiper-pagination {
    display: none;
    bottom: 10px;
    top: auto;
    flex-flow: row wrap;
    height: auto;
    justify-content: center;
    width: 100%;
  }
  .ny-product-desc .product-min-image .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
  .ny-product-desc .text1 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .ny-product-desc .text2 {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .ny-product-desc .text3 {
    font-size: 12px;
  }
  .ny-product-desc .info {
    flex-wrap: wrap;
  }
  .ny-product-desc .info img{
    width: 100%!important;
    height: 100%!important;
  }
  .ny-product-desc .info .image {
    width: 100%;
    margin-bottom: 20px;
  }
}
/* ==================== 内页 - 产品详情 end ==================== */
/* ==================== 内页 - 案例详情 start ==================== */
.ny-cases-desc {
  overflow: hidden;
}
.ny-cases-desc .info p {
  font-size: 0.25rem;
  color: #303030;
  line-height: 2em;
  margin-bottom: 0.25rem;
}
.ny-cases-desc .info p:last-child {
  margin-bottom: 0;
}
.ny-cases-desc .info strong {
  font-size: 0.2667rem;
}
.ny-cases-desc .image2 {
  margin-top: 0.6667rem;
  position: relative;
}
.ny-cases-desc .image2 .text {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 0.2333rem;
  color: #cecece;
  line-height: 1.2;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.0833rem 0.25rem;
}
.ny-cases-desc .mxw-video {
  margin-top: 0.5rem;
}
@media screen and (min-width: 751px) {
  .ny-cases-desc .top {
    display: flex;
    align-items: flex-start;
  }
  .ny-cases-desc .image {
    width: 14.8333rem;
    flex-shrink: 0;
    margin-right: 0.3333rem;
  }
  .ny-cases-desc .right {
    min-width: 0;
    flex-grow: 1;
  }
}
@media screen and (max-width: 751px) {
  .ny-cases-desc .image {
    width: 15.3333rem;
  }
}
@media screen and (max-width: 751px) {
  .ny-cases-desc .image {
    width: 100%;
    margin-bottom: 20px;
  }
  .ny-cases-desc .info p {
    line-height: 1.8;
    font-size: 12px;
  }
  .ny-cases-desc .image2 {
    margin-top: 20px;
  }
  .ny-cases-desc .mxw-video {
    margin-top: 20px;
  }
}
/* ==================== 内页 - 案例详情 end ==================== */
/* ==================== 内页 - 新闻详情 start ==================== */
.ny-news-desc h1,
.ny-news-desc h2 {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1.4;
  color: #303030;
  text-align: center;
}
.ny-news-desc h1 {
  font-weight: bold;
  font-size: 0.4rem;
  margin-bottom: 0.25rem;
}
.ny-news-desc h2 {
  font-weight: 400;
  font-size: 0.2333rem;
  margin-bottom: 0.5rem;
}
.ny-news-desc .article {
  font-size: 14px;
  color: #303030;
  line-height: 2.4em;
}
@media screen and (max-width: 751px) {
  .ny-news-desc h1 {
    font-size: 16px;
  }
  .ny-news-desc h2 {
    font-size: 13px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
  }
  .ny-news-desc .article {
    font-size: 12px;
    line-height: 2.2em;
  }
}
/* ==================== 内页 - 新闻详情 end ==================== */
/* ==================== 内页 - 新闻 start ==================== */
.ny-news .item {
  display: block;
}
.ny-news .item .image {
  margin-bottom: 0.25rem;
  transition: all 0.4s;
}
.ny-news .item .info .text1 {
  font-size: 0.2667rem;
  color: #303030;
  line-height: 1.6;
  text-transform: uppercase;
  margin-bottom: 0.1667rem;
}
.ny-news .item .info .text2 {
  font-size: 0.2333rem;
  color: #303030;
  line-height: 1.6;
}
.ny-news .item .info .mxw-more {
  width: 100px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  color: #cecece;
  font-size: 14px;
  letter-spacing: 1px;
  background-color: #fff;
  border-radius: 4px;
  margin-left: auto;
  margin-right: 0;
  margin-top: 10px;
  border: 1px solid #cecece;
}
.ny-news .item:hover .image {
  box-shadow: 0.0167rem 0.05rem 0.1167rem 0.0167rem rgba(6, 0, 1, 0.67);
}
.ny-news .item:hover .info .text1 {
  color: #9d373a;
}
.ny-news .item:hover .info .mxw-more {
  color: #fff;
  border-color: #cf2020;
  background-color: #cf2020;
}
/* ==================== 内页 - 新闻 end ==================== */
/* ==================== 底部样式 start ==================== */
footer {
  background-color: #fff;
}
footer > .top-body {
  padding-top: 0.3333rem;
  padding-bottom: 0.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
footer > .top-body .left {
  font-size: 0.2rem;
}
footer .mxw-links {
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  font-size: 12px;
  color: #272727;
  line-height: 1.8;
  position: relative;
}
footer .mxw-links .title {
  cursor: pointer;
  font-size: 12px;
  margin-right: 0.1667rem;
}
footer .mxw-links .title img {
  width: 0.2333rem;
  margin-right: 0.0833rem;
}
footer .mxw-links > a {
  display: inline-block;
}
footer .mxw-links > a:hover {
  color: #cf2020 !important;
}
footer .mxw-links > a:last-child:after {
  display: none;
}
footer .mxw-links > a:after {
  content: "";
  display: inline-block;
  width: 0.0167rem;
  height: 0.2333rem;
  background-color: #ddd;
  margin-left: 0.0833rem;
  margin-right: 0.0833rem;
  margin-top: -0.0333rem;
}
footer .mxw-links .mxw-links-online {
  position: absolute;
  top: -0.1667rem;
  left: 0%;
  background: #eee;
  padding: 0.0833rem 0.1667rem;
  color: #333;
  font-size: 0.2rem;
  border: 0.0167rem solid #ddd;
  transform: translate(0%, -100%);
  display: none;
}
footer .mxw-links .mxw-links-online a {
  padding-right: 0.25rem;
  line-height: 2;
}
footer .mxw-links .mxw-links-online a:last-child {
  padding-right: 0;
}
footer .mxw-share {
  position: relative;
  z-index: 232;
}
footer .mxw-share .text1 {
  font-size: 0.2667rem;
  margin-bottom: 0.1667rem;
  color: #3d3d3d;
}
footer .mxw-share .itembox {
  display: flex;
  align-items: center;
}
footer .mxw-share .item {
  display: block;
  position: relative;
  margin-right: 0.2rem;
}
footer .mxw-share .item:hover .qr {
  opacity: 1;
  visibility: visible;
}
footer .mxw-share .item:hover .icon img {
  transform: translateY(-50%);
}
footer .mxw-share .item .qr {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-0.1667rem);
  width: 1.6667rem;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
  transition: all 0.4s;
}
footer .mxw-share .item .qr:hover {
  visibility: visible;
  opacity: 1;
}
footer .mxw-share .item .icon {
  width: 0.5rem;
  height: 0.5rem;
  overflow: hidden;
}
@media screen and (max-width: 751px) {
  footer > .mxw-box {
    font-size: 12px;
  }
  footer .top-body {
    flex-wrap: wrap;
  }
  footer .mxw-share {
    margin-top: 15px;
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  footer .mxw-share .itembox {
    justify-content: center;
  }
}
/* ==================== 底部样式 end ==================== */
/* 容器大小 */
.mxw-box {
  max-width: 1400px;
  margin: 0 auto;
  font-size: 16px;
  color: #333;
}
.mxw-box p {
  margin-bottom: 0;
}
.mxw-box a:hover {
  color: #cf2020;
}
/* 内页 banner */
.ny-banner img {
  width: 100%;
}
/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1680px) {
  /* pc端固定html标签文字大小(rem适配) */
  html {
    font-size: 60px !important;
  }
}
@media screen and (max-width: 1680px) {
  .mxw-box {
    max-width: 86%;
  }
}
@media screen and (min-width: 751px) {
  .pc-none,
  .mob-nav,
  .pc-none {
    display: none !important;
  }
  .mxw-ny-box {
    max-width: 1400px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  body {
    margin-top: 70px;
  }
}
@media screen and (max-width: 1680px) {
  .mxw-ny-box {
    max-width: 90%;
  }
}
@media screen and (max-width: 751px) {
  .mxw-ny-box {
    max-width: 100%;
    font-size: 0;
    padding: 30px 20px;
  }
}
@media screen and (max-width: 751px) {
  body {
    margin-top: 60px;
  }
  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;
  }
}
/* ==================== 页面自定义样式 end ==================== */
/* ==================== 动画 start ==================== */
@keyframes arrowAnimate {
  0% {
    transform: translate(0rem, 0rem);
  }
  50% {
    transform: translate(0rem, -0.1667rem);
  }
  100% {
    transform: translate(0rem, 0rem);
  }
}
/* ==================== 动画 end ==================== */
