| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- @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 {
- text-align: center;
- padding: 40rpx;
- }
- .popup-content .desc-text {
- font-family: PingFang SC;
- font-weight: 400;
- font-size: 26rpx;
- color: #333333;
- margin: 20rpx 0;
- }
- .popup-content .popup-title {
- font-family: PingFang SC;
- font-weight: bold;
- font-size: 32rpx;
- color: #38C148;
- }
- .popup-content .buttons {
- display: flex;
- justify-content: space-between;
- margin-top: 20px;
- gap: 30rpx;
- }
- .popup-content .buttons button {
- flex: 1;
- height: 80rpx;
- line-height: 80rpx;
- font-size: 32rpx;
- border-radius: 10rpx;
- border: none;
- }
- .popup-content .buttons button:first-child {
- background-color: #F5F5F5;
- color: #333333;
- }
- .popup-content .buttons button:last-child {
- background-color: #38C148;
- color: #FFFFFF;
- }
|