auction-mine.scss 957 Bytes
@import '../../assets/scss/mixins';
@import '../../assets/scss/utils';

$contentWidth:690px;

.page {
  .bgc {
    background-color: #f8f8f8;
  }

  .bg {}

  .main {
    .top-space {
      height: 0px;
    }

    .content {
      position: relative;

      // list
      .list {
        width: $contentWidth;
        margin: 24px auto 0;

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

          .prize {
            margin: 0 24px;

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

          .cont {
            position: relative;
            height: 100%;
            flex: 1;
            padding: 0 8px 0 12px;
            @extend .bb;

            .tt{

            }

            .t1 {
              font-size: 30px;
            }
          }

        }
      }

    }
  }
}