body {
  min-width: 1200px;
}

.nav-menu a {
  color: #F2F0EB !important;
}

.brands-bg {
  padding-top: 160px;
  padding-bottom: 90px;
  background-image: url("../images/brands/brands-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #000000;
  object-fit: cover;
}

.brands-bg .content {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.brands-bg .title {
  font-family: Archivo Black, Archivo Black;
  font-weight: 800;
  font-size: 60px;
  color: #FFFFFF;
  line-height: 65px;
}

.brands-bg .text {
  font-family: Actor, Actor;
  font-weight: 400;
  font-size: 20px;
  color: #FFFFFF;
  line-height: 24px;
  margin-top: 35px;
}

.brands-bg a {
  margin-top: 50px;
}

.classification {
  height: 382px;
  margin: 0 auto;
  display: flex;
  white-space: nowrap;
  animation: slide-left 40s linear infinite;
  /* 调整时间控制速度 */
}

@keyframes slide-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-1900px);
    /* 计算总宽度：298px*6 +20*5 =1359px */
  }
}

.classification .item {
  width: 298px;
  height: 382px;
  flex-shrink: 0;
  margin-right: 20px;
}

.classification .item span {
  font-weight: 600;
  font-size: 20px;
  color: #FFFFFF;
}

.classification .item img {
  max-width: 100%;
}

.creators {
  width: 100%;
  max-width: 1900px;
  margin: 110px auto 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  .brands-bg {
    padding-bottom: 60px;
  }

  .brands-bg .content {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .brands-bg .title {
    font-size: 26px;
    line-height: 28px;
    text-align: center;
  }

  .brands-bg .text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
  }

  .brands-bg a {
    margin: 40px auto 0;
  }

  .creators {
    max-width: 100%;
    margin: 40px auto 0;
  }

  .classification {
    height: 245px;
  }

  .classification .item {
    width: 192px;
    height: 245px;
  }
}

.data {
  width: 100%;
  background-color: #ffffff;
}

.music_2_12297 {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 147px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 0 30px;
}

.music_2_12297 .item {
  position: relative;
  border-radius: 60px;
  background-color: #f2f0ea;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  z-index: 4;
}

.music_2_12297 .item img {
  height: 77px;
}

.music_2_12297 .item .title {
  text-align: center;
  font-size: 29px;
  font-family: 'Archivo Black';
  font-weight: 600;
  color: #000000;
  white-space: pre;
  position: relative;
  margin-top: 58px;
  margin-left: auto;
  margin-right: auto;
}

.music_2_12297 .item .text {
  text-align: center;
  font-size: 14px;
  font-family: Actor;
  font-weight: 400;
  color: #000000;
  position: relative;
  margin-top: 12px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .data {
    padding-bottom: 50px;
  }

  .music_2_12297 {
    max-width: 100%;
    padding: 30px 15px 50px;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }

  .music_2_12297 .item {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .music_2_12297 .item:last-child {
    width: calc(200% + 20px);
  }

  .music_2_12297 .item img {
    height: 50px;
  }

  .music_2_12297 .item .title {
    font-size: 19px;
    line-height: 21px;
    margin-top: 30px;
  }

  .music_2_12297 .item .text {
    font-size: 12px;
    line-height: 12px;
    text-align: center;
  }
}

.cooperate {
  width: 100%;
  max-width: 1900px;
  margin: 0 auto;
  height: 520px;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.cooperate img {
  width: 100%;
  /* 双倍图片宽度，用于左右滚动 */
  animation: scrollBanner 20s linear infinite;
  /* 滚动动画，10秒完成一次循环 */
}

@keyframes scrollBanner {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% - 20px));
    /* 向左滚动50%的宽度 */
  }
}

.cooperate .shade-left {
  width: 100px;
  height: 80px;
  position: absolute;
  left: -50px;
  background-image: linear-gradient(88deg, #f7fbff 0%, #f7fbff 100%);
  filter: blur(10px);
  z-index: 3;
}

.cooperate .shade-right {
  width: 100px;
  height: 80px;
  position: absolute;
  right: -50px;
  background-image: linear-gradient(88deg, #f7fbff 0%, #f7fbff 100%);
  filter: blur(10px);
  z-index: 3;
}

@media (max-width: 768px) {
  .cooperate {
    height: 50px;
    max-width: 100%;
  }

  .cooperate img {
    width: auto;
    height: 100%;
  }
}

.discover {
  max-width: 1900px;
  min-width: 1200px;
  margin: 0 auto;
  padding: 100px 100px 70px;
}

.discover .title {
  font-family: Archivo Black, Archivo Black;
  font-weight: 800;
  font-size: 50px;
  color: #000000;
  line-height: 54px;
  text-align: center;
}

.discover .text {
  font-family: Actor, Actor;
  margin: 25px auto 0;
  font-weight: 400;
  font-size: 30px;
  color: #000000;
  line-height: 36px;
  text-align: center;
}

.discover .content {
  margin-top: 100px;
}

.discover .content .tabs {
  width: 1190px;
  display: flex;
  align-items: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
}

.discover .content .tabs .tab {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 170px;
  height: 60px;
  background-color: #0E1117;
  opacity: 0.9;
}

.discover .content .tabs .tab span {
  margin-left: 5px;
  font-family: Actor, Actor;
  font-weight: 400;
  font-size: 20px;
  color: #F4F4F5;
  line-height: 24px;
}

.discover .tabs-content {
  padding: 45px 45px 90px;
  background-color: #0E1117;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.tabs-data {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 45px 50px;
}

.discover .tabs-item .label {
  font-family: Alibaba Sans, Alibaba Sans;
  font-weight: 400;
  font-size: 16px;
  color: #F2F0EB;
  line-height: 22px;
  margin-bottom: 10px;
}

.select-empty {
  display: none;
}

.discover .tabs-item select {
  width: 100%;
  height: 54px;
  background-color: #16202F;
  border: none;
  border-radius: 6px;
  padding-left: 10px;
  padding-right: 30px;
  font-size: 18px;
  color: #F2F0EB;
  cursor: pointer;

  /* 移除默认样式 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /* 添加自定义样式 */
  background-image: url('../images/brands/drop-down.png');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 17px;
}

.discover .tabs-item option {
  cursor: pointer;
}

.discover .tabs-item .lock {
  width: 100%;
  height: 54px;
  background-color: #16202F;
  border-radius: 6px;
  cursor: pointer;

  /* 添加自定义样式 */
  background-image: url('../images/brands/lock.png');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 14px;
}

.discover .tabs-item input {
  width: 100%;
  height: 54px;
  background-color: #16202F;
  border: none;
  border-radius: 6px;
  padding-left: 50px;
  padding-right: 30px;
  font-size: 18px;
  color: #F2F0EB;

  /* 添加自定义样式 */
  background-image: url('../images/brands/query.png');
  background-repeat: no-repeat;
  background-position: left 15px center;
  background-size: 23px;
}

.discover .tabs-content .tabs-btn {
  width: 729px;
  height: 46px;
  background: #FFA70F;
  border-radius: 10px 10px 10px 10px;
  margin: 70px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.discover .tabs-content .tabs-btn span {
  font-family: Alata, Alata;
  font-weight: 400;
  font-size: 16px;
  color: #141215;
  line-height: 22px;
  margin-left: 15px;
}

.toggle-filter {
  display: none;
}

@media (max-width: 768px) {
  .discover {
    max-width: 100%;
    min-width: 100%;
    padding: 50px 20px 65px;
  }

  .discover .title {
    font-size: 26px;
    line-height: 28px;
    text-align: center;
  }

  .discover .text {
    width: 100%;
    font-size: 19px;
    line-height: 23px;
    text-align: center;
    margin-top: 30px;
  }

  .discover .content {
    margin-top: 30px;
  }

  .discover .content .tabs {
    width: 100%;
    height: 30px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
  }

  .discover .content .tabs .tab {
    width: auto;
    height: 30px;
  }

  .discover .content .tabs .tab img {
    width: 15px;
  }

  .discover .content .tabs .tab span {
    display: none;
  }

  .discover .tabs-content {
    overflow: hidden;
    border-top-right-radius: 0;
    padding: 25px 15px 60px;
  }

  .tabs-data {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px 15px;
  }

  .discover .tabs-item .label {
    font-size: 14px;
    line-height: 18px;
  }

  .discover .tabs-item select,
  .discover .tabs-item .lock {
    height: 34px;
    font-size: 14px;
    padding-left: 5px;
    padding-right: 10px;
    background-position: right 5px center;
    background-size: 10px;
  }

  .discover .tabs-item input {
    height: 34px;
    font-size: 14px;
    padding-left: 20px;
    padding-right: 10px;
    background-position: left 5px center;
    background-size: 10px;
  }

  .discover .tabs-content .tabs-btn {
    width: 100%;
    margin: 30px auto 0;
  }

  .toggle-filter {
    display: block;
    color: white;
    padding: 10px;
    text-align: center;
    cursor: pointer;
  }
}

.creator {
  background-color: #ffffff;
}


.creator .classify {
  max-width: 1900px;
  min-width: 1000px;
  margin: 0 auto;
  padding: 20px 100px 100px;
}

.creator .classify .classify-content {
  width: 100%;
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0 30px;
}

.creator .classify .classify-title {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
}

.creator .classify .classify-title span:nth-child(1) {
  font-family: Alata, Alata;
  font-weight: 400;
  font-size: 26px;
  color: #222222;
  line-height: 36px;
}

.creator .classify .classify-title span:nth-child(2) {
  cursor: pointer;
  font-family: Aksara Bali Galang, Aksara Bali Galang;
  font-weight: 400;
  font-size: 18px;
  color: #222222;
}

.creator .classify .itme img {
  width: 100%;
  height: auto;
}

.creator .classify .itme video {
  width: 100%;
  min-height: 137px;
  border-radius: 10px;
}

.creator .classify .itme .title {
  font-family: Actor, Actor;
  font-weight: 400;
  font-size: 18px;
  color: #222222;
  margin-top: 17px;
  height: 52px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 限制显示的行数 */
  overflow: hidden;
  text-overflow: ellipsis;
}

.creator .classify .itme .avatar {
  display: flex;
  align-items: center;
  margin-top: 17px;
}

.creator .classify .itme .avatar img {
  width: 42px;
  height: 42px;
  margin-right: 5px;
}

.creator .classify .itme .avatar .name {
  font-family: PingFang TC, PingFang TC;
  font-weight: 500;
  font-size: 16px;
  color: #5A616A;
  line-height: 22px;
}

.creator .classify .itme .avatar .time {
  font-family: PingFang TC, PingFang TC;
  font-weight: 400;
  font-size: 14px;
  color: #9CA1A7;
  line-height: 20px;
  text-align: left;
}

@media (max-width: 768px) {
  .creator .classify {
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    padding: 40px 15px 60px;
  }

  .creator .classify .classify-content {
    margin-top: 20px;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px 15px;
  }

  .creator .classify .classify-title {
    margin-top: 30px;
  }

  .creator .classify .classify-title span:nth-child(1) {
    font-size: 22px;
    line-height: 30px;
  }

  .creator .classify .classify-title span:nth-child(2) {
    font-size: 14px;
    line-height: 20px;
  }

  .creator .classify .itme video {
    min-height: auto;
  }

  .creator .classify .itme .title {
    margin-top: 12px;
    font-size: 14px;
    line-height: 17px;
    height: 35px;
  }

  .creator .classify .itme .avatar img {
    width: 30px;
    height: 30px;
  }

  .creator .classify .itme .avatar .name {
    font-size: 14px;
    line-height: 20px;
  }

  .creator .classify .itme .avatar .time {
    font-size: 12px;
    line-height: 17px;
  }
}

.better {
  background: #F1F7F4;
}

.better .content {
  max-width: 1900px;
  min-width: 1000px;
  margin: 0 auto;
  padding: 80px 100px 140px;
}

.better .content .title {
  font-family: Archivo Black, Archivo Black;
  font-weight: 800;
  font-size: 50px;
  color: #000000;
  line-height: 54px;
  text-align: center;
  margin-bottom: 50px;
}

.better .content img {
  width: 100%;
}

@media (max-width: 768px) {
  .better .content {
    max-width: 100%;
    min-width: 100%;
    padding: 60px 15px 70px;
  }

  .better .content .title {
    font-size: 26px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 30px;
  }
}

.platforms {
  background-color: #ffffff;
}

.platforms .content {
  max-width: 1900px;
  min-width: 1000px;
  margin: 0 auto;
  padding: 110px 100px 160px;
}

.platforms .content .title {
  font-family: Archivo Black, Archivo Black;
  font-weight: 800;
  font-size: 50px;
  color: #000000;
  line-height: 54px;
  text-align: center;
  margin-bottom: 100px;
}

.platforms .content .represent {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.platforms .content .represent .copywriting {
  flex: 1;
  margin-right: 60px;
}

.platforms .content .represent .copywriting .copywriting-title {
  width: 726px;
  font-family: Archivo Black, Archivo Black;
  font-weight: 600;
  font-size: 33px;
  color: #000000;
  line-height: 40px;
  text-align: left;
}

.platforms .content .represent .copywriting .copywriting-text {
  width: 760px;
  margin-top: 30px;
  font-family: Actor, Actor;
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  line-height: 28px;
  text-align: left;
}

.platforms .content .represent img {
  width: 50%;
}

@media (max-width: 768px) {
  .platforms .content {
    max-width: 100%;
    min-width: 100%;
    padding: 60px 15px 70px;
  }

  .platforms .content .title {
    font-size: 26px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 30px;
  }

  .platforms .content .represent {
    flex-direction: column;
  }

  .platforms .content .represent .copywriting {
    margin-right: 0;
  }

  .platforms .content .represent .copywriting .copywriting-title {
    width: 100%;
    font-weight: 600;
    font-size: 19px;
    line-height: 27px;
    text-align: center;
  }

  .platforms .content .represent .copywriting .copywriting-text {
    width: 100%;
    margin-top: 15px;
    font-size: 19px;
    line-height: 23px;
    text-align: center;
  }

  .platforms .content .represent img {
    width: 100%;
    margin-top: 40px;
  }
}

.niche .content {
  max-width: 1900px;
  min-width: 1000px;
  margin: 0 auto;
  padding: 100px 100px 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.niche .content .title {
  font-family: Archivo Black, Archivo Black;
  font-weight: 800;
  font-size: 50px;
  color: #000000;
  line-height: 54px;
  text-align: center;
  margin-bottom: 50px;
}

.niche .content .idea {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 35px;
}

.niche .content .idea .item {
  font-family: Actor, Actor;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  line-height: 17px;
  padding: 10px 15px;
  margin-right: 10px;
  margin-bottom: 15px;
  background-color: #ffffff;
  border-radius: 20px;
}

.niche .content .idea img {
  width: 10px;
  height: 13px;
}

.niche .content .niche {
  width: 920px;
}

@media (max-width: 768px) {
  .niche .content {
    max-width: 100%;
    min-width: 100%;
    padding: 60px 15px 70px;
  }

  .niche .content .title {
    font-size: 26px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 30px;
  }

  .niche .content .niche {
    width: 100%;
  }

  .niche .content .idea {
    margin-bottom: 10px;
  }

  .niche .content .idea .item {
    padding: 8px 10px;
    font-size: 12px;
    line-height: 16px;
  }
}

.equity {
  background-color: #ffffff;
}

.equity .content {
  max-width: 1900px;
  min-width: 1000px;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.equity .content .title {
  font-family: Archivo Black, Archivo Black;
  font-weight: 800;
  font-size: 50px;
  color: #000000;
  line-height: 54px;
  text-align: center;
  margin-bottom: 110px;
  padding-left: 100px;
  padding-right: 100px;
}

.equity .equity-content {
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-shrink: 0;
  width: 100%;
  padding-left: 150px;
  padding-right: 150px;
}

.equity-title {
  display: flex;
  align-items: center;
  position: absolute;
  left: 150px;
  top: 100px;
}

.equity-title span {
  font-family: Alibaba Sans, Alibaba Sans;
  font-weight: 500;
  font-size: 40px;
  color: #000000;
  line-height: 33px;
}

.equity-title img {
  height: 30px;
  margin-right: 30px;
}

.equity .equity-swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}

.equity .equity-content .left {
  max-width: 560px;
  padding-top: 160px;
}

.equity .equity-content .left .left-title {
  font-family: Alibaba Sans, Alibaba Sans;
  font-weight: 500;
  font-size: 22px;
  color: #000000;
  line-height: 34px;
  margin-top: 25px;
  margin-bottom: 15px;
}

.equity .equity-content .left .left-text {
  font-family: Actor, Actor;
  font-weight: 400;
  font-size: 22px;
  color: #000000;
  line-height: 26px;
  text-align: left;
  margin-bottom: 130px;
}

.equity .equity-content .left-content {
  display: flex;
}

.equity .equity-content .left-content .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 40px;
}

.equity .equity-content .left-content img {
  width: 90px;
  height: 90px;
}

.equity .equity-content .left-content p {
  font-family: Actor, Actor;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  line-height: 22px;
  text-align: center;
}

.equity .equity-content .img {
  width: 50%;
  height: auto;
  margin: auto 0;
  margin-left: 50px;
  align-self: flex-start;
}

.equity .equity-swiper .swiper-button-prev,
.equity .equity-swiper .swiper-button-next {
  width: 70px;
  height: 70px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 50px;
  border: 1px solid #000000;
  opacity: 0.1;
}

.equity .equity-swiper .swiper-button-next:after,
.equity .equity-swiper .swiper-button-prev:after {
  color: #000000;
}

.equity .equity-swiper .swiper-pagination-bullet {
  width: 16px !important;
  height: 16px !important;
  background: #C2C2C2 !important;
}

.equity .equity-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #162041 !important;
}

@media (max-width: 768px) {
  .equity .content {
    max-width: 100%;
    min-width: 100%;
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .equity .content .title {
    font-size: 26px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .equity-title {
    position: static;
    margin: 0 auto;
    margin-bottom: 40px;
  }

  .equity-title span {
    font-weight: 600;
    font-size: 19px;
    line-height: 27px;
    text-align: center;
  }

  .equity-title img {
    height: auto;
    margin-right: 10px;
  }

  .equity .equity-content {
    flex-direction: column-reverse;
    padding-left: 50px;
    padding-right: 50px;
  }

  .equity .equity-content .left {
    max-width: 100%;
    padding-top: 30px;
  }

  .equity .equity-content .img {
    width: 100%;
    margin-left: 0;
  }

  .equity .equity-content .left .left-title {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
  }

  .equity .equity-content .left .left-text {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    margin-bottom: 40px;
  }

  .equity .equity-content .left-content {
    justify-content: space-between;
  }

  .equity .equity-content .left-content .item {
    margin-right: 0;
  }

  .equity .equity-content .left-content img {
    width: 42px;
    height: 42px;
  }

  .equity .equity-content .left-content p {
    font-size: 12px;
    line-height: 14px;
  }

  .equity .equity-swiper .swiper-button-prev,
  .equity .equity-swiper .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .equity .equity-swiper .swiper-button-next:after,
  .equity .equity-swiper .swiper-button-prev:after {
    font-size: 20px;
  }

  .equity .equity-swiper .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
  }
}

.partnership .content {
  max-width: 1900px;
  min-width: 1000px;
  margin: 0 auto;
  padding: 100px 100px 130px;
}

.partnership .content .title {
  font-family: Archivo Black, Archivo Black;
  font-weight: 800;
  font-size: 50px;
  color: #000000;
  line-height: 54px;
  text-align: center;
  margin-bottom: 100px;
}

.partnership .content .module {
  display: flex;
  justify-content: center;
}

.partnership .content .module .item {
  margin-right: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partnership .content .module .item .icon {
  width: 90px;
  height: 90px;
  background: #FFFFFF;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

.partnership .content .module .icon img {
  width: 100%;
  height: 100%;
}

.partnership .content .module .item .text {
  margin-top: 20px;
  font-family: Actor, Actor;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  line-height: 22px;
  text-align: center;
}

.partnership .content .module2 {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}

.partnership .content .module2 .icon {
  width: 90px;
  height: 90px;
  background: #FFFFFF;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  margin-right: 40px;
}

.partnership .content .module2 .icon img {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .partnership .content {
    max-width: 100%;
    min-width: 100%;
    padding: 60px 15px 70px;
  }

  .partnership .content .title {
    font-size: 26px;
    line-height: 28px;
    margin-bottom: 60px;
  }

  .partnership .content .module {
    width: 100%;
    justify-content: center;
  }

  .partnership .content .module .item {
    margin-right: 30px;
  }

  .partnership .content .module .item .icon {
    width: 42px;
    height: 42px;
  }

  .partnership .content .module .item .text {
    font-size: 12px;
    line-height: 14px;
  }

  .partnership .content .module2 {
    justify-content: space-between;
    margin-top: 30px;
  }

  .partnership .content .module2 .icon {
    width: 42px;
    height: 42px;
    margin-right: 10px;
    margin-right: 0;
  }
}

.ROI {
  background-color: #FFFFFF;
}

.ROI .content {
  width: 1200px;
  margin: 0 auto;
  padding-top: 90px;
  padding-bottom: 120px;
}

.ROI .content .title {
  font-family: Archivo Black, Archivo Black;
  font-weight: 800;
  font-size: 50px;
  color: #000000;
  line-height: 54px;
  text-align: center;
  margin-bottom: 100px;
}

.ROI .content .video {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0 70px;
}

.ROI .content .video video {
  width: 100%;
  border-radius: 30px;
  position: relative;
}

.ROI .content .video div {
  width: 100%;
  position: relative;
}

.ROI .content .video img {
  position: absolute;
  width: 90%;
  bottom: 5%;
  right: 5%;
  z-index: 2;
}

.swiper {
  display: none;
}

@media (max-width: 768px) {
  .ROI .content {
    width: 100%;
    padding: 60px 15px 70px;
  }

  .ROI .content .title {
    font-size: 26px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 60px;
  }

  .ROI .content .video {
    display: none;
  }

  .swiper {
    width: 100%;
    display: block;
    border-radius: 25px;
  }

  .swiper .swiper-wrapper .swiper-slide {
    width: 70%;
    height: auto;
    box-sizing: border-box;
    transform-origin: center;
    position: relative;
  }

  .swiper .swiper-wrapper .swiper-slide img {
    position: absolute;
    width: 90%;
    bottom: 5%;
    right: 5%;
    z-index: 2;
  }

  .swiper .swiper-wrapper .swiper-slide video {
    width: 100%;
    border-radius: 30px;
  }
}

.task {
  width: 100%;
  padding-bottom: 540px;
  position: relative;
}

.task .content {
  background-color: #1717CA;
  padding-top: 120px;
  padding-bottom: 470px;
}

.task .title {
  width: 1084px;
  font-family: Archivo Black, Archivo Black;
  font-weight: 800;
  font-size: 50px;
  color: #FEFEFE;
  line-height: 54px;
  text-align: center;
  margin: 0 auto 0;
}

.task .task-swiper {
  width: 1200px;
  height: auto;
  overflow: hidden;
  position: absolute;
  top: 350px;
  left: calc(50% - 600px);
}

.task .task-swiper {
  padding-bottom: 80px;
}

.task .task-swiper .swiper-slide img {
  width: 100%;
}

.task .task-swiper .swiper-pagination-bullet {
  width: 16px !important;
  height: 16px !important;
  background: #C2C2C2 !important;
}

.task .task-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #162041 !important;
}

@media (max-width: 768px) {
  .task {
    padding-bottom: 260px;
  }

  .task .content {
    padding: 36px 15px 85px;
    height: 200px;
  }

  .task .title {
    width: 100%;
    font-size: 23px;
    color: #FEFEFE;
    line-height: 25px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .task .task-swiper {
    width: calc(100% - 30px);
    top: 150px;
    left: 15px;
  }

  .task .task-swiper {
    padding-bottom: 40px;
  }

  .task .task-swiper .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
  }
}

.growth {
  background: linear-gradient(180deg, #171622 0%, #4D4EFF 100%);
}

.growth .content {
  max-width: 1900px;
  min-width: 1000px;
  margin: 0 auto;
  padding: 140px 100px 160px;
}

.growth .content .title1 {
  font-family: Archivo Black, Archivo Black;
  font-weight: 800;
  font-size: 50px;
  color: #EFFE91;
  line-height: 54px;
  text-align: center;
}

.growth .content .title2 {
  font-family: Archivo Black, Archivo Black;
  font-weight: 800;
  font-size: 50px;
  color: #FEFEFE;
  line-height: 54px;
  text-align: center;
}

.growth .content .module {
  margin-top: 130px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0 40px;
}

.growth .content .module .item {
  padding: 80px 50px 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(180deg, #4040FF 3%, #1515CB 100%);
  box-shadow: inset 0px -14px 70px 0px rgba(192, 49, 134, 0.1);
  border-radius: 37px 37px 37px 37px;
  border: 2px solid rgba(84.39823642373085, 83.4955720603466, 255, 1);
}

.growth .content .module .item img {
  width: 108px;
  margin-bottom: 60px;
}

.growth .content .module .item .title {
  font-family: Archivo Black, Archivo Black;
  font-weight: 600;
  font-size: 30px;
  color: #FFFFFF;
  line-height: 33px;
  text-align: center;
  margin-bottom: 25px;
}

.growth .content .module .item .text {
  font-family: Actor, Actor;
  font-weight: 400;
  font-size: 24px;
  color: #FFFFFF;
  line-height: 29px;
  text-align: center;
}

@media (max-width: 768px) {
  .growth .content {
    max-width: 100%;
    min-width: 100%;
    padding: 100px 15px 60px;
  }

  .growth .content .title1,
  .growth .content .title2 {
    font-size: 23px;
    line-height: 25px;
  }

  .growth .content .title2 {
    margin-top: 15px;
  }

  .growth .content .module {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 40px 0;
  }

  .growth .content .module .item {
    padding: 35px 15px;
  }

  .growth .content .module .item img {
    width: 58px;
    margin-bottom: 20px;
  }

  .growth .content .module .item .title {
    font-size: 16px;
    line-height: 17px;
    margin-bottom: 10px;
  }

  .growth .content .module .item .text {
    font-size: 14px;
    line-height: 17px;
  }
}

.marketers .content {
  max-width: 1900px;
  min-width: 1000px;
  margin: 0 auto;
  padding: 130px 100px 160px;
}

.marketers .marketers-content {
  height: 720px;
  background: linear-gradient(180deg, #171622 0%, #4D4EFF 100%);
  padding-left: 70px;
  padding-right: 60px;
  border-radius: 60px;
  display: flex;
  justify-content: space-between;
}

.marketers .marketers-content .left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.marketers .content .title {
  font-family: Archivo Black, Archivo Black;
  font-weight: 800;
  font-size: 50px;
  color: #FEFEFE;
  line-height: 54px;
}

.marketers .content .text {
  margin-top: 25px;
  font-family: Actor, Actor;
  font-weight: 400;
  font-size: 20px;
  color: #D1D1EE;
  line-height: 24px;
}

.marketers .content .btn {
  margin-top: 45px;
  margin-bottom: 60px;
}

.marketers .marketers-content .right {
  width: 35%;
  margin-left: 30px;
  display: flex;
}

.marketers1,
.marketers2 {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.marketers2 {
  margin-left: 20px;
}

.marketers1 img {
  width: 100%;
  animation: marketers1ScrollBanner 40s linear infinite;
}

.marketers2 img {
  width: 100%;
  animation: marketers2ScrollBanner 40s linear infinite;
}

@keyframes marketers1ScrollBanner {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(calc(-100% + 245px));
    /* 向上滚动50%的宽度 */
  }
}

@keyframes marketers2ScrollBanner {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(calc(100% - 245px));
    /* 向上滚动50%的宽度 */
  }
}

@media (max-width: 768px) {
  .marketers .content {
    max-width: none;
    min-width: 100%;
    padding: 30px 20px;
  }

  .marketers .marketers-content {
    height: auto;
    padding: 50px 15px 50px;
    border-radius: 50px;
  }

  .marketers .marketers-content .right {
    display: none;
  }

  .marketers .content .title {
    width: 100%;
    font-size: 23px;
    line-height: 25px;
    text-align: center;
  }

  .marketers .content .text {
    width: 100%;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
  }

  .marketers .content .btn {
    margin-left: auto;
    margin-right: auto;
  }

  .marketers .content img {
    width: 90%;
    margin: 0 auto;
  }
}