12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- .userAuth {
- min-height: 100vh;
- background-color: #f6f8f9;
- overflow: hidden;
- .btnGroup {
- padding: 0 14px;
- padding-bottom: 15px;
- }
- .btnTenant {
- background: linear-gradient(270deg, #FF204B 0%, #FE5B71 100%);
- font-size: 16px;
- font-weight: 500;
- color: #FFFFFF;
- border: none;
- padding: 0 42px !important;
- }
- .colProtocol {
- // display: flex;
- // align-items: center;
- font-size: 12px;
- padding: 15px 14px;
- color: #999;
- .protocolText {
- color: var(--van-primary);
- line-height: 15px;
- }
- .boxStyle {
- background: transparent !important;
- width: 15px;
- height: 15px;
- border: transparent !important;
- }
- :global {
- .van-checkbox {
- display: inline-block;
- align-items: inherit;
- overflow: inherit;
- }
- .van-checkbox__icon {
- height: 15px;
- line-height: 15px;
- display: inline-block;
- vertical-align: middle;
- }
- .van-checkbox__label {
- line-height: 15px;
- }
- }
- }
- }
|