@charset "utf-8";
.content-section{
    position: relative;
    box-sizing: border-box;
    min-height: 100vh;
    padding: 1rem 0.75rem;
    background-color: #f3f3f3;
    text-align: center;
}

.content-section>h1{
    font-size: 24px;
}

.head-div{
    display: flex;
    align-items: center;
    margin-top: 1rem;
    padding: 0.5rem;
    border-radius: 0.6rem;
    background-color: #fff;
}
.head-div>label{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    margin-right: 1rem;
    /* border-radius: 50%; */
    /* overflow: hidden; */
}
.head-div>label>img{
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.btn-div>a{
    display: block;
    width:100%;
    margin-top: 2rem;
    line-height: 2.7rem;
    font-size: 0.8rem;
    background-color: var(--main-bg-color);
    color: #fff;
    border-radius: 3px;
}
.btn-div>a.disabled{
    background-color: #aaa;
    /* color: #; */
}
.btn-div>a.default-btn{
    background-color: #fff;
    border: 1px solid #aaa;
    color: #666;
    /* color: #; */
}

.tips-div{
    margin-top: 1rem;
    font-size: 14px;
    text-align: left;
    color: #E9365E;
}
.tips-div-2{
    color: var(--btn-text-color);
}

#file-ele{
    display: none;
}

.school-motto{
    z-index: 10;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 2rem;
    font-size: 1rem;
    color: #999;
    font-weight: bold;
    opacity: 0.3;
    text-shadow: 4px 4px 0.3rem var(--main-bg-color);
}