body {
  --color: #03b7f4;    
}

/* 手机导航 */
.MobileMain {
  --phone_height: 60px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 8;
  width: 100%;
  background: #fff;
  display: none;
}

.MobileMain .HeaderMobile {
  height: var(--phone_height);
  box-shadow: 0px 0px 0px 1px #eee;
}

.MobileMain .HeaderMobile .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 5vw;
  height: 100%;
}

.MobileMain .HeaderMobile .box .logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.MobileMain .HeaderMobile .box .logo a {
  display: block;
}

.MobileMain .HeaderMobile .box .logo a img {
  height: 32px;
}

.MobileMain .HeaderMobile .box .button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /* -webkit-box-align: center; */
  /* -webkit-align-items: center; */
  /* -ms-flex-align: center; */
  /* align-items: center; */
}

.MobileMain .HeaderMobile .box .button .Language > a {
  font-size: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 0.25rem;
}
.MobileMain .HeaderMobile .box .button .Language > a span {
  margin-left: 6px;
  line-height: 1;
}
.MobileMain .HeaderMobile .box .button .Language,
.MobileMain .HeaderMobile .box .button .menu,
.MobileMain .HeaderMobile .box .button .search {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.MobileMain .HeaderMobile .box .button .search p svg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.MobileMain .HeaderMobile .box .button .search .Close {
  display: none;
}

.MobileMain .HeaderMobile .box .button .search .active .Show {
  display: none;
}

.MobileMain .HeaderMobile .box .button .search .active .Close {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.MobileMain .HeaderMobile .box .button .word {
  font-size: 14px;
  font-weight: bold;
}

.MobileMain .HeaderMobile .box .button .word a {
  color: #206231;
  text-decoration: none;
}

.MobileMain .HeaderMobile .box .button .word a svg {
  display: inline-block;
  vertical-align: sub;
  animation: CallUp 0.5s ease 0s infinite;
  -webkit-animation: CallUp 0.5s ease 0s infinite;
  -moz-animation: CallUp 0.5s ease 0s infinite;
  -o-animation: CallUp 0.5s ease 0s infinite;
}

.MobileMain .HeaderMobile .box .button .word a img {
  position: relative;
}

.MobileMain .HeaderMobile .box .button .call a {
  color: #000;
  font-size: 16px;
}

.MobileMain .HeaderMobile .box .button .search {
  margin-left: 0.5rem;
}

.MobileMain .HeaderMobile .box .button .search .icon2 {
  display: none;
}

.MobileMain .HeaderMobile .box .button .search.active .icon1 {
  display: none;
}

.MobileMain .HeaderMobile .box .button .search.active .icon2 {
  display: block;
}

.MobileMain .HeaderMobile .box .button .menu {
  margin-left: 0.5rem;
}

.MobileMain .HeaderMobile .box .button .menu .menu_btn p {
  position: relative;
}

.MobileMain .HeaderMobile .box .button .menu .menu_btn p span {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--color);
  margin: 8px 0;
}

.MobileMain .HeaderMobile .box .button .menu .menu_btn p span:nth-child(1) {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.MobileMain .HeaderMobile .box .button .menu .menu_btn p span:nth-child(2) {
  opacity: 0;
}

.MobileMain .HeaderMobile .box .button .menu .menu_btn p span:nth-child(3) {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.MobileMain .HeaderMobile .box .button .menu .menu_btn p::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 2px;
  background: var(--color);
  top: 50%;
  margin-top: -1px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.MobileMain .HeaderMobile .box .button .menu .menu_btn p::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 2px;
  background: var(--color);
  top: 50%;
  margin-top: -1px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.MobileMain .HeaderMobile .box .button .menu .menu_btn.active p span {
  opacity: 0;
}

.MobileMain .HeaderMobile .box .button .menu .menu_btn.active p::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.MobileMain .HeaderMobile .box .button .menu .menu_btn.active p::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.MobileNavigation {
  position: absolute;
  z-index: 3;
  top: var(--phone_height);
  background: #fff;
  left: 0;
  width: 100%;
  z-index: 7;
  height: calc(100vh - var(--phone_height));
  display: none;
}

.MobileNavigation .box_scroll {
  max-height: 90%;
  padding: 0.5rem 5vw;
  box-sizing: border-box;
  overflow: scroll;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

.MobileNavigation .box_scroll .box .item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.MobileNavigation .box_scroll .box .item a {
  line-height: 50px;
  display: flex;
  font-size: 16px;
  color: #333;
  justify-content: space-between;
}

.MobileNavigation .box_scroll .box .item a i {
  color: #666;
  font-size: 16px;
}

.MobileNavigation .box_scroll .box .item a p {
  display: flex;
  align-items: center;
}

.MobileNavigation .box_scroll .box .item a p span {
  display: block;
  width: 15px;
  height: 1px;
  background: #666;
  position: relative;
}

.MobileNavigation .box_scroll .box .item a p span::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #666;
  transform: rotate(90deg);
  transition: 0.4s;
}

.MobileNavigation .box_scroll .box .item .active p span::after {
  transform: rotate(180deg);
}

.MobileNavigation .box_scroll .box .item .twoSelect {
  padding-left: 16px;
  display: none;
}

.MobileNavigation .box_scroll .box .item .twoSelect .twoSelectItem a {
  font-size: 15px;
}

.MobileNavigation .box_scroll .box .item .threeSelect {
  padding-left: 16px;
  display: none;
}

.MobileNavigation .box_scroll .box .item .threeSelect .threeSelectItem a {
  font-size: 15px;
}

.MobileNavigation .box_scroll .box .item .fourSelect {
  padding-left: 16px;
  display: none;
}

.MobileNavigation .box_scroll .box .item .fourSelect .fourSelectItem a {
  font-size: 15px;
}

.MobileNavigation .box_scroll .box .item .fourSelect .fourSelectItem .fiveSelect {
  padding-left: 16px;
  display: none;
}

.mobile_search {
  display: none;
  z-index: 4;
  width: 100%;
  position: fixed;
  top: 1.2rem;
  left: 0;
  padding: 0.6rem 0;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.mobile_search form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: min(7rem, 90%);
  margin: 0 auto;
  background: #f5f5f5;
  border-radius: 12px;
}

.mobile_search .input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.mobile_search .input input {
  width: 100%;
  border: none;
  min-height: 60px;
  padding-left: 20px;
  background: none;
  color: #333;
}

.mobile_search .label .btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 60px;
  height: 100%;
  border-radius: 12px;
  background: #d2091d;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .MobileMain {
    display: block;
  }

  .MobileMain .HeaderMobile .box .button .menu,
  .MobileMain .HeaderMobile .box .button .search {
    margin-left: 0.3rem;
  }
}

/* 手机导航 End */