create-wish.scss 2.65 KB
@import '../../assets/scss/mixins';
@import '../../assets/scss/utils';

.page {
  .bgc {}

  // 场景1背景
  .bgc1 {
    background-color: #ffd5da;
  }

  .bg {
    image {
      position: absolute;
      width: 750px;
      height: 1303px;
    }
  }

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

    .content {
      position: relative;

      // 换一批按钮
      .change-btn {
        margin-left: 48px;
        box-shadow: 0px 6px 30px 0 rgba(126, 40, 40, 0.5);
        background-color: #ffffff;
        @include btc(160px, 54px);
        border-radius: 27px;
        font-size: 28px;
        font-weight: 300;
        color: #ba3039;
        @extend .fcc;

        .icon {
          margin-right: 12px;
          width: 29px;
          height: 29px;
        }
      }

      // 许愿单
      .wish-container {
        position: relative;

        // 背景图
        .ebg {
          width: 746px;
          height: 539px;
          position: absolute;
          left: 0;
          right: 0;
          top: 0;
          margin: 0 auto;
        }

        // 心愿
        .wish {
          position: relative;
          margin: 0 auto 0;
          display: flex;
          justify-content: space-between;
          @extend .bb;
          // padding-top: 116px;
          padding: 116px 90px 0;

          &-item {
            position: relative;
            text-align: center;

            .display {
              position: relative;
              width: 140px;
              height: 140px;
              border-radius: 70px;
              background-image: radial-gradient(circle at 0 0, #ffffff, #f2e6e6);
              @extend .fcc;

              .prod {
                max-width: 200px;
                max-height: 200px;
                margin-bottom: 10px;
              }

              .close {
                width: 30px;
                height: 30px;
                position: absolute;
                bottom: 0;
                right: 0;
              }
            }

            .name {
              width: 160px;
              margin: 8px auto 0;
              color: #333333;
              font-size: 20px;
              // font-weight: 300;
            }

            .val {
              @extend .fcc;
              color: #b93138;
              font-size: 20px;

              .icon {
                margin-left: 6px;
                width: 11px;
                height: 18px;
              }
            }
          }
        }

        // 提交心愿按钮
        .submit-btn {
          margin: 48px auto 0;
          width: 234px;
          height: 64px;
          line-height: 64px;
        }
      }

      .btn {
        @include cb;
      }
    }
  }
}