* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Arial", "Helvetica", sans-serif;
  height: 100vh;
  background: #000000;
}

.grow-page {
  max-width: 1552px;
  min-height: calc(100vh - 250px - 84px);
  margin: 0 auto;
  padding-bottom: 50px;
  color: #fff;
}
.grow-page .banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 36px 0 50px;
}
.grow-page .banner .desc {
  flex: 1;
}
.grow-page .banner .desc .text {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 16px;
}
.grow-page .banner .desc .val {
  font-size: 64px;
  font-weight: 600;
  line-height: 90px;
  margin-bottom: 24px;
}
.grow-page .banner .desc .val span {
  color: rgb(110, 92, 250);
}
.grow-page .banner .desc .num {
  width: fit-content;
  font-size: 14px;
  line-height: 22px;
  background: var(----7, rgb(68, 68, 68));
  border-radius: 8px;
  padding: 4px;
  padding-left: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.grow-page .banner .desc .num span {
  background: rgb(22, 22, 22);
  padding: 4px 12px;
  border-radius: 4px;
  display: flex;
}
.grow-page .banner .desc .num span i {
  font-style: normal;
  margin-right: 8px;
}
.grow-page .banner .desc .num span .fiat {
  color: #797979;
  font-size: 14px;
}
.grow-page .banner .icon {
  height: 400px;
}
.grow-page .tabbar {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.grow-page .tabbar .tab-item {
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgb(102, 102, 102);
  font-size: 16px;
  font-weight: 600;
}
.grow-page .tabbar .tab-item.active {
  background: rgb(36, 36, 36);
  color: #FFFFFF;
}
.grow-page .tabbar .tab-item:hover:not(.active) {
  color: #FFFFFF;
}
.grow-page .tab-content-item {
  display: none;
}
.grow-page .tab-content-item.active {
  display: block;
}
.grow-page .tab-content-item .icon {
  height: 76px;
  margin-bottom: 20px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.grow-page .tab-content-item .icon img {
  height: 100%;
}
.grow-page .tab-content-item .icon .btn {
  padding: 15px 46px;
  background: linear-gradient(275.94deg, #37B9FF -2.01%, #B5FE38 100%);
  border-radius: 88px;
  font-size: 16px;
  font-weight: 600;
  color: rgb(22, 22, 22);
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: none;
}
.grow-page .tab-content-item .icon .btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(275.94deg, #B5FE38 -2.01%, #37B9FF 100%);
}
.grow-page .tab-content-item .icon .btn.disabled {
  background: rgb(68, 68, 68);
  color: rgb(136, 136, 136);
  border: 1px solid rgb(68, 68, 68);
  cursor: not-allowed;
}
.grow-page .tab-content-item .icon .btn.disabled:hover {
  transform: none;
}
.grow-page .tab-content-item .icon .btn.disabled:hover {
  transform: none;
}
.grow-page .tab-content-item .task-item {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.grow-page .tab-content-item .task-item .reward {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgb(36, 36, 36);
  border-radius: 8px;
  padding: 0 16px;
  height: 114px;
}
.grow-page .tab-content-item .task-item .reward span {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}
.grow-page .tab-content-item .task-item .reward .img-list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  width: 100%;
  margin-left: 16px;
}
.grow-page .tab-content-item .task-item .reward .img-list img {
  margin-left: -16px;
}
.grow-page .tab-content-item .task-item .reward img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.grow-page .tab-content-item .task-item .reward .fiat {
  font-size: 14px;
  color: #797979;
  line-height: 20px;
}
.grow-page .tab-content-item .task-item .task-item-desc {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgb(36, 36, 36);
  border-radius: 8px;
  padding: 0 24px;
  box-sizing: border-box;
}
.grow-page .tab-content-item .task-item .task-item-desc .info {
  flex: 1;
}
.grow-page .tab-content-item .task-item .task-item-desc .info .name {
  color: rgb(162, 150, 255) !important;
}
.grow-page .tab-content-item .task-item .task-item-desc .info .title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.grow-page .tab-content-item .task-item .task-item-desc .info .title img {
  width: 24px;
  height: 24px;
}
.grow-page .tab-content-item .task-item .task-item-desc .info .title span {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
}
.grow-page .tab-content-item .task-item .task-item-desc .info .desc {
  color: rgb(121, 121, 121);
  font-size: 14px;
  line-height: 20px;
}
.grow-page .tab-content-item .task-item .task-item-desc .info .desc img {
  display: none;
}
.grow-page .tab-content-item .task-item .task-item-desc .btn {
  width: 90px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 88px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  background: rgb(36, 36, 36);
  color: rgb(110, 92, 250);
  border: 1px solid rgb(110, 92, 250);
}
.grow-page .tab-content-item .task-item .task-item-desc .btn:hover {
  background: rgba(110, 92, 250, 0.1);
  transform: translateY(-2px);
}
.grow-page .tab-content-item .task-item .task-item-desc .btn.claimable {
  background: linear-gradient(98.36deg, #FC01F6 -35.91%, #4F00FF 91.35%);
  color: #FFFFFF;
  border: none;
}
.grow-page .tab-content-item .task-item .task-item-desc .btn.claimable:hover {
  transform: translateY(-2px);
}
.grow-page .tab-content-item .task-item .task-item-desc .btn.completed {
  background: rgb(68, 68, 68);
  color: rgb(136, 136, 136);
  border: 1px solid rgb(68, 68, 68);
  cursor: not-allowed;
}
.grow-page .tab-content-item .task-item .task-item-desc .btn.completed:hover {
  transform: none;
}
.grow-page .tab-content-item .day-box {
  border: 1px solid rgb(68, 68, 68);
  padding: 32px;
  border-radius: 16px;
  padding-bottom: 132px;
}
.grow-page .tab-content-item .content-day {
  margin-bottom: 24px;
}
.grow-page .tab-content-item .content-day .title {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}
.grow-page .tab-content-item .content-day .desc {
  color: rgb(121, 121, 121);
  font-size: 14px;
  line-height: 20px;
}
.grow-page .tab-content-item .list {
  display: flex;
  gap: 24px;
  flex-wrap: nowrap;
  position: relative;
}
.grow-page .tab-content-item .list .day-item {
  background: rgb(60, 60, 60);
  border-radius: 12px;
  padding: 20px 16px;
  width: 192px;
  height: 155px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 4px;
}
.grow-page .tab-content-item .list .day-item .name {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 500;
  line-height: 36px;
}
.grow-page .tab-content-item .list .day-item .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgb(22, 22, 22);
  width: 100%;
  box-sizing: border-box;
  border-radius: 8px;
  height: 111px;
}
.grow-page .tab-content-item .list .day-item .info img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.grow-page .tab-content-item .list .day-item .info span {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
}
.grow-page .tab-content-item .list .day-item .info .fiat {
  font-size: 14px;
  color: #797979;
  line-height: 20px;
}
.grow-page .tab-content-item .list .day-item .btn {
  position: absolute;
  bottom: -53px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  color: rgb(22, 22, 22);
  padding: 8px 23px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.grow-page .tab-content-item .list .day-item .btn:hover {
  transform: translateX(-50%) translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}
.grow-page .tab-content-item .list .day-item.claimed .name {
  color: rgb(121, 121, 121);
}
.grow-page .tab-content-item .list .day-item.claimed .info img {
  background: #28A745;
}
.grow-page .tab-content-item .list .day-item.current-day {
  background: rgb(110, 92, 250);
  box-shadow: 0 6px 20px rgba(123, 97, 255, 0.4);
  border: 1px solid rgba(123, 97, 255, 0.5);
}
.grow-page .tab-content-item .list .day-item.current-day .info img {
  background: rgba(255, 255, 255, 0.2);
}
.grow-page .tab-content-item .list .day-item.future {
  opacity: 0.6;
}
.grow-page .h5-reward {
  display: none;
}
.grow-page .progress-box {
  margin: 40px 0 64px;
  border: 1px solid rgb(68, 68, 68);
  padding: 40px 176px;
  padding-bottom: 84px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.grow-page .progress-box .progress-item {
  position: relative;
}
.grow-page .progress-box .progress-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid rgb(60, 60, 60);
  color: rgb(121, 121, 121);
  border-radius: 50%;
}
.grow-page .progress-box .progress-item span img {
  width: 48px;
  height: 48px;
  position: absolute;
  left: 50%;
  top: -57px;
  transform: translateX(-50%);
  display: none;
}
.grow-page .progress-box .progress-item span .desc {
  color: rgb(102, 102, 102);
  font-size: 14px;
  position: absolute;
  left: 50%;
  bottom: -44px;
  transform: translateX(-50%);
  width: max-content;
}
.grow-page .progress-box .progress-item.active span {
  border-radius: 50%;
  background: #fff;
  border-color: #fff;
  font-size: 14px;
  font-weight: 600;
  color: rgb(21, 21, 21);
}
.grow-page .progress-box .progress-item.active span img {
  display: block;
}
.grow-page .progress-box .progress-item.active span .desc {
  color: #fff;
  font-weight: 600;
}
.grow-page .progress-box .line {
  flex: 1;
  height: 3px;
  position: relative;
  background: #3C3C3C;
  -webkit-mask: repeating-linear-gradient(90deg, black 0px, black 3px, transparent 3px, transparent 6px);
  mask: repeating-linear-gradient(90deg, black 0px, black 3px, transparent 3px, transparent 6px);
}
.grow-page .progress-box .line.line1 {
  background: linear-gradient(90deg, #3C3C3C 0%, #FFFFFF 100%);
}
.grow-page .progress-box .line.line2 {
  background: linear-gradient(90deg, #FFFFFF 0%, #3C3C3C 100%);
}

@media screen and (max-width: 1552px) {
  .grow-page {
    padding: 0 16px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .grow-page {
    padding: 0 16px;
    padding-bottom: 50px;
  }
  .grow-page .banner {
    flex-direction: column-reverse;
    text-align: center;
    margin-bottom: 24px;
    padding: 0;
  }
  .grow-page .banner .desc {
    width: 100%;
  }
  .grow-page .banner .desc .text {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .grow-page .banner .desc .val {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 0;
  }
  .grow-page .banner .desc .num {
    margin: 0 auto;
    margin-top: 24px;
  }
  .grow-page .banner .desc .num span {
    flex-direction: column;
  }
  .grow-page .banner .icon {
    height: 215px;
    margin: 0 auto 16px;
  }
  .grow-page .tabbar {
    gap: 8px;
    margin-bottom: 16px;
  }
  .grow-page .tabbar .tab-item {
    padding: 8px 16px;
    font-size: 16px;
  }
  .grow-page .tab-content-item .icon img {
    display: none;
  }
  .grow-page .tab-content-item .icon {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(----11, #050505);
    padding: 8px 16px 16px;
    margin-bottom: 0;
  }
  .grow-page .tab-content-item .icon .btn {
    display: block;
    width: 100%;
    text-align: center;
  }
  .grow-page .tab-content-item .task-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    box-sizing: border-box;
    margin-bottom: 16px;
  }
  .grow-page .tab-content-item .task-item .reward {
    display: none;
  }
  .grow-page .tab-content-item .task-item .desc img {
    display: block !important;
  }
  .grow-page .tab-content-item .task-item .h5-reward {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .grow-page .tab-content-item .task-item .h5-reward .reward {
    height: auto;
  }
  .grow-page .tab-content-item .task-item .h5-reward .reward span {
    width: fit-content;
    display: block;
    white-space: nowrap;
    overflow: visible;
    text-overflow: ellipsis;
  }
  .grow-page .tab-content-item .task-item .btn {
    display: none !important;
  }
  .grow-page .tab-content-item .task-item .task-item-desc {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 12px;
    padding: 16px;
  }
  .grow-page .tab-content-item .task-item .task-item-desc .info {
    width: 100%;
  }
  .grow-page .tab-content-item .task-item .task-item-desc .info .title {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .grow-page .tab-content-item .task-item .task-item-desc .info .title img {
    width: 16px;
    height: 16px;
  }
  .grow-page .tab-content-item .task-item .task-item-desc .info .title span {
    font-size: 14px;
  }
  .grow-page .tab-content-item .task-item .task-item-desc .info .desc {
    display: flex;
    align-items: center;
    padding: 16px;
    padding-left: 0;
    padding-bottom: 0;
    padding-top: 8px;
  }
  .grow-page .tab-content-item .task-item .task-item-desc .info .desc img {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    display: none;
  }
  .grow-page .tab-content-item .task-item .task-item-desc .info .desc {
    font-size: 12px;
    line-height: 18px;
  }
  .grow-page .tab-content-item .task-item .task-item-desc .btn {
    padding: 8px 16px;
    font-size: 14px;
    min-width: auto;
  }
  .grow-page .tab-content-item .task-item .task-item-desc .h5-reward {
    width: 100%;
    justify-content: space-between;
  }
  .grow-page .tab-content-item .task-item .task-item-desc .h5-reward .reward {
    display: flex !important;
    align-items: center;
    flex-direction: row;
    flex: 1;
    justify-content: flex-start;
    padding-left: 0;
  }
  .grow-page .tab-content-item .task-item .task-item-desc .h5-reward .reward span {
    font-size: 16px !important;
  }
  .grow-page .tab-content-item .task-item .task-item-desc .h5-reward .reward img {
    width: 24px;
    height: 24px;
  }
  .grow-page .tab-content-item .task-item .task-item-desc .h5-reward .reward .img-list {
    width: auto;
    min-width: 24px;
    margin-right: 8px;
  }
  .grow-page .tab-content-item .task-item .task-item-desc .h5-reward .btn {
    display: flex !important;
    padding: 8px 16px;
    width: 74px;
    height: 36px;
    padding: 0;
    font-size: 14px;
  }
  .grow-page .tab-content-item .day-box {
    border: none;
    padding: 22px 16px;
    padding-left: 0;
  }
  .grow-page .tab-content-item .content-day {
    margin-bottom: 14px;
  }
  .grow-page .tab-content-item .content-day .title {
    font-size: 16px;
  }
  .grow-page .tab-content-item .content-day .desc {
    font-size: 14px;
  }
  .grow-page .tab-content-item .list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
  }
  .grow-page .tab-content-item .list .day-item {
    width: auto;
    height: auto;
  }
  .grow-page .tab-content-item .list .day-item .name {
    line-height: 28px;
    font-size: 14px;
    font-weight: 600;
  }
  .grow-page .tab-content-item .list .day-item .info {
    height: 70px;
    padding-top: 4px;
    border-radius: 4px;
    gap: 0px;
  }
  .grow-page .tab-content-item .list .day-item .info img {
    width: 24px;
    height: 24px;
    object-fit: cover;
    margin-top: 4px;
  }
  .grow-page .tab-content-item .list .day-item .info .fiat {
    font-size: 10px;
    line-height: 14px;
  }
  .grow-page .tab-content-item .list .current-day {
    position: static;
  }
  .grow-page .tab-content-item .list .current-day .btn {
    bottom: -60px;
    padding: 8px 105px;
  }
  .grow-page .progress-box {
    padding: 24px 44px 57px;
    margin: 32px 0;
  }
}

/*# sourceMappingURL=grow.css.map */
