12345678910111213141516171819202122232425262728293031 |
- .dialog-body-general{
- position: relative;
- width: 600rpx;
- margin: 0 75rpx;
- padding: 56rpx 60rpx 60rpx;
- background-color: #fff;
- border-radius: 16rpx;
- box-sizing: border-box;
- }
- .dialog-body-general .title{
- display: block;
- text-align: center;
- line-height: 64rpx;
- font-size: 34rpx;
- font-weight: bold;
- color: #333333;
- }
- .dialog-body-general .content{
- display: block;
- font-size: 30rpx;
- line-height: 44rpx;
- color: #666666;
- }
- .dialog-body-general > button{
- margin: 0 34rpx;
- font-size: 34rpx;
- color: #fff;
- margin-top: 50rpx;
- border-radius: 46rpx;
- background: linear-gradient(to right, #dd7fff, #625af7);
- }
|