body {
    background: url("../images/login_img.png");
    background-size: 100% 100%;
}

.container {
    width: 1280px;
    margin: 0px auto 25px auto;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    padding: 25px;
}

.flex-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.junstfy-content-between {
    justify-content: space-between;
}

.junstfy-content-flex-start {
    justify-content: flex-start;
}

.junstfy-content-flex-end {
    justify-content: flex-end;
}

.align-items-center {
    align-items: center;
}

.align-items-flex-start {
    align-items: flex-start;
}

.align-items-flex-end {
    align-items: flex-end;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-1 {
    flex: 1;
}

.box-sizing {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

/*文字超出省略号*/
.text-overflow {
    overflow: hidden;
    /* 文字用省略号代替超出的部分 */
    text-overflow: ellipsis;
    /* 匀速溢出内容，隐藏 */
    white-space: nowrap;
}


/*** 登录**/

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.logo {
    width: 400px; /* 根据你的Logo尺寸调整 */
    height: auto;
    margin-bottom: 50px;
}

.login-form {
    width: 400px;
    height: 380px;
    background: #FFFFFF;
    border-radius: 20px;
}


.demo-tab-header {
    width: 100%;
    display: flex;
    align-content: flex-start;
    justify-content: center;
    padding-top: 40px;
}

.demo-tab-header > a {
    font-size: 21px;
    font-weight: 400;
    color: #303030;
    line-height: 24px;
    background: none;
    border: 0px;
    height: 50px;
    width: 150px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.demo-tab-header > a > span{
    display: block;
}

.demo-tab-header > a.layui-btn-primary:hover {
    border-color: #114491;
}

.demo-login-container {
    width: 320px;
    margin: 21px auto 0;
}

.demo-login-other .layui-icon {
    position: relative;
    display: inline-block;
    margin: 0 2px;
    top: 2px;
    font-size: 26px;
}

.demo-tab-header .layui-btn.layui-this {
    /*border-bottom: 2px solid #114491;*/
}
.demo-tab-header .layui-btn.layui-this > span:last-child{
    /*width: 35px;*/
    height: 6px;
    background: #114491;
    border-radius: 3px;
}

.demo-tab-body > div {
    display: none;
}

.sms-btn {
    background: #114491;
    color: #fff;
    width: 125px;
    border: 0px;
}

.login-btn {
    background: #114491 !important;
    height: 45px;
    line-height: 45px;
}
.layui-form-checked[lay-skin=primary]>i {
    border-color: var(--lyj-primary-color) !important;
    background-color: var(--lyj-primary-color) !important;
}