.carousel[data-v-d99d5944] {
  width: 380px;
  height: 64px;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(255, 229, 187, 0.14);
          box-shadow: 0px 5px 10px 0px rgba(255, 229, 187, 0.14);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
}
.carousel[data-v-d99d5944]::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #ffffff;
    opacity: 0.2;
}
.carousel ul li[data-v-d99d5944] {
    height: 64px;
    padding: 0 14px;
}
.carousel ul li img[data-v-d99d5944] {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      margin-right: 13px;
}
.carousel ul li p[data-v-d99d5944] {
      font-size: 16px;
      color: #ffffff;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
}
.carousel ul li p span[data-v-d99d5944] {
        color: #ffffff;
}

.codeDialog[data-v-c73380da] .el-dialog {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin: 0;
}
.codeDialog[data-v-c73380da] .el-dialog .el-dialog__header {
    display: none;
}
.codeDialog[data-v-c73380da] .el-dialog .el-dialog__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100vh;
    padding: 0;
}
.codeDialog[data-v-c73380da] .el-dialog .el-dialog__body .close {
      position: absolute;
      top: -25px;
      right: -60px;
      cursor: pointer;
}
.dialog-box[data-v-c73380da] {
  position: relative;
}

.flex {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

/*主轴为水平方向，起点在左边*/
.flexRow {
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
}

/*主轴为垂直方向，起点在上沿*/
.flexColumn {
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}
/* 反转 wrap 排列 */
.flexWrapReverse {
  -ms-flex-direction: wrap-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
          flex-direction: row-reverse;
}
.flex1 {
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
}

/*交叉轴的起点对齐*/
.alignStart {
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
}

/*交叉轴的终点对齐*/
.alignEnd {
  -ms-flex-align: end;
  -webkit-box-align: end;
          align-items: flex-end;
}

/*交叉轴的中点对齐*/
.alignCenter {
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

/*项目的第一行文字的基线对齐*/
.alignBaseline {
  -ms-align-items: baseline;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

/*如果项目未设置高度或设为auto，将占满整个容器的高度*/
.alignStretch {
  -ms-align-items: stretch;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

/*换行，第一行在上方*/
.flexWrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/*主轴左对齐*/
.justifyStart {
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
}

/*主轴右对齐*/
.justifyEnd {
  -ms-flex-pack: end;
  -webkit-box-pack: end;
          justify-content: flex-end;
}

/*主轴居中对齐*/
.justifyCenter {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
}

/*主轴两端对齐,项目之间的间隔都相等*/
.justifyBetween {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

/*每个项目两侧的间隔相等。所以，项目之间的间隔比项目与边框的间隔大一倍*/
.justifyAround {
  -ms-flex-pack: justify;
  justify-content: space-around;
}

/*覆盖父级交叉轴的起点对齐*/
.alignSelfStart {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

/*覆盖父级交叉轴的终点对齐*/
.alignSelfEnd {
  -ms-flex-item-align: end;
  align-self: flex-end;
}

/*覆盖父级交叉轴的中点对齐*/
.alignSelfCenter {
  -ms-flex-item-align: center;
  align-self: center;
}

/*覆盖父级项目的第一行文字的基线对齐*/
.alignSelfBaseline {
  -ms-flex-item-align: baseline;
  align-self: baseline;
}

/*覆盖父级如果项目未设置高度或设为auto，将占满整个容器的高度*/
.alignSelfStretch {
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

/* 显示一行文字 */
.line1 {
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 显示2行文字 */
.line2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.line3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.el-message__icon {
  font-size: 16px;
}

.banner[data-v-06e166ac] {
  width: 100%;
  height: 660px;
  background: url(../../static/img/banner.7af33df7.png) no-repeat center;
  position: relative;
}
.banner .banner__integrate[data-v-06e166ac] {
    width: 1200px;
    height: 360px;
    position: relative;
    margin: 0 auto;
}
.banner .banner__integrate .carousel[data-v-06e166ac] {
      position: absolute;
      top: 257px;
      left: 0;
}
.banner .banner__integrate .banner__integralDetails[data-v-06e166ac] {
      width: 250px;
      height: 140px;
      position: absolute;
      top: 120px;
      right: 70px;
}
.banner .banner__integrate .banner__integralDetails p[data-v-06e166ac] {
        padding: 66px 0 30px;
        font-size: 16px;
        color: #7b340e;
}
.banner .banner__integrate .banner__integralDetails p span[data-v-06e166ac] {
          font-size: 40px;
          font-weight: bold;
          margin-bottom: -5px;
}
.banner .banner__integrate .banner__integralDetails a[data-v-06e166ac] {
        font-size: 14px;
        font-weight: bold;
        color: #7b340e;
        background: none;
        margin: 0 auto;
        border: none;
}
.banner .banner__integrate .banner__integralDetails a i[data-v-06e166ac] {
          width: 11px;
          height: 11px;
          margin-left: 5px;
          background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALBAMAAABbgmoVAAAAIVBMVEV7NA57NA57NA57NA5HcEx7NA57NA57NA57NA57NA57NA5L7z6jAAAAC3RSTlP/pSnsAFNp1oE3vJFfVxIAAABASURBVAjXY3BRNDBUcWBwZWBgYHVgUGBvYGBQYBBgVmNgEGAwYDBKABIMDOxeQMKAwRLEE2CeBpKDqoTqg5gCADahCDUBOD7uAAAAAElFTkSuQmCC);
}
.banner .banner__carousel[data-v-06e166ac] {
    width: 700px;
    height: 72px;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(255, 229, 187, 0.14);
            box-shadow: 0px 5px 10px 0px rgba(255, 229, 187, 0.14);
    border-radius: 36px;
    position: absolute;
    left: 50%;
    bottom: -27px;
    margin-left: -350px;
    overflow: hidden;
}
.banner .banner__carousel ul li[data-v-06e166ac] {
      height: 72px;
}
.banner .banner__carousel ul li img[data-v-06e166ac] {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        margin-right: 13px;
}
.banner .banner__carousel ul li p[data-v-06e166ac] {
        font-size: 16px;
        color: #333333;
}
.banner .banner__carousel ul li p span[data-v-06e166ac] {
          color: #ff6054;
}
.banner .banner_list[data-v-06e166ac] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 1200px;
    margin: 20px auto 0;
}
.banner .banner_list li[data-v-06e166ac] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: 380px;
      height: 140px;
      background: #ffffff;
      border-radius: 16px;
      padding: 20px 30px;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      cursor: pointer;
}
.banner .banner_list li img[data-v-06e166ac] {
        width: 100px;
        height: 100px;
        margin-right: 20px;
}
.banner .banner_list li .list-text[data-v-06e166ac] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
}
.banner .banner_list li .list-text h3[data-v-06e166ac] {
          font-size: 24px;
          font-weight: bold;
          margin-bottom: 10px;
}
.banner .banner_list li .list-text p[data-v-06e166ac] {
          color: #999999;
          font-size: 20px;
}

.item[data-v-2857fe91] {
  width: 270px;
  height: 325px;
  background-color: #ffffff;
  border-radius: 16px;
  margin-bottom: 40px;
  cursor: pointer;
  position: relative;
  text-align: center;
}
.item *[data-v-2857fe91] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.item .nothing[data-v-2857fe91] {
    position: absolute;
    top: 90px;
    left: 50%;
    margin-left: -40px;
    z-index: 9;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    text-align: center;
    line-height: 80px;
    font-style: normal;
    font-size: 16px;
    color: #ffffff;
}
.item .tag[data-v-2857fe91] {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
}
.item .picture[data-v-2857fe91] {
    width: 270px;
    height: 240px;
    border-radius: 16px 16px 0px 0px;
    position: relative;
    padding: 20px 25px 0;
}
.item .picture > img[data-v-2857fe91] {
      max-width: 220px;
      max-height: 220px;
}
.item:hover .details[data-v-2857fe91] {
    display: block;
}
.item .details[data-v-2857fe91] {
    display: none;
    width: 270px;
    height: 240px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px 16px 0px 0px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}
.item .details p[data-v-2857fe91] {
      width: 78px;
      height: 24px;
      background-image: -webkit-gradient(linear, left top, right top, from(#ff7d5f), color-stop(50%, #ff5642), to(#ff3026));
      background-image: linear-gradient(90deg, #ff7d5f 0%, #ff5642 50%, #ff3026 100%);
      border-radius: 3px;
      font-size: 14px;
      color: #ffffff;
      position: absolute;
      top: 10px;
      left: 10px;
}
.item .details p i[data-v-2857fe91] {
        width: 6px;
        height: 10px;
        margin-left: 4px;
}
.item .title[data-v-2857fe91],
  .item .int[data-v-2857fe91] {
    line-height: 1.4;
}
.item .title[data-v-2857fe91] {
    padding: 0 10px;
    font-size: 16px;
    color: #333333;
    margin: 15px 0 7px;
}
.item .title em[data-v-2857fe91] {
      font-size: 12px;
      color: #ffffff;
      height: 20px;
      background-image: -webkit-gradient(linear, left top, right top, from(#ff973a), to(#ffbd31));
      background-image: linear-gradient(90deg, #ff973a 0%, #ffbd31 100%);
      border-radius: 6px;
      padding: 0 6px;
      line-height: 20px;
      margin-right: 4px;
}
.item .title span[data-v-2857fe91] {
      display: block;
      max-width: calc(100% - 40px);
}
.item .int[data-v-2857fe91] {
    font-size: 14px;
    color: #ff3c30;
}
.item .int span[data-v-2857fe91] {
      font-size: 20px;
      color: #ff3c30;
      font-weight: bold;
}

.swiper-wrapper[data-v-152a5cba] {
  width: 580px;
  height: 325px;
}
.swiper-instance[data-v-152a5cba] {
  width: 580px;
  height: 325px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.swiper-slide[data-v-152a5cba] {
  width: 580px;
  height: 325px;
}
.swiper-slide img[data-v-152a5cba] {
    width: 580px;
    height: 325px;
    border-radius: 16px;
}
.swiper-instance[data-v-152a5cba] .swiper-pagination {
  position: absolute;
  bottom: 14px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
  height: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.swiper-instance[data-v-152a5cba] .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
    display: inline-block;
    margin: 0 10px 0 0;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0.5;
}
.swiper-instance[data-v-152a5cba] .swiper-pagination .swiper-pagination-bullet-active {
    background: #ffffff;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 1;
}

@charset "UTF-8";
.exchangeContent[data-v-d79deb70] {
  width: 1200px;
  min-width: 1200px;
  margin: 0 auto;
}
.tab-header[data-v-d79deb70] {
  height: 40px;
}
.tab-box[data-v-d79deb70] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.tab-box .tab-item[data-v-d79deb70] {
    color: #999999;
    font-size: 16px;
    position: relative;
    width: 80px;
    margin-right: 60px;
    cursor: pointer;
    font-weight: bold;
    line-height: 1;
}
.tab-box .tab-item.active[data-v-d79deb70] {
      font-size: 20px;
      font-weight: bold;
      color: #333333;
}
.tab-box .tab-item.active[data-v-d79deb70]::after {
        content: "";
        display: block;
        width: 20px;
        height: 4px;
        background: #eab05e;
        border-radius: 10px;
        position: absolute;
        left: 50%;
        bottom: -18px;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
}
.tab-content[data-v-d79deb70] {
  width: 100%;
}
.exchangeList[data-v-d79deb70] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}
.exchangeList[data-v-d79deb70]::after {
    content: "";
    display: block;
    width: 270px;
}
.exchangeList .placeholder-div[data-v-d79deb70] {
    display: block;
    width: 270px;
    height: 0;
}
.empty-box[data-v-d79deb70] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
}
.empty-box > img[data-v-d79deb70] {
    width: 140px;
    height: 140px;
}
.empty-box h5[data-v-d79deb70] {
    font-weight: bold;
    font-size: 18px;
    color: #333333;
    margin-bottom: 10px;
}
.empty-box p[data-v-d79deb70] {
    color: #666666;
    font-size: 14px;
}
.empty-box .empty-button-box[data-v-d79deb70] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 40px;
}
.empty-box .empty-button-box .btn-earn-task[data-v-d79deb70] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 160px;
      height: 48px;
      background: #ffffff;
      border-radius: 24px;
      border: 1px solid #ff4b33;
      font-size: 16px;
      color: #ff4b33;
      margin-right: 20px;
      cursor: pointer;
}
.empty-box .empty-button-box .btn-earn-vip[data-v-d79deb70] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 160px;
      height: 48px;
      background: -webkit-gradient(linear, right top, left top, from(#ff4b33), to(#ff6d41));
      background: linear-gradient(270deg, #ff4b33 0%, #ff6d41 100%);
      border-radius: 24px;
      font-size: 16px;
      color: #ffffff;
      cursor: pointer;
      position: relative;
}
.empty-box .empty-button-box .btn-earn-vip[data-v-d79deb70]::after {
        content: "10倍";
        display: block;
        width: 40px;
        height: 20px;
        background: -webkit-gradient(linear, left top, right top, from(#ff8d41), to(#ffc248));
        background: linear-gradient(90deg, #ff8d41 0%, #ffc248 100%);
        border-radius: 10px 10px 10px 2px;
        border: 2px solid #ffffff;
        font-size: 12px;
        color: #ffffff;
        position: absolute;
        top: -12px;
        right: -12px;
        text-align: center;
        line-height: 20px;
}
.git_main-page[data-v-d79deb70] {
  margin: 0 auto;
  padding-top: 40px;
}
.git_main-page[data-v-d79deb70] .el-pagination.is-background .el-pager li:not(.disabled).active {
    background: #ff6054;
    color: #ffffff;
}
.git_main-page[data-v-d79deb70] .el-pagination.is-background .btn-next,
  .git_main-page[data-v-d79deb70] .el-pagination.is-background .btn-prev,
  .git_main-page[data-v-d79deb70] .el-pagination.is-background .el-pager li {
    background: #eeeeee;
    color: #555;
}
.git_main-page[data-v-d79deb70] .el-pagination.is-background button[disabled] {
    background: #eeeeee !important;
    color: #555 !important;
}
.git_main-page[data-v-d79deb70] .el-pagination.is-background .el-pager li:not(.disabled):hover,
  .git_main-page[data-v-d79deb70] .el-pagination.is-background button:hover {
    background: #ff6054;
    color: #ffffff;
}

.integrate[data-v-08f646a9] {
  min-width: 1200px;
}
.integrate-main[data-v-08f646a9] {
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(7.95%, #fafafa), to(#f5f5f5));
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 7.95%, #f5f5f5 100%);
  border-radius: 60px 60px 0px 0px;
  position: relative;
  z-index: 2;
  padding: 80px 0 120px;
  margin: -60px 0 0px 0;
}

