| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- @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 {
- background: #FFFFFF;
- padding: 30rpx;
- width: 600rpx;
- border-radius: 20rpx;
- padding-left: 46rpx;
- }
- .popup-content .popup-title {
- font-size: 34rpx;
- color: #333333;
- font-weight: 600;
- text-align: center;
- margin-bottom: 30rpx;
- }
- .popup-content .guarantee-list .guarantee-item {
- margin-bottom: 30rpx;
- }
- .popup-content .guarantee-list .guarantee-item .item-header {
- display: flex;
- align-items: center;
- margin-bottom: 10rpx;
- }
- .popup-content .guarantee-list .guarantee-item .item-header .item-icon {
- width: 28rpx;
- height: 28rpx;
- }
- .popup-content .guarantee-list .guarantee-item .item-header .item-title {
- font-size: 30rpx;
- color: #333333;
- font-weight: 600;
- margin-left: 10rpx;
- }
- .popup-content .guarantee-list .guarantee-item .item-desc {
- font-size: 26rpx;
- color: #333333;
- font-weight: 400;
- line-height: 1.5;
- }
- .popup-content .confirm-btn {
- width: 280rpx;
- height: 80rpx;
- line-height: 80rpx;
- background-color: #4CD964;
- color: #FFFFFF;
- font-size: 32rpx;
- border-radius: 10rpx;
- border: none;
- margin-top: 20rpx;
- margin-left: 50%;
- -webkit-transform: translateX(-50%);
- transform: translateX(-50%);
- }
|