| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /* pages/feedback/success.wxss */
- .complaint-result {
- min-height: 100vh;
- background: #f7f7f7;
- padding-top: 120rpx;
- box-sizing: border-box;
- }
- .icon-wrapper {
- text-align: center;
- margin-bottom: 80rpx;
- }
- .success-img {
- width: 400rpx;
- height: auto;
- }
- /* 文字区域 */
- .text-wrapper {
- text-align: center;
- padding: 0 60rpx;
- }
- .title {
- display: block;
- font-size: 40rpx;
- font-weight: bold;
- color: #333;
- margin-bottom: 32rpx;
- }
- .tip {
- display: block;
- font-size: 32rpx;
- color: #666;
- margin-bottom: 100rpx;
- }
- /* 返回按钮 */
- .btn-close {
- width: 60%;
- margin: 0 auto;
- height: 88rpx;
- line-height: 88rpx;
- background: #1b8edb;
- color: #fff;
- font-size: 34rpx;
- border-radius: 12rpx;
- }
|