| 1234567891011121314151617181920212223242526272829 |
- .content {
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- background: #f5f5f5;
- .cell-group {
- background: #ffffff;
- .cell-item {
- padding: 16px;
- border-bottom: 1px solid #ededed;
- @include FONT(#333333, 14px, 400);
- @include FLEX(flex, row, space-between, center);
- }
- .cell-item:last-child {
- border-bottom: 0;
- }
- }
- .login-btn {
- @include WH(auto, 50px);
- background: #ffffff;
- border-radius: 25px;
- @include FONT(#ff0000, 16px, 500);
- text-align: center;
- line-height: 50px;
- margin: 22px 16px;
- }
- }
|