| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- @import "../../../../themes/page.scss";
- @import "../../searc-list.scss";
- /* module/diet/pages/success-page/success-page.wxss */
- .page-scroll__container {
- background: white;
- }
- .success-page-container {
- background: white;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: stretch;
- }
- .success-content {
- display: flex;
- flex-direction: column;
- align-items: center;
- margin-top: 120rpx;
- }
- .success-icon {
- width: 320rpx;
- height: 400rpx;
- margin-bottom: 32rpx;
- }
- .success-text {
- font-size: 33rpx;
- color: #222;
- font-weight: 600;
- margin-bottom: 16rpx;
- }
- .success-footer {
- position: fixed;
- left: 0;
- bottom: 0;
- width: 100vw;
- background: #fff;
- padding: 32rpx 0 48rpx 0;
- box-shadow: 0 -2rpx 8rpx rgba(0,0,0,0.04);
- display: flex;
- justify-content: center;
- }
- .footer-btn {
- width: 90% !important;
- border: 2rpx solid #2a7cff !important;
- color: #2a7cff !important;
- background: #f7f8fa !important;
- font-size: 30rpx !important;
- border-radius: 10rpx !important;
- font-weight: 500 !important;
- }
|