1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- page {
- background-color: #FFFFFF;
- }
- .wrap {
- width: 100%;
- display: flex;
- flex-direction: column;
- padding: 0 24rpx;
- box-sizing: border-box;
- }
- .content-box {
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 140rpx 0 160rpx;
- }
- .content-box>text {
- color: #202020;
- }
- .content-box>text:first-child {
- font-size: 36rpx;
- margin-bottom: 20rpx;
- }
- .content-box>text:last-child {
- font-size: 34rpx;
- }
- .btn-box {
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .btn-box button {
- width: 100%;
- height: 90rpx;
- line-height: 90rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: #E0E0E0;
- color: #919191;
- font-size: 34rpx;
- border-radius: 100rpx;
- margin-bottom: 34rpx;
- }
- .btn-box button:last-child {
- margin-bottom: 0;
- }
- .active {
- background-color: #F2501A !important;
- color: #fff !important;
- }
|