1234567891011121314151617181920212223242526272829303132333435363738394041 |
- .wux-prompt {
- display: flex;
- height: 100%;
- align-items: center;
- justify-content: center;
- color: rgba(0,0,0,.45);
- background-color: #f2f3f4
- }
- .wux-prompt__bd {
- margin-top: 0;
- text-align: center
- }
- .wux-prompt__icon {
- width: 128rpx;
- height: 128rpx
- }
- .wux-prompt__title {
- font-size: 32rpx;
- font-weight: 700;
- color: rgba(0,0,0,.85);
- margin: 4rpx 0
- }
- .wux-prompt__text {
- font-size: 24rpx;
- margin: 4rpx 0
- }
- .wux-prompt__button {
- font-size: 24rpx;
- line-height: 2;
- margin: 8rpx auto;
- width: 200rpx;
- padding: 4rpx 0;
- border: 1PX solid #e8e8e8
- }
- .wux-prompt__button::after {
- display: none
- }
- .wux-prompt__button--hover {
- color: rgba(0,0,0,.65)!important;
- background-color: #ececec!important
- }
|