12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- 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;
- position: relative;
- }
- .item:first-child{
- margin-bottom:24rpx;
- }
- .item > view {
- width: 480rpx;
- }
- .item > view > input {
- color: #666666;
- }
- .line {
- width: 718rpx;
- height: 2rpx;
- background: #ffffff;
- position: absolute;
- right: 0;
- bottom: 0;
- }
- .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;
- }
|