:root {
  --theme: #22a74f;
  --duration: 0.45s;
  --header-height: max(0.9rem, 70px);
  /* --- font40以下 */
  --font12: clamp(12px, 0.12rem, 12px);
  --font14: clamp(12px, 0.14rem, 14px);
  --font15: clamp(12px, 0.15rem, 15px);
  --font16: clamp(13px, 0.16rem, 16px);
  --font17: clamp(13px, 0.17rem, 17px);
  --font18: clamp(14px, 0.18rem, 18px);
  --font20: clamp(15px, 0.2rem, 20px);
  --font22: clamp(16px, 0.22rem, 22px);
  --font23: clamp(16px, 0.23rem, 23px);
  --font24: clamp(17px, 0.24rem, 24px);
  --font26: clamp(18px, 0.26rem, 26px);
  --font28: clamp(18px, 0.28rem, 28px);
  --font30: clamp(20px, 0.3rem, 30px);
  --font32: clamp(20px, 0.32rem, 32px);
  --font34: clamp(22px, 0.34rem, 34px);
  --font36: clamp(22px, 0.36rem, 36px);
  --font38: clamp(24px, 0.38rem, 38px);
  /* --- font40 */
  --font40: clamp(23px, 0.4rem, 40px);
  --font42: clamp(24px, 0.42rem, 42px);
  --font44: clamp(24px, 0.44rem, 44px);
  --font46: clamp(25px, 0.46rem, 46px);
  --font48: clamp(26px, 0.48rem, 48px);
  /* --- font50 */
  --font50: clamp(28px, 0.5rem, 50px);
  --font52: clamp(28px, 0.52rem, 52px);
  --font54: clamp(28px, 0.54rem, 54px);
  --font56: clamp(28px, 0.56rem, 56px);
  --font58: clamp(29px, 0.58rem, 58px);
  /* --- font60 */
  --font60: clamp(30px, 0.6rem, 60px);
  --font62: clamp(31px, 0.62rem, 62px);
  --font64: clamp(31px, 0.66rem, 64px);
  --font66: clamp(31px, 0.66rem, 66px);
  --font68: clamp(31px, 0.68rem, 68px);
  /* --- font70以及以上 */
  --font70: clamp(32px, 0.7rem, 70px);
  --font72: clamp(32px, 0.72rem, 72px);
  --font80: clamp(32px, 0.8rem, 80px);
  --font88: clamp(32px, 0.88rem, 88px);
  --font100: 1rem;
  --font120: 1.2rem;
  --font160: 1.6rem;
  --font230: 2.3rem;
  --font400: 4rem;
  --space-min: 30px;
  --space: 45px;
}
html {
  font-size: calc(100vw / 19.2);
}
@media (min-width: 1921px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: calc(100vw / 15.36);
  }
}
body.lock {
  overflow: hidden;
}
.wrap {
  max-width: 1600px;
  margin: 0 auto;
  width: 86%;
}
@media (max-width: 768px) {
  .wrap {
    width: 90%;
  }
}
@font-face {
  font-family: Source Han Sans CN;
  src: url("../fonts/SourceHanSansSC-Medium-2.otf");
  font-display: swap;
}
@font-face {
  font-family: SourceHanSansCN-Light;
  src: url("../fonts/SourceHanSansSC-Light-2.otf");
  font-display: swap;
}
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 18px;
  z-index: 99;
}
body {
  font-family: Source Han Sans CN, sans-serif;
  line-height: normal;
  font-size: 14px;
}
input,
textarea,
button {
  font-family: Source Han Sans CN, sans-serif;
}
.animate-title {
  overflow: hidden;
}
.animate-title span {
  display: inline-block;
  vertical-align: top;
}
.animate-left,
.animate-right {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.animate-left::after,
.animate-right::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  border-radius: 50%;
  background-color: #22a74f;
  z-index: -1;
  transition: var(--duration, 0.45s);
  top: 0;
}
.animate-left::after {
  left: 0;
}
.animate-right::after {
  right: 0;
}
.animate-left:hover img {
  filter: brightness(0) invert(1);
}
.animate-left:hover::after {
  left: auto;
  right: 0;
  width: 100%;
}
.animate-right:hover img {
  filter: brightness(0) invert(1);
}
.animate-right:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}
.banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  padding-top: max(45px, 0.85rem);
  position: relative;
  z-index: 2;
}
.banner .banner-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.banner .banner-wrap .text {
  padding-top: max(2rem, 40px);
  position: relative;
  z-index: 6;
}
.banner .banner-wrap .text .name .name-text {
  font-weight: 500;
  font-size: var(--font68);
  color: #ffffff;
  line-height: 1.23529412;
}
.banner .banner-wrap .text .desc-list {
  margin-top: max(30px, 0.85rem);
}
.banner .banner-wrap .text .desc-list .desc-item {
  display: flex;
  align-items: center;
  margin-bottom: max(0.2rem, 10px);
  font-size: var(--font24);
  font-weight: 400;
  color: #ffffff;
}
.banner .banner-wrap .text .desc-list .desc-item .item-icon {
  margin-right: max(10px, 0.13rem);
  display: flex;
  align-items: center;
}
.banner .banner-wrap .text .desc-list .desc-item .item-icon img {
  display: block;
}
.banner .banner-wrap .text .desc-list .desc-item .item-text {
  white-space: nowrap;
  line-height: 1;
}
.banner .banner-wrap .person {
  width: 56.75%;
}
.banner .banner-wrap .person img {
  display: block;
  width: 100%;
  height: auto;
}
.banner .banner-mask {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.banner .banner-mask img {
  display: block;
  width: 100%;
  height: auto;
}
.company {
  padding-top: max(1.34rem, var(--space));
  background-color: #22a74f;
  display: flow-root;
}
.company .company-wrap {
  display: flex;
  align-items: flex-start;
  margin-bottom: max(30px, 1.14rem);
  overflow: hidden;
}
.company .company-wrap .pic {
  width: 37.3125%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  margin-right: max(30px, 0.83rem);
}
.company .company-wrap .pic:hover img {
  transform: scale(1.05);
}
.company .company-wrap .pic::after {
  content: "";
  display: block;
  padding-bottom: 85.92964824%;
}
.company .company-wrap .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--duration, 0.45s);
}
.company .company-wrap .text .title-area {
  font-weight: bold;
  font-size: var(--font60);
  color: #ffffff;
}
.company .company-wrap .text .title-area .line {
  margin-top: max(15px, 0.3rem);
  width: 3em;
  height: max(4px, 0.08rem);
  background: #ffffff;
}
.company .company-wrap .text .desc {
  margin-top: 0.6rem;
}
.company .company-wrap .text .desc .desc-text {
  font-weight: 300;
  font-size: var(--font24);
  color: #ffffff;
  line-height: 1.58333333;
  font-family: SourceHanSansCN-Light, sans-serif;
  margin-bottom: 15px;
}
.company .company-wrap .text .desc .desc-text:last-child {
  margin-bottom: 0;
}
.company .streamer {
  max-width: 1328px;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  display: flex;
  align-items: center;
  background: #ffb431;
  box-shadow: 0px 27px 76px 0px rgba(0, 0, 0, 0.1);
  border-radius: 0.7rem;
  padding-top: max(15px, 0.4rem);
  padding-bottom: max(15px, 0.39rem);
  transform: translateY(50%);
  position: relative;
  z-index: 2;
}
.company .streamer .streamer-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  flex-shrink: 0;
  user-select: none;
  cursor: pointer;
}
.company .streamer .streamer-item:first-child {
  border-right: 1px solid #fff;
}
.company .streamer .streamer-item:hover .icon .hover {
  clip-path: inset(0 0 0 0);
}
.company .streamer .streamer-item:hover .text .title .title2 {
  clip-path: inset(0 0 0 0);
  transition-delay: 0.3s;
}
.company .streamer .streamer-item .icon {
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.company .streamer .streamer-item .icon img {
  display: block;
}
.company .streamer .streamer-item .icon .hover {
  position: absolute;
  left: 0;
  top: 0;
  transition: var(--duration);
  clip-path: inset(0 100% 0 0);
}
.company .streamer .streamer-item .text {
  margin-left: 16px;
}
.company .streamer .streamer-item .text .title {
  font-weight: 500;
  font-size: var(--font36);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.company .streamer .streamer-item .text .title .title2 {
  color: var(--theme);
  transition: var(--duration);
  position: absolute;
  left: 0;
  top: 0;
  clip-path: inset(0 100% 0 0);
  transition-timing-function: linear;
}
.company .streamer .streamer-item .text .desc {
  font-weight: 400;
  font-size: var(--font20);
  color: #fff;
  line-height: 1.35;
  margin-top: 5px;
  position: relative;
  overflow: hidden;
}
.company .streamer .streamer-item .text .desc .desc2 {
  color: var(--theme);
  transition: 0.6s;
  position: absolute;
  left: 0;
  top: 0;
  clip-path: inset(0 100% 0 0);
  transition-timing-function: linear;
}
.effect {
  padding-top: max(1.62rem, 70px);
  padding-bottom: max(1.05rem, 45px);
}
.effect .title-area {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: max(30px, 0.57rem);
}
.effect .title-area .title {
  font-weight: bold;
  font-size: var(--font60);
  color: #22a74f;
}
.effect .effect-wrap {
  max-width: 1740px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  margin-top: max(0.57rem, 30px);
  /* 里面的那个图集 */
}
@media (max-width: 768px) {
  .effect .effect-wrap {
    width: 92%;
  }
}
.effect .effect-wrap .arrow {
  width: 38px;
  height: 38px;
  background: #eeeeee;
  border-radius: 50%;
  user-select: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.effect .effect-wrap .arrow img {
  transition: var(--duration);
}
.effect .effect-wrap .effect-swiper {
  width: calc(1600 / 1740 * 100%);
  margin-left: auto;
  margin-right: auto;
}
.effect .effect-wrap .effect-swiper .swiper-slide {
  display: flex;
  align-items: center;
  padding: max(0.35rem, 20px) max(0.32rem, 15px) max(0.37rem, 20px) max(0.2rem, 15px);
  background: #f8f8f8;
  border-radius: 10px;
  border: 1px solid #eeeeee;
  user-select: none;
  cursor: pointer;
}
.effect .effect-wrap .effect-swiper .swiper-slide .right .slide-title {
  font-weight: 400;
  font-size: var(--font32);
  color: #22a74f;
  line-height: 1.1875;
  margin-bottom: 0.26rem;
}
.effect .effect-wrap .effect-swiper .swiper-slide .right .slide-desc {
  font-weight: 300;
  font-size: var(--font18);
  color: #666666;
  line-height: 1.77777778;
  margin-bottom: 0.24rem;
  padding-right: max(10px, 0.38rem);
  font-family: SourceHanSansCN-Light, sans-serif;
}
.effect .effect-wrap .effect-swiper .swiper-slide .right .pic {
  border: 1px solid #22a74f;
  border-radius: 10px;
  overflow: hidden;
}
.effect .effect-wrap .effect-swiper .swiper-slide .right .pic img {
  display: block;
  width: 100%;
  height: auto;
}
.effect .effect-wrap .effect-swiper .swiper-pagination {
  display: flex;
  width: fit-content;
  position: static;
  margin-left: auto;
  margin-right: auto;
  margin-top: max(0.3rem, 20px);
}
.effect .effect-wrap .effect-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(34, 167, 79, 0.6);
  border-radius: 50%;
  margin-left: 0;
  margin-right: 12px;
}
.effect .effect-wrap .effect-swiper .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.effect .effect-wrap .effect-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #22a74f;
}
.effect .effect-wrap .effect-swiper2 {
  background: #dfe4e8;
  border-radius: 10px;
  width: 49.0625%;
  flex-shrink: 0;
  padding-top: max(15px, 0.56rem);
  padding-bottom: max(15px, 0.59rem);
  padding-left: max(15px, 0.25rem);
  padding-right: max(15px, 0.23rem);
  margin-right: max(15px, 0.46rem);
}
.effect .effect-wrap .effect-swiper2 .effect2-slide {
  flex-shrink: 0;
}
.effect .effect-wrap .effect-swiper2 .pic {
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 70%;
  background: #dfe4e8;
}
.effect .effect-wrap .effect-swiper2 .pic img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  mix-blend-mode: multiply;
}
.effect .effect-wrap .effect-swiper2 img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 1px solid #22a74f;
}
.user-message {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: max(1.19rem, 45px);
  padding-bottom: max(1.58rem, 45px);
}
.user-message .title {
  text-align: center;
  font-weight: bold;
  font-size: var(--font60);
  color: #ffffff;
  margin-bottom: max(0.6rem, 30px);
}
.user-message .message-wrap {
  max-width: 1740px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .user-message .message-wrap {
    width: 92%;
  }
}
.user-message .message-wrap .arrow {
  width: 38px;
  height: 38px;
  background: #eeeeee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
}
.user-message .message-wrap .message-swiper {
  width: calc(1600 / 1740 * 100%);
  margin-left: auto;
  margin-right: auto;
}
.user-message .message-wrap .message-swiper .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: max(20px, 0.3rem) max(15px, 0.3rem);
}
.user-message .message-wrap .message-swiper .item {
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  padding-left: max(15px, 0.41rem);
  padding-right: max(0.51rem, 15px);
  padding-top: max(0.5rem, 20px);
  padding-bottom: max(0.52rem, 20px);
}
.user-message .message-wrap .message-swiper .item .avatar {
  width: 58px;
  height: 58px;
  background: #efefef;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.user-message .message-wrap .message-swiper .item .avatar img {
  mix-blend-mode: multiply;
}
.user-message .message-wrap .message-swiper .item .desc {
  padding-left: max(0.22rem, 15px);
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #666666;
  line-height: 1.75;
  text-align: justify;
  overflow-wrap: break-word;
}
.user-message .message-wrap .message-pagination {
  display: none;
}
.life {
  padding-top: max(1.19rem, 45px);
  padding-bottom: max(1.4rem, 45px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
  --unit: 88px;
  --item1-width: 23.5%;
  --item2-width: 26.375%;
  --item2-pl: max(0.43rem, 15px);
  --item3-width: 26.25%;
  --item3-pl: max(0.4rem, 15px);
  --item4-width: 23.6875%;
  --item4-pl: max(0.4rem, 15px);
}
.life .title {
  font-family: Source Han Sans CN;
  font-weight: bold;
  font-size: var(--font60);
  color: #22a74f;
  text-align: center;
  margin-bottom: max(25px, 0.69rem);
}
.life .life-streamer {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: calc(var(--unit) / 2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
.life .life-streamer .item1 {
  width: var(--item1-width);
}
.life .life-streamer .item1 .icon {
  background: #096d1c;
  box-shadow: 11px 0px 18px 0px rgba(0, 0, 0, 0.34);
}
.life .life-streamer .item2 {
  width: var(--item2-width);
  padding-left: var(--item2-pl);
}
.life .life-streamer .item2 .icon {
  background: #22a74f;
  box-shadow: 11px 0px 18px 0px rgba(0, 0, 0, 0.34);
}
.life .life-streamer .item3 {
  width: var(--item3-width);
  padding-left: var(--item3-pl);
}
.life .life-streamer .item3 .icon {
  background: #779b1b;
  box-shadow: 11px 0px 18px 0px rgba(0, 0, 0, 0.34);
}
.life .life-streamer .item4 {
  width: var(--item4-width);
  padding-left: var(--item4-pl);
}
.life .life-streamer .item4 .icon {
  background: #ffb431;
  box-shadow: 11px 0px 18px 0px rgba(0, 0, 0, 0.34);
}
.life .life-streamer .item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.life .life-streamer .item .icon {
  width: var(--unit);
  height: var(--unit);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.life .life-streamer .item .icon img {
  display: block;
}
.life .life-streamer .item .text {
  font-weight: bold;
  font-size: var(--font32);
  color: #ffffff;
  margin-left: max(0.3rem, 15px);
}
.life .life-streamer .item .arrow {
  margin-left: auto;
}
.life .life-streamer .item .arrow img {
  display: block;
}
.life .tag-list {
  display: flex;
}
.life .tag-list .tag-item1 {
  width: var(--item1-width);
  justify-content: flex-start;
  padding-right: max(0.36rem, 15px);
  justify-content: space-between;
}
.life .tag-list .tag-item2 {
  width: var(--item2-width);
  padding-left: max(0.41rem, 15px);
  padding-right: max(0.41rem, 15px);
  justify-content: space-between;
}
.life .tag-list .tag-item3 {
  width: var(--item3-width);
  justify-content: center;
  padding-left: max(15px, 0.4rem);
  padding-right: max(15px, 0.4rem);
  justify-content: space-between;
}
.life .tag-list .tag-item4 {
  width: var(--item4-width);
  padding-left: max(15px, 0.39rem);
  justify-content: space-between;
}
.life .tag-list .tag-item {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  padding-top: max(50px, 0.3rem);
  position: relative;
}
.life .tag-list .tag-item::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  width: 1px;
  height: calc(100% + 10%);
  background: linear-gradient(to bottom, #22a74f, transparent);
}
.life .tag-list .tag-item:last-child::after {
  display: none;
}
.life .tag-list .tag-item .tag {
  width: 47.05882353%;
  flex-shrink: 0;
  margin-bottom: max(0.18rem, 10px);
  border-radius: 21px;
  border: 1px solid #22a74f;
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #333333;
  user-select: none;
  cursor: pointer;
  vertical-align: middle;
}
.life .tag-list .tag-item .tag-full {
  width: 76.47058824%;
}
.original {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: max(1.2rem, 45px);
  padding-bottom: max(1.32rem, 45px);
  position: relative;
  z-index: 17;
  overflow: hidden;
}
.original::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30%;
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
  pointer-events: none;
}
.original .title {
  font-weight: bold;
  font-size: var(--font60);
  color: #22a74f;
  text-align: center;
}
.original .original-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: max(1.3rem, 60px);
}
.original .original-wrap .left {
  width: 41.25%;
  flex-shrink: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
  border-radius: 10px 10px 0 0;
  border-top: 1px solid #22a74f;
  border-bottom: none;
  padding-left: max(15px, 0.58rem);
  padding-right: max(15px, 0.58rem);
  padding-top: max(20px, 0.47rem);
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.original .original-wrap .left::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 1px;
  height: 86%;
  background-image: linear-gradient(to bottom, #22a74f 70%, transparent);
}
.original .original-wrap .left::after {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  width: 1px;
  height: 86%;
  background-image: linear-gradient(to bottom, #22a74f 70%, transparent);
}
.original .original-wrap .left .top-area {
  display: flex;
  padding-bottom: max(20px, 0.45rem);
  border-bottom: 1px solid #cccccc;
  margin-bottom: max(0.41rem, 25px);
}
.original .original-wrap .left .top-area .text-list {
  flex: 1;
  margin-right: max(0.25rem, 15px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.original .original-wrap .left .top-area .text-list .text-item {
  margin-bottom: 15px;
}
.original .original-wrap .left .top-area .text-list .text-item:last-child {
  margin-bottom: 0;
}
.original .original-wrap .left .top-area .text-list .text-item .item-title {
  font-weight: 500;
  font-size: var(--font26);
  color: #22a74f;
}
.original .original-wrap .left .top-area .text-list .text-item .item-desc {
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: var(--font14);
  color: #333333;
  line-height: 1.5;
}
.original .original-wrap .left .top-area .pic {
  width: calc(243 / 536 * 100%);
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}
.original .original-wrap .left .top-area .pic img {
  display: block;
  max-width: 100%;
  height: auto;
}
.original .original-wrap .left .description-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.original .original-wrap .left .description-list .item {
  width: 43.35793358%;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
}
.original .original-wrap .left .description-list .item .icon {
  margin-right: max(10px, 0.2rem);
}
.original .original-wrap .left .description-list .item .icon img {
  display: block;
}
.original .original-wrap .left .description-list .item .text {
  margin-bottom: max(15px, 0.32rem);
}
.original .original-wrap .left .description-list .item .text .t-title {
  font-weight: 500;
  font-size: var(--font22);
  color: #22a74f;
  line-height: 1.25;
}
.original .original-wrap .left .description-list .item .text .t-desc {
  font-weight: 400;
  font-size: var(--font14);
  color: #666666;
  line-height: 1.57142857;
  font-family: "SourceHanSansCN-Light", sans-serif;
}
.original .original-wrap .right {
  width: 45.0625%;
  flex-shrink: 0;
  position: relative;
  margin-top: 11px;
  z-index: 2;
}
.original .original-wrap .right::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.original .original-wrap .right .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px dashed var(--theme);
  border-radius: 50%;
}
.original .original-wrap .right .inner {
  width: 80.85991678%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.original .original-wrap .right .inner img {
  display: block;
  max-width: 100%;
  height: auto;
}
.original .original-wrap .right .list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: rotateAnimate 20s linear infinite;
}
.original .original-wrap .right .list .item {
  position: absolute;
}
.original .original-wrap .right .list .item img {
  animation: rotateAnimate 20s linear infinite reverse;
  width: max(0.87rem, 60px);
}
.service {
  padding-top: max(45px, 1.19rem);
  padding-bottom: max(45px, 0.78rem);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 60% center;
}
.service .title {
  font-weight: bold;
  font-size: var(--font60);
  color: #22a74f;
  margin-bottom: max(0.3rem, 20px);
  text-align: center;
}
.service .desc-text {
  font-weight: 400;
  font-size: var(--font22);
  color: #333333;
  font-family: SourceHanSansCN-Light, sans-serif;
  text-align: center;
  margin-bottom: max(30px, 0.57rem);
}
.service .pic img {
  display: block;
  max-width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}
.tool {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: max(65px, 1.2rem);
  padding-bottom: 2.74rem;
}
.tool .tool-title {
  font-weight: bold;
  font-size: var(--font60);
  color: #ffffff;
  text-align: center;
  margin-bottom: max(30px, 0.6rem);
}
.tool .main {
  background-image: linear-gradient(to bottom, rgba(4, 130, 48, 0.8), transparent);
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  padding-left: max(15px, 0.71rem);
  padding-right: max(15px, 0.71rem);
  padding-top: max(45px, 0.74rem);
}
.tool .main .main-left {
  width: 58.29903978%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  position: relative;
}
.tool .main .main-left .swiper-container {
  width: calc(791 / 850 * 100%);
  margin-left: auto;
  margin-right: auto;
}
.tool .main .main-left .swiper-container .tool-swiper .swiper-wrapper {
  align-items: center;
}
.tool .main .main-left .swiper-container .tool-swiper .swiper-slide {
  transition: transform 0.6s ease;
  border-radius: 3px;
  border: 1px solid #22a74f;
  transform: scale(0.86);
  transform-origin: center center;
  user-select: none;
  cursor: pointer;
  padding: max(3px, 0.06rem);
}
.tool .main .main-left .swiper-container .tool-swiper .swiper-slide .pic {
  display: block;
  height: auto;
  position: relative;
}
.tool .main .main-left .swiper-container .tool-swiper .swiper-slide .pic img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  margin-left: auto;
  margin-right: auto;
}
.tool .main .main-left .swiper-container .tool-swiper .swiper-slide .pic::before {
  content: "";
  background-image: url(../images/phone-streamer.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 30%;
  height: 0.6rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0.6rem;
  opacity: 0;
  transition: var(--duration);
}
.tool .main .main-left .swiper-container .tool-swiper .swiper-slide.swiper-slide-active {
  padding: 0;
  border-radius: 0;
  border-color: transparent;
  transform: scale(1);
  background-image: url(../images/phone.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  position: relative;
}
.tool .main .main-left .swiper-container .tool-swiper .swiper-slide.swiper-slide-active .pic {
  padding: 0.13rem 0.14rem 0.13rem;
}
.tool .main .main-left .swiper-container .tool-swiper .swiper-slide.swiper-slide-active .pic img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.25rem;
}
.tool .main .main-left .swiper-container .tool-swiper .tool-pagination {
  display: none;
}
.tool .main .main-left .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  user-select: none;
  cursor: pointer;
}
.tool .main .main-left .arrow img {
  filter: brightness(0) invert(1);
}
.tool .main .main-left .arrow.main-arrow-left {
  left: 0;
}
.tool .main .main-left .arrow.main-arrow-right {
  right: 0;
}
.tool .main .main-right {
  width: 35.11659808%;
  margin-left: auto;
}
.tool .main .main-right .sub-title {
  font-weight: bold;
  font-size: var(--font48);
  color: #ffffff;
  line-height: 1.125;
  text-align: center;
  margin-bottom: 0.6rem;
}
.tool .main .main-right .r-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: max(20px, 0.29rem) max(15px, 0.31rem);
}
.tool .main .main-right .r-list .r-item {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: max(20px, 0.31rem);
  padding-bottom: max(20px, 0.4rem);
  transition: var(--duration);
}
.tool .main .main-right .r-list .r-item:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.tool .main .main-right .r-list .r-item:hover .icon .default {
  opacity: 0;
}
.tool .main .main-right .r-list .r-item:hover .icon .hover {
  opacity: 1;
}
.tool .main .main-right .r-list .r-item .icon {
  height: max(40px, 0.78rem);
  display: flex;
  align-items: center;
  position: relative;
}
.tool .main .main-right .r-list .r-item .icon img {
  display: block;
  max-height: 100%;
  width: auto;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
  object-position: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: var(--duration);
}
.tool .main .main-right .r-list .r-item .icon .default {
  opacity: 1;
}
.tool .main .main-right .r-list .r-item .icon .hover {
  opacity: 0;
}
.tool .main .main-right .r-list .r-item .text {
  font-weight: 400;
  font-size: var(--font18);
  margin-top: max(10px, 0.2rem);
  color: #fff;
}
.watch {
  --top: -8.0729vw;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
  margin-top: min(-60px, var(--top));
  padding-bottom: 0.7rem;
  position: relative;
  z-index: 6;
}
.watch .title-area {
  padding-top: 1.12rem;
}
.watch .title-area .reward-title {
  font-weight: bold;
  font-size: var(--font48);
  color: #22a74f;
  text-align: center;
  line-height: 1.25;
}
.watch .watch-list {
  max-width: 1490px;
  width: 82%;
  margin-top: max(30px, 0.7rem);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .watch .watch-list {
    width: 90%;
  }
}
.watch .watch-list .other {
  width: calc(339 / 1490 * 100%);
}
.watch .watch-list .other img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.watch .watch-list .watch-main {
  width: calc(579 / 1490 * 100%);
  margin-left: auto;
  margin-right: auto;
}
.watch .watch-list .watch-main img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.reward img {
  display: block;
  width: 100%;
  height: auto;
}
.camp {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: max(45px, 1.19rem);
}
.camp .camp-title {
  font-weight: bold;
  font-size: var(--font60);
  color: #ffffff;
  margin-bottom: 0.31rem;
  text-align: center;
}
.camp .sub-title {
  font-weight: bold;
  font-size: var(--font36);
  color: #ffffff;
  text-align: center;
  margin-bottom: max(30px, 0.53rem);
}
.camp .camp-main {
  max-width: 830px;
  width: 82%;
  margin-left: auto;
  margin-right: auto;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-left: max(15px, 0.25rem);
  padding-right: max(15px, 0.32rem);
  padding-top: max(20px, 0.28rem);
  padding-bottom: max(20px, 1.2rem);
  border-radius: 10px 10px 0px 0px;
}
.camp .camp-main .left {
  width: calc(400 / 773 * 100%);
  flex-shrink: 0;
  padding-top: 12px;
}
.camp .camp-main .left .l-item {
  display: flex;
  background: #ffffff;
  border-radius: 10px;
  position: relative;
  padding-left: calc(calc(164 / 400 * 100%) + 15px);
  margin-bottom: max(0.32rem, 25px);
}
.camp .camp-main .left .l-item:last-child {
  margin-bottom: 0;
}
.camp .camp-main .left .l-item .icon-area {
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(164 / 400 * 100%);
  height: calc(100% + 12px);
  background-image: url(../images/clip.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.camp .camp-main .left .l-item .icon-area img {
  display: block;
}
.camp .camp-main .left .l-item .icon-area span {
  font-weight: 500;
  font-size: var(--font26);
  color: #feff95;
  margin-left: 11px;
}
.camp .camp-main .left .l-item .text-area {
  font-weight: 400;
  font-size: var(--font22);
  color: #333333;
  padding-top: 11px;
  padding-bottom: 14px;
}
.camp .camp-main .right {
  width: calc(330 / 773 * 100%);
  flex-shrink: 0;
  padding-top: 23px;
  padding-bottom: 21px;
  padding-left: 21px;
  padding-right: max(0.35rem, 20px);
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  user-select: none;
  cursor: pointer;
}
.camp .camp-main .right .code {
  width: calc(205 / 274 * 100%);
  flex-shrink: 0;
}
.camp .camp-main .right .code img {
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  object-fit: contain;
}
.camp .camp-main .right .code-text {
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: var(--font23);
  color: #ffffff;
  background: #22a74f;
  border-radius: 6px;
  writing-mode: vertical-lr;
  padding-left: 7px;
  padding-right: 7px;
  text-align: center;
  margin-left: auto;
  user-select: none;
  cursor: pointer;
}
.footer {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  padding-top: max(45px, 1.22rem);
  padding-bottom: max(1.2rem, 45px);
  position: relative;
}
.footer .footer-main {
  width: 86%;
  max-width: 727px;
  margin-left: auto;
  margin-right: auto;
}
.footer .footer-main .download-line {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin-bottom: max(30px, 0.56rem);
}
.footer .footer-main .download-line .pic {
  width: calc(193 / 727 * 100%);
  flex-shrink: 0;
  margin-right: max(0.21rem, 15px);
}
.footer .footer-main .download-line .pic img {
  display: block;
  max-width: 100%;
  height: auto;
}
.footer .footer-main .download-line .list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer .footer-main .download-line .list .item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #22a74f;
  border-radius: 10px;
  user-select: none;
  padding-top: 16.5px;
  padding-bottom: 16.5px;
  cursor: pointer;
  width: max(260px, 3.4rem);
}
.footer .footer-main .download-line .list .item.bg-android {
  background: #22a74f;
  margin-bottom: max(0.2rem, 10px);
}
.footer .footer-main .download-line .list .item.bg-apple {
  background: #000000;
}
.footer .footer-main .download-line .list .item .icon {
  margin-right: max(0.4rem, 15px);
}
.footer .footer-main .download-line .list .item .icon img {
  display: block;
}
.footer .footer-main .download-line .list .item .text .version {
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: var(--font14);
  color: #ffffff;
  line-height: 1;
  margin-bottom: 13px;
}
.footer .footer-main .download-line .list .item .text .store {
  font-weight: 500;
  font-size: var(--font18);
  color: #ffffff;
  line-height: 1;
}
.footer .footer-main .info-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.3);
}
.footer .footer-main .info-line span {
  font-family: SourceHanSansCN-Light, sans-serif;
  font-size: var(--font14);
  color: #333333;
  font-weight: 300;
  margin-right: 10px;
  margin-bottom: 10px;
}
.footer .footer-main .info-line span:last-child {
  margin-right: 0;
}
.footer .footer-main .copyright-line {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: max(0.19rem, 10px);
  margin-bottom: max(0.31rem, 15px);
}
.footer .footer-main .copyright-line .copyright-text {
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: var(--font14);
  color: #999999;
  transition: var(--duration);
  user-select: none;
  cursor: pointer;
  margin-right: max(15px, 0.35rem);
}
.footer .footer-main .copyright-line .copyright-text:last-child {
  margin-right: 0;
}
.footer .footer-main .copyright-line .copyright-text:hover {
  color: var(--theme);
}
.footer .footer-main .follow-line {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: max(0.55rem, 20px);
}
.footer .footer-main .follow-line .follow-text {
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: var(--font14);
  color: #666666;
  margin-right: max(10px, 0.21rem);
}
.footer .footer-main .follow-line .follow-list {
  display: flex;
  align-items: center;
}
.footer .footer-main .follow-line .follow-list .follow-item {
  display: flex;
  align-items: center;
  position: relative;
  margin-right: max(10px, 0.14rem);
}
.footer .footer-main .follow-line .follow-list .follow-item:last-child {
  margin-right: 0;
}
.footer .footer-main .follow-line .follow-list .follow-item .icon img {
  display: block;
  filter: brightness(0);
  opacity: 0.3;
  transition: var(--duration) ease;
}
.footer .footer-main .follow-line .follow-list .follow-item .hover-code {
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%) scale(0, 1);
  background-color: #fff;
  padding: 6px;
  border-radius: 10px;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.45s;
}
.footer .footer-main .follow-line .follow-list .follow-item .hover-code img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  object-position: center center;
}
.footer .footer-main .follow-line .follow-list .follow-item:hover .icon img {
  opacity: 1;
  filter: none;
}
.footer .footer-main .follow-line .follow-list .follow-item:hover .hover-code {
  transform: translateX(-50%) scale(1, 1);
}
.footer .footer-main .qrcode-line {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .footer-main .qrcode-line .item {
  margin-right: 13px;
}
.footer .footer-main .qrcode-line .item:last-child {
  margin-right: 0;
}
.footer .footer-main .qrcode-line .item .pic {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  width: 110px;
  height: 110px;
}
.footer .footer-main .qrcode-line .item .pic img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.footer .footer-main .qrcode-line .item .text {
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: var(--font14);
  color: #666666;
  margin-top: 11px;
  text-align: center;
  white-space: nowrap;
}
.footer .foot-right {
  width: max(130px, 1.68rem);
  background: #22a74f;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding-top: 48px;
  padding-bottom: 22px;
  position: fixed;
  bottom: 6vh;
  right: max(0.21rem, 10px);
  z-index: calc(999 * 9);
}
.footer .foot-right .qrcode {
  width: calc(100% - 0.42rem);
  margin-left: auto;
  margin-right: auto;
}
.footer .foot-right .qrcode img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.footer .foot-right .text {
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: var(--font14);
  color: #ffffff;
  text-align: center;
  margin-top: 10px;
}
.footer .foot-right .position-icon {
  width: 72px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  overflow: hidden;
  background-color: transparent;
}
.footer .foot-right .position-icon img {
  display: block;
  max-width: 65%;
  height: auto;
}
.footer .foot-right .position-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  background-color: #f3f4f6;
  z-index: -1;
}
@keyframes rotateAnimate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (min-width: 1201px) {
  .phone-life {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  .banner .banner-wrap .text {
    padding-top: 1.2rem;
  }
  .company .streamer .streamer-item .icon img {
    width: 30px;
  }
  .user-message .message-wrap .message-swiper .list {
    grid-template-columns: repeat(2, 1fr);
  }
  .user-message .message-wrap .message-swiper {
    width: calc(1550 / 1740 * 100%);
  }
  /* life */
  .life {
    display: none;
  }
  .phone-life {
    padding: 45px 0;
  }
  .phone-life .title {
    font-size: var(--font60);
    text-align: center;
    color: #22a74f;
  }
  .phone-life .phone-life-swiper {
    margin-top: max(35px, 0.65rem);
  }
  .phone-life .tag-area {
    width: 98%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: max(30px, 0.65rem);
  }
  .phone-life .tag-area .h-item {
    background-image: url(../images/life-streamer.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font42);
    color: #fff;
    padding: 15px;
    border-radius: 10px;
  }
  .phone-life .tag-area .h-item .index {
    font-size: max(18px, 0.24rem);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    margin-right: 15px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
    background-image: linear-gradient(-45deg, var(--theme), #ffb431);
  }
  .phone-life .tag-area .h-item .icon {
    margin-right: 15px;
  }
  .phone-life .tag-area .h-item .icon img {
    height: 36px;
  }
  .phone-life .tag-area .tag-item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: max(20px, 0.35rem);
  }
  .phone-life .tag-area .tag-item .tag {
    width: 47.5%;
    border-radius: max(0.25rem, 15px);
    padding: 10px 5px;
    border: 1px solid #22a74f;
    text-align: center;
    margin-bottom: 10px;
    font-size: var(--font16);
  }
  .phone-life .phone-life-pagination {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: max(0.35rem, 15px);
  }
  .phone-life .phone-life-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 1;
    background-color: rgba(34, 167, 79, 0.4);
    margin-left: 0;
    margin-right: 10px;
  }
  .phone-life .phone-life-pagination .swiper-pagination-bullet:last-child {
    margin-right: 0;
  }
  .phone-life .phone-life-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme);
  }
}
@media (max-width: 992px) {
  .banner {
    padding-bottom: 45px;
  }
  .banner .banner-wrap {
    flex-wrap: wrap;
    width: 100%;
  }
  .banner .banner-wrap .text {
    width: 100%;
    padding-left: 7%;
    padding-right: 7%;
  }
  .banner .banner-wrap .person {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    order: -1;
    position: relative;
    padding-left: 7%;
    padding-right: 7%;
  }
  .banner .banner-wrap .person::after {
    content: "";
    width: 100%;
    height: 35%;
    background-image: url(../images/banner-mask.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .company .company-wrap {
    flex-wrap: wrap;
  }
  .company .company-wrap .pic {
    width: 100%;
    margin-right: 0;
    margin-bottom: 35px;
  }
  .company .streamer {
    width: 86%;
  }
  .company .streamer .streamer-item {
    padding-left: 15px;
    padding-right: 15px;
  }
  .effect .effect-wrap .effect-swiper .swiper-slide {
    flex-wrap: wrap;
  }
  /* 左侧的图集 */
  .effect .effect-wrap .effect-swiper .swiper-slide .effect-swiper2 {
    margin-right: 0;
    width: 100%;
    margin-bottom: 35px;
  }
  .effect .effect-wrap .effect-swiper {
    width: calc(1500 / 1740 * 100%);
  }
  .effect .effect-wrap .effect-swiper .swiper-pagination {
    left: 50%;
    bottom: 5%;
    transform: translateX(-50%);
  }
  .user-message .message-wrap .message-swiper {
    width: calc(1500 / 1740 * 100%);
  }
  .original .original-wrap {
    flex-wrap: wrap;
  }
  .original .original-wrap .left {
    width: 100%;
  }
  .original .original-wrap .right {
    width: 90%;
    margin-top: 35px;
    margin-left: auto;
    margin-right: auto;
  }
  .tool .main {
    flex-wrap: wrap;
  }
  .tool .main .main-left {
    width: 100%;
    margin-bottom: var(--space-min);
  }
  .tool .main .main-right {
    width: 100%;
  }
  .tool .main .main-left .swiper-container .tool-swiper .swiper-slide.swiper-slide-active .pic {
    padding-left: 0.46rem;
    padding-right: 0.46rem;
    padding-top: 0.42rem;
    padding-bottom: 0.45rem;
  }
  .tool .main .main-left .swiper-container .tool-swiper .swiper-slide.swiper-slide-active .pic img {
    border-radius: 0.6rem;
  }
  .camp .camp-main {
    width: 86%;
  }
}
@media (max-width: 768px) {
  :root {
    --swiper-width: 84%;
  }
  .banner .banner-wrap .person img {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
  .banner .banner-wrap .text .desc-list .desc-item .item-text {
    white-space: normal;
    line-height: 1.45;
  }
  .company .streamer {
    width: 90%;
  }
  .effect {
    padding-top: 90px;
  }
  /* 用户留言 */
  .user-message {
    object-position: right center;
  }
  .effect .effect-wrap .effect-swiper {
    width: var(--swiper-width);
  }
  .user-message .message-wrap .message-swiper .swiper-slide {
    height: auto;
  }
  .user-message .message-wrap .message-swiper .item {
    height: 100%;
  }
  .original .original-wrap .right {
    position: relative;
    z-index: 10;
  }
  .camp .camp-main {
    width: 90%;
    flex-wrap: wrap;
  }
  .camp .camp-main .left {
    width: 100%;
    margin-bottom: 25px;
  }
  .camp .camp-main .left .l-item .icon-area {
    height: calc(100% + 6px);
  }
  .camp .camp-main .right {
    margin-left: auto;
    margin-right: auto;
  }
  /* 工具 */
  .tool .main .main-left .swiper-container .tool-swiper .swiper-slide.swiper-slide-active .pic {
    padding-top: 0.48rem;
    padding-bottom: 0.48rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .tool .main .main-left .swiper-container .tool-swiper .swiper-slide.swiper-slide-active .pic img {
    border-radius: 0.7rem;
  }
  .footer .footer-main .download-line .list .item .icon {
    width: 35px;
  }
  .footer .footer-main .download-line .list .item .icon img {
    width: 100%;
    object-fit: contain;
  }
}
@media (max-width: 576px) {
  :root {
    --font60: 24px;
  }
  .logo img {
    width: 100px;
  }
  .banner .banner-wrap .text .name .name-text {
    font-size: 24px;
  }
  .company .company-wrap .text .title-area {
    font-size: 24px;
  }
  .company .streamer {
    flex-wrap: wrap;
    transform: translateY(0);
    margin-top: 25px;
    margin-bottom: 30px;
  }
  .company .streamer .streamer-item {
    width: 100%;
    margin-bottom: 15px;
  }
  .company .streamer .streamer-item:last-child {
    margin-bottom: 0;
  }
  .effect {
    padding-top: 45px;
  }
  .effect .title-area img {
    width: 30px;
  }
  .effect .title-area .title {
    font-size: 24px;
    margin-left: 5px;
    margin-right: 5px;
  }
  .effect .effect-wrap .arrow {
    display: none;
  }
  .effect .effect-wrap {
    width: 96%;
  }
  .effect .effect-wrap .effect-swiper {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
  }
  .effect-pagination {
    position: static;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(0) !important;
    margin-top: 25px;
  }
  .effect .effect-wrap .effect-swiper .swiper-slide .right .slide-title {
    font-size: 16px;
  }
  .effect .effect-wrap .effect-swiper2 {
    padding: 10px;
  }
  .effect .effect-wrap .effect-swiper2 .pic {
    background-color: transparent;
  }
  .effect .effect-wrap .effect-swiper2 img {
    border: none;
  }
  .effect .effect-wrap .effect-swiper .swiper-pagination {
    position: static;
    display: block;
    margin: 15px auto;
    transform: translate(0, 0);
  }
  .user-message .message-wrap .message-swiper .list {
    grid-template-columns: 1fr;
    gap: 15px 0;
  }
  /* 用户留言分页器 */
  .user-message .message-wrap .message-pagination {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .user-message .message-wrap .message-pagination .swiper-pagination-bullet {
    margin-left: 0;
    margin-right: 6px;
    opacity: 1;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #f8f8f8;
  }
  .user-message .message-wrap .message-pagination .swiper-pagination-bullet:last-child {
    margin-right: 0;
  }
  .user-message .message-wrap .message-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme);
  }
  .user-message .message-wrap .arrow {
    display: none;
  }
  .user-message .message-wrap .message-swiper {
    width: 100%;
  }
  .phone-life .tag-area .h-item {
    padding: 10px;
  }
  .phone-life .tag-area .h-item .icon {
    display: flex;
    align-items: center;
  }
  .phone-life .tag-area .h-item .icon img {
    height: 26px;
  }
  .phone-life .tag-area .h-item {
    font-size: 20px;
  }
  .phone-life .tag-area .h-item .index {
    width: 30px;
    height: 30px;
  }
  .phone-life .tag-area {
    margin-bottom: 20px;
  }
  .phone-life .tag-area .tag-item .tag {
    font-size: 12px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .original .original-wrap .left .top-area {
    flex-wrap: wrap;
  }
  .original .original-wrap .left .top-area .text-list {
    flex: none;
    width: 100%;
    order: 1;
    margin-top: 25px;
    margin-right: 0;
  }
  .original .original-wrap .left .top-area .text-list .text-item {
    text-align: center;
  }
  .original .original-wrap .left .top-area .pic {
    width: 100%;
  }
  .original .original-wrap .left .top-area .pic img {
    margin-left: auto;
    margin-right: auto;
  }
  .original .original-wrap .right .list .item img {
    width: 50px;
  }
  .service .desc-text {
    font-size: 14px;
    line-height: 1.7;
    text-align: justify;
  }
  .service .desc-text br {
    display: none;
  }
  .tool .main .main-right .r-list .r-item .icon {
    width: 30px;
    height: 30px;
  }
  .tool .main .main-right .r-list .r-item .icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  .camp .camp-main .right {
    width: fit-content;
  }
  .camp .camp-main .right .code {
    width: 140px;
  }
  .watch {
    padding-top: 45px;
  }
  .watch .title-area .reward-title {
    font-size: 24px;
  }
  .camp .camp-main .left .l-item .icon-area img {
    width: 20px;
    object-fit: contain;
  }
  .footer .footer-main .download-line {
    flex-wrap: wrap;
  }
  .footer .footer-main .download-line .list .item {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .footer .footer-main .info-line {
    flex-wrap: wrap;
  }
  .footer .footer-main .info-line span {
    width: 100%;
    margin-right: 0;
    margin-bottom: 6px;
    text-align: center;
  }
  /* 6-24 */
  .original .title {
    width: 86%;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.72rem;
  }
  .original .original-wrap {
    margin-top: 35px;
  }
  .original .original-wrap .left .description-list .item {
    width: 100%;
    margin-bottom: 15px;
  }
  .tool .main .main-right .sub-title {
    font-size: 20px;
  }
  .camp .camp-main .right {
    padding: 15px;
  }
  /* 工具 */
  .tool .main .main-left .swiper-container .tool-swiper .swiper-slide.swiper-slide-active .pic {
    padding: 0.42rem 0.42rem;
  }
  .tool .main .main-left .arrow {
    display: none;
  }
  .tool .main .main-left .swiper-container .tool-swiper .tool-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    position: static;
    margin-top: 25px;
  }
  .tool .main .main-left .swiper-container .tool-swiper .tool-pagination .swiper-pagination-bullet {
    opacity: 1;
    margin-left: 0;
    margin-right: 10px;
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 50%;
  }
  .tool .main .main-left .swiper-container .tool-swiper .tool-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme);
  }
  .tool {
    padding-bottom: 90px;
  }
  .footer .footer-main .download-line .pic {
    margin-bottom: 15px;
    margin-right: 0;
  }
  .footer .footer-main .copyright-line {
    flex-wrap: wrap;
  }
  .footer .footer-main .download-line .list .item .icon {
    width: 26px;
  }
  .footer .footer-main .download-line .list .item .text .version {
    margin-bottom: 6px;
  }
  .footer .footer-main .qrcode-line .item .pic {
    width: 90px;
    height: 90px;
  }
  /* 右侧的二维码 */
  .footer .foot-right {
    padding-top: 15px;
    padding-bottom: 15px;
    position: relative;
    right: auto;
    bottom: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    width: 110px;
  }
  .footer .foot-right .position-icon {
    display: none;
  }
  .footer .foot-right .qrcode img {
    max-width: 90%;
  }
  /* 循证生活方式 */
  .phone-life .tag-area .h-item {
    font-size: 18px;
  }
  .phone-life .tag-area .tag-item .tag {
    width: 48.5%;
    padding: 10px 3px;
    margin-bottom: 7px;
  }
  .original .original-wrap .left .description-list {
    display: none;
  }
  .footer .footer-main .download-line .list {
    width: 100%;
    align-items: center;
  }
  .company .streamer .streamer-item:first-child {
    border: none;
  }
}
@media (min-width: 769px) {
  .pc-hide {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .phone-hide {
    display: none !important;
  }
}
