:root{
    --exfont:300 14px "Arial", sans-serif;
    --primary-100:#00B0FF;
    --primary-200:#0093e0;
    --primary-300:#00559a;
    --accent-100:#FF00FF;
    --accent-200:#ffd6ff;
    --text-100:#FFFFFF;
    --text-200:#e0e0e0;
    /* --bg-100:#0F1C2E; */
    --bg-100:#0E1726;
    --bg-200:#1f2b3e;
    --bg-300:#374357;
    --bg-400:#37435770;

    --text80:rgba(255,255,255,0.8);
    --text60:rgba(255,255,255,0.6);
    --text40:rgba(255,255,255,0.4);

    --blk90: rgba(0,0,0,0.9);
}

/* #region 主要字体样式 */
h1 {
    font-size: 22px;
    line-height:30px;
    color:var(--text80);
    font-weight: bold;
    margin:0;
    padding:0;
}
h2 {
    font-size: 18px;
    line-height:25px;
    color:var(--text80);
    font-weight: bold;
    margin:0;
    padding:0;
}
h3 {
    font-size: 16px;
    line-height:24px;
    color:var(--text80);
    font-weight: bold;
    margin:0;
    padding:0;
}
h4 {
    font-size: 14px;
    line-height:20px;
    color:var(--text80);
    font-weight: bold;
    margin:0;
    padding:0;
}
h5 {
    font-size: 12px;
    line-height:18px;
    color: var(--text60);
    font-weight: normal;
    margin:0;
    padding:0;
}
h6 {
    font-size: 10px;
    line-height:15px;
    color: var(--text40);
    font-weight: lighter;
    margin:0;
    padding:0;
}
/* #endregion */

/* 主版心 */
body{
    width:100vw;
    height:100vh;
    display:flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin:0px;
}
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/front-page-banner/robot-reading.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    filter: blur(10px);
    z-index: -1;
}

/* #region 主体面板 */

.container{

    transform: scale(1.5);

    width:1200px;;
    /* min-width:1200px; */
    height:600px;
    /* min-height:600px; */
    border-radius: 18px;
    background-color: #040404;

    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    padding:10px;

    gap:10px;
}
.main-poster{
    height:100%;
    flex:5;
    border-radius: 2px;
}
.background-img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius: 8px;
}
.content-panel{
    height:100%;
    flex:3;
    
    /* background-color: #FF00FF; */
    box-sizing: border-box;
    padding: 50px;

    display:flex;
    justify-content: center;
    align-items: center;
}
.login-panel{
    height:480px;
    width:300px;
    display: flex;
    flex-direction: column;
}
.register-panel{
    height:480px;
    width:300px;
    display: none;
    flex-direction: column;
}
.login-panel-head{
    height:40px;
    width:100%;
    display: flex;
    align-items: center;
}
.content-insert-box{
    width:100%;
    height:35px;
    resize:none;
    background-color: #101010;
    border-radius: 8px;
    border:1px solid var(--text40);
    box-sizing: border-box;
    padding:5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.input-box{
    width:100%;
    height:100%;
    background-color: #101010;
    border:none;
    outline: none;
    font-size: 10px;
    line-height:15px;
    color: var(--text40);
    font-weight: lighter;
    margin:0;
    padding:0;
    text-indent: 10px;
}
.login-btn{
    width:100%;
    height:35px;
    border-radius: 8px;
    background-color: var(--primary-100);
    box-sizing: border-box;
    margin-top:35px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-btn:hover{
    background-color: var(--accent-100);
}
.wechat-login-btn{
    width:100%;
    height:35px;
    border-radius: 8px;
    background-color: var(--bg-300);
    box-sizing: border-box;
    margin-top:35px;
    display: flex;
    flex-direction: row;
    gap:5px;
    justify-content: center;
    align-items: center;
}
.wechat-login-btn:hover{
    background-color: var(--accent-100);
}
.feedback-content{
    line-height: 20px;
    font-weight: bold;
    box-sizing: border-box;
    margin-top:25px;
}
.create-account-leading{
    width:100%;
    height:20px;
    display: flex;
    box-sizing: border-box;
    margin-top: auto;
}


/* #endregion */