distributor.scss 784 Bytes
@import '../../assets/scss/mixins';
@import '../../assets/scss/utils';

$contentWidth:690px;

.page {

  $contentWidth: 690px;

  .bgc {
    background-color: #f8f8f8;
  }

  .bg {}

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

    .content {
      position: relative;

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

        &-item {
          @extend .bb;
          padding: 30px 36px;
          display: flex;
          justify-content: flex-start;
          align-items: center;
          margin-bottom: 40px;

          .icon {
            width: 86px;
          }

          .tit {
            color: #333333;
            font-size: 42px;
            padding-left: 48px;
          }
        }
      }


    }
  }
}