| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- @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;
- }
- .dialog-content {
- background: #FFFFFF;
- border-radius: 20rpx;
- overflow: hidden;
- }
- .dialog-content .dialog-title {
- font-size: 32rpx;
- color: #333333;
- text-align: center;
- padding: 30rpx;
- font-family: PingFang SC;
- font-weight: bold;
- }
- .dialog-content .dialog-body {
- padding: 0 40rpx;
- text-align: center;
- line-height: 48rpx;
- }
- .dialog-content .dialog-footer {
- display: flex;
- gap: 30rpx;
- padding: 30rpx;
- padding-bottom: 40rpx;
- }
- .dialog-content .dialog-footer button {
- flex: 1;
- height: 88rpx;
- line-height: 88rpx;
- font-size: 32rpx;
- border: none;
- margin: 0;
- }
- .dialog-content .dialog-footer button::after {
- border: none;
- }
- .dialog-content .dialog-footer button.cancel-btn {
- background-color: #F5F5F5;
- color: #333333;
- }
- .dialog-content .dialog-footer button.confirm-btn {
- background-color: #38C148;
- color: #FFFFFF;
- }
- .dialog-content .dialog-footer.single-btn {
- display: flex;
- justify-content: center;
- }
- .dialog-content .dialog-footer.single-btn .confirm-btn {
- flex: 1;
- max-width: 280rpx;
- }
|