body {
  background-color: #101010 !important;
  color: #fff !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

* {
  box-sizing: border-box;
}

.task-detail-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 0;
  padding-bottom: 100px;
  padding-top: 48px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #fff;
  padding-top: 8px;
  padding-bottom: 8px;
  display: none;
}

.breadcrumb a {
  color: #fff;
  display: flex;
  align-items: center;
}

.breadcrumb img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  vertical-align: middle;
  max-width: 24px !important;
}

.task-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 32px;
}

.task-main-content {
  border-radius: 12px;
  padding-top: 0;
}

.task-publisher {
  padding-bottom: 24px;
  background: rgba(0, 0, 0, 0);
}

.task-publisher-info {
  display: flex;
  align-items: flex-start;
  background-color: #161616;
  border-radius: 8px;
  padding: 16px;
}

.task-publisher .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 16px;
  flex: none;
}

.task-publisher h2 {
  font-weight: 600;
  font-size: 20px;
  @media screen and (max-width: 768px) {
    height: 48px;
  }
}

.task-publisher p {
  font-size: 14px;
  color: #a6a6a6;
  margin-top: 4px;
}

.task-article-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  /* margin-top: 24px; */
  position: relative;
}

.task-article-intro {
  font-size: 14px;
  color: #afafaf;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}

.task-article-intro.expanded {
  -webkit-line-clamp: unset;
}

.task-article-intro p {
  width: calc(100% - 74px);
}
/* 手机端项目简介展开/收起 */
.spread-btn {
  width: 32px;
  height: 32px;
  display: block;
  background-image: url("../assets/taskDetail/slide-block.png");
  background-size: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.slide-block {
  position: absolute;
  right: 0;
  top: 8px;
  width: 32px;
  height: 32px;
  background-image: url("../assets/taskDetail/slide-block.png");
  background-size: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: none;
}

.slide-block.reverse {
  transform: rotate(180deg);
}

.task-article-intro {
  position: relative;
}

.task-article-banner {
  width: 100%;
}

.task-article-banner img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.task-article-avatar img {
  width: 230px;
  height: 130px;
  border-radius: 12px;
  margin-right: 15px;
}

.task-article-header h1 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  margin: 0  0 16px  0 !important;
}

.newbie-banner {
  margin-bottom: 24px;
}

.newbie-banner img {
  width: 100%;
}

.task-type-badges {
  display: flex;
  flex-wrap: wrap;
}

.task-type-badge {
  font-size: 12px;
  background-color: #242424;
  padding: 0 8px;
  height: 32px;
  line-height: 32px;
  border-radius: 4px;
  margin-right: 5px;
  margin-bottom: 5px;
}

/* 参与者数量显示 */
.participants-count {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-right: 8px;
  height: 32px;
  background-color: #242424;
  border-radius: 4px;
  padding: 0 8px;
  line-height: 32px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.participants-avatars {
  display: flex;
  align-items: center;
  position: relative;
}

.participant-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(36, 36, 36, 1);
  margin-left: -12px;
  background-color: rgba(36, 36, 36, 1);
  object-fit: cover;
}

.participant-avatar:first-child {
  margin-left: 0;
}

.more-participants {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  /*这里是透明毛玻璃效果*/
  backdrop-filter: blur(4px);
  background: transparent;
  /* background: rgba(255, 255, 255, 0.2); */
  -webkit-backdrop-filter: blur(10px);
  /*这里是透明毛玻璃效果*/
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -12px;
  border: 2px solid rgba(36, 36, 36, 1);
}

.participants-text {
  font-family: PingFang SC;
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: -0.3px;
  text-align: right;
  color: #ffffff;
}

/* 横向无缝滚动中奖公告 */
.winner-scroll-container {
  width: 100%;
  height: 40px;
  overflow: hidden;
  margin-top: 16px;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 8px;
  position: relative;
}

/* 添加左右渐变遮罩效果 */
.winner-scroll-container::before,
.winner-scroll-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}

.winner-scroll-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2), transparent);
}

.winner-scroll-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent);
}

.winner-scroll-wrapper {
  display: flex;
  width: fit-content;
  height: 40px;
  align-items: center;
  animation: scroll-left 60s linear infinite;
}

.winner-scroll-wrapper:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.winner-scroll-content {
  display: flex;
  align-items: center;
  height: 40px;
  gap: 24px;
  padding-right: 24px;
}

.winner-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
}

.winner-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
}

.winner-text {
  font-family: PingFang SC;
  font-weight: 400;
  font-style: Regular;
  font-size: 13px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: rgba(136, 136, 136, 1);
}

.winner-text .action-text {
  color: #a6a6a6;
}

.winner-text .reward-text {
  color: rgba(255, 255, 255, 1);
}

.expand-btn {
  background: none;
  border: none;
  padding: 0px;
  cursor: pointer;
  /* position: absolute;
    right: 0px;
    bottom: 0px; */
}

.expand-btn img {
  width: 32px;
  height: 32px;
}

.task-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #161616;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.task-steps:last-of-type {
  margin-bottom: 0;
}

.task-steps-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.task-steps-header h3 {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}

.task-step.spec {
  padding-bottom: 0;
}

.task-step.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-start {
  align-items: start !important;
}

.margin-t2 {
  margin-top: 2px;
}

.task-step-header {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 16px;
  margin-bottom: 16px;
  background-color: #242424;
  border-radius: 8px;
}

.task-step div:last-child {
  margin-bottom: 0 !important;
}

.task-step-content {
  width: 100%;
  /* padding: 16px; */
  position: relative;
}

.task-step-content .item-title {
  margin-bottom: 8px;
  font-size: 12px;
  color: #fff;
}

.task-step-content .item-area {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-color: #242424;
  padding: 16px;
  border-radius: 8px;
}

.task-step-content .item-area .upload-section {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background-color: #3c3c3c;
  display: flex;
  align-items: center;
  justify-content: center;
}

.task-step-content .item-area .upload-section img {
  width: 24px;
  height: 24px;
  background-color: rgba(0, 0, 0, 0) !important;
  border: 0;
}

.task-step-content .item:last-of-type {
  margin-top: 16px;
}

.task-step-content .item:last-of-type .area-text {
  width: 100%;
  background-color: #3c3c3c;
  border-radius: 8px;
  padding: 12px;
  border-color: rgba(0, 0, 0, 0);
  color: #fff;
  resize: none;
}

.task-step-content .item:last-of-type .area-text:hover,
.task-step-content .item:last-of-type .area-text:focus-within {
  border-color: #fc01f6 !important;
  box-shadow: none !important;
}

.task-step-content .item:last-of-type .area-text::-webkit-input-placeholder {
  font-size: 14px;
  color: #666;
}

.task-step-content .edit-button {
  position: absolute;
  right: 2px;
  top: 12px;
  background-color: #715eff;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  font-size: 11px;
  border-radius: 4px;
}

.task-step-content .edit-button img {
  width: 12px;
  height: 12px;
  margin-right: 4px;
}

.task-step-content .edit-button:hover {
  background-color: #5b45ff;
}

.task-step-content .edit-button.disabled {
  background-color: #3c3c3c;
  cursor: not-allowed;
  color: #666;
}

.upload-item {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background-color: #3c3c3c;
  line-height: 80px;
  margin-right: 8px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.upload-item > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.upload-item-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  display: inline-block;
  width: 14px;
  height: 14px;
  cursor: pointer;
  background-image: url("../assets/taskDetail/icon_com_close.png");
  background-size: cover;
}

#upload-area-2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

#upload-area-2 .upload-item {
  margin-right: 4px;
  margin-bottom: 4px;
}

#upload-area-2 .upload-item img {
  width: 100%;
  height: auto;
}

#upload-trigger-2 {
  margin-bottom: 4px;
}

.task-step .task-checkbox-img {
  margin-right: 12px;
}

.prefix-icon {
  margin-top: 2px;
}

.task-step .task-checkbox-label {
  flex: 1;
  padding-right: 8px;
  color: #cecece;
}

.task-step .task-step-expand-btn {
  margin-left: auto;
}

.task-step .task-step-images {
  width: 100%;
  order: 1;
}

.task-step-input {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.task-step-input input {
  flex: 1;
  background-color: rgba(0, 0, 0, 0);
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
}

.task-step-input input::-moz-placeholder {
  color: #6b7280;
}

.task-step-input input::placeholder {
  color: #6b7280;
}

.task-step-input .expand-icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.task-checkbox-img {
  width: 18px;
  height: 18px;
  transition: opacity 0.2s ease;
}

.task-checkbox-img:hover {
  opacity: 0.8;
}

.task-checkbox-label {
  flex: 1;
  color: #fff;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.task-step-expand-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #232323;
  border-radius: 4px;
}

.task-step-expand-btn .expand-icon {
  width: 24px;
  height: 24px;
}

.task-step-link {
  display: flex;
  justify-content: flex-end;
}

.task-step-link a {
  color: #fff;
  font-size: 11px;
  text-decoration: none;
  background-color: #715eff;
  padding: 0px 8px;
  line-height: 30px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.task-step-link a:hover {
  background-color: #5b45ff;
}

.task-step-link a:hover {
  background-color: #5b45ff;
}

.task-step-images {
  display: flex;
  gap: 16px;
  width: 100%;
  justify-content: flex-start;
  padding-left: 25px;
}

.task-step-images img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
}

.task-step-progress {
  font-size: 18px;
  margin-bottom: 18px;
  font-weight: 600;
  text-align: left;
  color: rgba(155, 142, 255, 1);
}

.task-step-progress .progress-number {
  color: #fff;
  /* font-weight: 600; */
  font-size: 18px;
}

/* 子任务提交按钮 */

.submit-task-btn {
  background: linear-gradient(98.36deg, #fc01f6 -35.91%, #4f00ff 91.35%);
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  font-family: PingFang SC;
  font-weight: 600;
  font-style: Semibold;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.3px;
  cursor: pointer;
  border: 0 none;
}

.submit-task-btn.disabled {
  background: #242424;
  color: #666;
  cursor: not-allowed;
}

.purple-btn {
  background: linear-gradient(91.9deg, #fc01e3 -31.23%, #ff0004 117.3%);
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  font-family: PingFang SC;
  font-weight: 600;
  font-style: Semibold;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.3px;
  cursor: pointer;
  border: 0 none;
  margin: 0 !important;
}

.pink-plain-btn {
  position: relative;
  padding: 10px 16px;
  border-radius: 8px;
  font-family: PingFang SC;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.3px;
  cursor: pointer;
  background: #101010;
  border: none;
  /* 渐变边框效果 - 使用box-shadow */
  box-shadow: 0 0 0 0.5px #fc01e3, 0 0 0 0.5px #ff0004;
  background: linear-gradient(86.99deg, #fc01e3 24.27%, #ff0004 85.7%)
    border-box;
  background-clip: padding-box;
  /* 渐变文字效果 */
  color: transparent;
  background: linear-gradient(86.99deg, #fc01e3 24.27%, #ff0004 85.7%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 !important;
}

.pink-plain-btn::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 9px;
  background: linear-gradient(86.99deg, #fc01e3 24.27%, #ff0004 85.7%);
  z-index: -1;
}

.pink-plain-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  background: #101010;
  z-index: -1;
}

.purple-plain-btn {
  position: relative;
  padding: 10px 16px;
  border-radius: 8px;
  font-family: PingFang SC;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.3px;
  cursor: pointer;
  background: #101010;
  border: none;
  box-shadow: 0 0 0 0.5px #fc01f6, 0 0 0 0.5px #4f00ff;
  background: linear-gradient(98.36deg, #fc01f6 -35.91%, #4f00ff 91.35%)
    border-box;
  background-clip: padding-box;
  color: transparent;
  background: linear-gradient(98.36deg, #fc01f6 -35.91%, #4f00ff 91.35%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.purple-plain-btn::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 9px;
  background: linear-gradient(98.36deg, #fc01f6 -35.91%, #4f00ff 91.35%);
  z-index: -1;
}

.purple-plain-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  background: #101010;
  z-index: -1;
}

.task-btn-link-go {
  font-family: PingFang SC;
  font-weight: 600;
  font-style: Semibold;
  font-size: 12px;
  border: 0 none;
  line-height: 100%;
  letter-spacing: -0.3px;
  padding: 4px 12px;
  border: 1px solid rgba(110, 92, 250, 1);
  border-radius: 8px;
  color: rgba(110, 92, 250, 1);
  cursor: pointer;
}

.task-btn-link {
  font-family: PingFang SC;
  font-weight: 400;
  font-style: Semibold;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: -0.3px;
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
}

.task-btn-link.success {
  color: #06b62f;
  border: 1px solid #06b62f;
}

.task-btn-link.pending {
  color: #fa4c4c;
  border: 1px solid #fa4c4c;
}

.task-btn-link.rejected {
  color: #fa4c4c;
  border: 1px solid #fa4c4c;
}

.task-btn-link.complete {
  color: #988bfa;
  border: 1px solid #988bfa;
}

.progress-number-text {
  color: rgba(166, 166, 166, 1);
  font-size: 14px;
  margin-left: 12px;
}

.task-step-progress .progress-number-text {
  color: #a6a6a6;
  font-size: 14px;
  font-weight: 400;
}

.task-footer {
  margin-top: 16px;
  font-size: 14px;
  color: #a6a6a6;
  display: flex;
  align-items: center;
  gap: 8px;
}

.task-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-widget {
  background-color: #161616;
  border-radius: 12px;
  padding: 16px;
}

.sidebar-widget .widget-title {
  align-items: center;
  justify-content: space-between;
  display: flex;
  font-size: 16px;
  margin-bottom: 8px;
}

.sidebar-widget .task-title {
  margin-bottom: 8px;
  font-size: 20px;
  color: #fff;
}

.padding-l16 {
  padding-left: 16px;
}

.no-bg-color {
  background-color: transparent;
  padding: 0;
}

.sidebar-widget .widget-status {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}

.sidebar-widget .not-start {
  color: #f778f9;
  /* 降级：不支持渐变的浏览器用单色 */
  background: linear-gradient(
    272.22deg,
    #f778f9 1.36%,
    #fde9f3 38.09%,
    #abe3fa 63.88%,
    #f0fcff 98.84%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sidebar-widget .unreceive-task {
  color: #fc01f6;
  /* 降级：不支持渐变的浏览器用单色 */
  background: linear-gradient(98.36deg, #fc01f6 -35.91%, #4f00ff 91.35%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sidebar-widget .uncompleted-task {
  color: #f072c6;
  /* 降级：不支持渐变的浏览器用单色 */
  background: linear-gradient(98.36deg, #fc01f6 -35.91%, #4f00ff 91.35%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sidebar-widget .underway-task {
  color: #ff9494;
  /* 降级：不支持渐变的浏览器用单色 */
  background: linear-gradient(90deg, #ff9494 0%, #f072c6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sidebar-widget .available-task {
  color: #b5fe38;
  /* 降级：不支持渐变的浏览器用单色 */
  background: linear-gradient(275.94deg, #37b9ff -2.01%, #b5fe38 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sidebar-widget .reward-claimed {
  color: #ffb766;
  /* 降级：不支持渐变的浏览器用单色 */
  background: linear-gradient(90deg, #ffb766 0%, #ff9494 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sidebar-widget .ended {
  color: #afafaf;
  /* 降级：不支持渐变的浏览器用单色 */
}

.sidebar-widget .reward-details {
  padding: 16px;
  background-color: #242424;
  border-radius: 8px;
}

.flex-start {
  align-items: flex-start;
}

.sidebar-widget .reward-details .reward-details-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 24px;
  font-size: 14px;
  color: #afafaf;
  align-items: center;
 
}

.sidebar-widget .reward-details .reward-details-item .group {
  /* margin-bottom: 8px; */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.sidebar-widget .reward-details .reward-details-item .group  .award-amount-legal {
  font-family: PingFang SC;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  background: none !important;
  background-clip: border-box !important;
  -webkit-background-clip: border-box !important;
  -webkit-text-fill-color: rgba(175, 175, 175, 1) !important;
  color: rgba(175, 175, 175, 1) !important;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: -0.3px;
}

.sidebar-widget .reward-details .reward-details-item .layui-progress {
  width: 300px;
}

.sidebar-widget .reward-details .reward-details-item .layui-progress .purple {
  background-color: #715eff !important;
}

.sidebar-widget .reward-details .reward-details-item:last-child {
  padding-bottom: 0;
}

/* 文字渐变前景色 */

.text-gradient {
  background: linear-gradient(271.82deg, #37b9ff -8.97%, #b5fe38 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.sidebar-widget .reward-details .reward-details-item .reward-valumn {
  background: linear-gradient(271.82deg, #37b9ff -8.97%, #b5fe38 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.sidebar-widget .reward-details .reward-details-item .reward-valumn img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
}

.sidebar-widget .reward-details .reward-details-item .reward-amount {
  color: #715eff;
}

.sidebar-widget .reward-details .reward-details-item.tips {
  font-size: 12px;
  color: #6b7280;
  justify-content: flex-end;
}

.widget-card {
  padding: 16px;
  border-radius: 16px;
  background-color: #161616;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.task-reward-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.task-summary {
  padding: 0 16px;
  padding-top: 24px;
  @media screen and (max-width: 768px) {
    padding: 0;
    padding-top: 24px;
  }
}

.task-summary h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
}

.task-summary-mode {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.task-summary .reward-label,
.task-summary-mode .reward-label {
  font-size: 14px;
  color: #afafaf;
}

.task-summary .reward-rules,
.task-summary-mode .reward-rules {
  font-size: 12px;
  color: #afafaf;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.task-summary .reward-rules span,
.task-summary-mode .reward-rules span {
  margin-left: 2px;
  color: #afafaf;
  font-size: 12px;
  font-weight: 400;
  margin-top: 2px;
}

.task-summary .reward-rules .rule-icon,
.task-summary-mode .reward-rules .rule-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  background-image: url("/static/assets/taskDetail/icon_com_rules.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.summary-reward {
  padding: 16px;
  border-radius: 8px;
  background-color: #161616;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.task-type-badges-mode {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}
.reward-detail-header {
  font-size: 14px;
  color: #afafaf;
  margin-bottom: 8px;
}

.reward-detail-row {
  margin-bottom: 10px;
  font-size: 16px;
  &:last-child {
    margin-bottom: 0;
  }
}

.reward-detail-row:last-child {
  margin-bottom: 0;
}

.reward-detail-row img {
  width: 20px;
  height: 20px;
  margin-right: 6px;
  vertical-align: middle;
}

.reward-detail-row span {
  font-weight: 600;
  background: linear-gradient(271.82deg, #37b9ff -8.97%, #b5fe38 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
/*.main-reward-detail-row  下的span 除了第一个其他不显示渐变*/
.main-reward-detail-row:not(:first-child) span {
  background: none !important;
  -webkit-background-clip: none !important;
  -webkit-text-fill-color: inherit !important;
  background-clip: none !important;
 color: rgba(121, 121, 121, 1) !important;

}

.mutiple {
  /* margin-bottom: 16px; */
}

.mutiple .reward-detail-body {
  max-height: 200px;
  overflow: auto;
}

.reward-detail-header,
.reward-detail-row {
  display: flex;
  justify-content: space-between;
}

.reward-detail-body__item {
  display: flex;
  align-items: center;
}

.award-amount-group-left{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.award-amount-group-right{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.award-amount-group-left .award-amount-legal,.award-amount-group-right .award-amount-legal{
  font-family: PingFang SC;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  background: none !important;
  background-clip: border-box !important;
  -webkit-background-clip: border-box !important;
  -webkit-text-fill-color: rgba(175, 175, 175, 1) !important;
  color: rgba(175, 175, 175, 1) !important;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: -0.3px;
}

.reward-detail-body__item,
.reward-detail-header__item {
  flex: 1;
}

.reward-detail-header__item:nth-child(1) {
  text-align: left;
}

.reward-detail-header__item:nth-child(2) {
  text-align: center;
}

.reward-detail-header__item:nth-child(3) {
  text-align: right;
}

.reward-detail-body__item:nth-child(1) {
  justify-content: flex-start;
}

.reward-detail-body__item:nth-child(2) {
  justify-content: center;
}

.reward-detail-body__item:nth-child(3) {
  justify-content: flex-end;
}

.summary-reward .claim-task-btn.disabled {
  background: linear-gradient(
    286.62deg,
    #2f422b 9.53%,
    #263145 58.32%,
    #3a2a46 101.79%
  );
  cursor: not-allowed;
  color: #666;
}

.green-bg {
  background: linear-gradient(
    285.92deg,
    #1d291e 5.98%,
    #17212b 51.16%,
    #231d2c 99.03%
  );
}

.green-bg .reward-details {
  background: linear-gradient(
    286.62deg,
    #2f422b 9.53%,
    #263145 58.32%,
    #3a2a46 101.79%
  );
}

.padding-b12 {
  padding-bottom: 12px;
}

.task-reward-display .reward-label {
  font-size: 16px;
  color: #fff;
}

.task-reward-display .reward-amount {
  display: flex;
  align-items: center;
}

.task-reward-display img {
  width: 32px;
  height: 32px;
  margin-right: 12px;
}

.task-reward-display span {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.claim-task-btn {
  width: 100%;
  background: linear-gradient(98.36deg, #fc01f6 -35.91%, #4f00ff 91.35%);
  color: #fff;
  font-weight: 600;
  padding: 15px 0;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 16px;
  margin: 0 !important;
}

.claim-task-btn.disabled {
  background: #242424;
  cursor: not-allowed;
  color: #666;
}

.claim-task-btn.accept-reward-btn {
  background: linear-gradient(275.94deg, #37b9ff -2.01%, #b5fe38 100%);
  color: #050505;
}

.claim-task-btn.disabled:hover,
.claim-task-btn.disabled:focus {
  background-color: #3c3c3c;
}

.claim-task-btn:hover {
  background-color: #7c3aed;
}

/* .mobile {
    display: none;
} */

.twitter-logo {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.task-name {
  display: flex;
  align-items: center;
  @media screen and (max-width: 768px) {
    flex: 1;
    justify-content: space-between;
  }
}

.task-name img {
  width: 16px;
  height: 16px;
  margin-left: 6px;
  cursor: pointer;
}

.flex-c {
  display: flex;
  align-items: center;
}

.feedback .upload-title {
  color: #a6a6a6;
  padding-bottom: 8px;
}

.feedback .button-group {
  justify-content: flex-end !important;
}

.feedback .appeal-reason {
  color: #fff;
  font-size: 12px;
}

.feedback .upload-content.flex-wrap {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 16px;
}

.feedback .upload-content.flex-wrap img {
  width: 80px;
  height: 80px;
  margin-right: 8px;
  margin-top: 8px;
  border-radius: 8px;
}

.section-submit {
  /* display: none; */
  width: 100%;
  padding: 8px 16px 18px 16px;
  background-color: rgba(5, 5, 5, 1);
  z-index: 1000;
  position: fixed;
  left: 0;
  bottom: 0;
}
.section-step-submit {
  width: 100%;
  padding: 8px 16px 18px 16px;
  background-color: rgba(5, 5, 5, 1);

  position: fixed;
  left: 0;
  top: 0;
  z-index: -999999;
  opacity: 0;
  @media screen and (min-width: 768px) {
    display: none;
  }
}
.section-submit.sub-section {
  top: 0;
}

.section-submit .submit-button {
  width: 100%;
  display: block;
  text-align: center;
  border-radius: 8px;
  border: 0;
  height: 52px;
  height: 52px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
}

.section-submit .submit-button.disabled {
  background-color: rgba(22, 22, 22, 1);
  color: rgba(102, 102, 102, 1);
  cursor: not-allowed;
}

/* mobile style */

@media screen and (max-width: 768px) {
  .site-header {
    display: none;
  }
  .breadcrumb {
    display: flex;
  }
  .breadcrumb .share-btn {
    width: 24px;
    height: 24px;
    border: 0 none;
    background-color: transparent !important;
    padding: 0 !important;
  }
  .task-detail-container {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    padding-bottom: 100px;
  }
  .task-detail-grid {
    display: flex;
    flex-direction: column;
  }
  .task-publisher {
    padding-bottom: 8px;
  }
  .task-article-header {
    margin: 16px 0;
  }
  .task-steps-header {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .expand-btn.copy-origin {
    display: none;
  }
  .task-steps-header h3 {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
  }
  .task-steps-header .button-container {
    flex-basis: 100%;
    width: 100%;
    display: block;
    margin-top: 8px;
    text-align: right;
  }
  .task-steps-header .twitter-logo {
    margin-right: 8px;
  }
  .task-steps {
    padding: 12px;
  }
  .task-main-content {
    padding: 0px;
  }
  .task-main-content .task-steps {
    padding: 16px;
  }
  .section-submit:has(.submit-button) {
    display: block;
  }
  .task-sidebar {
    display: none;
  }
  .mobile.task-sidebar {
    display: block;
    margin-bottom: 16px;
  }
  .sidebar-widget {
    margin-top: 16px;
  }
  .countdown-timer-display {
    padding: 16px 46px !important;
    justify-content: space-between !important;
  }
  .reward-btn {
    background: linear-gradient(275.94deg, #37b9ff -2.01%, #b5fe38 100%);
    color: rgba(5, 5, 5, 1) !important;
  }
  .claim-btn {
    background: linear-gradient(98.36deg, #fc01f6 -35.91%, #4f00ff 91.35%);
    color: #fff;
  }
  /* .sidebar-widget .claim-task-btn {
        display: none;
    } */
  .summary-reward:not(:has(.reward-details)) {
    display: none;
  }
}

/* @media screen and (max-width: 1400px) {
  .task-detail-container {
    max-width: 1200px;
  }
} */

/* 滚动条样式 */

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

/* 针对特定容器的滚动条样式 */

.task-detail-container ::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.task-detail-container ::-webkit-scrollbar-track {
  background: rgba(68, 68, 68, 0.3);
  border-radius: 3px;
}

.task-detail-container ::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  transition: background 0.3s ease;
}

.task-detail-container ::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}

.new-user-detail-tips {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 12000;
}

.new-user-detail-tips .mask-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.new-user-detail-tips .new-user-mask-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1384px;
  height: 385px;
  transform: translate(-50%, -50%);
}

.new-user-detail-tips .new-user-mask-main {
  width: 100%;
  height: 100%;
}

.new-user-detail-tips .new-user-mask-main .text {
  position: absolute;
  top: 252px;
  left: 922px;
  color: #fff;
  font-size: 14px;
  line-height: 32px;
  padding-left: 24px;
  width: 425px;
}

.new-user-detail-tips .new-user-mask-main .text .go-login {
  margin-top: 14px;
  border-radius: 40px;
  padding: 6px 16px;
  background: #fff;
  color: #242424;
  font-weight: 600;
  display: inline-block;
  cursor: pointer;
  line-height: 20px;
  transition: all 0.3s;
  margin-left: 0;
  float: right;
}

.new-user-detail-tips .new-user-mask-main .text .go-login:hover {
  transform: translateY(-2px);
}

.new-user-detail-tips .new-user-mask-main #detailGirlImgContainerPc {
  position: absolute;
  bottom: 108px;
  right: -25px;
  width: 284px;
}

.new-user-detail-tips .new-user-mask-main #detailGirlImgContainerPc .girl-img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .new-user-detail-tips .new-user-mask-content {
    width: 339px;
  }
  .new-user-detail-tips .new-user-mask-content .text {
    top: 297px;
    left: 0;
    width: 297px;
  }
  .new-user-detail-tips .new-user-mask-content .text .go-login {
    margin-top: 14px;
    border-radius: 40px;
    padding: 6px 16px;
    background: #fff;
    color: #242424;
    margin-top: -15px;
  }
  .new-user-detail-tips .new-user-mask-content .text:hover {
    transform: translateY(-2px);
  }
  .newbie-banner {
    margin-bottom: 16px;
  }
  .new-user-detail-tips .new-user-mask-content #detailGirlImgContainerH5 {
    width: 188px;
    right: -172px;
    bottom: 302px;
    position: relative;
  }
}
/*  新手引导蒙层样式 */
.mask-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  @media screen and (max-width: 768px) {
    display: none;
  }
}
.twitter-guide-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 12000;
}
.twitter-guide-mask .mask-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}
.twitter-guide-mask-content {
  position: absolute;
  top: 153px;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  @media screen and (max-width: 768px) {
    display: none;
  }
}
.twitter-guide-mask-header {
  margin-right: 23px;
  position: relative;
  flex-shrink: 0;
}
.twitter-guide-mask-header > .twitter-guide-header-img {
  display: block;
  width: 480px !important;
  height: 164px !important;
  flex-shrink: 0;
  min-width: 480px;
  min-height: 164px;
  max-width: 480px;
  max-height: 164px;
}
.twitter-guide-text-area {
  position: absolute;
  left: 24px;
  bottom: 24px;
}
.twitter-guide-4-pc {
  position: absolute;
  bottom: 0px;
  right: 0px;
}
.twitter-guide-title {
  font-family: PingFang SC;
  font-weight: 600;
  font-style: Semibold;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 32px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: rgba(255, 255, 255, 1);
}
.twitter-guide-subtitle {
  font-family: PingFang SC;
  font-weight: 600;
  font-style: Semibold;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 32px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: rgba(255, 255, 255, 1);
}
.twitter-guide-no-account-btn {
  display: inline-block;
  padding: 0 16px;
  height: 36px;
  line-height: 32px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-family: PingFang SC;
  margin-top: 16px;
  border: 1px solid rgba(206, 206, 206, 1);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-style: Semibold;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 36px;
  letter-spacing: -0.3px;
  text-align: center;
}
.twitter-guide-no-account-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  color: rgba(255, 255, 255, 1);
}
.twitter-guide-mask-main {
  position: relative;
  flex-shrink: 0;
}
.twitter-guide-mask-main > img {
  display: block;
  width: 1024px !important;
  flex-shrink: 0;
  min-width: 1024px;
  max-width: 1024px;
}
.twitter-guide-complete-btn {
  position: absolute;
  bottom: 37px;
  right: 40px;
  box-sizing: border-box;
  height: 25px;
  padding: 0px 12px;
  line-height: 25px;
  color: rgba(152, 139, 250, 1);
  background: transparent;
  border: 1px solid rgba(152, 139, 250, 1);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: PingFang SC;
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: -0.3px;
}
.twitter-guide-complete-btn:hover {
  transform: translateY(-1px);
}
.twitter-guide-complete-btn:active {
  transform: translateY(0);
}

/* twitter引导蒙层样式 移动端样式 */
.twitter-guide-mask-content-mobile {
  display: none;
  position: absolute;
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: auto;
  overflow: visible;
}

@media screen and (max-width: 768px) {
  .twitter-guide-mask-content {
    display: none;
  }
  .twitter-guide-mask-content-mobile {
    display: flex;
  }
}

.twitter-guide-mask-header-mobile {
  position: relative;
  flex-shrink: 0;
}

.twitter-guide-mask-header-mobile > .twitter-guide-header-img-mobile {
  display: block;
  width: 330px !important;
  height: auto !important;
  flex-shrink: 0;
  min-width: 330px;
  max-width: 330px;
}

.twitter-guide-text-area-mobile {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  text-align: center;
}

.twitter-guide-title-mobile {
  font-family: PingFang SC;
  font-weight: 600;
  font-style: Semibold;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 32px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  color: rgba(255, 255, 255, 1);
}

.twitter-guide-subtitle-mobile {
  font-family: PingFang SC;
  font-weight: 600;
  font-style: Semibold;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 32px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  color: rgba(255, 255, 255, 1);
}

.twitter-guide-no-account-btn-mobile {
  display: inline-block;
  padding: 0 16px;
  height: 36px;
  line-height: 36px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-family: PingFang SC;
  font-weight: 600;
  font-style: Semibold;
  font-size: 14px;
  leading-trim: NONE;

  letter-spacing: -0.3px;
  border: 1px solid rgba(206, 206, 206, 1);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  margin-top: 16px;
}
.twitter-guide-4-h5 {
  position: absolute;
  bottom: -12px;
  right: -11px;
}

.twitter-guide-mask-main-mobile {
  position: relative;
  flex-shrink: 0;
  margin-top: 20px;
}

.twitter-guide-mask-main-mobile > img {
  display: block;
  width: 343px !important;
  height: auto !important;
  flex-shrink: 0;
  min-width: 343px;
  max-width: 343px;
}

.twitter-guide-complete-btn-mobile {
  position: absolute;
  bottom: 78px;
  right: 34px;
  box-sizing: border-box;
  height: 22px;
  padding: 0px 5px;
  line-height: 22px;
  color: rgba(152, 139, 250, 1);
  background: transparent;
  border: 1px solid rgba(152, 139, 250, 1);
  font-family: PingFang SC;
  font-weight: 400;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: -0.3px;
}

.twitter-guide-complete-btn-mobile:hover {
  transform: translateY(-1px);
}

.twitter-guide-complete-btn-mobile:active {
  transform: translateY(0);
}
/* telegram引导蒙层样式 */
.telegram-guide-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 12000;
}
.telegram-guide-mask .mask-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}
.telegram-guide-mask-content {
  position: absolute;
  top: 306px;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.telegram-guide-mask-header {
  position: relative;

  flex-shrink: 0;
}
.telegram-guide-mask-header > .telegram-guide-header-img {
  display: block;
  width: 440px !important;

  flex-shrink: 0;
  min-width: 440px;

  max-width: 440px;
}

.telegram-guide-text-area {
  position: absolute;
  left: 14px;
  bottom: 24px;
}

.telegram-guide-title {
  font-family: PingFang SC;
  font-weight: 600;
  font-style: Semibold;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 32px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: rgba(255, 255, 255, 1);
}

.telegram-guide-subtitle {
  font-family: PingFang SC;
  font-weight: 600;
  font-style: Semibold;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 32px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: rgba(255, 255, 255, 1);
}

.telegram-guide-no-account-btn {
  display: inline-block;
  padding: 0 16px;
  height: 36px;
  line-height: 36px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-family: PingFang SC;
  margin-top: 16px;
  border: 1px solid rgba(206, 206, 206, 1);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-style: Semibold;
  font-size: 14px;
  leading-trim: NONE;
  letter-spacing: -0.3px;
  text-align: center;
}

.telegram-guide-no-account-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  color: rgba(255, 255, 255, 1);
}

.telegram-guide-mask-main {
  position: relative;
  flex-shrink: 0;
  z-index: 1000;
}

.telegram-guide-mask-main > img {
  display: block;
  height: 225px !important;
  flex-shrink: 0;
}

.telegram-guide-complete-btn {
  position: absolute;
  bottom: 38px;
  right: 28px;
  box-sizing: border-box;
  height: 25px;
  padding: 0px 12px;
  line-height: 25px;
  color: rgba(152, 139, 250, 1);
  background: transparent;
  border: 1px solid rgba(152, 139, 250, 1);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: PingFang SC;
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: -0.3px;
}

.telegram-guide-complete-btn:hover {
  transform: translateY(-1px);
}

.telegram-guide-complete-btn:active {
  transform: translateY(0);
}
.telegram-guide-6-pc {
  position: absolute;
  bottom: 0px;
  right: -28px;
}

/* telegram引导蒙层样式 移动端样式 */
.telegram-guide-mask-content-mobile {
  display: none;
  position: absolute;
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: auto;
  overflow: visible;
}

@media screen and (max-width: 768px) {
  .telegram-guide-mask-content {
    display: none;
  }
  .telegram-guide-mask-content-mobile {
    display: flex;
  }
}

.telegram-guide-mask-header-mobile {
  position: relative;
  flex-shrink: 0;
}

.telegram-guide-mask-header-mobile > .telegram-guide-header-img-mobile {
  display: block;
  width: 330px !important;
  height: auto !important;
  flex-shrink: 0;
  min-width: 330px;
  max-width: 330px;
}

.telegram-guide-text-area-mobile {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  text-align: center;
}

.telegram-guide-title-mobile {
  font-family: PingFang SC;
  font-weight: 600;
  font-style: Semibold;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 32px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  color: rgba(255, 255, 255, 1);
}

.telegram-guide-subtitle-mobile {
  font-family: PingFang SC;
  font-weight: 600;
  font-style: Semibold;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 32px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  color: rgba(255, 255, 255, 1);
}

.telegram-guide-no-account-btn-mobile {
  display: inline-block;
  padding: 0 16px;
  height: 36px;
  line-height: 36px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-family: PingFang SC;
  font-weight: 600;
  font-style: Semibold;
  font-size: 14px;
  leading-trim: NONE;

  letter-spacing: -0.3px;
  border: 1px solid rgba(206, 206, 206, 1);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  margin-top: 16px;
}

.telegram-guide-6-h5 {
  position: absolute;
  bottom: 0px;
  right: -20px;
}

.telegram-guide-mask-main-mobile {
  position: relative;
  flex-shrink: 0;
  margin-top: 20px;
}

.telegram-guide-mask-main-mobile > img {
  display: block;
  width: 343px !important;
  height: auto !important;
  flex-shrink: 0;
  min-width: 343px;
  max-width: 343px;
}

.telegram-guide-complete-btn-mobile {
  position: absolute;
  bottom: 94px;
  right: 49px;
  box-sizing: border-box;
  height: 22px;
  padding: 0px 5px;
  line-height: 22px;
  color: rgba(152, 139, 250, 1);
  background: transparent;
  border: 1px solid rgba(152, 139, 250, 1);
  font-family: PingFang SC;
  font-weight: 400;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: -0.3px;
  opacity: 0;
}

.telegram-guide-complete-btn-mobile:hover {
  transform: translateY(-1px);
}

.telegram-guide-complete-btn-mobile:active {
  transform: translateY(0);
}

/* twitter关注引导蒙层样式 PC端 */
.twitter-follow-guide-mask-content {
  position: absolute;
  top: 265px;

  display: flex;
  flex-direction: column;
}

.twitter-follow-guide-mask-header {
  position: absolute;
  top: 376px;
  left: 600px;
  flex-shrink: 0;
}
.twitter-follow-guide-complete-btn {
  background: linear-gradient(98.36deg, #fc01f6 -35.91%, #4f00ff 91.35%);

  height: 36px;
  line-height: 36px;
  padding: 0 16px;
  border-radius: 8px;
  cursor: pointer;
  font-family: PingFang SC;
  font-weight: 600;
  font-style: Semibold;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: -0.3px;
  position: absolute;
  top: 130px;
  right: 50px;
}

.twitter-follow-guide-header-title {
  font-family: PingFang SC;
  font-weight: 600;
  font-style: Semibold;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 32px;
  letter-spacing: 0px;
  vertical-align: middle;

  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
}

.twitter-follow-guide-header-img-1 {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: auto;
  height: auto;
  z-index: 3;
}

.twitter-follow-guide-header-img-2 {
  display: block;
  width: 400px !important;
  height: auto !important;
  flex-shrink: 0;
  min-width: 400px;
  max-width: 400px;
}

.twitter-follow-guide-mask-main {
  position: absolute;
  flex-shrink: 0;
  top: 0;
  left: 0;
}

.twitter-follow-guide-mask-main > img {
  display: block;
  width: 1024px !important;
  height: auto !important;
  flex-shrink: 0;
  min-width: 1024px;
  max-width: 1024px;
}

.twitter-follow-guide-subtitle {
  position: absolute;
  top: 253px;
  left: 11px;

  font-family: PingFang SC;
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  white-space: nowrap;
  opacity: 0;
}

.twitter-follow-guide-subtitle-more {
  color: rgba(152, 139, 250, 1);

  cursor: pointer;
}

.twitter-follow-guide-subtitle-more:hover {
  color: rgba(180, 170, 255, 1);
}

/* twitter关注引导蒙层样式 移动端 */
.twitter-follow-guide-mask-content-mobile {
  display: none;
  position: absolute;
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: auto;
  overflow: visible;
}

.twitter-follow-guide-mask-header-mobile {
  position: relative;
  flex-shrink: 0;
  margin-bottom: 20px;
  width: 330px;
  height: 112px;
}

.twitter-follow-guide-header-title-mobile {
  font-family: PingFang SC;
  font-weight: 600;
  font-style: Semibold;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 32px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: rgba(255, 255, 255, 1);
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  z-index: 2;
}

.twitter-follow-guide-header-img-1-mobile {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: auto;
  height: auto;
  z-index: 3;
}

.twitter-follow-guide-header-img-2-mobile {
  display: block;
  width: 330px !important;
  height: auto !important;
  flex-shrink: 0;
  min-width: 330px;
  max-width: 330px;
}

.twitter-follow-guide-mask-main-mobile {
  position: relative;
  flex-shrink: 0;
}

.twitter-follow-guide-mask-main-mobile > img {
  display: block;
  width: 343px !important;
  height: auto !important;
  flex-shrink: 0;
  min-width: 343px;
  max-width: 343px;
}

.twitter-follow-guide-subtitle-mobile {
  position: absolute;
  top: 174px;
  left: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
  opacity: 0;
}

.twitter-follow-guide-subtitle-more-mobile {
  color: rgba(152, 139, 250, 1);

  cursor: pointer;
  margin-left: 5px;
}

.twitter-follow-guide-complete-btn-mobile {
  position: absolute;
  bottom: 36px;
  left: 28px;
  background: linear-gradient(98.36deg, #fc01f6 -35.91%, #4f00ff 91.35%);
  height: 36px;
  line-height: 22px;
  padding: 0 16px;
  border-radius: 4px;
  cursor: pointer;
  font-family: PingFang SC;
  font-weight: 400;
  font-size: 12px;
  color: rgba(255, 255, 255, 1);
  border: none;
  transition: all 0.3s ease;
  opacity: 0;
}

.twitter-follow-guide-complete-btn-mobile:hover {
  transform: translateY(-1px);
}

.twitter-follow-guide-complete-btn-mobile:active {
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .twitter-follow-guide-mask-content {
    display: none;
  }
  .twitter-follow-guide-mask-content-mobile {
    display: flex;
  }
}

/* telegram关注引导蒙层样式 PC端 */
.telegram-follow-guide-mask-content {
  position: absolute;
  top: 300px;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.telegram-follow-guide-mask-header {
  position: relative;
  flex-shrink: 0;
  width: 400px;
  margin-bottom: -56px;
}

.telegram-follow-guide-complete-btn {
  background: linear-gradient(98.36deg, #fc01f6 -35.91%, #4f00ff 91.35%);
  height: 36px;
  line-height: 36px;
  padding: 0 16px;
  border-radius: 8px;
  cursor: pointer;
  font-family: PingFang SC;
  font-weight: 600;
  font-style: Semibold;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: -0.3px;
  position: absolute;
  top: 146px;
  right: 16px;
  color: rgba(255, 255, 255, 1);
  border: none;
  transition: all 0.3s ease;
}

.telegram-follow-guide-complete-btn:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.telegram-follow-guide-complete-btn:active {
  transform: translateY(0);
}

.telegram-follow-guide-header-title {
  font-family: PingFang SC;
  font-weight: 600;
  font-style: Semibold;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 32px;
  letter-spacing: 0px;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 1);
}

.telegram-follow-guide-header-img-1 {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: auto;
  height: auto;
  z-index: 3;
}

.telegram-follow-guide-header-img-2 {
  display: block;
  width: 400px !important;
  height: auto !important;
  flex-shrink: 0;
  min-width: 400px;
  max-width: 400px;
}

.telegram-follow-guide-mask-main {
  position: relative;
  flex-shrink: 0;
}

.telegram-follow-guide-mask-main > img {
  display: block;
  width: 1024px !important;
  height: auto !important;
  flex-shrink: 0;
  min-width: 1024px;
  max-width: 1024px;
}

.telegram-follow-guide-subtitle {
  position: absolute;
  top: 261px;
  left: 10px;
  font-family: PingFang SC;
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  white-space: nowrap;
  opacity: 0;
}

.telegram-follow-guide-subtitle-more {
  color: rgba(152, 139, 250, 1);

  cursor: pointer;
  margin-left: 5px;
}

.telegram-follow-guide-subtitle-more:hover {
  color: rgba(180, 170, 255, 1);
}

/* telegram关注引导蒙层样式 移动端 */
.telegram-follow-guide-mask-content-mobile {
  display: none;
  position: absolute;
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: auto;
  overflow: visible;
}

.telegram-follow-guide-mask-header-mobile {
  position: relative;
  flex-shrink: 0;
  margin-bottom: 20px;
}

.telegram-follow-guide-header-title-mobile {
  font-family: PingFang SC;
  font-weight: 600;
  font-style: Semibold;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 32px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: rgba(255, 255, 255, 1);
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  z-index: 2;
}

.telegram-follow-guide-header-img-1-mobile {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: auto;
  height: auto;
  z-index: 3;
}

.telegram-follow-guide-header-img-2-mobile {
  display: block;
  width: 330px !important;
  height: auto !important;
  flex-shrink: 0;
  min-width: 330px;
  max-width: 330px;
}

.telegram-follow-guide-mask-main-mobile {
  position: relative;
  flex-shrink: 0;
}

.telegram-follow-guide-mask-main-mobile > img {
  display: block;
  width: 343px !important;
  height: auto !important;
  flex-shrink: 0;
  min-width: 343px;
  max-width: 343px;
}

.telegram-follow-guide-subtitle-mobile {
  position: absolute;
  top: 174px;
  left: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
  opacity: 0;
}

.telegram-follow-guide-subtitle-more-mobile {
  color: rgba(152, 139, 250, 1);

  cursor: pointer;
  margin-left: 5px;
}

.telegram-follow-guide-complete-btn-mobile {
  position: absolute;
  bottom: 36px;
  left: 28px;
  background: linear-gradient(98.36deg, #fc01f6 -35.91%, #4f00ff 91.35%);
  height: 36px;
  line-height: 22px;
  padding: 0 16px;
  border-radius: 4px;
  cursor: pointer;
  font-family: PingFang SC;
  font-weight: 400;
  font-size: 12px;
  color: rgba(255, 255, 255, 1);
  border: none;
  transition: all 0.3s ease;
  opacity: 0;
}

.telegram-follow-guide-complete-btn-mobile:hover {
  transform: translateY(-1px);
}

.telegram-follow-guide-complete-btn-mobile:active {
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .telegram-follow-guide-mask-content {
    display: none;
  }
  .telegram-follow-guide-mask-content-mobile {
    display: flex;
  }
}
/* 新手引导蒙层样式 去我的任务看看引导 */
.my-task-guide-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 12000;
}
.my-task-guide-mask .mask-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}
.my-task-guide-mask-content {
  position: absolute;
  top: 285px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.my-task-guide-mask-header {
  position: relative;
  flex-shrink: 0;
}
.my-task-guide-mask-header > .my-task-guide-header-img {
  display: block;
  width: 480px !important;
  height: auto !important;
  flex-shrink: 0;
  min-width: 480px;
  max-width: 480px;
}
.my-task-guide-text-area {
  position: absolute;
  left: 20px;
  bottom: 24px;
}
.my-task-guide-title {
  font-family: PingFang SC;
  font-weight: 600;
  font-style: Semibold;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 32px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 16px;
}
.my-task-guide-btn {
  display: inline-block;
  padding: 0 16px;
  height: 36px;
  line-height: 36px;
  background: rgba(255, 255, 255, 1);
  border-radius: 999px;
  font-family: PingFang SC;
  font-weight: 600;
  font-style: Semibold;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: -0.3px;
  color: rgba(36, 36, 36, 1);
  line-height: 36px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.my-task-guide-btn:hover {
  transform: translateY(-1px);
}

.my-task-guide-8-pc {
  position: absolute;
  bottom: 0px;
  right: -20px;
}
/* 移动端样式 */
.my-task-guide-mask-content-mobile {
  display: none;
  position: absolute;
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: auto;
  overflow: visible;
}
.my-task-guide-mask-header-mobile {
  position: relative;
  flex-shrink: 0;
}
.my-task-guide-mask-header-mobile > .my-task-guide-header-img-mobile {
  display: block;
  width: 330px !important;
  height: auto !important;
  min-width: 330px;
  max-width: 330px;
  flex-shrink: 0;
}
.my-task-guide-text-area-mobile {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  text-align: center;
}
.my-task-guide-8-h5 {
  position: absolute;
  bottom: 0px;
  right: -20px;
}

.my-task-guide-title-mobile {
  font-family: PingFang SC;
  font-weight: 600;
  font-style: Semibold;
  font-size: 12px;
  leading-trim: NONE;
  
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 16px;
  text-align: left;
}
.my-task-guide-btn-mobile {
  display: inline-block;
  padding: 0 16px;
  height: 36px;
  line-height: 36px;
  background: rgba(255, 255, 255, 1);
  border-radius: 999px;
  font-family: PingFang SC;
  font-weight: 600;
  font-style: Semibold;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: -0.3px;
  color: rgba(36, 36, 36, 1);
  line-height: 36px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.my-task-guide-btn-mobile:hover { 
  transform: translateY(-1px);
}

.my-task-guide-btn-mobile:active {
  transform: translateY(0);
}
@media screen and (min-width: 768px) {
  .my-task-guide-mask-content {
    display: flex;
  }
  .my-task-guide-mask-content-mobile {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .my-task-guide-mask-content {
    display: none;
  }
  .my-task-guide-mask-content-mobile {
    display: flex;
  }
}

/* 金币爆炸 视频样式 */
.gold-explode-video-mask-task-detail {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 12000;
}
.gold-explode-video-mask-task-detail .mask-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

}
.gold-explode-video-mask-task-detail  .gold-explode-video-mask-content{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  max-width: 1400px;
 
}
