login.css 2.68 KB
html{
    font-size: calc(100vw/7.5) ;
}
html,body{
    width: 100%;
    height: 100%;
}
body{
    min-height: 100vh;
}
*{
    margin: 0;
    padding: 0;
    font-family: 'Source Han Sans', sans-serif;
    box-sizing: border-box;
}
div{
    line-height: 1;
}
[v-cloak] {
    display: none !important;
}

.login-contalogoiner {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.header-section {
    height: 4.6rem;
    position: relative;
}

.background-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.background-image .bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-content {
    position: absolute;
    top: 1.76rem;
    left: .42rem;
    color: #333;
    font-size: .32rem;
}

.tabList{
    display: flex;
    margin: .48rem;
    color: #666;
    font-size: .32rem;
    background: #F1F4F9;
    border-radius: .16rem;
    height: .96rem;
    align-items: center;
    padding: .08rem;
}
.tabList div{
    width: 33.33%;
    text-align: center;
}
.tabList div.cho{
    border-radius: .12rem;
    background: #FFF;
    color: #0068EE;
    height: .8rem;
    line-height: .8rem;
}

.logo {
    width: .8rem;
    height: .8rem;
    display: block;
}

.header-content .hello{
    width: 1.6rem;
    height: .46rem;
    margin: .28rem 0;
}
.header-content .name{
    font-weight: bold;
}

.login-form {
    background: white;
    padding: .64rem .48rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.input-group {
    display: flex;
    align-items: center;
    margin-bottom: .48rem;
    border-radius: .16rem;
    height: .96rem;;
    background: #f9f9f9;
    padding-left: .32rem;
    font-size: .32rem;
}
.loginTs{
    color: #999;
    font-size: .26rem;
    margin-top: .48rem;
    text-align: center;
}
.loginTs span{
    color: #0068EE;
}

.input-icon {
    width: .4rem;
    height: .4rem;
    flex-shrink: 0;
    margin-right: .16rem;
}

.input-field {
    flex: 1;
    border: none;
    background: transparent;
    font-size: .32rem;
    outline: none;
}

.input-field::placeholder {
    color: #999;
}

.verify-btn {
    color: #0068EE;
    font-size: .32rem;
    margin-right: .4rem;
    flex-shrink: 0;
}

.verify-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.login-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: .32rem;
    border-radius: .16rem;
    font-size: .32rem;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}