1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- .content{
- text-align: center;
- background: #fff;
- width: 650rpx;
- position: absolute;
- top: 25%;
- right: 0;
- left: 0;
- margin: auto;
- border-radius: 10rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 20rpx;
- font-size: 28rpx;
- box-shadow: 0 5rpx 10rpx rgba(0,0,0,.4);
- }
- .ins{
- font-size: 24rpx;
- position: absolute;
- top: 20rpx;
- right: 20rpx;
- }
- .title{
- font-size: 32rpx;
- font-weight: 700;
- margin: 80rpx 40rpx 40rpx;
- }
- .btn-group{
- display: flex;
- flex-direction: row;
- justify-content: space-around;
- width: 100%;
- margin: 20rpx 40rpx;
- }
- .btn-group button{
- line-height: 2;
- padding: 0 80rpx;
- }
- .btn-group button:last-child{
- background: #ee3a43;
- color: #fff;
- }
- .tip{
- color: #999;
- text-align: left;
- font-size: 24rpx;
- }
- .icon{
- font-size: 24rpx;
- margin-right: 10rpx;
- }
|