contact-table.scss 3.18 KB
@import '../../assets/scss/mixins';
@import '../../assets/scss/utils';

$contentWidth:690px;

.page {
  padding-bottom: $pageBottom;

  .bgc {}

  .bg {}

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

    .content {
      position: relative;

      // 表单
      .form {
        color: #333333;

        &-item {
          height: 72px;
          font-size: 28px;
          display: flex;
          justify-content: space-between;
          align-items: center;
          margin: 30px auto;

          .label {
            color: #666666;
            width: 120px;
            margin-right: 20px;
          }

          .val {
            flex: 1;
            color: #333333;
            background: #F8F8F8;
            // background-color: wheat;
            @extend .bb;
            padding: 0px 20px;
            border-radius: 8px;

          }

          input {
            height: 72px;
          }

          .net {
            color: #3680EB;
          }

          .exts {
            @extend .fcc;

            .icon {
              width: 36px;
              height: 35px;
              margin-right: 10px;
            }
          }
        }

        .textarea {
          padding: 20px;
          width: 620px;
          @extend .bb;
          background: #F8F8F8;
          font-size: 28px;
        }
      }

      // 提交
      .submit-btn {
        @include cb(320px, 84px);
        margin: 120px auto 0;
      }
    }
  }
}

// 图片上传
.upload {
  margin-top: 30px;

  .tips {
    font-size: 28px;
    color: #666666;
  }

  .upload {

    margin: 0 auto;
    width: $contentWidth;
    border-radius: 8px;
    background-color: #ffffff;

    &-input {
      @extend .bb;
      padding: 30px;
      font-size: 30px;
      line-height: 1.35;
      color: #333333;

      textarea {
        width: $contentWidth;
        min-height: 200px;
        // background-color: wheat;
      }
    }

    &-file {
      display: flex;
      flex-wrap: wrap;
      margin: 20px auto 0;

      &-item {
        position: relative;
        width: 33%;
        @extend .bb;
        margin-bottom: 12px;

        .thumb {
          width: 190px;
          height: 190px;
        }

        .remove {
          position: absolute;
          right: 2px;
          top: -28px;
          font-size: 40px;
        }
      }
    }

    &-tag {
      position: relative;
      margin-top: 20px;
      padding: 8px;
      @extend .bb;

      &-item {
        display: inline-block;
        position: relative;
        padding: 12px 32px;
        border-radius: 40px;
        background-color: #f7f7f7;
        font-size: 26px;
        font-weight: 500;
        text-align: center;
        color: #1477bd;
        margin: 10px;
        border: solid 2.5px #1477bd;
        background-color: #e6f5ff;
      }
    }

    &-submit {
      margin: 80px auto 0;
      width: 450px;
      height: 88px;
      line-height: 88px;
      border-radius: 44px;
      background-image: linear-gradient(95deg, #2baedf, #1376bc);

      font-size: 36px;
      text-align: center;
      color: #ffffff;
    }
  }
}

.border {
  width: $contentWidth;
  @extend .shadow;
  background-color: #ffffff;
  @extend .bb;
  padding: 40px 34px;
  margin: 0 auto 20px;
}