123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- html,
- body {
- height: 100%;
- font-family: PingFangSC-Regular;
- color: #333333;
- overflow: hidden;
- }
- .item {
- box-sizing: border-box;
- padding: 28rpx 32rpx;
- display: flex;
- justify-content: space-between;
- font-size: 32rpx;
- background: #ffffff;
- }
- .item input {
- color: #666666;
- }
- .item > view{
- color: #3296FB;
- padding-left: 40rpx;
- margin-left: 40rpx;
- border-left: 2rpx solid #eeeeee;
- }
- .line {
- width: 100%;
- height: 2rpx;
- background: #ffffff;
- }
- .line > view {
- width: 718rpx;
- height: 2rpx;
- background: #eeeeee;
- float: right;
- }
- .loginOut {
- color: #ff5e5e;
- margin-top: 24rpx;
- box-sizing: border-box;
- padding: 28rpx 32rpx;
- background: #ffffff;
- text-align: center;
- }
- .disable {
- background: #dddddd;
- color: #AAAAAA;
- }
- .able{
- background: #3296fb;
- color: #ffffff;
- }
- .btn {
- width: 686rpx;
- height: 90rpx;
- margin: 48rpx 0 0 32rpx;
- border-radius: 45rpx;
- text-align: center;
- line-height: 90rpx;
- }
|