@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background:none;
    padding-bottom: 0;
}
a {
    text-decoration: none;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.ellipsis {
    white-space: nowrap;
    /* 保持文本在一行内 */
    overflow: hidden;
    /* 隐藏超出部分 */
    text-overflow: ellipsis;
    /* 显示省略号 */
}

#login,#notice,#notice-view {
    min-width: 1200px;
    min-height: 100vh;
    background-color: #f5f5f5;
    background-image: url(/images/top-bg.png), url(/images/footer-bg.png);
    background-size: 100% 400px, 100% 500px;
    background-position: top center, bottom center;
    background-repeat: no-repeat;
    /* 防止图片重复 */
}
header {
    height: 88px;
    background-color: rgb(28, 138, 217);
    background-image: url(/images/hearder-bg.png);
    background-size: cover;
}
header h1 {
    margin: 0 auto;
    width: 1200px;
    height: 100%;
    line-height: 88px;
    font-weight: 700;
    font-size: 36px;
    color: #ffffff;
}
#login section {
    display: flex;
    flex-basis: 1200px;
    flex-shrink: 0;
    height: 528px;
    margin: 0 auto;
}
#login section .ub-item {
    flex: 1;
    height: 100%;
}
#login section .ub-left {
    background-image: linear-gradient(132deg, #f8fcff 0%, #e5f3ff 100%);
    border-radius: 8px 0 0 8px;
    border-right: 1px solid #e2eaf0;
}
#login section .ub-left h3 {
    width: 100%;
    height: 64px;
    line-height: 64px;
    display: flex;
    align-items: center;
    padding: 0 40px;
    border-bottom: 1px solid rgba(71, 136, 215, 0.1);
}
#login section .ub-left h3 span {
    font-family: PingFangSC-Semibold;
    font-weight: 600;
    font-size: 22px;
    color: #3274c3;
}
#login section .ub-left h3 img {
    width: 32px;
    height: 32px;
    margin-right: 8px;
}
#login section .ub-left h3 a {
    font-family: PingFangSC-Regular;
    font-weight: 400;
    font-size: 14px;
    color: #777777;
    margin-left: auto;
}
#login section .ub-left ul {
    width: 100%;
}
#login section .ub-left ul li {
    list-style: none;
    width: 600px;
    padding: 0 40px;
    height: 48px;
    line-height: 48px;
    position: relative;
}
#login section .ub-left ul li a {
    width: 100%;
    font-family: PingFangSC-Regular;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    letter-spacing: 0;
    display: flex;
    justify-content: space-between;
    padding-left: 14px;
}
#login section .ub-left ul li a span {
    width: 80%;
}
#login section .ub-left ul li a time {
    font-family: PingFangSC-Regular;
    font-weight: 400;
    font-size: 14px;
    color: #999999;
}
#login section .ub-left ul li ::after {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(71, 136, 215, 0.5);
}
#login section .ub-left ul li :hover time {
    color: #3274c3;
}
#login section .ub-left ul li :hover span {
    color: #3274c3;
}
#login section .ub-right {
    background-color: #fff;
    box-shadow: 0 10px 47px 0 rgba(49, 83, 128, 0.1411764706), inset 0 2px 2px 0 #ffffff;
    border-radius: 0 8px 4px 0;
    padding: 0 40px;
    position: relative;
}
#login section .ub-right h3 {
    margin-top: 32px;
    font-family: PingFangSC-Semibold;
    font-weight: 600;
    font-size: 22px;
    color: #333333;
    letter-spacing: 0;
}
#login section .ub-right form {
    margin-top: 40px;
}
#login section .ub-right .form-item {
    margin-bottom: 24px;
    width: 520px;
    height: 48px;
    position: relative;
    display: flex;
    gap: 10px 10px;
}
#login section .ub-right .form-item input {
    width: 100%;
    height: 100%;
    border: 1px solid #cccccc;
    border-radius: 2px;
    padding-left: 48px;
}
#login section .ub-right .form-item .ub-icon {
    width: 22px;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}
#login section .ub-right .form-item .verification-ipt {
    flex: 1;
}
#login section .ub-right .form-item .verification-code {
    width: 120px;
    height: 100%;
    border: 1px solid #cccccc;
    border-radius: 2px;
}
.verification-code img {
    width: 100%;
    height: 100%;
}
#login section .ub-right .ub-forget_psd {
    font-weight: 400;
    font-size: 15px;
    color: #3274c3;
    float: right;
}
#login section .ub-right .ub-btns {
    margin-top: 60px;
}
#login section .ub-right .ub-btns .login-btn {
    width: 520px;
    height: 44px;
    border: none;
    font-weight: 500;
    font-size: 18px;
    color: #ffffff;
}
#login section .ub-right .ub-btns .ub-loginBtn {
    background: #0091f2;
    border-radius: 4px;
    cursor: pointer;
}
#login section .ub-right .ub-btns .ub-register {
    background-color: transparent;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    cursor: pointer;
    text-align: center;
}
#login section .ub-right .ub-wechatScan {
    display: none;
}
#login section .ub-right .ub-wechatScan h3 {
    color: #333333;
    font-size: 20px;
    font-weight: 600;
    margin-top: 40px;
}
#login section .ub-right .ub-wechatScan h3 span {
    color: #179035;
    margin-right: 8px;
}
#login section .ub-right .ub-wechatScan h3 img {
    width: 26px;
    height: 26px;
    margin-right: 8px;
}
#login section .ub-right .ub-wechatScan .qrCode {
    width: 220px;
    height: 220px;
    background: #FFFFFF;
    box-shadow: 0 10px 20px 0 rgba(82, 110, 148, 0.168627451);
    border-radius: 6px;
    margin: 30px auto 0;
    padding: 20px;
}
#login section .ub-right .ub-wechatScan .qrCode img {
    width: 100%;
    height: 100%;
    background-color: red;
}
#login section .ub-right .ub-wechatScan .ub-login-psd {
    display: none;
}
#login section .ub-right .ub-wechatScan .ub-login-wechat {
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}
#login section .ub-right .ub-wechatScan .ub-login-wechat img {
    width: 68px;
    height: 68px;
}
#login section .ub-right .ub-wechatScan .ub-login-wechat span {
    padding: 4px;
    font-weight: 400;
    font-size: 14px;
}
#login section .ub-right .change-login {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
}
#login section .ub-right .change-login img {
    width: 68px;
    height: 68px;
}
#login section .ub-right .change-login span {
    padding: 4px;
    font-weight: 400;
    font-size: 14px;
    color: #1077d0;
    background: rgba(0, 145, 242, 0.1);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -80%;
}
#login section .ub-right .ub-login-psd {
    display: block;
}
#login section .ub-right .ub-login-wechat {
    display: none;
}
main {
    border: none;
    min-width: 1200px;
    min-height: calc(100vh - 88px - 187px);
    overflow-y: auto;
    background-size: cover;
}
footer {
    min-width: 100vw;
    height: 187px;
    background: rgba(255, 255, 255, 0.3294117647);
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.8392156863);
    padding: 30px 0;
}
footer .ub-width {
    width: 1200px;
    margin: 0 auto;
}
footer .ub-width p {
    width: 100%;
    font-family: PingFangSC-Regular;
    font-weight: 400;
    font-size: 14px;
    color: #555555;
    letter-spacing: 0;
    margin-bottom: 12px;
}/*# sourceMappingURL=index.css.map */

.ub-login-type {
    width: auto;
}
.ub-qrcode {
    width: 250px;
    height: 250px;
}
#loginform-message_code {
    border: none !important;
    padding-left: 36px !important;
}
.btn-operate {
    text-align: center;
    padding-top: 60px;
}

/* 公告列表 */
#notice section {
    width: 1200px;
    min-height: calc(100vh - 88px - 187px);
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 6px;
    padding-bottom: 80px;
    position: relative;
}
#notice section h2 {
    font-weight: 600;
    font-size: 22px;
    color: #3274c3;
    display: flex;
    justify-content: space-between;
}
#notice section h2 .ub-anchor {
    font-size: 12px;
    color: #999;
    font-weight: 400;
}
#notice section .exam-notice-list {
    margin-top: 20px;
    list-style: none;
}
#notice section .exam-notice-list li {
    list-style: none;
    position: relative;
    padding: 0 40px;
    height: 48px;
    cursor: pointer;
    font-size: 16px;
}
#notice section .exam-notice-list li a {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333333;
}
#notice section .exam-notice-list li a span {
    width: 90%;
}
#notice section .exam-notice-list li:nth-child(2n-1) {
    background-color: rgba(247, 248, 249, 0.6);
}
#notice section .exam-notice-list li ::after {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(71, 136, 215, 0.5);
}
#notice section .exam-notice-list li:hover time {
    color: #3274c3;
}
#notice section .exam-notice-list li:hover span {
    color: #3274c3;
}
#notice section .ub-pagination {
    position: absolute;
    bottom: 10px;
    width: 80%;
    height: 50px;
    background-color: red;
    left: 50%;
    transform: translateX(-50%);
}

/* 公告详情 */
#notice-view section {
    width: 1200px;
    min-height: calc(100vh - 88px - 187px - 40px);
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 6px;
    padding-bottom: 80px;
    position: relative;
}
#notice-view section .ub-content {
    width: 960px;
    margin: 20px auto;
}
#notice-view section .ub-announcement {
    margin-top: 30px;
}
#notice-view section .ub-entry {
    color: #fff;
    font-size: 16px;
    padding: 10px 10px;
    border-radius: 4px;
    width: 155px;
    background-color: #4788D7;
    border: none;
    cursor: pointer;
}
#notice-view section .ub-entry:hover {
    filter: brightness(1.1);
}
#notice-view section h2 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}
#notice-view section .ub-time {
    text-align: center;
    color: #999;
    font-size: 14px;
    margin-top: 8px;
}
#notice-view section h3 {
    font-weight: 600;
    font-size: 22px;
    color: #3274c3;
    display: flex;
    justify-content: flex-end;
}
#notice-view section h3 .ub-anchor {
    font-size: 12px;
    color: #999;
    font-weight: 400;
}

/* 分页 */
.ub-paging_box{
    /*width: calc(100% - 210px);*/
    margin: 40px auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.ub-paging_num{
    font-size: 12px;
    color: #333;
}

.ub-paging_ul{
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    justify-content: center;
    margin-top: 20px;
}

.ub-paging_ul li{
    padding: 10px 20px;
    /*width: 36px;*/
    /*height: 36px;*/
    margin-right: 5px;
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.ub-paging_ul li a{
    color: #666;
}

.ub-paging_ulIn{
    background: #4788D7;
}

.ub-paging_ulIn a{
    color: #fff !important;
}

.ub-paging_ul li:last-child{
    margin-right: 0;
}

.justify-between a {
    color: #555555;
}
.ub-login-type {
    height: 330px;
}
.wechat-login {
    margin-top: 40px;
}
.ub-userInfo {
    margin-top: 30px;
}
.ub-userInfo li {
    font-size: 18px;
    display: flex;
    align-items: center;
    height: 56px;
    background: #F5F7F9;
    border-radius: 2px;
    margin-bottom: 16px;
    padding-left: 17px;
}
.ub-userInfo .ub-label {
    width: fit-content;
    font-weight: 400;
    font-size: 18px;
    color: #666666;
}
.ub-userInfo .ub-value {
    font-family: PingFangSC-Medium;
    font-weight: 500;
    font-size: 18px;
    color: #333333;
}
.ub-logout {
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 520px;
    height: 44px;
    background: #FFEDED;
    border-radius: 4px;
    font-family: PingFangSC-Regular;
    font-weight: 400;
    font-size: 18px;
    color: #FF0000;
}
.ub-logout:hover {
    color: #FF0000;
}