1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- .dialog-mask{
- position: fixed;
- z-index: 1000;
- top: 0;
- right: 0;
- left: 0;
- bottom: 0;
- background: rgba(0, 0, 0, 0.3);
- }
- .dialog-info{
- position: fixed;
- z-index: 5000;
- width: 90%;
- max-width: 600rpx;
- top: 50%;
- left: 50%;
- -webkit-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
- background-color: #FFFFFF;
- text-align: center;
- border-radius: 3px;
- overflow: hidden;
- padding: 60rpx 0 60rpx;
- }
- .dialog-hint{
- font-size: 40rpx;
- color: #707070;
- }
- .dialog-content{
- height: 100rpx;
- padding: 30rpx;
- font-size: 40rpx;
- color: #333;
- border: 1rpx solid #539804;
- margin: 30rpx 60rpx 0 60rpx;
- }
- .dialog-errmsg {
- color: #fc513f;
- height: 90rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .dialog-footer{
- background: #539804;
- color: #fff;
- border-radius: 50rpx;
- width: 220rpx;
- font-size: 35rpx;
- }
|