* {
    margin: 0;
    padding: 0;
    font-family: microsoft yahei;
}

html {
    padding: 0;
}

body {
    box-sizing: border-box;

    min-height: 100vh;
    color: var(--color-text);
    background: var(--color-background);
    transition: color 0.5s, background-color 0.5s;
    line-height: 1.6;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans",
        "Helvetica Neue", sans-serif;
    font-size: 15px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 0;
}

#app {
    width: 100%;
    height: 100vh;
    padding: 0;
}



#login-box {
    display: flex;
    width: 320px;
    height: 405px;
    justify-content: space-between;
    position: absolute;
    left: 58%;
    top: 20%;

    opacity: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--el-box-shadow);
    background-color: #Fff;
    z-index: 99;


}





.login-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 400px;
    width: 320px;
    padding: 40px;
    overflow: hidden;
    box-sizing: border-box;
}

.modify-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 400px;
    width: 100%;
    padding: 40px;
    overflow: hidden;
    box-sizing: border-box;
}

.title-container {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.title {
    font-size: 1.3em;
    color: rgba(56, 181, 146, 1);

    margin: 0 0 30px;
    font-weight: bold;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.el-form-item {
    margin-bottom: 24px;
}

.el-input__prefix,
.el-input__suffix {
    display: flex;
    align-items: center;
}

.el-input__prefix {
    left: 10px;
}

.el-input__suffix {
    right: 10px;
}

.flex-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.sub-link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--el-text-color-secondary);
}

.text {
    margin-right: 10px;
}

.el-tabs__nav {
    width: 100%;
    /* justify-content: space-around; */
}



.logoBox {
    position: absolute;
    top: 30%;
    left: 10%;
}

.infoBox {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70%;
    left: 10%;
}

.companyName {
    display: block;
    font-size: 28px;
    font-family: 楷体;

    white-space: nowrap;
}

[v-cloak] {
    display: none;
}

.line {
    position: relative;
    height: 30px;
    /* 根据li的高度调整 */
    list-style: none;
    padding: 0;
    margin: 0;
}

.line li {
    position: absolute;
    width: 100%;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
    height: 30px;
    display: flex;
    align-items: center;
    font-family: "Microsoft YaHei";
    font-size: 13px;
    font-weight: 600;

}

.line li.active {
    opacity: 1;
}

.scrolling-lines {
    width: 420px;
    margin-top: 20px;
    white-space: nowrap;
}

.copyright {
    font-size: 8px;
    font-family: microsoft yahei;
    position: absolute;
    bottom: 0;
    left: 185px;
}
.toMobile {
    font-size: 8px;
    font-family: microsoft yahei;
    position: absolute;
    bottom: 0;
    left: 50px;
}

.el-form-item__error {
    font-size: 14px;
    color: red;
}

.slidercaptcha {
    margin: 0 auto;
    width: 314px;
    height: 286px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.125);
    margin-top: 20px;
}

.slidercaptcha .card-body {
    padding: 1rem;
}

.slidercaptcha canvas:first-child {
    border-radius: 4px;
    border: 1px solid #e6e8eb;
}

.slidercaptcha.card .card-header {
    background-image: none;
    background-color: rgba(0, 0, 0, 0.03);
}

.refreshIcon {
    top: -42px;
}

.loginBtn {
    width: 100%;
    background: rgba(56, 181, 146, 1);
    color: #fff;
}

/* 媒体查询，当设备宽度小于等于600像素时应用的样式 */
@media only screen and (max-width: 600px) {

    html,
    body,
    #app {
        width: 100vw;
        height: 100vh;
    }
    .logoBox {
        display: none !important;
     
    }
    #login-box {
        top: 50%; 
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .el-carousel {
        display: none;
    }

    .infoBox {
        display: none;
    }

    .companyName {
        display: none;
    }
}
