/* 头部 */
* {
    margin: 0;
    padding: 0;
    list-style: none;
    user-select: none;
}

img {
    vertical-align: middle;
    width: 100%;
}

#app {
    background-color: #f5f5f7;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
}

.bg {
    background: #fff;
    overflow: hidden;
}

.active_li {
    font-weight: bold;
    background: #5b5959;
    border-radius: 6px;
}

.home_title {
    width: 100%;
    height: 50px;
    background: #000;
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 99;
}

.homeTitle_left {
    width: 40%;
    height: 100%;
    display: flex;
}

.homeTitle_left_title {
    width: 50%;
    height: 100%;
    font-size: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.homeTitle_left_list {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

    .homeTitle_left_list li {
        width: 100px;
        height: 100%;
        line-height: 50px;
        text-align: center;
        transition: all 0.25s;
    }

.homeTitle_right {
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.homeTitle_right_serach {
    width: 40%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    overflow: hidden;
    justify-content: center;
}

.homeTitleRightSerach_input {
    width: 100%;
    height: 100%;
    background: #fff;
    color: #999;
    border: none;
    outline: none;
    text-indent: 10px;
}

.homeTitle_right_login {
    width: 50px;
    height: 100%;
    line-height: 50px;
    text-align: center;
    transition: all 0.25s;
    margin-left: 5%;
}
/* 响应式 */
@media screen and (max-width: 1060px) {
    .home_title {
        height: 40px;
        line-height: 40px;
    }

    .homeTitle_left {
        width: 60%;
    }

    .homeTitle_left_title {
        width: 80%;
        font-size: 15px;
    }

    .homeTitle_left_list {
        width: 50%;
    }

    .homeTitle_right {
        width: 40%;
    }

    .homeTitle_right_serach {
        width: 60%;
    }

    .homeTitleRightSerach_input {
        font-size: 12px;
    }

    .homeTitle_left_list li {
        width: 80px;
        font-size: 12px;
        line-height: 40px;
    }

    .homeTitle_right_login {
        width: 40px;
        font-size: 12px;
        line-height: 40px;
    }
}

@media screen and (max-width: 650px) {
    .homeTitle_left_title {
        display: none;
    }

    .homeTitle_left_list {
        width: 100%;
    }
}
/* 悬浮 */
.homeTitle_left_list li:hover {
    cursor: pointer;
    background: #989393;
    border-radius: 6px;
}

.homeTitle_right_login:hover {
    cursor: pointer;
    border-radius: 50%;
    background: #5b5959;
}
/* 登录 */
.login {
    background-color: #f5f5f7;
}

.content {
    width: 40%;
    margin: 0 auto;
    margin-bottom: 40px;
}

.login_title {
    width: 80%;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 80px;
    text-align: start;
    font-size: 38px;
    font-weight: bold;
}

.logoBox {
    width: 250px;
    overflow: hidden;
}

.login_text {
    margin-left: 10px;
    line-height: 100px;
    font-size: 3.5em;
}

.login_content {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1em;
    margin: 20px 0;
}

.checkCode_img {
    box-sizing: border-box;
    width: 200px;
    height: 40px;
    border: 1px solid #8b8b8d;
    border-radius: 3px;
    background-color: #f5f5f7;
    position: absolute;
    bottom: 30px;
    right: 0;
}

@media screen and (max-width: 1210px) {
    .login_text {
        font-size: 2.5em;
    }

    .logoBox {
        width: 200px;
    }
}

@media screen and (max-width: 930px) {
    .login_text {
        width: 150px;
        text-align: center;
        font-size: 2em;
    }

    .logoBox {
        width: 150px;
    }

    .content {
        width: 80%;
    }
}

@media screen and (max-width: 665px) {
    .login_text {
        display: none;
    }
}


/* input 样式 */
.input-container {
    position: relative;
    width: 100%;
    margin: 30px 0;
    transition: all 0.3s ease;
}

.input-container_input {
    font-size: 20px;
    width: 100%;
    border: none;
    border-bottom: 2px solid #ccc;
    padding: 5px 0;
    background-color: transparent;
    outline: none;
    transition: all 0.3s ease;
}

.input-container .label {
    position: absolute;
    top: 0;
    left: 0;
    color: #ccc;
    transition: all 0.3s ease;
    pointer-events: none;
}

.input-container .underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #333;
    transform: scaleX(0);
    transition: all 0.3s ease;
}

.input-container:hover .underline {
    transform: scaleX(1);
    transition: all 0.3s ease;
}

.aaa {
    width: 100%;
    display: flex;
    position: relative;
}

.yzm {
    width: 80%;
}

.checkCode_img {
    width: 133px;
    height: 55px;
    overflow: hidden;
}


/* button */
.submitBtn {
    background-color: #fff;
    border: none;
    padding: 1rem 0;
    font-size: 1rem;
    width: 100%;
    border-radius: 1rem;
    color: red;
    box-shadow: 0 0.4rem #dfd9d9;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

    .submitBtn:active {
        color: white;
        box-shadow: 0 0.2rem #dfd9d9;
        transform: translateY(0.2rem);
    }

    .submitBtn:hover:not(:disabled) {
        background: red;
        color: white;
        text-shadow: 0 0.1rem #bcb4b4;
    }

    .submitBtn:disabled {
        cursor: auto;
        color: grey;
    }

.footer {
    width: 100%;
    height: 360px;
    color: #ccc;
    line-height: 35px;
    align-items: center;
    font-size: 15px;
    color: #5c5d62;
    text-align: center;
    margin-top: 20px;
    padding: 20px 0;
    overflow: hidden;
    background-color: #f5f5f7;
}

.logo {
    width: 250px;
    margin: 0 auto;
    margin-top: 40px;
}

.logoTitle {
    font-weight: bold;
    color: red;
    margin-bottom: 15px;
}

.footer p {
    line-height: 30px;
    color: #999;
}
