html, body {
    margin: 0;
    padding: 0;
    font-size: 16px;
}

body {
    background-image: url("../images/bg-paper.png");
    background-repeat: repeat-y;
    background-size: 100% auto;
}

a {
    text-decoration: none;
    cursor: pointer;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.ellipsis {
    white-space: nowrap; /* 确保文本不换行 */
    overflow: hidden; /* 隐藏溢出的内容 */
    text-overflow: ellipsis; /* 使用省略号显示溢出的文本 */
}

.line-container {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.line-container.bg-white {
    background-color: #fff;
}

.line-container.paper {
    background-image: url("../images/bg-paper.png");
    background-repeat: repeat-y;
    background-size: 100% auto;
}

.line-container.footer {
    background-image: url("../images/bg-library.jpg");
}

.line-container.publicity {
    background: transparent url("../images/school-box.png") repeat fixed top;
    background-size: 100% auto;
}

.line-container.gray {
    background-color: #E0E0E0;
}

.main-container {
    max-width: 1320px;
    margin: 0 auto;
}

.main-content {
    padding: 3.75rem 0 2rem 0;
}

.main-content-2 {
    padding: 3.75rem 0;
}

.main-content-3 {
    padding: 1.75rem 0 1.25rem 0;
}

.pc-header {
    padding: 0.625rem;
    background-color: #ffffff;
}

.pc-header .header-main {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pc-header .header-main .header-main-left {
    display: flex;
    align-items: center;
}

.pc-header .header-main .header-main-left .logo-link {
    display: block;
    margin-right: 1rem;
}

.pc-header .header-main .header-main-left .logo-link .logo-image {
    height: 5.3125rem;
}

.pc-header .header-main .header-main-left .logo-recruit-student {
    font-size: 0.875rem;
    font-weight: bold;
    color: #101010;
}

.pc-header .header-main .header-main-left .logo-recruit-student .green {
    color: #59A201;
}

.pc-header .header-main .hotline {
    display: flex;
    align-items: center;
}


.search-form {
    border: 1px solid #59A201;
    border-radius: 100px;
    display: flex;
    overflow: hidden;
    height: 2.6rem;
}

.search-form .search-form-input {
    width: 100%;
    font-size: 1.2rem;
    background-color: transparent;
    border: 0 solid transparent;
    outline: 0 solid transparent;
}

.search-form .search-form-input:focus {
    border: 0 solid transparent;
    outline: 0 solid transparent;
}

.search-form .search-form-box {
    padding: 0.5rem 1rem;
}

.search-form .search-form-button {
    border-radius: 0;
    background-color: #59A201;
    border: 0;
    color: #ffffff;
    padding: 0 1.6rem 0 1.5rem;
    font-size: 1.2rem;
}

.search-list .search-line {
    display: none;
    padding: 1rem 2rem;
    background-color: #F3F3F3;
    position: sticky;
    top: 5rem;
    left: 0;
    right: 0;
    z-index: 100;
}

.search-list .search-line .search-form-box {
    width: calc(100% - 6rem);
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: #59A201;
}

.fixed-button-box {
    position: fixed;
    z-index: 1000;
}

.fixed-button-box.left-bottom {
    left: 2rem;
    bottom: 4rem;
}

.fixed-button-box .fixed-button {
    background-color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

.fixed-button-box .fixed-button.transparent {
    background-color: transparent;
    box-shadow: none;
}

.fixed-button-box .fixed-button .fixed-button-link {

}

.fixed-button-box .fixed-button .fixed-button-link .fixed-button-image {
    width: 5rem;
    height: 5rem;
}

.fixed-button-box .fixed-button .fixed-button-link .fixed-button-image .fixed-button-image-src {
    display: block;
    width: 100%;
    height: 100%;
}

.fixed-button-box .fixed-button .fixed-button-link .fixed-button-image .fixed-button-image-src.active {
    display: none;
}


.fixed-button-box .fixed-button .fixed-button-link .fixed-button-text {
    padding: 0.3rem 0 0.5rem 0;
    color: #333333;
    position: relative;
}

.fixed-button-box .fixed-button .fixed-button-link .fixed-button-text::after,
.fixed-button-box .fixed-button .fixed-button-link .fixed-button-text:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #59A201;
    width: 0;
    height: 2px;
    transition: width 0.4s ease-in-out;
}

.fixed-button-box .fixed-button:hover .fixed-button-link .fixed-button-image .fixed-button-image-src.active {
    display: block;
}

.fixed-button-box .fixed-button:hover .fixed-button-link .fixed-button-image .fixed-button-image-src.default {
    display: none;
}

.fixed-button-box .fixed-button:hover .fixed-button-link .fixed-button-text {
    color: #59A201;
}

.fixed-button-box .fixed-button:hover .fixed-button-link .fixed-button-text::after,
.fixed-button-box .fixed-button:hover .fixed-button-link .fixed-button-text:after {
    width: 100%;
}

@keyframes shake {
    0% {
        transform: translateY(0);
    }
    5% {
        transform: translateY(-5px);
    }
    10% {
        transform: translateY(5px);
    }
    15% {
        transform: translateY(-5px);
    }
    20% {
        transform: translateY(5px);
    }
    25% {
        transform: translateY(0);
    }
}

.pc-header .header-main .hotline .hotline-image {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
    margin-right: 0.625rem;
    animation: shake 3s forwards infinite;
}

.pc-header .header-main .hotline .hotline-content .hotline-content-item {
    height: 2.2rem;
    line-height: 2.2rem;
    font-size: 1.5rem;
    color: #4B4B4B;
}

.pc-nav {
    width: 100%;
    background-color: #59A201;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
}

.pc-nav .main-nav {
    display: flex;
    color: #ffffff;
}

.pc-nav .main-nav .nav-item,
.pc-nav .main-nav .nav-item-more {
    color: #ffffff;
    display: block;
    font-size: 1.125rem;
    height: 2.8125rem;
    line-height: 2.8125rem;
    width: 100%;
    text-align: center;
    cursor: pointer;
    position: relative;
}

.pc-nav .main-nav .nav-item:hover {
    background-color: #4a8700;
}

.pc-nav .main-nav .nav-item.active,
.pc-nav .main-nav .nav-item-more.active {
    background-color: #305800;
}

.pc-nav .main-nav .nav-item:hover .nav-sub {
    bottom: 0;
    opacity: 1;
    border-width: 1px;
    height: unset;
}

.pc-nav .main-nav .nav-item .nav-sub {
    height: 0;
    overflow: hidden;
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    z-index: 100;
    border: 0 solid #dcdcdc;
    border-radius: 5px;
    background-color: #ffffff;
    width: 11rem;
    line-height: normal;
    opacity: 0;
    transition: bottom 0.4s ease, opacity 0.4ms linear;
}

.pc-nav .main-nav .nav-item .nav-sub .nav-sub-item {
    display: inline-block;
    width: 100%;
    height: 2.6rem;
    line-height: 2.6rem;
    font-size: 1rem;
    font-weight: normal;
    color: #333333;
}

.pc-nav .main-nav .nav-item .nav-sub .nav-sub-item:hover {
    background-color: #4a8700;
    color: #ffffff;
}

.pc-nav .main-nav .nav-item .nav-sub .nav-sub-item.active {
    background-color: #305800;
    color: #ffffff;
}

.pc-nav .main-nav .nav-item-more:hover {
    background-color: #4a8700;
}

.pc-nav .main-nav .nav-item-more:hover .nav-more {
    bottom: 0;
    opacity: 1;
    height: unset;
}

.pc-nav .main-nav .nav-item-more .nav-more {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    z-index: 100;
    background-color: #59A201;
    width: 11rem;
    line-height: normal;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: bottom 0.4s ease, opacity 0.4ms linear;
}

.pc-nav .main-nav .nav-item-more .nav-more .nav-more-item {
    display: none;
    width: 100%;
    height: 3rem;
    line-height: 3rem;
    font-size: 1.2rem;
    color: #ffffff;
}

.pc-nav .main-nav .nav-item-more .nav-more .nav-more-item:hover {
    background-color: #4a8700;
    color: #ffffff;
}

.pc-nav .main-nav .nav-item-more .nav-more .nav-more-item.active {
    background-color: #305800;
    color: #ffffff;
}

.pc-footer {

}

.pc-footer .main-footer {
    padding: 4.5rem 0 3rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
}

.pc-footer .main-footer .footer-column {
}

.pc-footer .main-footer .footer-column .footer-column-item {
    font-size: 1rem;
    margin-bottom: 0.625rem;
    color: #ffffff;
}

.pc-footer .main-footer .footer-column .footer-column-item .footer-column-item-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.4rem;
}

.pc-footer .main-footer .footer-column .footer-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.3125rem;
}

.pc-footer .main-footer .footer-column .footer-contact .footer-contact-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 1.25rem;
}

.pc-footer .main-footer .footer-column .footer-contact .hotline-content {
    font-size: 0.875rem;
}

.pc-footer .main-footer .footer-column .footer-contact .hotline-content .hotline-content-item {
    margin-bottom: 0.625rem;
}

.pc-footer .main-footer .footer-column .footer-contact .hotline-content .hotline-content-item:last-child {
    margin-bottom: 0;
}

.pc-footer .main-footer .footer-column .footer-qrcode-box {
    display: flex;
    justify-content: right;
}

.pc-footer .main-footer .footer-column .footer-qrcode-box .footer-qrcode {
    padding: 0.625rem;
    background-color: #ffffff;
}

.pc-footer .main-footer .footer-column .footer-qrcode-box .footer-qrcode .footer-qrcode-image {
    width: 7.5rem;
    height: 7.5rem;
}

.pc-footer .main-footer .footer-copyright-mobile {
    display: none;
}

.share-components {
    display: flex;
}

.share-components .share-item {
    margin-left: 1rem;
    border-radius: 1rem;
    border: 1px solid #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
}

.share-components .share-item.wechat {
    border-color: #7bc549;
    color: #7bc549;
    position: relative;
}

.share-components .share-item.wechat .qrcode {
    position: absolute;
    top: -16rem;
    height: 13rem;
    background-color: #fff;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 10px #aaa;
    width: 12rem;
    display: none;
    z-index: 100;
}

.share-components .share-item.wechat .qrcode .qrcode-title {
    color: #333333;
    font-size: 1rem;
}

.share-components .share-item.wechat .qrcode .qrcode-intro {
    font-size: 0.8rem;
    color: #999999;
}

.share-components .share-item.wechat .qrcode .qrcode-content {
    height: 8rem;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
}

.share-components .share-item.wechat .qrcode .qrcode-content .qrcode-content-url {
    width: 9rem;
}

.share-components .share-item.wechat .qrcode .qrcode-content .qrcode-content-url img {
    width: 100%;
    height: 100%;
    display: block;
}

.share-components .share-item.wechat .qrcode .qrcode-intro p {
    margin: 0;
}

.share-components .share-item.wechat:hover {
    background-color: #7bc549;
    border-color: #7bc549;
    color: #FFFFFF;
}

.share-components .share-item.wechat.active1 .qrcode {
    display: block;
}

.share-components .share-item.weibo {
    border-color: #ff763b;
    color: #ff763b;
}

.share-components .share-item.weibo:hover {
    background-color: #ff763b;
    border-color: #ff763b;
    color: #FFFFFF;
}

.share-components .share-item.qq {
    border-color: #56b6e7;
    color: #56b6e7;
}

.share-components .share-item.qq:hover {
    background-color: #56b6e7;
    border-color: #56b6e7;
    color: #FFFFFF;
}

.share-components .share-item.qq-zone {
    border-color: #fdcc00;
    color: #fdcc00;
    background: #FFFFFF url("../images/qzone.png") no-repeat center center;
    background-size: 1.4rem;
}

.share-components .share-item.qq-zone:hover {
    background-color: #fdcc00;
    border-color: #fdcc00;
    background-image: url("../images/qzone-white.png");
    color: #FFFFFF;
}

.no-data {
    padding: 10rem 0;
    text-align: center;
}

.no-data .no-data-image {
    width: 10rem;
}

ul.pagination,
ul.pager {
    list-style-type: none;
    display: flex;
}

.article-pagination ul.pager {
    padding-left: 0;
    font-size: 2rem;
}

ul.pagination li,
ul.pager li {
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    text-align: center;
    color: #666666;
    background-color: #F3F3F3;
    margin: 0 0.2rem;
    cursor: pointer;
}

.article-pagination ul.pager li,
.article-pagination ul.pager li a {
    width: 3rem;
    height: 3rem;
    text-align: center;
    color: #FFFFFF;
    background-color: #59A201;
}

.article-pagination ul.pager li.disabled,
.article-pagination ul.pager li.disabled a {
    filter: grayscale(1);
}

ul.pagination li a,
ul.pager li a {
    width: 2.5rem;
    height: 2.5rem;
    color: #666666;
    display: block;
}

.article-pagination ul.pagination li a {
    width: 2.5rem;
    height: 2.5rem;
    text-align: center;
}

ul.pagination li:hover,
ul.pagination li:hover a,
ul.pagination li.active:hover,
ul.pager li:hover,
ul.pager li:hover a,
ul.pager li.active:hover {
    background-color: #4a8700;
    color: #FFFFFF;
}

ul.pagination li.active,
ul.pager li.active {
    background-color: #59A201;
    color: #FFFFFF;
    font-weight: bold;
}

.no-scroll,
.open-dialog {
    height: 100vh;
    overflow: hidden;
}

.open-dialog .dialog-videos {
    display: flex;
}

.dialog-videos {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    display: none;
    justify-content: center;
    align-items: center;
}

.dialog-videos .dialog-videos-container {
    max-width: 1200px;
    width: calc(100% - 48px);
    position: relative;
}
.dialog-videos .dialog-videos-container .vjs-no-js{
    font-size: 1.2rem;
    text-align: center;
    padding: 2rem;
}

.dialog-videos .dialog-videos-container .dialog-videos-close {
    position: absolute;
    bottom: -52px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 36px;
    color: #FFFFFF;
}

.dialog-videos .dialog-videos-container .dialog-videos-close .fa {
    cursor: pointer;
}

.dialog-videos .dialog-videos-container .dialog-videos-iframe {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
}

.dialog-videos .dialog-videos-container .dialog-videos-iframe .video-js,
.dialog-videos .dialog-videos-container .dialog-videos-iframe .dialog-iframe-videos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.gallery.streamer-banner {
    height: 18rem;
}

.streamer-banner {
    max-height: 12rem;
    position: relative;
    overflow: hidden;
}

.common-banner.streamer-banner {
    height: unset;
    max-height: 18rem;
}

.streamer-banner.margin-bottom {
    margin-bottom: 1rem;
}

.streamer-banner .streamer-banner-link {

}

.streamer-banner .streamer-banner-link .streamer-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mobile-header {
    display: none;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #FFFFFF;
    border-bottom: 1px solid #E7E7E7;
}

.mobile-header .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
}

.mobile-header .header-top .logo {
    width: 70%;
    text-align: left;
}

.mobile-header .header-top .logo .logo-link {
    text-align: left;
}

.mobile-header .header-top .logo .logo-link .logo-image {
    object-fit: contain;
    display: block;
    max-height: 4rem;
}


.mobile-header .header-top .header-top-left {
    display: flex;
    align-items: center;
}

.mobile-header .header-top .header-top-left .header-top-search {
    font-size: 1.6rem;
    color: #666666;
    margin-right: 1rem;
}

.mobile-header .header-top .header-top-left .menu-switch {
    font-size: 2rem;
    color: #666666;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background-color: rgba(0, 0, 0, 0.3);
}

.mobile-nav .mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    height: calc(100vh - 2rem);
    width: 70%;
    background-color: #FFFFFF;
    padding: 1rem 2rem;
    transform: translateY(-100%);
    transition: transform 0.2s linear;
}

.open-menus .mobile-nav .mobile-nav-content {
    transform: translateY(0);
}

.mobile-nav .mobile-nav-content .mobile-nav-log {
    width: 90%;
    object-fit: contain;
    margin-bottom: 2rem;
    text-align: center;
}

.mobile-nav .mobile-nav-content .mobile-nav-link {
    height: calc(100% - 13rem);
    margin-bottom: 1rem;
    overflow: hidden auto;
}

.mobile-nav .mobile-nav-content .mobile-nav-link .mobile-nav-link-item {
    display: block;
    padding: 1rem 0;
    font-size: 1.4rem;
    color: #333333;
    border-bottom: 1px solid #E7E7E7;
}

.mobile-nav .mobile-nav-content .mobile-nav-link .mobile-nav-link-text {
    display: block;
    padding-bottom: 1rem;
    font-size: 1.4rem;
    color: #333333;
    border-bottom: 1px solid #E7E7E7;
}


.mobile-nav .mobile-nav-content .mobile-nav-link .mobile-nav-link-item.active {
    color: #59A201;
}

.mobile-nav .mobile-nav-content .mobile-nav-link .mobile-nav-link-item.active .mobile-nav-link-text {
    color: #59A201;
    border-color: #59A201;
}

.mobile-nav .mobile-nav-content .mobile-nav-link .mobile-nav-link-item .mobile-nav-sub {
    display: flex;
    flex-wrap: wrap;
    padding-top: 1rem;
}

.mobile-nav .mobile-nav-content .mobile-nav-link .mobile-nav-link-item .mobile-nav-sub .mobile-nav-item {
    display: block;
    padding: 0.3rem 0.6rem;
    background-color: #E7E7E7;
    margin: 0 0.5rem 1rem 0.5rem;
    font-size: 1.2rem;
    color: #333333;
}

.mobile-nav .mobile-nav-content .mobile-nav-link .mobile-nav-link-item .mobile-nav-sub .mobile-nav-item.active {
    color: #FFFFFF;
    background-color: #59A201;
}

.mobile-nav .mobile-nav-close {
    border: 1px solid #E7E7E7;
    border-radius: 4px;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 1.6rem;
    color: #999999;
}

.blogroll-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.blogroll {
    display: flex;
}

.blogroll .blogroll-col {
    padding: 0 1rem;
}

.blogroll .blogroll-col .blogroll-link {
    display: flex;
    color: #333333;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    align-items: center;
}
.blogroll .blogroll-col .blogroll-link .blogroll-link-logo {
    display: block;
    width: 1.4rem;
    height: 1.4rem;
    margin-right: 0.2rem;
}
.blogroll .blogroll-col .blogroll-link:hover {
    color: #59A201;
}

.robot {
    display: none;
    position: fixed;
    bottom: 25vh;
    right: 2.6rem;
    z-index: 1000;
    transform: translateY(50%);
}

.robot .robot-link {

}

.robot .robot-link .robot-link-image{
    width: 6.5rem;
}

@media (max-width: 1400px) {
    html, body {
        font-size: 16px;
    }

    .panel-row .panel-card {
        margin: 0 1rem;
    }
}

@media (max-width: 1320px) {
    html, body {
        font-size: 15px;
    }
}

@media (max-width: 1230px) {
    html, body {
        font-size: 14px;
    }
}

@media (max-width: 1130px) {
    html, body {
        font-size: 13px;
    }
}

@media (max-width: 1020px) {
    html, body {
        font-size: 12px;
    }
}

@media (max-width: 960px) {
    html, body {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    html, body {
        font-size: 12px;
    }
    .share-components .share-item.wechat {
        display: none;
    }

    .pc-header {
        display: none;
    }

    .mobile-header {
        display: block;
    }

    .pc-nav {
        display: none;
    }

    .open-menus {
        width: 100vw;
        height: 100vh;
        overflow: hidden;
    }

    .open-menus .mobile-nav {
        display: block;
    }

    .common-banner.streamer-banner {
        height: 12rem;
    }

    .pc-footer .main-footer {
        display: block;
    }

    .pc-footer .main-footer .footer-column {
        margin-bottom: 1rem;
    }

    .pc-footer .main-footer .footer-copyright {
        display: none;
    }

    .pc-footer .main-footer .footer-copyright-mobile {
        display: block;
    }

    .pc-footer .main-footer .footer-column .footer-column-item {
        display: block;
        text-align: center;
    }

    .pc-footer .main-footer .footer-column .footer-qrcode-box {
        justify-content: center;
    }

    .line-container.publicity {
        background-size: auto 100%;
    }
    .gallery-subject {
        padding: 0 1rem;
    }
    .blogroll {
        display: block;
        padding: 1rem;
    }

    .blogroll .blogroll-col {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .blogroll .blogroll-col .blogroll-link {
        display: flex;
        color: #333333;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .robot {
        display: block;
        right: 0.6rem;
    }
}