1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- html,
- body {
- height: 100%;
- font-family: PingFangSC-Regular;
- color: #333333;
- overflow: hidden;
- }
- .content {
- background: #ffffff;
- }
- .content > .item {
- box-sizing: border-box;
- padding: 0 32rpx;
- font-size: 32rpx;
- }
- .content > .item:last-child>.line{
- display: none;
- }
- .content > .item>view:first-child{
- display: flex;
- justify-content: space-between;
- padding: 28rpx 0;
- }
- .content > .item>view:first-child>view{
- color: #808080;
- }
- .content > .item image{
- width: 14rpx;
- height: 24rpx;
- margin-left: 22rpx;
- }
- .content .line {
- width: 718rpx;
- height: 2rpx;
- background: #eeeeee;
- }
- .loginOut{
- color: #FF5E5E;
- margin-top: 24rpx;
- box-sizing: border-box;
- padding: 28rpx 32rpx;
- background: #ffffff;
- text-align: center;
- }
|