body {
    font-family: 'Microsoft YaHei';
    background-color: #fefefe;
    color: #718096;
}


/* 标题 */
.title h2 {
    font-size: 2.5rem;
    color: #152c5b;
    margin-bottom: 1rem;
}
.title p {
    font-size: 1.3rem;
    color: #718096;
}
.title-reverse h2 {
    color: #fff;
}
.title-reverse p {
    color: rgba(255, 255, 255, .7);
}


/* 工具类 */
.bg-dark {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 400px;
    padding: 3rem 15px;
    background-color: #0e0b2b !important;
}
.shape-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 2;
    transform: translateZ(0);
    overflow: hidden;
}
.shape-line {
    min-height: 19px;
}
.shape-orientation-inverse {
    transform: rotate(180deg);
}
.shape-container svg {
    display: block;
    fill: #FFF;
    pointer-events: none;
    vertical-align: baseline;
}



/* pic modal */
.pic-modal-wrapper {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .5);
    z-index: 99998;
    display: flex;
    justify-content: center;
    align-items: center;
}
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.pic-modal {
    width: 60vw;
    height: 80vh;
    animation: zoomIn .4s ease-in-out;
}
.pic-modal img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    border-radius: 5px;
}
.pic-modal .pic-modal-close {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    color: #000;
    font-size: 42px;
    position: absolute;
    right: 70px;
    top: 40px;
    z-index: 99999;
    cursor: pointer;
}

/* 全屏查看按钮 */
.card .view-larger {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #5cc9a7;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    right: 20px;
    top: 40%;
    position: absolute;
    box-shadow: 1px 2px 8px 0 rgba(0, 0, 0, .15);
    transition: .3s ease-out;
    -webkit-transition: .3s ease-out;
    -moz-transition: .3s ease-out;
    transform: scale(0);
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    opacity: 0;
    cursor: pointer;
}
.card:hover .view-larger {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}





/* 页眉 */
header {
    background-color: #fff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2);
}
header .logo {
    width: 165px;
    height: 60px;
    background: url("../images/logo.png") no-repeat center center;
    background-size: cover;
}
header.transparent .logo {
    background: url("../images/w-logo.png") no-repeat center center !important;
}
header .navbar-nav {
    gap: 15px;
}
header .navbar-nav a {
    font-size: 17px;
}
header .navbar-nav .nav-item.active a,
header .navbar-nav .nav-item a:hover {
    color: #152c5b !important;
}
.dropdown-toggle::after {
    transition: .3s ease-in-out;
}
header .navbar-nav .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}



.jumbotron {
    position: relative;
    margin-top: 90px;
    color: #fff;
    background: #0e0b2b url("../images/alrab-y9ggr.png") no-repeat center center;
    background-size: cover;
    margin-bottom: 0;
}
.news-txt-list-banner {
    background: #0e0b2b url("../images/awssw-q02sv.webp") no-repeat center center !important;
}
.jumbotron .container {
    position: relative;
    z-index: 2;
}
.jumbotron::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .2);
    position: absolute;
    left: 0;
    top: 0;
}




/* 留学资讯 */
.news .card .card-head {
    height: 210px;
}
.news .card .card-head img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news .card .card-body h5 a {
    color: #152c5b;
}

.pagination .page-item.active .page-link {
    color: #fff;
    background-color: #FFBE3D;
    border-color: #FFBE3D;
}
.pagination .page-item .page-link {
    color: #718096;
}
.pagination .page-item .page-link[data-page-controller] {
    color: #152c5b;
}



/* 最近新闻 */
.news-txt-list .card:hover {
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .1);
}
.news-txt-list .card:hover .card-body h5 {
    text-decoration: underline;
}
.news-txt-list .card-body h5 {
    color: #152c5b;
}



/* 页脚 */
footer {
    width: 100%;
    padding: 3rem 0;
    background-color: #0e0b2b;
}
.footer-link .nav {
    gap: 15px;
}
.footer-link .nav li a {
    color: #fff;
}
footer p {
    margin-bottom: 0.25rem;
}
.copyright a {
    color: #718096;
}







@media screen and ( max-width: 1000px ) {

    .pic-modal .pic-modal-close {
        width: 40px;
        height: 40px;
        font-size: 26px;
        position: unset;
        margin-bottom: 12px;
    }
    .pic-modal {
        display: flex;
        flex-direction: column-reverse;
        align-items: end;
        width: 80vw;
    }

}



@media screen and ( max-width: 750px ) {

    .title h2 {
        font-size: 1.9rem;
        margin-bottom: 0.8rem;
    }
    .title p {
        font-size: 1rem;
    }


    .pic-modal {
        width: 94vw;
    }

}
