/**index.wxss**/
@import "/style/theme.less";
@import "/style/form.less";

page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: url(https://sela.oss-cn-shanghai.aliyuncs.com/assets/bg.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.scrollarea {
  flex: 1;
  overflow-y: hidden;
  padding: 0 32rpx;
  padding-top: 6vh;

  .pill {
    margin-top: 40rpx;
    border-radius: 24rpx;
    background-color: #FFFFFF;
    box-shadow: 0px 1px 8px -1px rgba(55, 139, 152, 0.2);
    padding: 60rpx 40rpx;

    &.active {
      box-shadow: 0px 1px 10px -1px rgba(55, 139, 152, 0.5);
    }

    &-inner {
      &-img {
        width: 120rpx;
        height: 120rpx;
      }

      &-txt {
        padding-left: 40rpx;

        .title {
          font-weight: 500;
          font-size: 44rpx;
        }

        .sub {
          font-weight: 500;
          font-size: 32rpx;
        }
      }
    }
  }
}

.btn-contaier {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 158rpx;
  padding: 30rpx;
  padding-bottom: env(safe-area-inset-bottom, 28rpx);
  background-color: rgba(255, 255, 255, 0.94);
  box-shadow: 0rpx -0.5rpx 0rpx 0rpx rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(40rpx);
  .btn {
    height: 88rpx;
    border-radius: 8rpx;
    background: linear-gradient(145.75deg, rgba(62, 214, 227, 1) 0%, rgba(39, 169, 189, 1) 100%);
  }
}