1234567891011121314151617181920212223242526272829303132333435 |
- .content{
- background: #fff;
- width: 70%;
- position: relative;
- top: 0;
- bottom: 0;
- right: 0;
- left: 0;
- margin: 40% auto auto;
- border-radius: 20rpx;
- font-size: 28rpx;
- text-align: center;
- padding: 30rpx;
- }
- .article{
- }
- .red{
- color: #ee3a43;
- }
- .article .title{
- font-weight: bold;
- margin-bottom: 15rpx;
- }
- .btns{
- margin-top: 40rpx;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- }
- .btns button{
- font-size: 30rpx;
- line-height: 2;
- }
|