1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- page{
- background-color: #efefef;
- }
- .top{
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 30rpx 0rpx;
- background-color: #fff;
- }
- .msg{
- width: 690rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- overflow: hidden;
- }
- .triangle{
- width: 0;
- height: 0;
- border-style: solid;
- border-width: 12rpx 12rpx 12rpx 0;
- border-color: transparent #33ad37 transparent transparent;
- }
- .msg_content{
- background-color: #33ad37;
- color: #fff;
- font-size: 24rpx;
- height: 100%;
- border-radius: 10rpx;
- padding: 20rpx 20rpx;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- }
- .content{
- width: 690rpx;
- margin: 0 auto;
- }
- .title{
- font-size: 30rpx;
- color:#333;
- height: 86rpx;
- display: flex;
- align-items: center;
- border-bottom: 1rpx solid #efefef;
- }
- .content_text view{
- font-size: 26rpx;
- color:#666;
- margin-top: 24rpx;
- }
- .ps{
- margin-top: 60rpx;
- padding-bottom: 40rpx;
- font-size: 24rpx;
- color: #999;
- }
- .btn{
- display: flex;
- justify-content: center;
- align-items: center;
- margin-top: 80rpx;
- padding-bottom: 100rpx;
- }
- .btn button{
- width: 240rpx;
- height: 70rpx;
- background-color: #33ad37;
- color: #fff;
- border-radius: 70rpx;
- line-height: 70rpx;
- font-size: 30rpx;
- }
|