rank-gift.scss 1.32 KB
@import '../../assets/scss/mixins';
@import '../../assets/scss/utils';

$contentWidth:690px;

.page {


  .bgc {}

  .bg {}

  .main {
    font-size: 28px;
    color: #333333;

    .top-space {
      height: 20px;
    }

    .content {
      position: relative;

      .gift {
        width: $contentWidth;
        margin: 0 auto 0;

        &-item {
          @extend .bb;
          padding: 30px 0;
          display: flex;
          justify-content: space-between;
          align-items: center;

          .prize {
            margin: 0 30px;

            .image {
              width: 120px;
              height: 120px;
            }
          }

          .cont {
            position: relative;
            height: 100%;
            flex: 1;
            display: flex;
            flex-wrap: wrap;
            align-content: space-between;

            .t1 {
              align-self: center;
              padding: 4px 0;
            }

            .t2 {
              font-size: 24px;
              color: #999999;
            }

            .t3 {
              font-size: 24px;
              color: #3680EB;
            }
          }

          .btn {
            @include cb(120px, 60px);
            margin-right: 20px;
          }

          .disable{
            background-color: #999999;
          }
        }
      }
    }
  }
}