12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- .content{
- background: #fff;
- width: 550rpx;
- position: absolute;
- top: 25%;
- right: 0;
- left: 0;
- margin: auto;
- border-radius: 20rpx;
- font-size: 28rpx;
- box-shadow: 0 5rpx 10rpx rgba(0,0,0,.4);
- padding: 40rpx 40rpx;
- }
- .content .modu{
- padding: 30rpx 0 0 0;
- }
- .content text{
- color: #ee3a43;
- }
- /* 底部按钮 */
- button[disabled][type=warn]{
- background:rgba(199,200,201,1);
- color:#fff
- }
- .bottom-btn button{
- width: 40%;
- border-radius: 15rpx;
- font-size: 28rpx;
- }
- .bottom-btn .cancel{
- background:#fff;
- color: #ee3a43;
- border: 1rpx solid #ee3a43;
- }
- .bottom-btn button::after{
- border: none;
- }
- .bottom-btn{
- display: flex;
- align-items: center;
- justify-content: space-around;
- width: 100%;
- margin-top: 20rpx;
- }
|