Blame view

src/pages/contact/contact.scss 1.84 KB
simon committed
1 2 3
@import '../../assets/scss/mixins';
@import '../../assets/scss/utils';

simon committed
4 5
$contentWidth:690px;

simon committed
6
.page {
simon committed
7
  padding-bottom: $pageBottom;
simon committed
8

simon committed
9 10 11 12 13 14
  .bgc {}

  .bg {}

  .main {
    .top-space {
simon committed
15
      height: 20px;
simon committed
16 17 18 19
    }

    .content {
      position: relative;
simon committed
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70

      // banner
      .banner {
        width: 726px;
        margin: 0 auto;

        image {
          width: 726px;
        }
      }

      // 表单
      .table {
        .form {
          &-item {
            font-size: 28px;
            display: flex;
            justify-content: space-between;
            margin: 30px auto;

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

            .val {
              flex: 1;
              color: #333333;
            }

            .net {
              color: #3680EB;
            }

            .exts {
              @extend .fcc;

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

      // 关注
      .focus {
        text-align: center;
simon committed
71 72 73 74 75 76 77 78 79 80 81
        display: flex;
        justify-content: center;
        font-size: 26px;

        &-item {
          margin: 0 12px;

          .t1{
            margin-top: -12px;
          }
        }
simon committed
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99

        .qrcode {
          width: 280px;
        }

        .tips {
          margin-top: 10px;
          font-size: 28px;
          color: #333333;
        }

        .btn {
          // @extend .bc
          @include cb();
          margin: 40px auto 24px;
        }

      }
simon committed
100 101 102
    }
  }
}
simon committed
103 104 105 106 107 108 109 110 111

.border {
  width: $contentWidth;
  @extend .shadow;
  background-color: #ffffff;
  @extend .bb;
  padding: 24px 30px;
  margin: 0 auto 20px;
}
simon committed
112 113 114 115 116 117 118

.official-account-wrap {
  width: $contentWidth;
  margin: 24px auto;

  .official-account {}
}