1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /* pages/setting/setting.wxss */
- page{
- background-color: #f7f7f7;
- }
- .cont{
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .versions{
- width: 710rpx;
- height: 104rpx;
- background-color: white;
- border-radius: 20rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .info{
- width: 90%;
- font-size: 32rpx;
- color: #656565;
- display: flex;
- justify-content: space-between;
- }
- .info>p:first-child{
- font-weight: 600;
- }
- .but::after{
- border: none;
- }
- .but{
- margin-top: 54rpx;
- background-color: white;
- width: 622rpx;
- height: 74rpx;
- border-radius: 37rpx;
- color: #FF874E;
- display: flex;
- align-items: center;
- justify-content: center;
- border: 2px solid #FF874E;
- }
|