* {
  margin: 0;
  padding: 0;
  list-style: none;
}
.container {
  min-width: 1260px;
}
img {
  display: block;
  width: 100%;
}

html,
body {
  height: 100vh;
  font-size: 12px;
  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
  /* min-width: 1200px; */
  overflow-x: auto;
  overflow-y: hidden;
}

@media screen and (min-width: 1500px) {
  html {
    font-size: 16px;
  }
}

@media screen and (min-width: 1700px) {
  html {
    font-size: 18px;
  }
}

@media screen and (min-width: 1900px) {
  html {
    font-size: 20px;
  }
}

.mt-16 {
  margin-bottom: 16px;
}
.mt-10 {
  margin-bottom: 10px;
}

.item-style {
  flex: 1;
  padding: 2px;
  box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.03);
  cursor: pointer;
}
.active {
  background: linear-gradient(225deg, #9330ff 0%, #ff2593 50%, #ff7f05 100%);
  box-shadow: 0 7px 6px 0 rgba(190, 32, 233, 0.06),
    0 22px 21px 0 rgba(190, 32, 233, 0.04),
    0 100px 96px 0 rgba(190, 32, 233, 0.02);
}

.container {
  position: relative;
  height: 100vh;
  overflow: hidden;
  overflow-y: auto;
}
.top-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 900px;
  background: linear-gradient(180deg, #fefbfe 0%, #fff 100%);
}

.header {
  height: 70px;
  display: flex;

  align-items: center;
  justify-content: space-between;
  padding: 0 60px;

  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  box-sizing: border-box;
}

.logo-wrap {
  display: flex;
  align-items: center;
  color: #242222;

  font-weight: 600;
  gap: 9px;
  flex-wrap: nowrap;
}
.logo {
  width: 112px;
}
.title {
  flex: 1;
  font-size: 26px;
}

.nav {
  display: flex;
  justify-content: center;
  height: 100%;
}
.nav .item {
  padding: 0 40px;
  font-size: 16px;
  color: #151515;
  text-decoration: none;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.nav .item.act {
  color: #f26;
  font-weight: 500;
}

.btns {
  display: flex;
  align-items: center;
  gap: 16px;
}
.btn {
  width: 112px;
  height: 42px;
  border-radius: 26px;
  font-size: 16px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  padding: 2px;
  box-sizing: border-box;

  background: linear-gradient(225deg, #9330ff 0%, #ff2593 50%, #ff7f05 100%);
}

.header .btn {
  font-size: 14px;
}

.btn .text-bg {
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 26px;
  box-sizing: border-box;
}

.btn .text {
  -webkit-text-fill-color: transparent;
  color: transparent;
  background: linear-gradient(
    -135.00000295754268deg,
    #a451ff 0%,
    #f03292 50%,
    #f09136 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
}

.login {
  background: linear-gradient(225deg, #a451ff 0%, #f03292 50%, #f09136 100%),
    linear-gradient(225deg, #9330ff 0%, #ff2593 50%, #ff7f05 100%);
}

.content {
  position: relative;
}

.title-top {
  text-align: center;
  margin: 50px auto 40px;
}

.tit {
  display: flex;
  gap: 16px;
  font-family: MiSans, MiSans;
  font-weight: 600;
  font-size: 40px;
  color: #151515;
  width: 100%;
  justify-content: center;
}
.t-l {
  -webkit-text-fill-color: transparent;
  color: transparent;

  background: linear-gradient(
    -135.00000295754268deg,
    #a451ff 0%,
    #f03292 50%,
    #f09136 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
}
.t-r {
}
.title-top .desc {
  font-size: 16px;
  color: #49505c;
  margin-top: 20px;
}
.cl-con.t1 {
  margin-top: 0;
  padding-top: 30px;
  position: relative;
  z-index: 5;
}
.title-top-con {
  position: relative;
  overflow: hidden;
}
/* .cl-con::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 50px;
  top: -20px;
  left: 0;
  background-color: #fff;
} */
.bg1 {
  position: relative;
  background-color: #fefcfe;
  overflow: hidden;
  height: 650px;
}

.bg1 .bg1-img {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  height: 650px;
}
.bg1-img img {
  height: 100%;
}
.bg1-img::before {
  content: '';
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: url('./../images/bg.png');
  background-size: 100% 100%;
  transform: rotateY(180deg);
}
.bg1-img::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: url('./../images/bg.png');
  background-size: 100% 100%;
  transform: rotateY(180deg);
}

.banner-btns {
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translate(-50%, 0);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.banner-btns .btn {
  width: 152px;
  height: 56px;
  border-radius: 28px;
  box-sizing: border-box;

  box-shadow: 0 3px 2px 0 rgba(231, 112, 97, 0.02),
    0 7px 5px 0 rgba(231, 112, 97, 0.03), 0 13px 10px 0 rgba(231, 112, 97, 0.04),
    0 22px 18px 0 rgba(231, 112, 97, 0.04),
    0 42px 33px 0 rgba(231, 112, 97, 0.05),
    0 100px 80px 0 rgba(231, 112, 97, 0.07);
}

.banner-btns .login {
  background: linear-gradient(225deg, #9330ff 0%, #ff2593 50%, #ff7f05 100%);
  box-shadow: 0 3px 2px 0 rgba(145, 11, 230, 0.03),
    0 7px 5px 0 rgba(145, 11, 230, 0.05), 0 13px 10px 0 rgba(145, 11, 230, 0.06),
    0 22px 18px 0 rgba(145, 11, 230, 0.07),
    0 42px 33px 0 rgba(145, 11, 230, 0.09),
    0 100px 80px 0 rgba(145, 11, 230, 0.12),
    inset 4px 0 4px 0 rgba(255, 255, 255, 0.25),
    inset -4px 0 4px 0 rgba(255, 255, 255, 0.25);
}
.space {
  height: 100px;
}

.banner {
  position: absolute;
  left: 50%;
  top: 130px;
  transform: translateX(-50%);
  width: 1043px;
}

.banner-space {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, #fff 100%);
  border-radius: 0 0 0 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: none;
  z-index: 5;
  backdrop-filter: blur(10px); /* 模糊程度 */
  -webkit-backdrop-filter: blur(10px); /* 兼容WebKit浏览器 */
}
.banner-space::after {
  /* content: '';
  position: absolute;
  left: 0;
  bottom: -40px;
  width: 100%;
  height: 150px;
  background-color: #fff; */
}

/* banner 下文案 */
.t1 {
  text-align: center;
  margin: 30px 0;
}
.t1 .t1-t {
  font-weight: 600;
  font-size: 36px;
  color: #151515;
}
.t1-desc {
  font-size: 18px;
  color: #49505c;
  margin-top: 14px;
}

.con {
  width: 1200px;
  margin: 0 auto;
}

/* 选择区 */
.choose-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 10px;
}
.cell-a {
  width: 693px;
}
.cell-b {
  width: 491px;
}
.cell-c {
  width: 491px;
}
.cell-d {
  width: 693px;
}

/* 任务类型 */
.work-type-desc {
  /* padding: 0 30px; */
}
.work-type {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.work-item {
  flex: 1;
  padding: 2px;
  border-radius: 20px;
  box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.03);
  cursor: pointer;
}
.active {
  background: linear-gradient(225deg, #9330ff 0%, #ff2593 50%, #ff7f05 100%);
  box-shadow: 0 7px 6px 0 rgba(190, 32, 233, 0.06),
    0 22px 21px 0 rgba(190, 32, 233, 0.04),
    0 100px 96px 0 rgba(190, 32, 233, 0.02);
}
.work-img {
  display: none;
}
.show {
  display: block;
}
.grid-item {
  position: relative;
}
.img-desc {
  position: absolute;
  left: 0;
  bottom: 24px;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  color: #151515;
  width: 100%;
}
.img-btm-d {
  font-weight: 400;
  font-size: 16px;
  color: #49505c;
  margin-top: 12px;
}
.img-btm-d2 {
  padding: 0 40px;
}

.item-bg {
  display: flex;
  /* align-items: baseline; */
  padding: 24px 20px 24px;
  background-color: #fff;
  border-radius: 18px;
  gap: 10px;
  box-sizing: border-box;
}
.item-bg .l {
  width: 36px;
  height: 36px;
}
.item-bg .r {
  flex: 1;
  height: 100%;
}
.item-bg .top {
  font-weight: 600;
  font-size: 18px;
  color: #151515;
  display: flex;
}

.active .item-bg .top span {
  -webkit-text-fill-color: transparent;
  color: transparent;

  background: linear-gradient(-166.29211604703843deg, #f03292 0%, #f09136 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.item-bg .btm {
  font-size: 16px;
  color: #49505c;
  padding: 6px 0 0;
}

/* 达人合作区域 */
.drhz {
  position: relative;
  height: 707px;
  width: 100%;
  overflow: hidden;
}
.dr-img {
  width: 100%;
  height: 100%;
}
.drhz {
  position: relative;
}
.drhz .con {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: 100%;
  display: flex;
  /* gap: 10px; */
  /* align-items: center; */
  flex-direction: column;
  justify-content: center;
}

.drhz .left {
  width: 420px;
  font-size: 18px;
  color: #666;
  flex: 0 0 auto;
  /* height: 100%; */
  /* margin-top: 300px; */
}
.t2 {
  font-weight: 600;
  font-size: 36px;
  color: #151515;
}
.t2 span {
  -webkit-text-fill-color: transparent;
  color: transparent;

  background: linear-gradient(
    -135.00000295754268deg,
    #a451ff 0%,
    #f03292 50%,
    #f09136 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
}
.drhz .right {
  position: absolute;

  width: 1200px;
  /* height: 520px; */
  left: 230px;
  top: -50px;
}

.drhz .desc {
  font-size: 18px;
  color: #666;
  line-height: 33px;
}

/* 创作者区域 */
.c-bg {
  margin: 0 auto;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
  transform: translateX(-50%);
}
.c-bg img {
  height: 100%;
}
.creator-wrap {
  position: relative;
  height: 700px;
}
.creator-wrap .con {
  /* position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%); */
}

.c-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 10px;
  position: relative;
  z-index: 2;
}
.c-item {
  /* width: 118px; */
  height: 54px;
  border-radius: 27px;
  align-items: center;
  flex: 0 0 auto;
  font-size: 16px;
  box-sizing: border-box;
}

.c-item-bg {
  border-radius: 25px;
  gap: 6px;
  padding: 0 22px 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.c-item-bg .r {
  display: flex;
  align-items: center;
}

.video-list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: nowrap;
  grid-template-columns: repeat(4, 1fr);
}
.video-item {
  flex: 1;
  padding: 10px;
  border-radius: 20px;
  background-color: #fff;
  /* height: 480px; */
  position: relative;
  box-sizing: border-box;
}
.play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: url('./../images/play.png');
  background-size: 100% 100%;
}
.play.active {
  background-image: url('./../images/pause.png');
}
.video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.con-con {
}

.master {
  background: linear-gradient(
    180deg,
    #fcf4ff 0%,
    rgba(252, 244, 255, 0.63) 73%,
    rgba(255, 255, 255, 0) 100%
  );
}

.master .t1 {
  padding: 70px 0 0;
  margin-top: 0;
}

.m-con {
  position: relative;
}
.circle-wrap {
  margin: 46px auto 55px;
}
.circle-wrap img {
  display: block;
  margin: 0 auto;
  width: 30px;
  margin-bottom: 46px;
}
.registry {
  position: absolute;
  left: 50%;
  bottom: 107px;
  color: transparent;
  cursor: pointer;
  width: 208px;
  height: 50px;
  transform: translateX(-50%);
  /* visibility: hidden; */
}
.title-name {
  position: absolute;
  left: 50%;
  top: 40px;
  transform: translateX(-50%);
  visibility: hidden;
}

/* 核心优势 */
.master-container {
  position: relative;
  height: 826px;
  background: linear-gradient(
    180deg,
    #fcf4ff 0%,
    rgba(252, 244, 255, 0.63) 73%,
    rgba(255, 255, 255, 0) 100%
  );
  box-shadow: inset 0 4px 4px 0 rgba(255, 255, 255, 0.25);
}
.master-content {
  position: relative;
}
.master-wrap {
  padding: 30px 0;
  font-weight: 600;
  font-size: 16px;
}
.wrap-item {
  display: flex;
  justify-content: space-between;
  height: 60px;
  align-items: center;
  padding: 0 0 0 60px;
  margin-bottom: 16px;

  font-weight: 400;
  font-size: 16px;
  color: #2e3033;
}
.wrap-item:last-child {
  margin-bottom: 0;
}
.white-bg {
  background-color: #fff;
}
.wrap-item .left {
  display: flex;
  align-items: center;
  gap: 1px;

  flex: 1;
}
.wrap-item .left .popver-wrap {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 2px;
}
.popver-circle {
  margin-top: 2px;
}
.popover-content {
  position: absolute;
  left: 0;
  top: -10px;
  width: auto;
  min-height: 60px;
  transform: translateY(-100%);
  visibility: hidden;
  /* display: none; */
  /* min-width: 200px; */
}
.popover-content-first {
  top: -10px;
}

.popver-wrap:hover {
  .popover-content {
    /* display: block; */
    visibility: visible;
  }
}

.popover-inner {
  min-width: 280px;
  max-width: 450px;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08),
    0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  padding: 10px;
  color: #666;
}

.wrap-item .left .popver-wrap img {
  width: 16px;
}
.wrap-item .right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 440px;
  flex: 0 0 auto;
}
.wrap-item .right .circle-icon {
  width: 30px;
}

.master-center {
  width: 320px;
  height: 600px;

  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);

  background: linear-gradient(333deg, #fff0f8 0%, #fffafd 100%);
  box-shadow: 0 3px 2px 0 rgba(198, 171, 205, 0.02),
    0 7px 5px 0 rgba(198, 171, 205, 0.03),
    0 13px 10px 0 rgba(198, 171, 205, 0.04),
    0 22px 18px 0 rgba(198, 171, 205, 0.04),
    0 42px 33px 0 rgba(198, 171, 205, 0.05),
    0 100px 80px 0 rgba(198, 171, 205, 0.07);
  border-radius: 20px;
  border: 2px solid #fff;
  box-sizing: border-box;
  /* padding: 2px; */
}
.center-con {
  /* border-image: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)) 2 2; */
}
.logo-name {
  padding-top: 40px;
  width: 112px;
  margin: 0 auto;
  position: relative;
}
.master-registry-con {
  display: flex;
  justify-content: center;
}
.master-registry {
  position: static;
  transform: translate(0);
  width: 200px;
  height: 48px;
  box-shadow: none;
  display: flex;
  justify-content: center;
  gap: 30px;
}
.master-registry .btn {
  width: 100%;
  height: 100%;
  box-shadow: none;
}
.master-registry .btn::before {
  display: none;
}
.master-registry img {
  width: 22px;
}

.heart-registry {
  display: flex;
  align-items: center;
  gap: 10px;
}

.heart-bg {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1920px;
  height: 100%;
}
.heart {
  position: relative;
  margin-top: 70px;
  height: 700px;
}
.heart .con {
  position: relative;
  height: 100%;
  /* display: flex;
  align-items: center;
  justify-content: center; */
}
.heart-title {
  padding-top: 240px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.heart-title .t1-desc {
  margin-top: 15px;
}
.heart-con {
  position: relative;
}
.start1 {
  position: absolute;
  left: -12px;
  top: -2px;
  width: 20px;
}
.start2 {
  position: absolute;
  right: -60px;
  bottom: -25px;
  width: 37px;
}

.heart-item {
  position: absolute;
  /* padding-top: 60px; */
  /* linear-gradient( 180deg, #FCF4FF 0%, rgba(252,244,255,0.63) 73%, rgba(255,255,255,0) 100%); */
  box-shadow: 0 50px 80px #f8e9ff;
  border-radius: 10px;
}
.avator {
  width: 110px;
  position: absolute;

  top: -60px;
  z-index: 2;
}

.heart-content {
  padding: 20px 20px 16px;
  border: 1px solid #fff;
  /* background: linear-gradient(180deg, #fefbfe 0%, #ffffff 100%); */
  /* background-color: #fefefe; */
  border-radius: 10px;
  opacity: 0.7;
}
.user-top {
  display: flex;
  align-items: center;
  padding-left: 132px;
  gap: 20px;
}

.user-top-right {
  padding-left: 0;
  justify-content: flex-end;
  padding-right: 132px;
}

.user-name {
  display: flex;
  gap: 5px;
  align-items: center;
}
.user-name .name {
  font-weight: 600;
  font-size: 18px;
  color: #151515;
}
.user-name .name-type {
  font-weight: 400;
  font-size: 12px;
  color: #151515;
}
.user-star {
  display: flex;
  gap: 10px;
}
.user-star img {
  width: 20px;
}

.heart-desc {
  position: relative;
  font-size: 15px;
  color: #151515;
  margin-top: 15px;
  line-height: 24px;
}

.heart-item.item1 {
  left: -60px;
  top: 0;
  width: 560px;
  box-sizing: border-box;
  /* background-color: rgba(255, 255, 255, 0.8); */
}
.item1 .avator,
.item3 .avator {
  left: 20px;
}

.heart-item.item2 {
  right: -30px;
  top: 20px;
  width: 608px;
}
.item2 .avator,
.item4 .avator {
  right: 20px;
}

.heart-item.item3 {
  left: -100px;
  bottom: 100px;
  width: 624px;

  box-shadow: 0px 7px 5px 0px rgba(165, 87, 186, 0.03),
    0px 22px 18px 0px rgba(165, 87, 186, 0.04),
    0px 100px 80px 0px rgba(165, 87, 186, 0.07);
}
.heart-item.item4 {
  right: -100px;
  bottom: 90px;
  width: 515px;

  background: linear-gradient(
    183deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.5) 100%
  );
}

.heart-item.item3 .heart-content {
  background: linear-gradient(
    183deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.5) 100%
  );
}

.heart-item.item4 .heart-content {
  position: relative;
  background: linear-gradient(
    183deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.5) 100%
  );
  opacity: 0.8;
}

.heart-item.item4 .heart-content::before {
  content: '';
  position: absolute;
  left: 0;
  top: -20px;
  width: 100%;
  height: 250px;
  background: #f8e9ff;
  border-radius: 0 0 0 0;
  opacity: 0.16;
  filter: blur(100px);
}

.item6 {
  width: 280px;
  top: 240px;
  left: 120px;
  box-shadow: none;
}
.item5 {
  width: 300px;
  top: 230px;
  right: 100px;
  box-shadow: none;
}
.item3,
.item4 {
  z-index: 5;
}

/* 底部描述 */
.desc-wrap {
  position: relative;
  height: 266px;
  background: linear-gradient(90deg, #f8e9ff 0%, #eaf0ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.desc-wrap-con {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.desc-wrap .title-top {
  margin: 0;
}
.desc-wrap .desc {
  font-size: 16px;
  color: #49505c;
  margin-top: 5px;
  font-weight: 600;
}
.login-btm {
  width: 176px;
  height: 56px;
  border-radius: 28px;
  flex: 0 0 auto;
  margin-top: 20px;
  display: flex;
  gap: 5px;
  box-sizing: border-box;
  justify-content: center;
  box-shadow: 0 3px 2px 0 rgba(145, 11, 230, 0.03),
    0 7px 5px 0 rgba(145, 11, 230, 0.05), 0 13px 10px 0 rgba(145, 11, 230, 0.06),
    0 22px 18px 0 rgba(145, 11, 230, 0.07),
    0 42px 33px 0 rgba(145, 11, 230, 0.09),
    0 100px 80px 0 rgba(145, 11, 230, 0.12),
    inset 4px 0 4px 0 rgba(255, 255, 255, 0.25),
    inset -4px 0 4px 0 rgba(255, 255, 255, 0.25);
}
.login-btm .narrow {
  width: 16px;
  height: 16px;
}

/* 底部 */
