.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  height: 1.08rem;
  z-index: 999;
  padding: 0 1.4rem;
  background: #fff;
  backdrop-filter: blur(.255rem);
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.10);
}

.header.inner {
  /* background: #fff; */
  /* background: rgba(255, 255, 255, 0.5); */
}

.header .logo {
  position: relative;
  flex-shrink: 0;
  width: 2.74rem;
  height: 100%;
  background: rgba(205, 0, 26, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .logo img {
  width: 2.14rem;
  height: .48rem;
  object-fit: contain;
}

.header .logo .normal,
.header.inner .logo .active {
  display: block;
}

.header .logo .active,
.header.inner .logo .normal {
  display: none;
}


.header .nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  height: 100%;
  margin: 0 auto 0 1.5rem;
}

.header .nav .item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.header .nav .item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: rgba(205, 0, 26, 1);
  transition: all .3s ease;
}

.header .nav .item:hover::after {
  width: 100%;
}

.header .nav .item .label {
  color: #333;
  text-transform: capitalize;
}

.header.inner .nav .item .label {
  color: #000;
  transition: all .3s ease;
}

.header .nav .item:hover .label {
  color: rgba(205, 0, 26, 1);
}

.header .nav .item .dorp {
  position: fixed;
  top: 1rem;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
  z-index: 1;
  width: 100%;
}









.header .nav .item.on .dorp {
  opacity: 1;
  pointer-events: auto;
}

.header .nav .item .dorp .mask {
  position: fixed;
  top: 1rem;
  left: 0;
  width: 100%;
  height: calc(100vh - .8rem);
  background: rgba(0, 0, 0, .3);
  opacity: 0;
  transition: all .3s;
  z-index: 0;
  pointer-events: none;
}

.header .nav .item.on .dorp .mask {
  opacity: 1;
  pointer-events: auto;
}

.header .nav .item .dorp .list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
  justify-content: center;
  background: #fff;
  position: relative;
  z-index: 1;
  padding: .4rem 1.2rem;
}

.header .nav .item .dorp .list .li {
  color: #666;
  line-height: 1.25;
  transition: all .3s;
  
  display: block;
  text-align: center;
}

.header .nav .item .dorp .list .li:hover {
  color: rgba(205, 0, 26, 1);
}



.header .nav .item .dorp{position: absolute;top: 100%;left: 50%;transform: translateX(-50%);width: max-content;}
.header .nav .item .dorp .mask{display: none;}
.header .nav .item .dorp .list{display: block;padding: 0.4rem;box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.10);}
.header .nav .item .dorp .list a:not(:first-child){margin-top: 0.3rem;}

.header .nav .item .dorp .list a:hover{
    text-decoration: underline !important;
    text-underline-offset: 0.25em;
}


.header .btns {
  position: relative;
  display: flex;
  align-items: center;
  gap: .19rem;
}

.header .btns .line {
  width: 1px;
  height: .15rem;
  background: rgba(51, 51, 51, .3);
}

.header.inner .btns .line {
  background: #333;
}

.header .btns .btn {
  width: .2rem;
  height: .2rem;
}

.header .btns .btn .normal,
.header.inner .btns .btn .active {
  display: block;
}

.header .btns .btn .active,
.header.inner .btns .btn .normal {
  display: none;
}

.header .btns .lang {
  display: flex;
  align-items: center;
  gap: .06rem;
  flex-shrink: 0;
}

.header .btns .lang .icon {
  width: .2rem;
  height: .2rem;
}

.header .btns .lang .text {
  color: #fff;
}

.header.inner .btns .lang .text {
  color: #333;
}

.header .btns .lang .arrow {
  width: .2rem;
  margin-left: .06rem;
}

.header .btns .lang .arrow .normal,
.header.inner .btns .lang .arrow .active {
  display: block;
}

.header .btns .lang .arrow .active,
.header.inner .btns .lang .arrow .normal {
  display: none;
}

.header .btns .m_nav {
  display: none;
}

.header .nav_m {
  display: none;
}

.footer {
  position: relative;
  background: #fff;
  padding: .8rem 0 0 0;
}

.footer .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .46rem;
}

.footer .top .logo {
  width: 1rem;
  height: .82rem;
}

.footer .top .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer .top .line {
  flex: 1;
  height: .1rem;
}



.footer .main {
  display: flex;
  flex-direction: row-reverse;
  align-items: start;
  margin: .7rem 1.4rem 0 1.4rem;
  gap: 1.45rem;
  gap: 0.63rem;
}

.footer .main .ul {
  display: flex;
  gap: .2rem;
  flex: 1;
  justify-content: space-between;
}

.footer .main .ul li {
  display: flex;
  flex-direction: column;
}

.footer .main .ul li a {
  color: rgba(102, 102, 102, 1);
  line-height: 2.4;
  text-transform: capitalize;
  transition: color 0.3s ease;
}

.footer .main .ul li a:first-child {
  margin-bottom: .23rem;
  color: rgba(51, 51, 51, 1);
  line-height: 2.25;
}

.footer .main .ul li a:hover {
  color: rgba(205, 0, 26, 1);
}

.footer .main .ul_m {
  display: none;
}

.footer .main .right {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  width: 4.44rem;
  gap: .5rem;
}

.footer .main .right .title {
  color: rgba(51, 51, 51, 1);
  line-height: 1.37;
}

.footer .main .right .list {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.footer .main .right .list .li {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: .1rem;
}

.footer .main .right .list .li .label {
  display: flex;
  align-items: center;
  gap: .08rem;
  color: rgba(51, 51, 51, 1);
  line-height: 1.25;
}

.footer .main .right .list .li .label img {
  width: .2rem;
  height: .2rem;
}

.footer .main .right .list .li .txt {
  font-weight: 400;
  color: rgba(51, 51, 51, 1);
}

.footer .main .right .list .li:first-child .txt {
  font-weight: 600;
  color: rgba(205, 0, 26, 1);
}




.footer .main .right .icons {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.footer .main .right .icons .icon {
  width: .5rem;
  height: .5rem;
  flex-shrink: 0;
  background: rgba(205, 0, 26, 1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* transition: all .3s ease; */
}

.footer .main .right .icons .icon:hover {
  background: transparent;
  border: 1px solid rgba(205, 0, 26, 1);
}

.footer .main .right .icons .icon .img {
  width: .27rem;

  /* transition: all .3s ease; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer .main .right .icons .icon .normal,
.footer .main .right .icons .icon:hover .active {
  opacity: 1;
}

.footer .main .right .icons .icon .active,
.footer .main .right .icons .icon:hover .normal {
  opacity: 0;
}

.footer .main .right .icons .icon .box {
  position: absolute;
  width: 1.6rem;
  height: 1.6rem;
  bottom: .73rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: .06rem;
  background: #fff;
  padding: .1rem;
  box-shadow: 0 0 .04rem rgba(0, 0, 0, .1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  display: flex;
  gap: .1rem;
  align-items: center;
}

.footer .main .right .icons .icon:last-child .box {
  width: 3.4rem;
}


.footer .main .right .icons .icon .box::before {
  content: '';
  position: absolute;
  bottom: -.1rem;
  left: 50%;
  transform: translateX(-50%) translateY(0.04rem);
  width: 0;
  height: 0;
  border-top: .15rem solid rgba(0, 0, 0, 0.15);
  border-left: .1rem solid transparent;
  border-right: .1rem solid transparent;
  filter: blur(0.04rem);
  z-index: 0;
}

.footer .main .right .icons .icon .box::after {
  content: '';
  position: absolute;
  bottom: -.1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-top: .15rem solid #fff;
  border-left: .1rem solid transparent;
  border-right: .1rem solid transparent;
  z-index: 1;
  transition: all 0.5s ease;
}

.footer .main .right .icons .icon:hover .box {
  opacity: 1;
  pointer-events: auto;

}

.footer .main .right .icons .icon .box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
}

.footer .main .right .icons .icon .box .line {

  width: 1px;
  height: 80%;
  background: rgba(205, 0, 26, 0.50);
}







.footer .bottom {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: .2rem 1.4rem;
  margin: .88rem 0 0 0;
  background: rgba(205, 0, 26, 1);
}

.footer .bottom .left {
  display: flex;
  align-items: center;
  gap: .3rem;
}

.footer .bottom .left .links {
  display: flex;
  align-items: center;
}

.footer .bottom .left .links a {
  color: #fff;
  line-height: 1.25;
  text-transform: capitalize;
  transition: color 0.3s ease;
}

.footer .bottom .left .copyright {
  color: #fff;
  line-height: 1.25;
  transition: color 0.3s ease;
}

.footer .bottom .right .txt {
  color: #fff;
  line-height: 1.25;
  transition: color 0.3s ease;
  /*font-size: 10px;*/
}

.hmr_500 {
  font-weight: 500;
  font-family: 'HarmonyOS_Sans_SC_Regular';
}

.hmm_500 {
  font-weight: 500;
  font-family: 'HarmonyOS_Sans_SC_Medium';
}

.hmr_400 {
  font-weight: 400;
  font-family: 'HarmonyOS_Sans_SC_Regular';
}

.hmr_700 {
  font-weight: 700;
  font-family: 'HarmonyOS_Sans_SC_Regular';
}

.syb_700 {
  font-weight: 700;
  font-family: 'SourceHanSansCN-Bold';
}

.hmb_700 {
  font-weight: 700;
  font-family: 'HarmonyOS_Sans_SC_Bold';
}

.hmm_700 {
  font-weight: 700;
  font-family: 'HarmonyOS_Sans_SC_Medium';
}

.upload-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, .4);
  backdrop-filter: blur(15px);
  display: none;
}

.upload-dialog .close-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.upload-dialog .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 48%;
  padding: 1.2rem 0.8rem 1.38rem;
  background-color: #fff;
}

.upload-dialog .wrap .close {
  position: absolute;
  top: 0.48rem;
  right: 0.48rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  border: 1px solid #333333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-dialog .wrap .close img {
  max-width: 40%;
  filter: brightness(0.1);
  cursor: pointer;
}

.upload-dialog .wrap .tit {
  text-align: center;
}

.upload-dialog .upload {
  margin: 1.28rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.upload-dialog .el-upload__input {
  display: none;
}

.upload-dialog .el-upload {
  display: inline-block;
  text-align: center;
  cursor: pointer;
  outline: 0;
}

.upload-dialog .upload .info {
  width: 2.04rem;
  height: 1.62rem;
  background-color: #FFF5F6;
  border-radius: 5px;
  border: 1px dashed #D7000F;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.upload-dialog .upload .info .i {
  width: 0.44rem;
  margin: 0 auto;
}

.upload-dialog .upload .info p {
  margin-top: 0.2rem;
  text-align: center;
  color: #D7000F;
}

.upload-dialog .upload .el-upload-list {
  width: 100%;
  margin-top: .2rem;
  list-style: none;
}

.upload-dialog .upload .el-upload-list .el-upload-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .1rem .2rem;
  border-radius: 3px;
  background-color: #FFF5F6;
  color: #333333;
  font-size: .16rem;
}

.upload-dialog .upload .el-upload-list .el-upload-list__item+.el-upload-list__item {
  margin-top: .1rem;
}

.upload-dialog .upload .el-upload-list .el-upload-list__item .del {
  color: #D7000F;
  cursor: pointer;
  font-style: normal;
}

.upload-dialog .agree {
  display: flex;
  align-items: center;
  width: max-content;
  margin: 0.68rem auto 0;
  color: #888888;
  cursor: pointer;
  max-width: 100%;
}

.upload-dialog .agree span {
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  margin-right: 6px;
  position: relative;
}

.upload-dialog .agree span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background-color: #D7000F;
  opacity: 0;
}

.upload-dialog .agree a {
  color: #D7000F;
}

.upload-dialog .agree.active span {
  border-color: #D7000F;
}

.upload-dialog .agree.active span::after {
  opacity: 1;
}

.upload-dialog .btn-box {
  margin-top: 0.32rem;
  display: flex;
  justify-content: center;
}

.upload-dialog .btn-box .btn {
  width: 1.28rem;
  height: 0.38rem;
  text-align: center;
  line-height: 0.38rem;
  border-radius: 3px;
  color: #333333;
  margin-right: 0.42rem;
  box-shadow: 0 0 0 1px #000000;
  cursor: pointer;
  transition: all .4s;
}

.upload-dialog .btn-box .btn:last-child {
  margin-right: 0;
}

.upload-dialog .btn-box .btn:hover {
  background-color: #D7000F;
  color: #fff;
  box-shadow: none;
}

.p_btn {
  display: inline-flex;
  align-items: center;
  padding: .12rem .4rem;
  border-radius: .06rem;
  color: rgba(205, 0, 26, 1);
  border: 1px solid rgba(205, 0, 26, 1);
  gap: .24rem;
  position: relative;
  z-index: 0;
  transition: all 0.5s ease;
  line-height: 1.6;
}

.p_btn span {
  z-index: 1;
  transition: all 0.5s ease;
}

.p_btn:hover span {
  gap: .3rem;
  transform: translateX(.1rem);
}

.p_btn::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 0;
  height: calc(100% + 2px);
  border-radius: .04rem;
  background: #fff;
  transition: all 0.5s ease;
}

.p_btn:hover::after {
  width: calc(100% + 2px);
}

.p_btn .icon {
  position: relative;
  z-index: 1;
  width: .24rem;
  height: .24rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}


.p_btn .icon img {
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.p_btn .icon.active {
  animation: rotateAndScale 0.5s ease-in-out forwards;
}

.p_btn .icon img.normal {
  opacity: 1;
}

.p_btn .icon img.active {
  opacity: 0;
}

.p_btn.p_btn3 .icon img.normal,
.p_btn.p_btn3:hover .icon img.active {
  opacity: 1;
}

.p_btn.p_btn3:hover .icon img.normal,
.p_btn.p_btn3 .icon img.active {
  opacity: 0;
}

.p_btn.p_btn2 .icon img.normal,
.p_btn.p_btn2:hover .icon img.active {
  opacity: 1;
}

.p_btn.p_btn2:hover .icon img.normal,
.p_btn.p_btn2 .icon img.active {
  opacity: 0;
}


.p_btn.p_btn2 {
  background: rgba(205, 0, 26, 1);
  color: #fff;
}

.p_btn.p_btn2:hover {
  color: rgba(205, 0, 26, 1);
}

.p_btn.p_btn3:hover {
  color: #fff;
}

.p_btn.p_btn3:hover::after {
  background: rgba(205, 0, 26, 1);
}

.p_btns {
  display: flex;
  align-items: center;
  gap: .2rem;
}

.p_btns .btn {
  width: .56rem;
  height: .56rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  background: rgba(245, 240, 232, 1);
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.p_btns .btn:hover {
  background: rgba(205, 0, 26, 1);
}

.p_btns .btn img {
  width: .14rem;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .3s ease;
}

.p_btns .btn .normal,
.p_btns .btn:hover .active {
  opacity: 1;
}

.p_btns .btn:hover .normal,
.p_btns .btn .active {
  opacity: 0;
}


.p_banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.p_banner .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.p_banner .bg img,
.p_banner .bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p_banner .info {
  position: relative;
  z-index: 2;
  padding: 2.2rem 1.4rem 0 1.4rem;
}

.p_banner .info .title {
  color: rgba(51, 51, 51, 1);
  line-height: 1.25;
  text-align: center;
}

.p_banner .info .txt {
  color: rgba(51, 51, 51, 1);
  line-height: 1.25;
  margin-top: .24rem;
  text-align: center;
}

.p_banner .remark {
  position: absolute;
  left: 1.4rem;
  bottom: .32rem;
  z-index: 1;
  color: #fff;
  line-height: 1.77;
}

.p_tabs {
  display: flex;
  position: sticky;
  justify-content: center;
  top: 0;
  z-index: 1;
  gap: 1.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  background: #FFF;
}

.p_tabs .tab {
  padding: .26rem .52rem;
  color: #333;
  line-height: 1.25;
  transition: all 0.3s ease;
  position: relative;
}

.p_tabs .tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(205, 0, 26, 1);
  transition: all 0.3s ease;
}

.p_tabs .tab:hover::after,
.p_tabs .tab.on::after {
  width: 100%;
}

.p_tabs .tab.on,
.p_tabs .tab:hover {
  color: rgba(205, 0, 26, 1);
  background: rgba(205, 0, 26, .05);
}

.cremb {
  display: flex;
  align-items: center;
  gap: .16rem;
  position: relative;
}

.cremb a:first-child {
  color: rgba(102, 102, 102, .6);
}

.cremb a {
  color: rgba(102, 102, 102, .6);
  line-height: 1.25;
  tpaginationransition: color 0.3s ease;
}

.cremb a:last-child {
  color: #CD001A;
}

.cremb a:not(:first-child):hover {
  color: #000;
}

.cremb .arrow {
  height: .2rem;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: 1rem 0 0 0;
}

.pagination .btn {
  width: .44rem;
  height: .44rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination .btn img {
  width: 100%;
  height: 100%;
}

.pagination .nums {
  display: flex;
  align-items: center;
  gap: .56rem;
}

.pagination .nums .num {
  color: rgba(54, 66, 60, 1);
  line-height: 1.6;
  cursor: pointer;
  transition: all .3s ease;
}

.pagination .nums .num.on {
  color: rgba(205, 0, 26, 1);
}


@keyframes rotateAndScale {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: translateX(-.05rem) rotate(-90deg) scale(0.8);
  }

  100% {
    transform: translateX(-.05rem) rotate(-90deg) scale(1);
  }
}



.ele_up {
  opacity: 0;
  transform: translateY(.6rem);
}

@media screen and (orientation: portrait) {
  .header {
    padding: 0 20px 0 0px;
    justify-content: space-between;
  }
  .header .nav_m .item_home .top .home_icon {
    visibility: hidden;
    pointer-events: none;
}
  .header .nav {
    display: none;
  }

  .header .btns .line {
    display: none;
  }

  .header .btns .lang .text {
    display: none;
  }

  .header .btns .lang .arrow {
    display: none;
  }

  .header .btns .btn {
    width: 20px;
    height: 20px;
  }

  .header .btns .m_nav {
    display: block;
    position: relative;
    z-index: 9999;
  }

  .header .btns .m_nav span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #333;
    transition: transform .5s ease;
  }

  .header .btns .m_nav.on span,
  .header.inner .btns .m_nav span {
    background: #333;
  }

  .header .btns .m_nav span:nth-child(1) {
    top: 10%;
  }

  .header .btns .m_nav span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }

  .header .btns .m_nav span:nth-child(3) {
    top: 90%;
  }

  .header .btns .m_nav.on span:nth-child(1) {
    top: 50%;
    transform: rotate(45deg) translateY(-50%);
  }

  .header .btns .m_nav.on span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
  }

  .header .btns .m_nav.on span:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg) translateY(-50%);
  }

  .header .nav_m_mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 997;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
  }

  .header .nav_m_mask.open {
    opacity: 1;
    pointer-events: auto;
  }

  .header .nav_m {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
    gap: 20px;
    z-index: 998;
    transition: right .4s ease;
  }

  .header .nav_m.open {
    right: 0;
  }

  .header .nav_m .item {
    width: 100%;
  }
  .header .nav_m .item .top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .header .nav_m .item .label {
    color: #333;
    font-size: 16px;
    display: block;
    padding: 5px 0;
    
  }
  
  .header .nav_m .item .top .icon {
    width: 10px;
    height: 10px;
    position: relative;
  }

  .header .nav_m .item .top .icon span {
    display: block;
    width: 100%;
    height: 1px;
    background: #333;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform .3s ease;
  }

  .header .nav_m .item .top .icon span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .header .nav_m .item.on .top .icon span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  
  .header .nav_m .item .box {
    max-height: 0;
    overflow: hidden;
    transition: all .3s;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
  }

  .header .nav_m .item.on .box {
    max-height: 100vh;

    padding-top: 20px;
    opacity: 1;
  }

  .header .nav_m .item .box a {
    color: #333;
    font-size: 14px;
  }

  .footer .main {
    margin: 60px 20px 40px;
    flex-direction: column-reverse;
    gap: 40px;
  }

  .footer .main .ul {
    display: none;
  }

  .footer .main .ul_m {
    display: flex;

    flex-direction: column;
    /* gap: 20px; */
    width: 100%;
  }

  .footer .main .ul_m .li {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .footer .main .ul_m .li .label {
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
  }

  .footer .main .ul_m .li .label a {
    color: #fff;
  }

  .footer .main .ul_m .li .label .icon {
    width: 10px;
    height: 10px;
    position: relative;
  }

  .footer .main .ul_m .li .label .icon span {
    display: block;
    width: 100%;
    height: 1px;
    background: #333;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform .3s ease;
  }

  .footer .main .ul_m .li .label .icon span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .footer .main .ul_m .li.on .label .icon span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(0deg);
  }


  .footer .main .ul_m .li .box {
    max-height: 0;
    overflow: hidden;
    transition: all .3s;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
  }

  .footer .main .ul_m .li.on .box {
    max-height: 100vh;

    padding-top: 20px;
    opacity: 1;
  }

  .footer .main .ul_m .li .box a {
    color: #333;
    font-size: 14px;
  }


  .footer .main .right {
    width: 100%;

  }

  .footer .main .right .title {
    width: 85%;
    
    width: 100%;
  }

  .footer .main .right .list .li img {
    width: 15px !important;
    height: 15px !important;
  }

  .footer .main .right .icons .icon {
    width: 32px;
    height: 32px;
  }

  .footer .main .right .icons .icon img {
    width: 20px;
  }

  .footer .bottom {
    padding: 20px;
    flex-direction: column;
    gap: 10px;
  }

  .cremb .arrow {
    height: .25rem;
  }

  .p_banner {
    height: 90vw;
  }

  .p_banner .info {
    padding: 100px 64px 0;
  }
  .p_banner .remark {
    left: 20px;
    font-size: 12px;
  }

  .upload-dialog .wrap {
    width: 90%;
  }

  .p_tabs {
    gap: 0;
    justify-content: space-between;
    top: 1.08rem;
    z-index: 33;
  }
  
  

  




  .f_84 {
    font-size: 32px;
  }

  .f_60 {
    font-size: 28px;
  }

  .f_54 {
    font-size: 24px;
  }

  .f_50,
  .f_40,
  .f_32 {
    font-size: 22px;
  }

  .f_30,
  .f_26 {
    font-size: 20px;
  }

  .f_24 {
    font-size: 18px;
  }

  .f_22 {
    font-size: 16px;
  }

  .f_20,
  .f_18 {
    font-size: 14px;
  }

  .f_16,
  .f_14 {
    font-size: 12px;
  }
  
  .p_btn {
      font-size: 12px;
  }


}