| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- @charset "UTF-8";
- /**
- * 主题色配置
- * 默认在 uni.scss 全局引入:@import '@/theme.scss';
- * <script> 下使用主题变量:import x from '@/theme.scss';
- */
- .page {
- background-color: #f8f8f8;
- font-family: PingFangSC;
- }
- .safeAreaPad {
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- box-sizing: content-box;
- }
- .popup-content {
- position: relative;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .popup-content .gift-image {
- width: 100%;
- height: auto;
- }
- .popup-content .action-buttons {
- position: absolute;
- bottom: 100rpx;
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .popup-content .check-rules {
- font-size: 40rpx;
- color: #ffffff;
- text-align: center;
- padding: 10rpx;
- padding-left: 80rpx;
- }
|