/*header*/
#header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  background-color: rgba(242, 250, 255, 0.9);
}
#header .inner {
  position: relative;
}
#header.fixed {
  position: fixed;
  transition: all 1s;
}
#header.up {
  transform: translateY(-100%);
}
@media only screen and (max-width: 1024px) {
  #header .inner {
    padding: 0.15rem 0;
  }
}
/*logo*/
#logo {
  width: 0.64rem;
  position: relative;
  z-index: 10;
}
#logo a {
  display: block;
  overflow: hidden;
  padding-bottom: 100%;
  position: relative;
}
#logo i,
#logo img {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  left: 0;
  top: 0;
  object-fit: contain;
}
#logo i {
  text-indent: -99999em;
  overflow: hidden;
}
@media only screen and (min-width: 1025px) {
  #logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.18rem 0;
  }
}
@media only screen and (max-width: 750px) {
  #logo {
    width: 0.5rem;
  }
}
/*button*/
#button {
  gap: 0.3rem;
}
@media only screen and (min-width: 1025px) {
  #button {
    position: absolute;
    right: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media only screen and (min-width: 1281px) {
  #button {
    right: -1rem;
  }
}
/*search*/
#search span {
  width: 0.2rem;
  height: 0.2rem;
  background: url(../images/search_01.svg) no-repeat center center;
  background-size: contain;
  display: block;
  cursor: pointer;
}
#search .drop {
  position: absolute;
  right: 0;
  top: 100%;
  padding-top: 0.4rem;
  width: 4rem;
}
#search .input {
  position: relative;
  box-shadow: 0 0.05rem 0.2rem rgba(0, 0, 0, 0.05);
  background-color: #fff;
  padding-right: 2.77777778em;
}
#search .text {
  display: block;
  width: 100%;
  height: 2.77777778em;
  line-height: 1.66666667em;
  padding: 0.55555556em 0.55555556em 0.55555556em 1.11111111em;
}
#search .submit {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 2.77777778em;
  cursor: pointer;
  background: url(../images/search_01.svg) no-repeat center center;
  background-size: auto 40%;
}
@media only screen and (max-width: 1024px) {
  #search .drop {
    padding-top: 0;
  }
}
@media only screen and (max-width: 1024px) {
  #search .drop {
    width: 100%;
  }
}
/*navbtn*/
#navbtn {
  display: none;
}
@media only screen and (max-width: 1024px) {
  /*1024*/
  #navbtn {
    position: relative;
    cursor: pointer;
    width: 0.2rem;
    height: 0.2rem;
    transition: all 0.3s;
    display: block;
    z-index: 10;
    overflow: hidden;
  }
  #navbtn:before,
  #navbtn:after,
  #navbtn i {
    width: 100%;
    height: 0.02rem;
    background-color: #333;
    display: block;
    position: absolute;
    left: 0;
    transition: inherit;
    content: '';
  }
  #navbtn:before {
    top: 0.01rem;
  }
  #navbtn:after {
    bottom: 0.01rem;
  }
  #navbtn i {
    top: 50%;
    transform: translateY(-50%);
  }
  #navbtn.active {
    overflow: visible;
  }
  #navbtn.active:before {
    transform: rotate(45deg);
    top: 50%;
  }
  #navbtn.active:after {
    transform: rotate(-45deg);
    bottom: auto;
    top: 50%;
  }
  #navbtn.active i {
    opacity: 0;
  }
}
/*navi*/
#navi {
  line-height: 1.5em;
  --y: 0;
}
#navi a {
  display: block;
  position: relative;
  white-space: nowrap;
}
#navi .parent {
  padding: 0.35rem 0.45em;
  position: relative;
}
#navi .drop {
  font-size: 0.9em;
  line-height: 1.5em;
  display: none;
}
#navi .drop a {
  padding: 0.5em 0;
}
@media only screen and (min-width: 1025px) {
  #navi {
    opacity: 1;    
    display:flex;
    justify-content:space-between;
    width:100%;
  }
  #navi.show {visibility: visible;}
  #navi .menu {
    gap: 0.3rem;
    width:calc(50% - 1rem);
  }
  #navi .left {
      justify-content:flex-end;
  }
  #navi .drop {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 150%;
    transform: translateX(-50%);
    z-index: 5;
  }
  #navi .drop ul {
    background-color: rgba(255, 255, 255, 0.9);
    text-align: center;
    padding: 0.5em 1em;
    box-shadow: 0 0.05rem 0.2rem rgba(0, 0, 0, 0.05);
  }
  #navi .drop li {
    border-bottom: 0.01rem solid rgba(242, 250, 255, 0.9);
  }
  #navi .drop li:last-child {
    border-bottom: none;
  }
}
@media only screen and (max-width: 1024px) {
  /*1024px*/
  #navi {
    position: fixed;
    font-size: 0.18rem;
    width: 3.5rem;
    max-width: 80%;
    height: calc(100% - 0.94rem);
    background-color: rgba(242, 250, 255, 0.95);
    z-index: 9;
    right: 0;
    top: 0.94rem;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0;
    transition: all 0.3s;
  }
  #navi:not(.active) {
    --x: 100%;
  }
  #navi .menu {
    display: block;
  }
  #navi .right {
      display:none;
  }
  #navi .parent {
    padding: 0 0.5rem;
    position: relative;
  }
  #navi .parent > a {
    padding: 1.25em 0;
    border-bottom: 0.01rem solid rgba(0, 0, 0, 0.05);
  }
  #navi em {
    display: block;
    position: absolute;
    right: 0.3rem;
    width: 3.61111111em;
    height: 5.05555556em;
    z-index: 2;
    top: 0;
    cursor: pointer;
  }
  #navi em:after {
    width: 0.66666667em;
    height: 0.66666667em;
    border-right: 0.05555556em solid #333;
    border-bottom: 0.05555556em solid #333;
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotate(-45deg);
    background-color: transparent;
    margin: -0.77777778em 0 0 -0.77777778em;
    transition: all 0.3s;
  }
  #navi .on {
    background-color: #f9f9f9;
  }
  #navi .on > em:after {
    transform: rotate(45deg);
    margin-top: -1em;
  }
  #navi .drop {
    position: static;
    background-color: transparent;
    box-shadow: none;
    padding: 1em 0 1em 2em;
  }
  #navi .drop a {
    padding: 0.75em 0;
  }
}
@media only screen and (max-width: 750px) {
  #navi {
    top: 0.8rem;
    height: calc(100% - 0.8rem);
  }
}
/*footer*/
#footer {
  background: url(../images/footer_bg.jpg) no-repeat center bottom;
  background-size: cover;
  padding: 0.6rem 0 0.5rem;
  color: #f2f7fb;
  position: relative;
  z-index: 8;
}
/*site-logo*/
#site-logo {
  margin-bottom: 0.5rem;
}
#site-logo img {
  display: block;
  width: 1.22rem;
  height: auto;
  max-width: 50%;
}
@media only screen and (max-width: 750px) {
  #site-logo {
    margin-bottom: 0.3rem;
  }
}
/*menu*/
#menu {
  gap: 2.72727273em;
  line-height: 1.45454545em;
  margin-bottom: 0.55rem;
}
#menu a {
  display: block;
}
#menu a:not(:hover) {
  color: #fff;
}
@media only screen and (max-width: 1024px) {
  #menu {
    gap: 1.5em;
  }
}
@media only screen and (max-width: 750px) {
  #menu {
    font-size: 0.18rem;
    gap: 1em;
    margin-bottom: 0.3rem;
  }
}
/*follow*/
#follow {
  margin-bottom: 0.35rem;
}
#follow li {
  padding: 0 4.5%;
  position: relative;
  width: 3.44rem;
  max-width: 50%;
  text-align: center;
}
#follow li:not(:last-child):after {
  width: 0.02rem;
  border-radius: 0.01rem;
  background-color: rgba(255, 255, 255, 0.2);
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  height: calc(100% - 0.5em);
}
#follow img {
  display: block;
  width: 1rem;
  height: 1rem;
  object-fit: contain;
  margin: 0 auto 0.66666667em;
}
@media only screen and (max-width: 750px) {
  #follow {
    font-size: 0.16rem;
    margin-bottom: 0.3rem;
  }
}
/*bottom*/
#bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0;
}
@media only screen and (max-width: 750px) {
  #bottom {
    padding-top: 0;
  }
}
/*copyright*/
#copyright .page {
  gap: 0.625em;
  margin-bottom: 0.24rem;
}
#copyright .page i {
  width: 0.1875em;
  height: 0.1875em;
  background-color: #fff;
  border-radius: 50%;
  display: block;
}
#copyright .page i:last-child {
  display: none;
}
#copyright .page a {
  display: block;
}
#copyright .page a:not(:hover) {
  color: #fff;
}
#copyright .text a {
  display: inline-block;
}
#copyright .text a:not(:hover) {
  color: #f2f7fb;
}
@media only screen and (max-width: 750px) {
  /*750px*/
  #copyright {
    width: 100%;
  }
  #copyright .page {
    justify-content: center;
  }
  #copyright .text {
    text-align: center;
  }
}
/*infor*/
#infor .item {
  position: relative;
  padding-left: 2.5em;
  color: #fff;
}
#infor .item:before {
  width: 1.1875em;
  height: 1.1875em;
  background: no-repeat center center;
  background-size: contain;
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0.34375em;
}
#infor .item:not(:last-child) {
  margin-bottom: 0.24rem;
}
#infor .tel:before {
  background-image: url(../images/infor_tel.svg);
}
#infor .add:before {
  background-image: url(../images/infor_add.svg);
}
#infor .num {
  font-size: 0.2rem;
  font-weight: 500;
  line-height: 1.5em;
}
@media only screen and (max-width: 750px) {
  /*750px*/
  #infor {
    margin-bottom: 0.3rem;
  }
}
/*banner*/
#banner {
  position: relative;
}
#banner .figure {
  padding-bottom: 4.65rem;
}
#banner .text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  z-index: 2;
}
#banner .text .name {
  font-size: 0.6rem;
  line-height: 1.25em;
}
@media only screen and (max-width: 750px) {
  #banner .figure {
    padding-bottom: 50%;
  }
  #banner .text .name {
    font-size: 0.4rem;
  }
}
/*wrapper*/
#wrapper {
  padding: 1rem 0 1.2rem;
}
#wrapper.masonry {
  background: url(../images/news_masonry_bg.jpg) repeat-y center top;
  background-size: 100% auto;
}
@media only screen and (max-width: 750px) {
  #wrapper {
    padding: 0.65rem 0 0.7rem;
  }
}
/*Pages*/
.Pages {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 0.18rem;
}
.Pages .p_jump,
.Pages .p_cur,
.Pages .p_count,
.Pages .p_total,
.Pages .a_first,
.Pages .a_end {
  display: none;
}
.Pages .p_page {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.Pages .num {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-style: normal;
}
.Pages a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.27777778em;
  min-width: 2.77777778em;
  border-radius: 1.38888889em;
  height: 2.77777778em;
  padding: 0 0.5em;
  position: relative;
  transition: all 0.2s;
  color: #555;
}
.Pages a:hover,
.Pages .a_cur {
  color: #fff;
  background-color: var(--theme-blue);
}
.Pages .a_prev,
.Pages .a_next {
  text-indent: -99999em;
  overflow: hidden;
  border: solid 0.01rem #8c9ba6;
}
.Pages .a_prev:after,
.Pages .a_next:after {
  width: 37.5%;
  padding-bottom: 22.91666667%;
  background: no-repeat center center;
  background-size: contain;
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.Pages .a_prev:hover,
.Pages .a_next:hover {
  border-color: transparent;
}
.Pages .a_prev:hover:after,
.Pages .a_next:hover:after {
  filter: brightness(100);
}
.Pages .a_prev {
  margin-right: 1.11111111em;
}
.Pages .a_prev:after {
  background-image: url(../images/page_prev.svg);
}
.Pages .a_next {
  margin-left: 1.11111111em;
}
.Pages .a_next:after {
  background-image: url(../images/page_next.svg);
}
@media only screen and (max-width: 750px) {
  .Pages {
    font-size: 0.16rem;
  }
  .Pages a {
    margin: 0 0.15em;
  }
  .Pages .a_prev {
    margin-right: 0.5em;
  }
  .Pages .a_next {
    margin-left: 0.5em;
  }
}
/*news-box-style*/
#news-box-style {
  --margin: 0.39rem;
}
@media only screen and (max-width: 750px) {
  #news-box-style {
    --margin: 0;
    margin-bottom: 0.2rem;
  }
}
/*box-item*/
.box-item {
  margin-bottom: 1.04166667%;
}
.box-item .figure {
  padding-bottom: 66.51982379%;
  margin-bottom: 0.2rem;
}
.box-item .text {
  padding: 0 0.2rem;
}
.box-item .title {
  font-size: 0.2rem;
  line-height: 1.6em;
  height: 3.2em;
  font-weight: normal;
  margin-bottom: 0.2rem;
}
.box-item .time {
  display: block;
  color: var(--light-blue);
  font-size: 0.18rem;
  line-height: 1.33333333em;
}
.box-item a {
  display: block;
  overflow: hidden;
  transition: all 0.2s;
}
.box-item a:not(:hover) {
  color: #000;
}
@media only screen and (max-width: 750px) {
  .box-item {
    margin-bottom: 0.4rem;
  }
  .box-item .title {
    height: auto;
    max-height: 3.2em;
  }
}
/*breadcrumb*/
.breadcrumb {
  padding: 0.17rem 0;
  width: 100%;
  z-index: 2;
}
.breadcrumb a {
  display: inline-block;
  vertical-align: middle;
}
.breadcrumb a:not(:hover) {
  color: #999;
}
.breadcrumb a:first-child {
  padding-left: 1.3125em;
  background: url(../images/breadcrumb_home.svg) no-repeat left center;
  background-size: 0.875em auto;
}
.breadcrumb i {
  display: inline-block;
  vertical-align: middle;
  font-family: 'Simsun';
  font-style: normal;
  margin: 0 0.375em;
}
.breadcrumb span {
  display: inline-block;
  vertical-align: middle;
}
/*news-details-page*/
#news-details-page.bg {
  background: url(../images/news_details_bg.png) repeat-y center top;
  background-size: cover;
}
/*button-back*/
.button-back .back {
  color: #8c9ba6;
  border: 0.01rem solid #8c9ba6;
  height: 3.125em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10.625em;
  font-weight: 300;
  transition: all 0.2s;
  gap: 1.25em;
}
.button-back .back:before {
  width: 0.875em;
  height: 0.8125em;
  background: url(../images/button_back.svg) no-repeat center center;
  background-size: contain;
  display: block;
  content: '';
}
.button-back .back:hover {
  color: #fff;
  background-color: var(--theme-blue);
  border-color: transparent;
}
.button-back .back:hover:before {
  filter: invert(1) brightness(100);
}
.button-more .more {
  width: 13.75em;
  height: 3.125em;
  border: 0.01rem solid var(--theme-main);
  color: var(--theme-main);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  transition: all 0.2s;
}
.button-more .more:after {
  width: 1.5em;
  height: 0.6875em;
  background: url(../images/page_next_on.svg) no-repeat center center;
  background-size: contain;
  display: block;
  content: '';
}
.button-more .more:hover {
  background-color: var(--theme-main);
  color: #fff;
  border-color: transparent;
}
.button-more .more:hover:after {
  filter: invert(1) brightness(100);
}
@media only screen and (max-width: 750px) {
  .button-more {
    font-size: 0.14rem;
  }
}
/*news-related*/
.news-related {
  width: 2.8rem;
}
.news-related li {
  margin-bottom: 0.25rem;
}
.news-related .name {
  margin-bottom: 0.2rem;
}
.news-related .figure {
  padding-bottom: 66.78571429%;
  margin-bottom: 0.12rem;
}
.news-related .title {
  font-size: 0.16rem;
  line-height: 1.875em;
  height: 3.75em;
  font-weight: normal;
}
.news-related .date {
  color: #829db2;
  line-height: 1.25em;
}
.news-related a {
  display: block;
  overflow: hidden;
  transition: all 0.2s;
}
.news-related a:not(:hover) {
  color: #000;
}
@media only screen and (max-width: 750px) {
  .news-related {
    width: 100%;
  }
  .news-related .name {
    font-size: 0.24rem;
  }
  .news-related ul {
    display: flex;
    flex-wrap: wrap;
    --margin: 0.15rem;
    width: calc(100% + var(--margin));
  }
  .news-related li {
    width: 33.33%;
    padding-right: var(--margin);
  }
}
/*news-info*/
.news-info {
  width: calc(100% - 2.8rem);
  padding-right: 9.72222222%;
  margin-bottom: 0.4rem;
}
.news-info .top {
  padding-bottom: 0.43rem;
  border-bottom: 0.01rem solid rgba(140, 155, 166, 0.2);
  margin-bottom: 0.43rem;
}
.news-info .top.nbd {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0.25rem;
}
.news-info .title {
  color: #000;
  line-height: 1.35em;
}
.news-info .meta {
  gap: 7.84313725%;
  color: var(--light-blue);
  margin-top: 0.27rem;
}
.news-info .meta span {
  display: block;
}
.news-info .entry * {
  line-height: 1.77777778em;
}
.news-info .list h3 {
  font-size: 0.3rem;
  font-weight: normal;
  margin-bottom: 0.25rem;
  text-align: left;
}
.news-info .list .item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 0.4rem;
}
.news-info .list .figure {
  width: 1.8rem;
}
.news-info .list .figure:after {
  padding-bottom: 122.22222222%;
}
.news-info .list .text {
  width: calc(100% - 2.2rem);
  border-bottom: 0.01rem solid #aec2d1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 0.2rem;
}
.news-info .list h4 {
  font-size: 0.24rem;
  line-height: 1.35em;
  font-weight: normal;
  margin-bottom: 1em;
}
.news-info .list p {
  font-size: 0.18rem;
  line-height: 1.77777778em;
  font-weight: lighter;
}
@media only screen and (max-width: 1024px) {
  .news-info {
    padding-right: 5%;
  }
  .news-info .title {
    font-size: 0.3rem;
  }
}
@media only screen and (max-width: 750px) {
  .news-info {
    padding-right: 0;
    width: 100%;
  }
  .news-info .top {
    padding-bottom: 0.25rem;
    margin-bottom: 0.3rem;
  }
  .news-info .title {
    font-size: 0.26rem;
  }
  .news-info .meta {
    margin-top: 0.2rem;
  }
  .news-info .list h3 {
    font-size: 0.26rem;
  }
  .news-info .list .item {
    margin-bottom: 0.25rem;
  }
  .news-info .list .figure {
    width: 1.5rem;
  }
  .news-info .list .text {
    width: calc(100% - 1.65rem);
  }
  .news-info .list h4 {
    font-size: 0.2rem;
    margin-bottom: 0.5em;
  }
}
/*news-post*/
#news-post {
  padding: 0.7rem 0 1.2rem;
}
#news-post .other {
  border-top: 0.01rem solid rgba(140, 155, 166, 0.2);
  padding-top: 0.37rem;
  width: 100%;
}
#news-post .prne {
  width: calc(100% - 2rem);
  line-height: 2.5em;
}
#news-post .prne i {
  font-style: normal;
  color: #999;
}
@media only screen and (max-width: 750px) {
  #news-post {
    padding: 0.2rem 0 0.65rem;
  }
  #news-post .other {
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding-top: 0.25rem;
  }
  #news-post .prne {
    width: 100%;
  }
  #news-post .button-back {
    width: 100%;
  }
  #news-post .button-back a {
    width: 100%;
  }
}
/*query*/
#query {
  position: relative;
  padding: 1.6rem 0;
  display: flex;
  align-items: center;
}
#query .bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#query .inner {
  position: relative;
  z-index: 2;
}
#query .box {
  width: 6.4rem;
  max-width: 100%;
  background-color: rgba(255, 255, 255, 0.67);
  padding: 0.47rem 0.4rem 0.44rem;
}
#query .top {
  margin-bottom: 0.36rem;
}
#query .intro {
  margin-top: 0.1rem;
}
#query .mid {
  margin-bottom: 0.25rem;
}
#query .name {
  margin-bottom: 0.25rem;
}
#query .name:after {
  background-color: var(--theme-main);
  width: 5.94444444em;
  height: 0.16666667em;
  display: block;
  content: '';
  margin: 0.33333333em auto 0;
}
#query .qrcode {
  width: 1.6rem;
  max-width: 100%;
  padding: 0.07rem;
  background-color: #fff;
  border: 0.01rem solid var(--theme-main);
  overflow: hidden;
  margin: 0 auto 0.07rem;
}
@media only screen and (max-width: 1280px) {
  #query {
    padding: 8.33333333% 0;
  }
}
@media only screen and (max-width: 750px) {
  #query {
    padding: 1rem 0;
  }
  #query .title {
    font-size: 0.36rem;
  }
  #query .box {
    background-color: rgba(255, 255, 255, 0.9);
  }
}
/*inbar*/
#inbar {
  position: relative;
  overflow: hidden;
}
#inbar:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.01rem;
  background-color: #dedede;
}
#inbar .breadcrumb {
  width: auto;
}
@media only screen and (max-width: 750px) {
  #inbar .inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
/*submenu*/
.submenu {
  position: relative;
  line-height: 1.66666667em;
}
.submenu .swiper-slide {
  width: auto;
  padding: 0.2rem 0;
}
.submenu .swiper-slide:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0.16666667em;
  width: 100%;
  background-color: var(--theme-main);
  opacity: 0;
}
.submenu a {
  display: block;
  white-space: nowrap;
  color: #555;
}
.submenu .cur:after {
  opacity: 1;
}
.submenu .cur a {
  color: #000;
}
@keyframes slideLeft {
  0% {
    left: -0.1rem;
    opacity: 1;
  }
  50% {
    left: -0.2rem;
    opacity: 0;
  }
  100% {
    left: -0.1rem;
    opacity: 1;
  }
}
@keyframes slideRight {
  0% {
    right: -0.1rem;
    opacity: 1;
  }
  50% {
    right: -0.2rem;
    opacity: 0;
  }
  100% {
    right: -0.1rem;
    opacity: 1;
  }
}
@media only screen and (max-width: 750px) {
  .submenu {
    padding: 0 0.2rem;
    width: 100%;
  }
  .submenu .swiper-slide {
    padding: 0 0 0.2rem;
  }
  .submenu .arrow {
    position: absolute;
    top: 0.08rem;
    width: 0.2rem;
    height: 0.16rem;
    background: no-repeat center center;
    background-size: contain;
    cursor: pointer;
  }
  .submenu .prev {
    left: -0.1rem;
    background-image: url(../images/arrow_left.svg);
    animation: slideLeft 2s linear 0s infinite;
  }
  .submenu .next {
    right: -0.1rem;
    background-image: url(../images/arrow_right.svg);
    animation: slideRight 2s linear 0s infinite;
  }
}
/*view-more*/
.view-more .go {
  color: var(--theme-main);
  display: flex;
  align-items: center;
  gap: 0.8125em;
}
.view-more .go:after {
  width: 1.5em;
  height: 0.6875em;
  background: url(../images/view_more_01.svg) no-repeat center center;
  background-size: contain;
  display: block;
  content: '';
}
/*columnname*/
.columnname {
  margin-bottom: 1em;
}
@media only screen and (max-width: 750px) {
  .columnname {
    font-size: 0.4rem;
  }
}
/*team-list*/
#team-list {
  --margin: 0;
}
.team-item .job {
  background-color: var(--theme-main);
  color: #fff;
  width: 5.625em;
  height: 6.25em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.team-item .cont {
  width: calc(100% - 5.625em);
  padding: 0.68rem 0.5rem 0.54rem 0.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  height: 100%;
}
.team-item .top {
  margin-bottom: 0.6rem;
}
.team-item .name {
  color: #000;
  font-size: 0.24rem;
  line-height: 1.25em;
  font-weight: normal;
  margin: 0 0 0.25rem;
  position: relative;
}
.team-item .name:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.01rem;
  width: 3.33333333em;
  height: 0.41666667em;
  background-image: linear-gradient(90deg, rgba(var(--rgba), 0.8), transparent);
}
.team-item .name span {
  display: block;
  position: relative;
  z-index: 2;
}
.team-item .intro {
  font-weight: 300;
  color: #333;
}
.team-item .info {
  position: relative;
  height: 100%;
  background-color: #fff;
}
.team-item:nth-child(2n) .info {
  background-color: #fcfaf8;
}
/*team-popup*/
.team-popup .box {
  background-color: #fff;
  padding: 0.63rem 0.6rem 0.83rem;
  width: 8rem;
  max-width: 90%;
}
.team-popup .hgroup {
  font-size: 0.32rem;
  gap: 0.9375em;
  margin-bottom: 1.25em;
}
.team-popup .name {
  color: #000;
  font-size: 1em;
  line-height: 1.25em;
  font-weight: normal;
  position: relative;
}
.team-popup .name:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.01rem;
  width: 2.5em;
  height: 0.3125em;
  background-image: linear-gradient(90deg, rgba(var(--rgba), 0.8), transparent);
}
.team-popup .name span {
  display: block;
  position: relative;
  z-index: 2;
}
.team-popup .job {
  font-size: 0.625em;
  line-height: 1.35em;
  color: var(--theme-main);
}
@media only screen and (max-width: 750px) {
  .team-popup .box {
    padding: 0.5rem 0.45rem 0.6rem;
  }
  .team-popup .hgroup {
    font-size: 0.28rem;
    margin-bottom: 1em;
  }
}
/*swiper-arrows*/
.swiper-arrows .arrow {
  font-size: 0.16rem;
  width: 2.5em;
  border: solid 0.01rem #8c9ba6;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.swiper-arrows .arrow:before {
  display: block;
  content: '';
  padding-bottom: 100%;
}
.swiper-arrows .arrow:after {
  width: 47.36842105%;
  padding-bottom: 28.94736842%;
  background: no-repeat center center;
  background-size: contain;
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.swiper-arrows .arrow:hover {
  border-color: var(--theme-main);
}
.swiper-arrows .abs {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}
.swiper-arrows .prev {
  left: 0;
}
.swiper-arrows .prev:after {
  background-image: url(../images/page_prev.svg);
}
.swiper-arrows .prev:hover:after {
  background-image: url(../images/page_prev_on.svg);
}
.swiper-arrows .next {
  right: 0;
}
.swiper-arrows .next:after {
  background-image: url(../images/page_next.svg);
}
.swiper-arrows .next:hover:after {
  background-image: url(../images/page_next_on.svg);
}
.swiper-arrows .blue:hover {
  background-color: var(--theme-blue);
  border-color: transparent;
}
.swiper-arrows .blue:hover:after {
  filter: invert(1) brightness(100);
}
/*swiper-dots*/
.swiper-dots .swiper-pagination {
  display: flex;
  gap: 0.12rem;
}
.swiper-dots .swiper-pagination-bullet {
  background-color: #cdad7e;
  opacity: 0.2;
  width: 0.1rem;
  height: 0.1rem;
}
.swiper-dots .swiper-pagination-bullet-active {
  opacity: 1;
}
/*news-top*/
#news-top {
  margin-bottom: 6.94444444%;
}
#news-top .figure {
  width: 50%;
}
#news-top .figure:after {
  padding-bottom: 66.66666667%;
}
#news-top .text {
  width: 50%;
  padding: 3.81944444% 5.55555556%;
}
#news-top .date {
  font-size: 0.18rem;
  line-height: 1.33333333em;
  color: #829db2;
  margin-bottom: 3.21428571%;
}
#news-top .title {
  font-size: 0.3rem;
  line-height: 1.4em;
  max-height: 2.8em;
  font-weight: normal;
  margin-bottom: 5.35714286%;
}
#news-top .excerpt {
  max-height: 5.625em;
  font-weight: lighter;
  color: #333;
}
#news-top .info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  transition: all 0.2s;
  background-color: #fff;
  overflow: hidden;
}
#news-top .info:not(:hover) {
  color: #000;
}
#news-top .controls {
  width: 50%;
  position: absolute;
  right: 0;
  bottom: 12.5%;
  padding: 0 5.55555556%;
  z-index: 5;
}
#news-top .swiper-arrows {
  gap: 0.1rem;
}
#news-top .swiper-pagination {
  position: relative;
  color: #829db2;
  font-size: 0.18rem;
  line-height: 1.33333333em;
}
#news-top .swiper-pagination span:first-child {
  color: #555;
  font-size: 1.66666667em;
}
@media only screen and (max-width: 1024px) {
  #news-top .text {
    padding: 3% 5%;
  }
  #news-top .title {
    font-size: 0.26rem;
  }
  #news-top .controls {
    padding: 0 5%;
    bottom: 8%;
  }
}
@media only screen and (max-width: 750px) {
  #news-top .figure {
    width: 100%;
  }
  #news-top .text {
    width: 100%;
    padding: 5% 5% 1rem;
  }
  #news-top .title {
    font-size: 0.22rem;
  }
  #news-top .controls {
    bottom: 0.3rem;
    width: 100%;
  }
}
/*news-list-style*/
#news-list-style {
  margin-bottom: 0.2rem;
  overflow: hidden;
}
/*list-item*/
.list-item {
  padding-bottom: 0.4rem;
  margin-bottom: 0.4rem;
  border-bottom: 0.01rem dashed #aec2d1;
}
.list-item .figure {
  width: 2.88rem;
}
.list-item .figure:after {
  padding-bottom: 66.66666667%;
}
.list-item .text {
  width: calc(100% - 3.28rem);
  padding-right: 17.36111111%;
  position: relative;
}
.list-item .text:after {
  width: 0.4rem;
  height: 0.4rem;
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.18rem;
  border-radius: 50%;
  border: solid 0.01rem #8c9ba6;
  background: url(../images/page_next.svg) no-repeat center center;
  background-size: 52.63157895% auto;
}
.list-item .title {
  font-size: 0.2rem;
  line-height: 1.5em;
  font-weight: normal;
  margin-bottom: 0.16rem;
}
.list-item .excerpt {
  font-weight: lighter;
  height: 3.75em;
  color: #333;
  margin-bottom: 0.26rem;
}
.list-item .date {
  color: #829db2;
  font-size: 0.18rem;
  line-height: 1.33333333em;
}
.list-item a {
  transition: all 0.2s;
}
.list-item a:not(:hover) {
  color: #000;
}
.list-item a:hover .text:after {
  border-color: var(--theme-main);
  background-image: url(../images/page_next_on.svg);
}
@media only screen and (max-width: 1024px) {
  .list-item .text {
    padding-right: 10%;
  }
}
@media only screen and (max-width: 750px) {
  .list-item .figure {
    width: 100%;
    margin-bottom: 0.25rem;
  }
  .list-item .text {
    width: 100%;
    padding: 0;
  }
  .list-item .text:after {
    display: none;
  }
}
@media only screen and (max-width: 750px) {
  #news-waterfall-style {
    overflow: hidden;
    margin-bottom: 0.2rem;
  }
}
/*news-waterfall-style*/
.waterfall-sizer {
  width: 31.52777778%;
}
.waterfall-gutter {
  width: 2.70833333%;
}
@media only screen and (max-width: 750px) {
  .waterfall-sizer {
    width: 48%;
  }
  .waterfall-gutter {
    width: 4%;
  }
}
/*waterfall-item*/
.waterfall-item {
  width: 31.52777778%;
  margin-bottom: 3.81944444%;
}
.waterfall-item .figure {
  padding-bottom: 66.51982379%;
  margin-bottom: 0.22rem;
}
.waterfall-item .text {
  padding: 0 0.2rem;
}
.waterfall-item .title {
  font-size: 0.24rem;
  line-height: 1.5em;
  font-weight: normal;
  margin-bottom: 0.41666667em;
}
.waterfall-item .date {
  color: #829db2;
  font-size: 0.18rem;
  line-height: 1.33333333em;
}
.waterfall-item a {
  display: block;
  overflow: hidden;
}
.waterfall-item a:not(:hover) {
  color: #000;
}
@media only screen and (max-width: 1024px) {
  .waterfall-item .title {
    font-size: 0.2rem;
  }
}
@media only screen and (max-width: 750px) {
  .waterfall-item {
    width: 48%;
    margin-bottom: 0.3rem;
  }
  .waterfall-item .figure {
    margin-bottom: 0.15rem;
  }
  .waterfall-item .text {
    padding: 0;
  }
  .waterfall-item .title {
    font-size: 0.18rem;
  }
  .waterfall-item .date {
    font-size: 0.16rem;
  }
}
/*fullpage*/
@media only screen and (max-width: 1024px) {
  .haspd {
    padding: 0.6rem 0;
  }
  #fullpage .fp-section,
  #fullpage .fp-tableCell {
    height: auto!important;
    display: block;
  }
}
/*slides*/
#slides .figure {
  padding-bottom: 100vh;
}
#slides a {
  display: block;
  overflow: hidden;
}
#slides .swiper-pagination {
  font-size: 0.16rem;
  bottom: 3.125%;
  left: 50%;
  transform: translateX(-50%);
  gap: 1.875em;
}
#slides .swiper-pagination-bullet {
  width: 1.25em;
  height: 1.25em;
  background: url(../images/swiper_pagination_01.svg) no-repeat center center;
  background-size: contain;
  opacity: 0.5;
  display: block;
  position: relative;
  transition: all 0.2s;
}
#slides .swiper-pagination-bullet-active {
  opacity: 1;
}
@media only screen and (max-width: 1024px) {
  #slides .figure {
    padding-bottom: 75%;
  }
}
@media only screen and (max-width: 750px) {
  #slides .swiper-pagination {
    font-size: 0.14rem;
    bottom: 0.25rem;
  }
}
/*upward*/
#upward .figure {
  padding-bottom: 100vh;
}
#upward .text {
  left: 0;
  position: absolute;
  bottom: 23.95833333%;
  width: 100%;
  z-index: 5;
}
#upward .v2 {
  bottom: 16.66666667%;
}
#upward .button-more {
  padding: 0 3.125%;
}
@media only screen and (max-width: 1024px) {
  #upward .figure {
    padding-bottom: 75%;
  }
  #upward .text {
    bottom: 8%;
  }
  #upward .text .inner {
    justify-content: center;
  }
}
/*section-hgroup*/
.section-hgroup {
  font-size: 0.48rem;
  margin-bottom: 0.8rem;
  margin-bottom: 1.66666667em;
  position: relative;
  z-index: 9;
}
.section-hgroup .alias {
  font-size: 1em;
  font-weight: normal;
  line-height: 1.35em;
  color: var(--theme-main);
}
.section-hgroup .name {
  font-size: 0.875em;
  line-height: 1.5em;
  font-weight: normal;
  color: #000;
}
@media only screen and (max-width: 1024px) {
  .section-hgroup {
    font-size: 0.4rem;
  }
}
@media only screen and (max-width: 750px) {
  .section-hgroup {
    font-size: 0.32rem;
    margin-bottom: 1em;
  }
}
/*history*/
#history {
  background: url(../images/history_bg.jpg) no-repeat center center;
  background-size: cover;
  overflow: hidden;
}
#history .list {
  position: relative;
}
#history .list:before {
  width: 100vw;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  background: url(../images/history_line_01.png) no-repeat center center;
  background-size: auto 100%;
  height: 0.1rem;
  content: '';
  display: block;
  position: absolute;
}
#history .swiper {
  overflow: visible;
}
#history .title {
  font-size: 0.6rem;
  line-height: 1.125em;
  color: #d3aa65;
  opacity: 0.4;
  font-weight: normal;
}
#history .intro {
  font-size: 0.2rem;
  line-height: 1.5em;
  color: #000;
}
#history .figure {
  width: 1rem;
}
#history .figure:after {
  padding-bottom: 90%;
}
#history .cont .intro {
  width: calc(100% - 1rem);
}
#history .cont .title {
  max-width: calc(100% - 1.1rem);
}
#history .img {
  object-fit: contain;
}
#history .info {
  --height: 2.1rem;
  position: relative;
  height: var(--height);
  width: 200%;
  margin-right: -100%;
  padding-left: 0.16rem;
  margin-left: 0.04rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 1em;
}
#history .info:before,
#history .info:after {
  content: '';
  display: block;
  position: absolute;
  transform: translate(-0.05px, -0.05px);
}
#history .info:after {
  width: 0.05rem;
  height: 0.05rem;
  background-color: #d3aa65;
  border-radius: 50%;
  left: 0;
  transform: translateX(-50%);
  z-index: 5;
}
#history .info:before {
  height: 100%;
  width: 0.01rem;
  background-color: #d3aa65;
  left: 0;
}
#history .line {
  position: absolute;
  left: 0;
  transform: translateX(-50%);
  width: 0.6rem;
  height: 0.1rem;
  background: url(../images/history_line_02.png) no-repeat center center;
  background-size: auto 100%;
}
#history .swiper-slide {
  overflow: visible;
}
#history .swiper-slide:nth-child(2n) .info {
  margin-bottom: var(--height);
  padding-bottom: 0.3rem;
}
#history .swiper-slide:nth-child(2n) .info:before {
  bottom: -0.05rem;
}
#history .swiper-slide:nth-child(2n) .line {
  bottom: -0.05rem;
}
#history .swiper-slide:nth-child(2n+1) .info {
  margin-top: var(--height);
  padding-top: 0.3rem;
  flex-direction: column-reverse;
}
#history .swiper-slide:nth-child(2n+1) .info:before {
  top: -0.05rem;
}
#history .swiper-slide:nth-child(2n+1) .info:after {
  bottom: 0;
}
#history .swiper-slide:nth-child(2n+1) .line {
  top: -0.05rem;
}
#history .swiper-slide:last-child .info {
  width: 170%;
  margin-right: -70%;
}
@media only screen and (max-width: 1280px) {
  #history {
    display: block;
  }
  #history .info {
    --height: 2.5rem;
  }
  #history .title {
    font-size: 0.5rem;
  }
  #history .intro {
    font-size: 0.18rem;
  }
  #history .swiper-slide:last-child .info {
    width: 140%;
    margin-right: -20%;
    margin-left: -30%;
  }
}
@media only screen and (max-width: 750px) {
  #history .info {
    width: 100%;
    margin-right: 0;
    --height: 2rem;
  }
  #history .swiper-slide:nth-child(n+1) .info {
    width: 100%;
    margin-right: 0;
    margin-left: 0.06rem;
  }
}
/*news*/
#news {
  background: url(../images/news_bg.jpg) no-repeat center center;
  background-size: cover;
  overflow: hidden;
}
#news:after {
  width: 15.625%;
  height: 100%;
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  background-image: linear-gradient(90deg, transparent, #e5f4ff);
  z-index: 5;
}
#news .controls {
  position: absolute;
  right: 0;
  bottom: 0.17rem;
  z-index: 5;
  gap: 0.4rem;
}
#news .list {
  position: relative;
}
#news .swiper {
  overflow: visible;
}
#news .swiper-arrows {
  gap: 0.2rem;
}
#news .figure {
  padding-bottom: 66.66666667%;
  margin-bottom: 0.3rem;
}
#news .text {
  padding: 0 0.5rem 0 0.2rem;
}
#news .title {
  font-size: 0.2rem;
  line-height: 1.6em;
  font-weight: normal;
  margin-bottom: 0.3rem;
}
#news .date {
  font-size: 0.18rem;
  line-height: 1.33333333em;
  color: #829db2;
}
#news a {
  display: block;
  overflow: hidden;
  transition: all 0.2s;
}
#news .swiper-pagination {
  position: relative;
  width: 1.6rem;
  background-color: #d0dde7;
  height: 0.03rem;
}
#news .swiper-pagination-progressbar-fill {
  background-color: #cdad7e;
}
@media only screen and (max-width: 750px) {
  #news .controls {
    gap: 0.2rem;
  }
  #news .swiper-pagination {
    width: 1rem;
  }
  #news .swiper-arrows {
    gap: 0.1rem;
  }
}
/*single-cert*/
.single-cert {
  width: 28.32764505%;
  background: url(../images/single_cert_frame.png) no-repeat center center;
  background-size: 100% 100%;
  position: relative;
}
.single-cert:after {
  padding-bottom: 138.55421687%;
  display: block;
  content: '';
}
.single-cert .cert {
  padding: 4.81927711%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.single-cert .figure {
  padding-bottom: 144%;
}
.single-cert .zoom {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 18.07228916%;
  padding-bottom: 18.07228916%;
  background: rgba(0, 0, 0, 0.2) url(../images/zoom_01.svg) no-repeat center center;
  background-size: 53.33333333% auto;
  cursor: pointer;
}
/*button-play*/
@keyframes play {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.683);
    opacity: 0;
  }
}
.button-play {
  width: 0.6rem;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.button-play:before,
.button-play:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  animation: play 3s ease 0s infinite;
}
.button-play:after {
  animation: play 3s ease 1.5s infinite;
}
.button-play i {
  display: block;
  content: '';
  padding-bottom: 100%;
  background: url(../images/play_01.svg) no-repeat center center;
  background-size: contain;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.button-play .yellow {
  background-image: url(../images/play_02.svg);
}
.product-video {
  padding: 0.02rem;
  position: relative;
}
.product-video:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/video_border.png) no-repeat center center;
  background-size: 100% 100%;
  z-index: 2;
  pointer-events: none;
}
.product-video .video-box {
  mask: url(../images/video_mask.png) no-repeat center center;
  -webkit-mask: url(../images/video_mask.png) no-repeat center center;
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  position: relative;
}
.product-video .video-box:before {
  padding-bottom: 55.81395349%;
  display: block;
  content: '';
}
.product-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
/*moon-white*/
.moon-white {
  background: no-repeat center top;
  background-size: cover;
  padding: 0.8rem 0 1.2rem;
  overflow: hidden;
}
.moon-white .logo {
  margin-bottom: 0.7rem;
}
.moon-white .logo img {
  display: block;
  width: auto;
  height: 0.65rem;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto;
}
.moon-white .info {
  margin-bottom: 4.16666667%;
}
.moon-white .cover {
  width: 52.36111111%;
}
.moon-white .cover .figure {
  width: 137.4005305%;
  margin-left: -7.29442971%;
}
.moon-white .meta {
  width: 47.63888889%;
  background: url(../images/moon_white_frame.png) no-repeat center center;
  background-size: contain;
  position: relative;
}
.moon-white .meta:after {
  padding-bottom: 94.89795918%;
  display: block;
  content: '';
}
.moon-white .box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 7.28862974%;
}
.moon-white .title {
  font-size: 0.24rem;
  line-height: 1.25em;
  font-weight: normal;
  margin-bottom: 0.2rem;
}
.moon-white .specification {
  margin-bottom: 0.15rem;
  overflow: hidden;
}
.moon-white .specification .name {
  font-size: 0.24rem;
  line-height: 1.25em;
  color: #333;
  font-weight: normal;
  padding-left: 1.125em;
  background: url(../images/name_icon_01.svg) no-repeat left center;
  background-size: 0.70833333em auto;
}
.moon-white .specification .intro {
  font-size: 0.24rem;
  line-height: 1.66666667em;
  padding-left: 1.5em;
}
.moon-white .specification .intro p{margin:.05rem 0}
.moon-white .technology .name {
  color: #fff;
  font-size: 0.2rem;
  width: 15em;
  background: url(../images/name_bg_01.png) no-repeat center center;
  background-size: contain;
  height: 1.7em;
  text-align: center;
  line-height: 1.7em;
  font-weight: normal;
  margin-bottom: 0.3rem;
}
.moon-white .technology .cont {
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.05);
  padding-bottom: 0.2rem;
}
.moon-white .technology ul {
  width: 100%;
}
.moon-white .technology li {
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.05);
  font-size: 0.2rem;
  line-height: 1.6em;
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.15rem;
  margin-bottom: 0.15rem;
}
.moon-white .technology li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.moon-white .technology .left {
  color: #0071a3;
}
.moon-white .technology .right {
  width: calc(100% - 1.12rem);
  font-size: 0.18rem;
}
.moon-white .technology .single-cert {
  width: 28.32764505%;
}
.moon-white .other {
  /*gap: 9.375%;*/
  gap:5.51877778%;
}
.moon-white .video {
  width: 59.72222222%;
}
.moon-white .product {
  /*width: 21.25%;*/
  width:34.759%;
  overflow: visible;
}
.moon-white .product .shadow {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 101.63398693%;
  transform: translateX(-50%);
  display: block;
  opacity: 0.2;
  margin-top: -16.0130719%;
  filter: invert(1);
}
.moon-white .button-play {
  width: 7.00934579%;
}
.moon-white .many_pic .desc{text-align:right}
.moon-white .many_pic .pic{display:flex;justify-content: space-between;}
.moon-white .many_pic .pic .single-cert{width: 47%;}
@media only screen and (MIN-width: 1024px) {
.moon-white .many_pic{position: absolute;top: 21%;width: 41%;right: 5%;}
}
@media only screen and (max-width: 1024px) {
  .moon-white .cover {
    width: 100%;
  }
  .moon-white .cover .figure {
    width: auto;
    margin: 0;
  }
  .moon-white .meta {
    width: 100%;
  }
}
@media only screen and (max-width: 750px) {
  .moon-white {
    padding: 0.65rem 0 0.7rem;
  }
  .moon-white .logo {
    margin-bottom: 0.35rem;
  }
  .moon-white .logo img {
    height: 0.5rem;
  }
  .moon-white .title {
    font-size: 0.18rem;
  }
  .moon-white .specification .name {
    font-size: 0.18rem;
  }
  .moon-white .specification .intro {
    font-size: 0.14rem;
  }
  .moon-white .specification .intro p {
    margin: 0.5em 0;
  }
  .moon-white .technology .name {
    font-size: 0.16rem;
  }
  .moon-white .technology .cont {
    padding-bottom: 0.1rem;
  }
  .moon-white .technology li {
    font-size: 0.14rem;
    padding-bottom: 0.1rem;
    margin-bottom: 0.1rem;
  }
  .moon-white .technology .right {
    width: calc(100% - 0.8rem);
  }
  .moon-white .video {
    width: 100%;
  }
  .moon-white .product {
    width: 80%;
    margin: 0 auto;
  }
}
.product-detail #header {
  position: fixed;
}
/*heiwei*/
.heiwei {
  background: no-repeat center top;
  background-size: cover;
  overflow: hidden;
  min-height: 10.6rem;
}
.heiwei .picture {
  width: 58.256%%;
  padding-top:21%;
}
.heiwei .desc{text-align:right; padding-top:3%}
.heiwei .text {
  width: 35.69444444%;
}
.heiwei .box {
  width: 105.05836576%;
}
.heiwei .logo {
  margin-bottom: 0.4rem;
}
.heiwei .logo img {
  display: block;
  height: 1.3rem;
  max-width: 100%;
  object-fit: contain;
}
.heiwei .title {
  color: #d91b8d;
  margin-bottom: 1.14583333em;
}
.heiwei .name {
  margin-bottom: 0.75em;
  background: url(../images/name_icon_02.svg) no-repeat left 0.32291667em;
  background-size: 0.70833333em auto;
  padding-left: 1.16666667em;
}
@media only screen and (max-width: 1280px) {
  .heiwei {
    min-height: 8.49rem;
  }
  .heiwei .picture {
    padding-right: 10%;
  }
}
@media only screen and (max-width: 1024px) {
  .heiwei {
    min-height: 6rem;
  }
  .heiwei .picture {
    padding-right: 11%;
  }
  .heiwei .logo img {
    height: 0.8rem;
  }
  .heiwei .title {
    font-size: 0.4rem;
  }
  .heiwei .name {
    font-size: 0.2rem;
  }
}
@media only screen and (max-width: 750px) {
  .heiwei {
    min-height: 6rem;
    padding: 1rem 0 0.7rem;
  }
  .heiwei .inner {
    flex-direction: column;
    align-items: flex-end;
  }
  .heiwei .picture {
    margin-bottom: 1.5rem;
    width: 95%;
    padding-right: 0;
  }
  .heiwei .text {
    width: 100%;
  }
  .heiwei .logo {
    margin-bottom: 0.2rem;
  }
  .heiwei .title {
    margin-bottom: 1em;
  }
}
/*honor*/
#honor {
  background: url(../images/honor_bg.png) no-repeat center center;
  background-size: cover;
  padding: 0.86rem 0 0.9rem;
  overflow: hidden;
}
#honor .list {
  position: relative;
}
#honor .info {
  padding-bottom: 3.47222222%;
}
#honor .picture {
  width: 68.75%;
  background: url(../images/honor_cert_bg.png) no-repeat center bottom;
  background-size: 100% auto;
}
#honor .picture .frame {
  width: 28.28282828%;
  background: url(../images/honor_cert_frame.png) no-repeat center center;
  background-size: 100% 100%;
  margin: 14.34343434% auto -3.03030303%;
  position: relative;
}
#honor .picture .frame:after {
  display: block;
  padding-bottom: 147.5%;
  content: '';
}
#honor .picture .figure {
  position: absolute;
  left: 8.92857143%;
  top: 0;
  margin-top: 5.35714286%;
  width: 82.14285714%;
}
#honor .picture .figure:after {
  padding-bottom: 147.82608696%;
}
#honor .text {
  width: 31.25%;
  color: #000;
  padding-left: 6.94444444%;
}
#honor .title {
  font-size: 0.2rem;
  line-height: 1.25em;
  font-weight: normal;
  margin-bottom: 0.5em;
}
#honor .title span {
  font-size: 3.6em;
  line-height: 1.5em;
  color: var(--theme-main);
  margin-right: 0.34722222em;
}
#honor .intro {
  font-size: 0.24rem;
  line-height: 1.5em;
}
#honor .swiper-pagination {
  position: relative;
  transform: translateY(0.7rem);
}
@media only screen and (max-width: 1024px) {
  #honor .title span {
    font-size: 3em;
  }
}
@media only screen and (max-width: 750px) {
  #honor .picture {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  #honor .text {
    width: 100%;
    text-align: center;
  }
  #honor .title span {
    font-size: 2.4em;
    line-height: 1em;
  }
  #honor .intro {
    font-size: 0.2rem;
  }
  #honor .swiper-pagination {
    transform: none;
    margin-top: 0.5rem;
    justify-content: center;
  }
}
/*development*/
#development {
  overflow: hidden;
  background: url(../images/development_bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  padding-bottom: 1.1rem;
}
#development .columnname {
  position: absolute;
  left: 50%;
  top: 0.88rem;
  transform: translateX(-50%);
  z-index: 5;
}
#development .list {
  background: url(../images/development_line.jpg) no-repeat center center;
  background-size: contain;
  text-align: center;
  position: relative;
}
#development .list:after {
  display: block;
  content: '';
  padding-bottom: 9.23rem;
}
#development .list .box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
}
#development .list .swiper-slide {
  display: flex;
  justify-content: flex-start;
  height: auto;
  cursor: pointer;
}
#development .list .figure {
  width: 1.22rem;
  border-radius: 50%;
  border: solid 0.03rem #cdad7e;
  opacity: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100%;
  margin-bottom: 0.12rem;
  transition: all 0.2s;
}
#development .list .figure:after {
  padding-bottom: 100%;
}
#development .list .dot {
  width: 0.26rem;
  border-radius: 50%;
  background-color: rgba(232, 223, 208, 0.49);
  position: relative;
  margin: 0 auto 0.06rem;
}
#development .list .dot:before {
  display: block;
  content: '';
  padding-bottom: 100%;
}
#development .list .dot:after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 38.46153846%;
  height: 38.46153846%;
  background-color: var(--theme-main);
  border-radius: 50%;
}
#development .list .year {
  font-size: 0.2rem;
  line-height: 1.35em;
}
#development .list .info {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 1.22rem;
}
#development .list [data-visible="0"] .info {
  margin-top: 6rem;
}
#development .list [data-visible="1"] .info {
  margin-top: 5.93rem;
}
#development .list [data-visible="2"] .info {
  margin-top: 5.22rem;
}
#development .list [data-visible="3"] .info {
  margin-top: 3.83rem;
}
#development .list [data-visible="4"] .info {
  margin-top: 3.6rem;
}
#development .list [data-visible="5"] .info {
  margin-top: 1.75rem;
}
#development .list .swiper-slide-thumb-active .figure {
  opacity: 1;
}
#development .content {
  margin-top: -4.2rem;
}
#development .content .box {
  width: 5.24rem;
  margin-right: 10.06944444%;
}
#development .content .top {
  border-bottom: 0.01rem solid #d2d2d2;
  margin-bottom: 0.12rem;
  padding-bottom: 0.25rem;
}
#development .content .title {
  font-size: 0.9rem;
  line-height: 0.9em;
  color: var(--theme-main);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  font-weight: normal;
  margin: 0;
}
#development .content .title span {
  font-size: 0.2rem;
  line-height: 1.5em;
  color: #333;
}
#development .content .btm {
  line-height: 1.77777778em;
  overflow: hidden;
}
#development .content .btm p {
  position: relative;
  padding-left: 0.66666667em;
}
#development .content .btm p:before {
  width: 0.22222222em;
  height: 0.22222222em;
  background-color: #829db2;
  border-radius: 50%;
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0.77777778em;
}
#development .swiper-arrows {
  gap: 0.2rem;
  margin-top: 0.32rem;
}
#development .swiper-button-disabled {
  cursor: default;
}
@media only screen and (max-width: 1280px) {
  #development .list [data-visible="0"] .info {
    margin-top: 5.82rem;
  }
  #development .list [data-visible="1"] .info {
    margin-top: 5.7rem;
  }
  #development .list [data-visible="2"] .info {
    margin-top: 5.22rem;
  }
  #development .list [data-visible="3"] .info {
    margin-top: 4.1rem;
  }
  #development .list [data-visible="4"] .info {
    margin-top: 3.36rem;
  }
  #development .list [data-visible="5"] .info {
    margin-top: 2.22rem;
  }
}
@media only screen and (max-width: 1024px) {
  #development .list:after {
    padding-bottom: 7rem;
  }
  #development .list [data-visible="0"] .info {
    margin-top: 4.32rem;
  }
  #development .list [data-visible="1"] .info {
    margin-top: 4.2rem;
  }
  #development .list [data-visible="2"] .info {
    margin-top: 3.42rem;
  }
  #development .list [data-visible="3"] .info {
    margin-top: 3rem;
  }
  #development .list [data-visible="4"] .info {
    margin-top: 1.78rem;
  }
  #development .content {
    margin-top: -2.2rem;
  }
  #development .content .title {
    font-size: 0.7rem;
  }
}
@media only screen and (max-width: 750px) {
  #development .columnname {
    top: 0.65rem;
  }
  #development .list:after {
    padding-bottom: 5rem;
  }
  #development .list .swiper-slide {
    justify-content: center;
  }
  #development .list [data-visible="0"] .info {
    margin-top: 2.72rem;
  }
  #development .list [data-visible="1"] .info {
    margin-top: 1.72rem;
  }
  #development .content {
    margin-top: -1rem;
  }
  #development .content .box {
    width: 100%;
    margin-right: 0;
  }
  #development .content .title {
    font-size: 0.5rem;
  }
  #development .content .title span {
    font-size: 0.16rem;
  }
  #development .content .btm {
    font-size: 0.16rem;
  }
}
/*about-name*/
.about-name {
  margin-bottom: 0.6em;
}
@media only screen and (max-width: 750px) {
  .about-name {
    font-size: 0.4rem;
  }
}
/*profile*/
#profile {
  background: url(../images/profile_bg.jpg) no-repeat center center;
  background-size: cover;
  overflow: hidden;
  padding: 0.58rem 0 1.1rem;
}
#profile .picture {
  float: right;
  width: 51.38888889%;
  margin-left: 4.86111111%;
}
#profile .picture .figure {
  width: 132.43243243%;
  border-left: 0.2rem solid #edeeec;
  border-radius: 3rem 0 0 3rem;
}
#profile .picture .figure:after {
  padding-bottom: 62.5%;
}
#profile .stock {
  line-height: 1.66666667em;
  margin-bottom: 0.32rem;
}
#profile .stock span {
  background-image: linear-gradient(90deg, #e1d5bd 0%, transparent 100%);
  background-blend-mode: normal, normal;
  display: block;
  padding: 0.27777778em 0.83333333em;
}
#profile .title {
  margin-bottom: 0.18rem;
}
#profile .entry {
  line-height: 1.77777778em;
}
@media only screen and (max-width: 1280px) {
  #profile .picture .figure {
    width: 111%;
  }
}
@media only screen and (max-width: 750px) {
  #profile {
    padding-bottom: 0.6rem;
  }
  #profile .picture {
    width: 100%;
    margin-bottom: 0.3rem;
  }
  #profile .picture .figure {
    width: 100%;
    border-radius: 0;
    border-left: none;
  }
}
/*layout*/
#layout {
  background: url(../images/layout_bg.jpg) no-repeat center center;
  background-size: cover;
  padding: 1.1rem 0 1rem;
  overflow: hidden;
}
/*thefirst*/
#thefirst {
  background: url(../images/thefirst_bg.jpg) no-repeat center bottom;
  background-size: cover;
  overflow: hidden;
  padding: 1.1rem 0 1rem;
}
#thefirst .info {
  padding-top: 0.2rem;
}
#thefirst .picture {
  width: 60.41666667%;
}
#thefirst .figure {
  width: 110.91954023%;
}
#thefirst .text {
  width: 31.94444444%;
}
#thefirst .item {
  border-bottom: 0.01rem solid rgba(184, 184, 184, 0.3);
  position: relative;
  padding-bottom: 0.38rem;
  margin-bottom: 0.76rem;
}
#thefirst .item:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.01rem;
  background-color: var(--theme-main);
  width: 0.3rem;
  height: 0.01rem;
}
#thefirst .item:last-child {
  margin-bottom: 0;
}
#thefirst .intro {
  line-height: 1.5em;
}
#thefirst .num {
  font-size: 0.18rem;
  line-height: 2em;
}
#thefirst .num span {
  font-size: 0.52rem;
  line-height: 1em;
  font-weight: 500;
  margin-right: 0.19230769em;
}
@media only screen and (max-width: 750px) {
  #thefirst {
    padding: 0.65rem 0;
  }
  #thefirst .text {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  #thefirst .item {
    padding-bottom: 0.3rem;
    margin-bottom: 0.5rem;
  }
  #thefirst .num span {
    font-size: 0.4rem;
  }
  #thefirst .picture {
    width: 100%;
  }
  #thefirst .figure {
    width: auto;
  }
}
/*layout*/
#layout .small {
  width: 2.8rem;
}
#layout .small .swiper {
  height: 5.68rem;
}
#layout .small .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  flex-wrap: wrap;
}
#layout .small .figure {
  width: 1.1rem;
  border-radius: 50%;
}
#layout .small .figure:after {
  padding-bottom: 100%;
}
#layout .small .figure:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: solid 0.03rem #d8b470;
  border-radius: 50%;
  z-index: 5;
  opacity: 0;
  transition: all 0.2s;
}
#layout .small .name {
  width: calc(100% - 1.33rem);
  font-size: 0.18rem;
  line-height: 1.66666667em;
  padding-left: 1.66666667em;
  position: relative;
}
#layout .small .name:before {
  background-image: linear-gradient(100deg, #ecda9c 0%, #d3aa65 100%), linear-gradient(#545456, #545456);
  background-blend-mode: normal, 
		normal;
  width: 0.83333333em;
  height: 0.16666667em;
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#layout .small .swiper-slide-thumb-active .figure:before {
  opacity: 1;
}
#layout .large {
  width: 75%;
  max-width: calc(100% - 2.8rem);
  padding: 0 4.16666667%;
}
#layout .large .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
#layout .large .picture {
  width: 53.54166667%;
  padding: 0.17rem;
  background-color: rgba(0, 78, 151, 0.06);
  border-radius: 50%;
  overflow: hidden;
}
#layout .large .figure {
  border-radius: 50%;
}
#layout .large .figure:after {
  padding-bottom: 100%;
}
#layout .large .text {
  width: 39.0625%;
}
#layout .large .title {
  font-size: 0.36rem;
  line-height: 1.35em;
  font-weight: normal;
  margin-bottom: 0.26rem;
}
#layout .large .num {
  font-size: 0.18rem;
  font-weight: lighter;
  line-height: 1.66666667em;
  margin-bottom: 0.37rem;
}
#layout .large .num span {
  font-size: 0.6rem;
  line-height: 1em;
  font-weight: normal;
  color: var(--theme-main);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(113deg, #d3aa65 0%, #ecda9c 100%);
  background-blend-mode: normal, normal;
  margin-right: 0.41666667em;
}
#layout .large .intro {
  font-size: 0.18rem;
  line-height: 1.55555556em;
  font-weight: lighter;
}
#layout .large .intro p {
  padding-left: 0.77777778em;
  position: relative;
  margin-bottom: 0.83333333em;
}
#layout .large .intro p:before {
  width: 0.27777778em;
  height: 0.27777778em;
  background-color: #8f9ea9;
  border-radius: 50%;
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0.63888889em;
}
#layout .large .intro p:last-child {
  margin-bottom: 0;
}
#layout .swiper-arrows {
  gap: 0.2rem;
  margin-top: 0.72rem;
}
@media only screen and (max-width: 1024px) {
  #layout .small {
    width: 2rem;
  }
  #layout .small .swiper {
    height: 4rem;
  }
  #layout .small .figure {
    width: 0.75rem;
  }
  #layout .small .name {
    width: calc(100% - 0.9rem);
  }
  #layout .large {
    padding: 0;
    max-width: none;
  }
  #layout .large .picture {
    width: 45%;
    border-width: 0.1rem;
  }
  #layout .large .text {
    width: 50%;
  }
  #layout .large .title {
    font-size: 0.3rem;
    margin-bottom: 0.15rem;
  }
  #layout .large .num {
    font-size: 0.16rem;
    margin-bottom: 0.25rem;
  }
  #layout .large .num span {
    font-size: 0.5rem;
  }
  #layout .swiper-arrows {
    margin-top: 0.5rem;
  }
}
@media only screen and (max-width: 750px) {
  #layout {
    padding: 0.65rem 0;
  }
  #layout .info {
    padding-top: 0.2rem;
  }
  #layout .small {
    width: 100%;
  }
  #layout .small .swiper {
    height: auto;
  }
  #layout .small .figure {
    width: 100%;
    margin-bottom: 0.15rem;
  }
  #layout .small .name {
    width: 100%;
    padding-left: 0;
    padding-top: 1.11111111em;
    text-align: center;
  }
  #layout .small .name:before {
    width: 0.16666667em;
    height: 0.83333333em;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }
  #layout .large {
    width: 100%;
    padding: 0 5%;
    margin-bottom: 0.5rem;
  }
  #layout .large .picture {
    width: 80%;
    margin: 0 auto 0.3rem;
  }
  #layout .large .text {
    width: 100%;
  }
  #layout .swiper-arrows {
    margin-top: 0.35rem;
  }
}
/*world*/
@keyframes play {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
#world {
  background: url(../images/world_bg.png) no-repeat center center;
  background-size: cover;
  overflow: hidden;
}
#world .text {
  padding: 1.14rem 0 0.4rem;
}
#world .intro {
  font-size: 0.18rem;
  line-height: 1.66666667em;
  display: flex;
  flex-wrap: wrap;
}
#world .intro p {
  background-image: linear-gradient(90deg, #e1d5bd 0%, transparent 100%);
  background-blend-mode: normal, normal;
  display: block;
  padding: 0.27777778em 0.83333333em;
}
#world .entry {
  width: 35.625em;
}
#world .map {
  padding-bottom: 32.29166667%;
  position: relative;
  background: url(../images/map.png) no-repeat center center;
  background-size: 100% 100%;
}
#world .map:after {
  width: 54.47916667%;
  padding-bottom: 14.94791667%;
  background: url(../images/map_line.png) no-repeat center center;
  background-size: contain;
  content: '';
  display: block;
  position: absolute;
  left: 23.69791667%;
  top: -7.41935484%;
}
#world .dot {
  width: 0.1rem;
  position: relative;
}
#world .dot:before,
#world .dot:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(var(--rgba), 0.6);
  animation: play 3s ease 0s infinite;
}
#world .dot i {
  display: block;
  overflow: hidden;
  padding-bottom: 100%;
  border-radius: 50%;
  background-color: #e0c38d;
}
#world .figure {
  width: 1.56rem;
  mask: url(../images/world_img_mask.svg) no-repeat center center;
  mask-size: contain;
  -webkit-mask: url(../images/world_img_mask.svg) no-repeat center center;
  -mask-size: contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100%;
  margin-bottom: 0.2rem;
  display: none;
}
#world .figure:after {
  padding-bottom: 70.51282051%;
}
#world .figure:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/world_img_frame.svg) no-repeat center center;
  background-size: contain;
  z-index: 2;
}
#world .name {
  opacity: 0.8;
  position: absolute;
  right: 200%;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  line-height: 1.75em;
}
#world .item {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
#world .item:after {
  width: 0.12rem;
  height: 0.15rem;
  background: url(../images/map_add.png) no-repeat center center;
  background-size: contain;
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -100%);
  opacity: 0;
  transition: all 0.2s;
}
#world .item:nth-child(1) {
  left: 70.41666667%;
  top: 28.22580645%;
}
#world .item:nth-child(1) .dot {
  width: 0.16rem;
}
#world .item:nth-child(1) .name {
  right: auto;
  left: 200%;
  opacity: 1;
}
#world .item:nth-child(2) {
  left: 23.75%;
  top: 32.58064516%;
}
#world .item:nth-child(3) {
  left: 44.58333333%;
  top: 14.51612903%;
}
#world .item:nth-child(4) {
  left: 46.35416667%;
  top: 17.09677419%;
}
#world .item:nth-child(5) {
  left: 52.86458333%;
  top: 38.70967742%;
}
#world .item:nth-child(6) {
  left: 71.45833333%;
  top: 37.90322581%;
}
#world .item:nth-child(n+4) .name {
  right: auto;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
#world .on:after {
  opacity: 1;
}
#world .on .figure {
  display: block;
}
@media only screen and (max-width: 750px) {
  #world .text {
    padding-top: 0.5rem;
  }
  #world .hgroup {
    width: 100%;
    margin-bottom: 0.3rem;
  }
  #world .enty {
    width: 100%;
  }
}
/*haimei*/
.haimei {
  background: no-repeat center top;
  background-size: 100% auto;
  padding: 60.9375% 0 5.625%;
  position: relative;
}
.haimei .logo {
  position: absolute;
  left: 5.41666667%;
  top: 0;
  margin-top: 11.09375%;
  z-index: 5;
  width: 26.77083333%;
}
.haimei .logo img {
  display: block;
}
.haimei .box {
  width: 11.05rem;
  max-width: 100%;
  background: url(../images/haimei_frame.png) no-repeat center center;
  background-size: 100% 100%;
  margin: 0 auto 0;
}
.haimei .info {
  padding: 7.42081448% 10.67873303% 7.9638009% 11.49321267%;
}
.haimei .title {
  font-size: 0.3rem;
  line-height: 1.35em;
  position: relative;
  font-weight: 500;
  display: flex;
  gap: 0.13333333em;
  margin-bottom: 0.33rem;
}
.haimei .title:before,
.haimei .title:after {
  width: 0.66666667em;
  height: 0.73333333em;
  background: url(../images/star_01.png) no-repeat center center;
  background-size: contain;
  display: block;
  content: '';
}
.haimei .title:before {
  position: absolute;
  right: 100%;
  bottom: 0;
  margin-right: 0.04rem;
}
.haimei .meta {
  line-height: 1.66666667em;
  gap: 8.37209302%;
  margin-bottom: 0.2rem;
  background: url(../images/name_icon_03.svg) no-repeat left 0.36111111em;
  background-size: 0.94444444em auto;
  padding-left: 1.5em;
}
.haimei .meta span {
  display: block;
}
.haimei .meta .ml {
  font-size: 1.33333333em;
  line-height: 1.25em;
  font-weight: normal;
}
.haimei .note {
  padding-left: 1.5em;
  margin-bottom: 0.22rem;
}
.haimei .button-play {
  width: 6.97674419%;
}
@media only screen and (max-width: 750px) {
  .haimei .logo {
    margin-top: 20%;
    width: 32%;
  }
  .haimei .title {
    font-size: 0.28rem;
    margin-bottom: 0.2rem;
  }
  .haimei .meta {
    font-size: 0.16rem;
  }
  .haimei .note {
    padding-left: 0;
  }
}
/*product-info*/
.product-info .title {
  font-size: 0.3rem;
  line-height: 1.35em;
  position: relative;
  font-weight: 500;
  display: flex;
  gap: 0.13333333em;
  margin: 0 0 0.93333333em;
}
.product-info .title:before,
.product-info .title:after {
  width: 0.66666667em;
  height: 0.73333333em;
  background: url(../images/star_01.png) no-repeat center center;
  background-size: contain;
  display: block;
  content: '';
}
.product-info .title:before {
  position: absolute;
  right: 100%;
  bottom: 0;
  margin-right: 0.04rem;
}
.product-info .name {
  font-size: 0.24rem;
  line-height: 1.25em;
  font-weight: normal;
  margin-bottom: 0.2rem;
  background: url(../images/name_icon_03.svg) no-repeat left 0.27083333em;
  background-size: 0.70833333em auto;
  padding-left: 1.125em;
  margin: 0 0 0.91666667em;
}
.product-info .intro {
  font-size: 0.18rem;
  line-height: 1.66666667em;
  font-weight: lighter;
  margin-bottom: 0.77777778em;
}
.product-info.purple .title:before,
.product-info.purple .title:after {
  background-image: url(../images/star_02.png);
}
.product-info.purple .name {
  background-image: url(../images/name_icon_02.svg);
}
.product-info.powder .name {
  background-image: url(../images/name_icon_04.svg);
}
@media only screen and (max-width: 750px) {
  .product-info .title {
    font-size: 0.26rem;
  }
  .product-info .name {
    font-size: 0.2rem;
  }
  .product-info .intro {
    font-size: 0.16rem;
  }
}
/*haimeiyun*/
.haimeiyun {
  background: no-repeat center top;
  background-size: cover;
}
.haimeiyun .inner {
  position: relative;
  padding: 2.23rem 0 0.63rem;
}
.haimeiyun .logo {
  position: absolute;
  left: 0;
  top: 1.89rem;
  width: 17.91666667%;
}
.haimeiyun .logo img {
  display: block;
  width: 100%;
}
.haimeiyun .figure {
  width: 77.01388889%;
  margin: 0 auto 0.64rem;
}
@media only screen and (max-width: 750px) {
  .haimeiyun .inner {
    padding: 1.6rem 0 1rem;
  }
  .haimeiyun .logo {
    top: 1.2rem;
    width: 30%;
  }
  .haimeiyun .figure {
    width: 100%;
  }
}
/*jiaolan*/
#jiaolan {
  background: url(../images/jiaolan_bg.jpg) no-repeat center center;
  background-size: cover;
  padding: 5.20833333% 0 8.33333333%;
  overflow: hidden;
}
#jiaolan .text {
  width: 42%;
}
#jiaolan .item{background:url(/upload/image/2026-05/1779698181601.png) no-repeat left top;}
#jiaolan .item:nth-child(2){ background:url(/upload/image/2026-05/1779698181585.png) no-repeat right top;}
#jiaolan .item:nth-child(4){ background:url(/upload/image/2026-05/1779698181602.png) no-repeat right top;}
#jiaolan .top {
  width: 10.41666667em;
  height: 2.33333333em;
  background: url(../images/jiaolan_title_bg_01@2x.png) no-repeat center center;
  background-size: contain;
  line-height: 1.91666667em;
  text-align: center;
  padding-right: 2.5em;
  margin-bottom: 1.66666667em;
}
#jiaolan .item {
  margin-bottom: 2.08333333%;
}
#jiaolan .item:last-child {
  margin-bottom: 0;
}
#jiaolan .item .figure {
  width: 52.138%;
  text-align:center;
  overflow:initial;
}
#jiaolan .item .figure:before{content:''; width:100%; height:100%; position: absolute; z-index:5;left:0; background:url(/upload/image/2026-05/1779698181543.png) no-repeat}
#jiaolan .item:nth-child(2n) {
  flex-direction: row-reverse;
}
#jiaolan .item:nth-child(4) .figure:before{ background-image:url(/upload/image/2026-05/1779698181565.png)}
#jiaolan .item:nth-child(4) .figure:before{left:-33%}
/*
#jiaolan .item:nth-child(2n) .figure {
  width: 61.11111111%;
  margin-left: -2.77777778%;
  margin-bottom: -4.86111111%;
}
/*
#jiaolan .item:nth-child(2n) .top {
  background-image: url(../images/jiaolan_title_bg_02@2x.png);
  width: 15.83333333em;
}
#jiaolan .item:nth-child(2n) .text {
  padding-top: 12.15277778%;
}
@media only screen and (max-width: 750px) {
  #jiaolan {
    padding: 0.7rem 0;
  }
  #jiaolan .text {
    width: 100%;
    margin-bottom: 0.35rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #jiaolan .top {
    font-size: 0.22rem;
  }
  #jiaolan .item:nth-child(n+1) .figure {
    width: 100%;
  }
  #jiaolan .item:nth-child(2n) .text {
    margin-bottom: 0;
  }
}
/*yunjing*/
#yunjing {
  background: no-repeat center top;
  background-size: 100% 100%;
  padding: 10.625% 0 19.27083333%;
  overflow: hidden;
}
#yunjing .logo {
  margin: 0 auto 4.86111111%;
  width: 2.86rem;
}
#yunjing .top {
  margin-bottom: 1.2rem;
}
#yunjing .item {
  width: 33.54166667%;
}
#yunjing .item:nth-child(2) {
  width: 51.73611111%;
  padding-top: 3%;
}
#yunjing .item:nth-child(2) .figure {
  width: 117.04697987%;
}
#yunjing .btm {
  width: 61.73611111%;
  background: url(../images/yunjing_frame.png) no-repeat center center;
  background-size: 100% 100%;
  position: relative;
  margin-left: -2.43055556%;
}
#yunjing .btm:before {
  width: 166.81664792%;
  padding-bottom: 100.33745782%;
  background: url(../images/yunjing_frame_before.png) no-repeat center center;
  background-size: contain;
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
#yunjing .box {
  padding: 6.74915636% 8.99887514% 7.19910011%;
  position: relative;
  z-index: 5;
}
#yunjing .product-info {
  padding-bottom: 3.15068493%;
}
#yunjing .name {
  margin-left: -1.125em;
}
#yunjing .intro {
  gap: 8.21917808%;
}
#yunjing .button-play {
  width: 8.21917808%;
}
@media only screen and (max-width: 750px) {
  #yunjing {
    padding: 1.2rem 0 1.7rem;
    background-size: cover;
  }
  #yunjing .logo {
    width: 2rem;
  }
  #yunjing .btm {
    margin-left: 0;
    width: 100%;
  }
}
/*academy*/
#academy {
  background: #041b3c no-repeat center top;
  background-size: 100% auto;
  padding-top: 57.08333333%;
  overflow: hidden;
}
/*upward-name*/
.upward-name {
  display: flex;
  position: relative;
}
.upward-name:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0.02em;
  background-image: linear-gradient(90deg, #cdad7e 0%, transparent 100%);
  width: 1.9047619em;
  height: 0.23809524em;
}
.upward-name span {
  display: block;
  z-index: 2;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .upward-name {
    font-size: 0.36rem;
  }
}
/*upward-alias*/
.upward-alias {
  color: var(--theme-main);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(113deg, #d3aa65 0%, #ecda9c 100%);
  background-blend-mode: normal, normal;
}
@media only screen and (max-width: 750px) {
  .upward-alias {
    font-size: 0.4rem;
  }
}
/*upward-hgroup*/
.upward-hgroup {
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 5;
}
.upward-hgroup .upward-alias {
  margin-bottom: 0.10416667em;
}
@media only screen and (max-width: 750px) {
  .upward-hgroup {
    margin-bottom: 0.3rem;
  }
}
/*upward-intro*/
.upward-intro {
  gap: 8.88888889%;
  margin-bottom: 4.16666667%;
}
.upward-intro .figure {
  width: 43.54166667%;
}
.upward-intro .text {
  width: 38.61111111%;
}
.upward-intro .intro {
  font-size: 0.24rem;
  line-height: 1.75em;
  font-weight: 300;
}
@media only screen and (max-width: 750px) {
  .upward-intro .figure {
    width: 100%;
  }
  .upward-intro .text {
    width: 100%;
    margin-bottom: 0.4rem;
  }
  .upward-intro .intro {
    font-size: 0.2rem;
  }
}
/*upward-exclusive*/
.upward-exclusive {
  margin-bottom: 9.93103448em;
}
.upward-exclusive .list {
  --margin: 3.195%;
}
.upward-exclusive .item {
  margin-bottom: 3.19444444%;
  width: 33.333%;
}
.upward-exclusive .item:nth-child(2n+1) {
  margin-top: 6.94444444%;
}
.upward-exclusive .info {
  padding-bottom: 96%;
  background: url(../images/upward_exclusive_frame.png) no-repeat center center;
  background-size: 100% 100%;
  position: relative;
}
.upward-exclusive .box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.upward-exclusive .cont {
  width: 2.7rem;
  max-width: 80%;
}
.upward-exclusive .num {
  font-size: 0.2rem;
  line-height: 1.8em;
  margin-bottom: 0.25em;
}
.upward-exclusive .title {
  font-size: 0.36rem;
  line-height: 1.35em;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(113deg, #d3aa65 0%, #ecda9c 100%);
  background-blend-mode: normal, normal;
  font-weight: normal;
  margin-bottom: 0.44444444em;
}
.upward-exclusive .title:after {
  width: 0.01rem;
  height: 0.66666667em;
  background-color: #cdad7e;
  opacity: 0.5;
  display: block;
  content: '';
  margin-top: 0.41666667em;
}
.upward-exclusive .intro {
  font-size: 0.22rem;
  line-height: 1.72727273em;
  font-weight: 300;
}
@media only screen and (max-width: 1024px) {
  .upward-exclusive .cont {
    max-width: 60%;
  }
  .upward-exclusive .title {
    font-size: 0.3rem;
  }
  .upward-exclusive .intro {
    font-size: 0.18rem;
  }
}
@media only screen and (max-width: 750px) {
  .upward-exclusive {
    margin-bottom: 0.4rem;
  }
  .upward-exclusive .item {
    width: 100%;
  }
  .upward-exclusive .item:nth-child(n+1) {
    margin-top: 0;
  }
}
/*upward-benchmark*/
.upward-benchmark {
  margin-bottom: 14.44444444%;
}
.upward-benchmark .text {
  width: 44.44444444%;
}
.upward-benchmark .figure {
  width: 38.75%;
}
.upward-benchmark .intro {
  font-size: 0.24rem;
  line-height: 1.75em;
  font-weight: 300;
}
@media only screen and (max-width: 750px) {
  .upward-benchmark {
    margin-bottom: 0.5rem;
  }
  .upward-benchmark .text {
    width: 100%;
    margin-bottom: 0.4rem;
  }
  .upward-benchmark .figure {
    width: 100%;
  }
  .upward-benchmark .intro {
    font-size: 0.2rem;
  }
}
/*upward-news*/
.upward-news {
  margin-bottom: 10.41666667%;
}
.upward-news .upward-name:after {
  display: none;
}
.upward-news .year {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  cursor: pointer;
  width: 13.75em;
}
.upward-news .year span {
  background-blend-mode: ;
  border-style: solid;
  border-width: 1px;
  border-image-source: linear-gradient(45deg, #d9b96c 0%, #ecda9c 53%, #f7f2d1 100%);
  border-image-slice: 1;
  height: 3.125em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-main);
  gap: 1.875em;
}
.upward-news .year span:after {
  width: 0.6875em;
  height: 0.375em;
  background: url(../images/drop_arrow_01.svg) no-repeat center center;
  background-size: contain;
  display: block;
  content: '';
}
.upward-news .year ul {
  background-blend-mode: ;
  border-style: solid;
  border-width: 1px;
  border-image-source: linear-gradient(45deg, #d9b96c 0%, #ecda9c 53%, #f7f2d1 100%);
  border-image-slice: 1;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top: none;
  text-align: center;
  color: #fff;
  line-height: 2em;
  padding: 0.25em 0;
  display: none;
  background-color: var(--theme-main);
}
.upward-news .year li {
  padding: 0 1em;
  position: relative;
  cursor: pointer;
}
.upward-news .list {
  position: relative;
}
.upward-news .list .figure {
  padding-bottom: 66.51982379%;
  margin-bottom: 0.2rem;
}
.upward-news .list .text {
  padding: 0 0.5rem 0 0.2rem;
}
.upward-news .list .title {
  font-size: 0.2rem;
  line-height: 1.6em;
  font-weight: normal;
  margin-bottom: 0.2rem;
}
.upward-news .list .date {
  font-size: 0.18rem;
  line-height: 1.33333333em;
  color: #829db2;
}
.upward-news .list a {
  display: block;
  overflow: hidden;
  transition: all 0.2s;
  color: #fff;
}
@media only screen and (max-width: 750px) {
  .upward-news {
    margin-bottom: 0.5rem;
  }
  .upward-news .year {
    position: relative;
    width: 100%;
    top: auto;
    transform: none;
    margin-top: 0.2rem;
  }
}
/*swiper-icondot*/
.swiper-icondot .swiper-pagination {
  position: relative;
  gap: 0.3rem;
  margin-top: 0.55rem;
}
.swiper-icondot .swiper-pagination-bullet {
  width: 0.2rem;
  height: 0.2rem;
  background: url(../images/dot_01.svg) no-repeat center center;
  background-size: contain;
  opacity: 0.5;
}
.swiper-icondot .swiper-pagination-bullet-active {
  opacity: 1;
}
@media only screen and (max-width: 750px) {
  .swiper-icondot .swiper-pagination {
    gap: 0.2rem;
    margin-top: 0.3rem;
  }
  .swiper-icondot .swiper-pagination-bullet {
    width: 0.15rem;
    height: 0.15rem;
  }
}
/*upward-review*/
.upward-review {
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.upward-review .upward-name:after {
  display: none;
}
.upward-review .swiper {
  width: 12rem;
  max-width: 100%;
}
.upward-review .box {
  padding-bottom: 50%;
  mask: url(../images/upward_review_mask.png) no-repeat center center;
  mask-size: 100% 100%;
  -webit-mask: url(../images/upward_review_mask.png) no-repeat center center;
  -webit-mask-size: 100% 100%;
  position: relative;
}
.upward-review .box:before,
.upward-review .box:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.upward-review .box:before {
  background: url(../images/upward_review_border.svg);
  background-size: 100% 100%;
}
.upward-review .box:after {
  background-color: rgba(0, 0, 0, 0.4);
}
.upward-review video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.upward-review .play {
  width: 5%;
  background: url(../images/play_03.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: all 0.3s;
}
.upward-review .play:after {
  display: block;
  padding-bottom: 100%;
  content: '';
}
.upward-review .play:hover {
  transform: translate(-50%, -50%) scale(0.95);
}
/*upward-follow*/
.upward-follow {
  margin-bottom: 11.18055556%;
}
.upward-follow .list {
  background-color: rgba(5, 39, 93, 0.6);
  border: solid 1px rgba(255, 255, 255, 0.24);
  text-align: center;
  font-weight: lighter;
  padding: 7.43055556%;
  gap: 17.45%;
}
.upward-follow .qrcode {
  width: 1.5rem;
  margin: 0 auto 0.1rem;
}
@media only screen and (max-width: 750px) {
  .upward-follow .list {
    gap: 10%;
  }
  .upward-follow .qrcode {
    width: 1.2rem;
  }
}
