* {
    margin: 0;
    padding: 0;
    
}

.bg {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    background: url('../imgs/融合bg.png') no-repeat;
    background-size: 100% 100%;
}


/* logo */
.bg .logo {
    
    width: 229px;
    height: 73px;
    margin-top: 28px;
    margin-left: 37px;
    background: url('../imgs/logo.png') no-repeat;
    background-size: 100% 100%;
}

/* 文字 */
.bg .title {
    margin-top: 93px;
    margin-left: 187px;
    font-size: 66.67px;
    font-weight: bold;
    color: rgb(30, 98, 145);
    user-select: none;
}

.bg .line {
    width: 98px;
    height: 5px;
    margin-left: 199px;
    background-color: rgb(30, 98, 145);
}


/* 登录框 */
.bg .login {
    width: 480px;
    height: 410px;
    margin: 0 auto;
    margin-top: 95px;
    background-color: rgba(34, 31, 31, 0.5);
}

.bg .login .center {
    display: flex;
    flex-direction: column;
    width: 352px;
    height: auto;
    margin: 0 auto;
    margin-top: 82.5px;
}

.bg .login .center input {
    width: 352px;
    height: 56px;
    border: none;
    outline: none;
    border-radius: 20px;
    padding-left: 20px;
}

.bg .login .center #password {
    margin-top: 24px;
}

/* 记住密码 */
.bg .login .center .remember {
    margin-top: 17px;
    color: rgba(241, 235, 235, .8);
    font-size: 16.66px;
    user-select: none;
}
.bg .login .center .remember span {
    position: relative;
    top: 5px;
    margin-right: 6px;
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid;
    border-radius: 16px;
    cursor: pointer;
}

/* 登录 */
.btn {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 22px;
}

.bg .login .center #login,#expertEntrance {
    width: 152px;
    height: 56px;
    line-height: 56px;
    text-decoration: none;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 27.07px;
    border-radius: 20px;
}

.bg .login .center #login {
    background-color: rgb(140, 190, 254);
}

.bg .login .center #expertEntrance {
    background-color: rgb(132, 194, 117);
}


