.juzhong {
    display: flex;
    justify-content: center;
}

.juright {
    display: flex;
    justify-content: right;
}

.flex-strat {
    display: flex;
    justify-content: start;
}

.flex-space-between {
    display: flex;
    justify-content: space-between;
}

.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.border-bottom {
    border-bottom: 1px solid rgba(216, 216, 216, 1);
}


/* 左右布局 */

.layout {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
}

.layout-left {
    width: 830px;
}

.layout-right {
    width: 290px;
}

@media (max-width: 1024px) {
    .layout-left {
        width: calc(100% - 30px);
    }
    .layout-right {
        width: 290px;
    }
}

@media (max-width: 880px) {
    .layout-left {
        width: 94%;
        min-width: 300px;
    }
    .layout-right {
        display: none;
    }
}


/* 导航 */

.navigation {
    height: 89px;
    opacity: 0.9;
    background-image: linear-gradient(180deg, #4e79fb 3%, #4920da 100%);
    box-shadow: 6px 10px 32px 0px rgba(33, 27, 93, 0.22);
    box-sizing: border-box;
    z-index: 999;
    position: relative;
}

.navigation .w {
    position: relative;
}

.navigation .nav-logo {
    margin-right: 90px;
}

.navigation .first-nav {}

.navigation .first-nav>li {
    line-height: 90px;
    cursor: pointer;
    position: relative;
    margin: 0 9px;
}

.navigation .first-nav>li:first-child {
    margin-left: 0;
}

.navigation .first-nav>li:last-child {
    margin-right: 0;
}

.navigation .first-nav>li:hover {
    background-color: rgba(255, 255, 255, .2);
}

.navigation .first-nav li a {
    padding: 0 20px;
    height: 16px;
    font-family: SourceHanSansCN-Bold;
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 700;
    box-sizing: border-box;
    position: relative;
    display: block;
    height: 100%;
}

.navigation .first-nav li.active a::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: #FFFFFF;
    border-radius: 2px;
    bottom: 22px;
    left: 0;
}

.navigation .first-nav li.active .secend-nav a::after {
    content: "";
    display: none;
}

.navigation li .secend-nav {
    display: none;
}

.navigation li:hover .secend-nav {
    display: block;
    position: absolute;
    top: 79px;
    width: 154px;
    background: #FFFFFF;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
    border-radius: 2px;
    padding: 4px 0;
}

.navigation li:hover .secend-nav li a {
    display: block;
    width: 100%;
    font-family: SourceHanSansCN-Medium;
    font-size: 16px;
    color: #313336;
    font-weight: 500;
    height: 42px;
    line-height: 42px;
    box-sizing: border-box;
    padding: 0 20px;
}

.navigation li:hover .secend-nav li a:hover {
    background: #234FD5;
    color: #fff;
}

.navigation .login-btn {
    padding: 0 16px;
    height: 26px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 18.5px;
    cursor: pointer;
    font-family: SourceHanSansCN-Normal;
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 0.22px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 1px;
    position: absolute;
    right: 76px;
    display: none;
}

.navigation .login-btn:hover {
    opacity: 0.8 !important;
}

.navigation .logged {
    width: 36px;
    height: 46px;
    position: absolute;
    right: 0;
    cursor: pointer;
    /* padding-bottom: 10px; */
    /* background-color: aquamarine; */
    display: none;
}

.navigation .logged .logged-icon-li {
    width: 36px;
    height: 46px;
}

.navigation .logged img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.navigation .logged li:hover .secend-nav {
    top: 46px;
    right: 0;
    width: 120px;
    left: auto;
}


/* 导航结束 */


/* 面包屑 */

.crumbs {
    margin: 20px 0;
}

.crumbs a,
.crumbs span {
    line-height: 19px;
    font-family: MicrosoftYaHei;
    font-size: 14px;
    color: #6D7278;
    font-weight: 400;
}

.crumbs a:hover,
.crumbs a:active {
    color: #4820DA;
}

.crumbs span {
    margin: 0 2px;
}


/* 面包屑结束 */


/* tabs页签 */

.tabs {
    width: 100%;
    line-height: 54px;
    background: #F5F5F5;
    border-right: 1px solid rgba(216, 216, 216, 1);
    border-top: 1px solid rgba(216, 216, 216, 1);
    border-left: 1px solid rgba(216, 216, 216, 1);
}

.tabs ul {}

.tabs .mdui-tab a {
    padding: 0 30px;
    font-family: SourceHanSansCN-Medium;
    font-size: 18px;
    color: #313336;
    text-align: center;
    font-weight: 500;
    cursor: pointer;
    border-right: 1px solid rgba(216, 216, 216, 1);
}

.tabs .mdui-tab a.mdui-tab-active {
    background-image: linear-gradient(180deg, #4E79FB 3%, #4920DA 100%);
    color: #fff;
    border-color: transparent;
}


/* tabs 结束 */


/* footer */

.secend-footer {
    height: 40px;
    background: #FFFFFF;
    font-family: SourceHanSansCN-Normal;
    font-size: 14px;
    color: #6D7278;
    font-weight: 400;
    line-height: 40px;
    border-top: 1px solid rgba(216, 216, 216, 1);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}


/* 推荐列表 */

.recommend {
    margin-bottom: 20px;
    background: #F5F5F5;
    padding: 20px;
    box-sizing: border-box;
    width: 290px;
    border-top: 2px solid #4820DA;
}

.recommend.postings .recommend-title {
    align-items: center;
}

.recommend.postings .recommend-title .flex-left {
    padding-left: 25px;
    background: url(../image/ejtz.png) no-repeat center left;
    background-size: 20px;
}

.recommend.activity .recommend-title .flex-left {
    padding-left: 25px;
    background: url(../image/tjhd.png) no-repeat center left;
    background-size: 20px;
}

.recommend.artcile .recommend-title .flex-left {
    padding-left: 25px;
    background: url(../image/tjwz.png) no-repeat center left;
    background-size: 20px;
}

.recommend .recommend-title .flex-left {
    font-family: SourceHanSansCN-Medium;
    font-size: 18px;
    color: #000000;
    letter-spacing: 0.24px;
    text-align: justify;
    font-weight: 500;
    line-height: 20px;
}

.recommend .recommend-title .flex-right a {
    font-family: SourceHanSansCN-Normal;
    font-size: 16px;
    color: #4820DA;
    letter-spacing: 0.22px;
    text-align: justify;
    font-weight: 400;
    box-sizing: border-box;
    display: block;
    padding-right: 14px;
    background: url(../image/gd.png) no-repeat right center;
    background-size: 14px;
}

.recommend .recommend-test-list a {
    display: block;
    font-family: SourceHanSansCN-Regular;
    font-size: 16px;
    color: #313336;
    letter-spacing: 0.22px;
    text-align: justify;
    font-weight: 400;
    margin-top: 20px;
}

.recommend .recommend-test-list a:hover {
    color: #4820DA;
}

.recommend .recommend-test-list.recommend-img-list a {
    display: flex;
    margin-top: 10px;
}

.recommend .recommend-test-list.recommend-img-list li:first-child a {
    margin-top: 20px;
}

.recommend .recommend-test-list.recommend-img-list a img {
    width: 90px;
    height: 50px;
    margin-right: 14px;
}

.recommend .recommend-test-list.recommend-img-list a p {
    width: 146px;
}


/* 文章内容详情 */

.artcile-content {
    width: 100%;
    margin-top: 30px;
}

.artcile-content p,
.artcile-content span {
    font-family: SourceHanSansCN-Normal;
    font-size: 16px;
    color: #313336;
    text-align: justify;
    line-height: 24px;
    font-weight: 400;
}

.artcile-content p {
    margin-bottom: 10px;
    text-indent: 2em;
}

.artcile-content p.mzsm {
    margin-bottom: 20px;
    text-indent: 0;
    font-weight: 400;
    font-size: 14px;
    color: #7f7f7f;
    border-top: 1px solid rgba(216, 216, 216, 1);
}

.artcile-content img {
    height: auto;
    max-width: 100%;
    margin: 40px auto;
}


/* 分页 */

.page-large {
    width: 100%;
    margin: 40px auto;
    text-align: center;
}

.page-large ul {
    display: flex;
    justify-content: center;
}

.page-large ul li {
    height: 40px;
    border: 1px solid rgba(216, 216, 216, 1);
    border-radius: 4px;
    line-height: 40px;
    min-width: 40px;
    box-sizing: border-box;
    font-family: SourceHanSansCN-Normal;
    font-size: 14px;
    color: #6D7278;
    font-weight: 400;
    margin-right: 10px;
    /* cursor: pointer; */
}

.page-large ul li a {
    font-family: SourceHanSansCN-Normal;
    font-size: 14px;
    color: #6D7278;
    display: block;
    height: 100%;
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
}

.page-large ul li.thisclass,
.page-large ul li:hover {
    background: #4820DA;
    border: 1px solid #4820DA;
}

.page-large ul li.thisclass a,
.page-large ul li:hover a {
    color: #FFFFFF;
}


/* 分享 */

body .social-share .social-share-icon {
    width: 20px;
    height: 20px;
    font-size: 14px;
    line-height: 20px;
}


/* 登录弹窗 */

.login-masked {
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
}

.login-box {
    width: 350px;
    background: #FFFFFF;
    border-radius: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 20px;
}

.login-box-head {
    padding-bottom: 14px;
    align-items: center;
}

.login-box-head .login-box-title {
    width: 73px;
    text-align: center;
    font-family: SourceHanSansCN-Medium;
    font-size: 16px;
    color: #071C2F;
    letter-spacing: 0.22px;
    font-weight: 500;
    line-height: 20px;
    height: 20px;
    position: relative;
}

.login-box-head .login-box-title::after {
    width: 73px;
    height: 3px;
    background-image: linear-gradient(180deg, #4E79FB 3%, #4920DA 100%);
    content: "";
    position: absolute;
    left: 0;
    bottom: -14px;
    display: block;
}

.login-box-head .login-box-close {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.login-form {
    margin-top: 28px;
}

.login-form input {
    width: 100%;
    height: 44px;
    line-height: 44px;
    border: none;
    font-family: SourceHanSansCN-Normal;
    font-size: 16px;
    color: #6D7278;
    letter-spacing: 0.22px;
    text-align: justify;
    font-weight: 400;
}


/* .login-form input.error {
    border: 1px solid #F40B26;
} */

.login-form .login-form-item {
    position: relative;
    padding-left: 58px;
    box-sizing: border-box;
    border: 1px solid rgba(190, 190, 190, 1);
    width: 310px;
    border-radius: 6px;
    padding-right: 6px;
}

.login-form .login-form-item .error_span {
    position: absolute;
    line-height: 14px;
    font-family: SourceHanSansCN-Normal;
    font-size: 14px;
    color: #F40B26;
    letter-spacing: 0.19px;
    text-align: justify;
    font-weight: 400;
    padding-left: 18px;
    background: url(../image/tishi-2.png) no-repeat center left;
    background-size: 14px;
    left: 0;
    bottom: -20px;
}

.login-form .login-form-item.request-error {
    border: none;
}

.login-form .login-form-item.request-error .error_span {
    bottom: 6px;
}

.login-form .login-form-item::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 20px;
    background: rgba(190, 190, 190, 1);
    left: 49px;
    top: 13px;
}

.login-form .login-form-item.username {
    background: url(../image/zh.png) no-repeat center;
    background-size: 20px;
    background-position-x: 15px;
    margin-bottom: 24px;
}

.login-form .login-form-item.password {
    background: url(../image/mm.png) no-repeat center;
    background-size: 20px;
    background-position-x: 15px;
    margin-bottom: 24px;
}

.login-form .login-form-item.code {
    background: url(../image/yzm.png) no-repeat center;
    background-size: 20px;
    background-position-x: 15px;
    width: 196px;
    margin-bottom: 12px;
}

.login-form .code-input-box {}

.login-form .code-input-box img {
    width: 104px;
    height: 46px;
    display: block;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

.reg-and-reset {
    height: 14px;
    line-height: 14px;
    margin: 16px 0;
}

.reg-and-reset a {
    font-family: SourceHanSansCN-Normal;
    font-size: 14px;
    color: #197FEF;
    letter-spacing: 0.19px;
    font-weight: 400;
}

.login-submit {
    width: 310px;
    height: 46px;
    background-image: linear-gradient(180deg, #4E79FB 3%, #4920DA 100%);
    border-radius: 6px;
    line-height: 46px;
    font-family: SourceHanSansCN-Normal;
    font-size: 16px;
    color: #FFFFFF;
    letter-spacing: 0.22px;
    text-align: center;
    font-weight: 400;
    margin-bottom: 46px;
}

.login-xieyi {
    font-family: SourceHanSansCN-Normal;
    font-size: 12px;
    color: #313336;
    letter-spacing: 0.16px;
    text-align: justify;
    font-weight: 400;
    line-height: 12px;
}

.login-xieyi a {
    font-family: SourceHanSansCN-Normal;
    font-size: 12px;
    color: #197FEF;
    letter-spacing: 0.16px;
    text-align: justify;
    font-weight: 400;
}


/* 协议样式 */

.contrainer {
    width: 98%;
    margin: 0 auto;
}

.contrainer h1 {
    text-align: center;
}

.mdui-typo-body-new,
.mdui-typo-body-new-opacity {
    font-weight: 400;
    font-size: 1.1em;
    letter-spacing: .04em;
    /* text-indent: 2em; */
}


/* 分享样式调整 */

.social-share .icon-wechat .wechat-qrcode {
    z-index: 999 !important
}


/* mdui样式修改 */

.mdui-container {
    width: 100% !important;
}
.login-zc a{
    color: #FFFFFF;
    
}
.login-zc a:hover {
    opacity: 0.8 !important;
    /* background: rgba(255, 255, 255,0.3); */
}
.login-zc {
    padding: 0 16px;
    height: 26px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 18.5px;
    cursor: pointer;
    font-family: SourceHanSansCN-Normal;
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 0.22px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 1px;
    position: absolute;
    right: 0;
    /* display: none; */

    
}