/* page.css - 页面特定样式文件 */

/* 顶部联系信息栏样式 */
.main-topbar {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-bottom: 15px;
  padding-top: 10px;
}

/* 专业巡礼轮播图样式 */
.college-carousel {
    position: relative;
    margin-top: 20px;
}

.carousel-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex: 0 0 auto;
    width: calc(25% - 15px);
}

.college-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.college-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.college-card:hover .card-image img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: #585656cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button i {
    color: #fff;
    font-size: 15px;
    margin-left: 4px;
}

.college-card:hover .play-button {
    background-color: rgba(204, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.card-title {
    padding: 5px;
    text-align: center;
}

.card-title p {
    margin: 0;
    font-size: 16px;
    color: #333;
    line-height: 1.4;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}

.carousel-control {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-control:hover {
    background-color: #fff;
    transform: scale(1.1);
}

.carousel-control i {
    color: #CC0000;
    font-size: 16px;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .carousel-item {
        width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .carousel-item {
        width: 100%;
    }
    
    .card-image {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .card-image {
        height: 150px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button i {
        font-size: 20px;
    }
    
    .card-title p {
        font-size: 13px;
    }
}
.main-topbar .topbar-left{
    font-size: 18px;
    margin-right: 20px;
}
.main-topbar .fa-phone {
    margin-right: 5px;
    color: #f8c144;
}

.main-topbar .phone{
    color: #f8c144;
}

.main-topbar .top-link {
    color: #ffffff;
    text-decoration: none;
    margin-right: 20px;
    font-size: 18px;
    font-weight: 600;
}

.main-topbar .top-link:hover {
    color: #f8c144;
}

/* 头部导航样式 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* background: #000; */
    padding-bottom: 10px;
}

.header::after {
    content: "";
    width: 100%;
    height: 160%;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    z-index: 1;
    background-size: contain;
    transition: 0.4s all;
}

.header-on::after{
    background: linear-gradient(to bottom, rgba(204, 0, 0, 0.92), rgb(153, 0, 0));
    transition: 0.4s all;
    height: 100%;
}

.header-area{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo样式 */
.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 10px 0;
}

.logo-img {
    height: 90px;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    color: #008000;
}

.logo-text p {
    font-size: 14px;
    margin: 0;
    color: #666;
}

/* 主导航样式 */
.header-right{
    display: flex;
    justify-content: space-between;
    height:90px;
    z-index: 2;
}
.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.mobile-nav-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

.nav-list {
    width: 100%;
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: space-evenly;
}

.nav-item {
    position: relative;
    z-index: 3;
}

.nav-item > a {
    display: block;
    padding: 10px 0;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-item > a:hover {
    color: #FFC107;
    font-weight: 600;
}

.nav-item > a .fa-angle-down {
    margin-left: 5px;
    font-size: 12px;
}

/* 二级下拉菜单样式 */
.nav-item.dropdown .dropdown-menu {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    border-top: 2px solid #cc0000;
    border-radius: 0 0 4px 4px;
    text-align: center;
    min-width: 160px;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.nav-item.dropdown .dropdown-menu li {
    position: relative;
}

.nav-item.dropdown .dropdown-menu li a {
    padding: 8px 20px;
    transition: all 0.3s ease;
	font-size: 16px;
}

.nav-item.dropdown .dropdown-menu li a:hover {
    background-color: #e6b8b8;
    color: #cc0000;
    background: linear-gradient(90deg, #cc0000, #990000);
    color: #fff;
    border-left-color: #fff;
    transform: translateX(8px);
    font-weight: 600;
}

/* 轮播图样式 */
.carousel {
    margin-bottom: 0;
}

.carousel-inner {
    position: relative;
    overflow: hidden;
}

.carousel-inner > .item {
    position: relative;
    display: none;
    transition: 0.7s cubic-bezier(0.33, 1, 0.68, 1) transform;
    transform: translateX(0);
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

.carousel-inner > .item > img {
    position: relative;
    min-width: 100%;
    height: 80vh;
    object-fit: cover;
}

.carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev {
    display: block;
}

.carousel-inner > .active {
    transform: translateX(0);
    animation: breath 10s ease-in-out infinite;
    will-change: transform;
}

/* 确保非active状态的轮播图没有呼吸动画 */
.carousel-inner > .next,
.carousel-inner > .prev,
.carousel-inner > .next.left,
.carousel-inner > .prev.right,
.carousel-inner > .active.left,
.carousel-inner > .active.right {
    animation: none;
}

.carousel-inner > .next, .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%;
}

.carousel-inner > .next {
    transform: translateX(100%);
}

.carousel-inner > .prev {
    transform: translateX(-100%);
}

.carousel-inner > .next.left, .carousel-inner > .prev.right {
    transform: translateX(0);
}

.carousel-inner > .active.left {
    transform: translateX(-100%);
}

.carousel-inner > .active.right {
    transform: translateX(100%);
}

/* 轮播图呼吸动画效果 - 营造纵深感 */
@keyframes breath {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* 轮播图指示器样式 */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    z-index: 15;
    width: 60%;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none;
}

.carousel-indicators li {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    text-indent: -999px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0);
    border: 2px solid #fff;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.carousel-indicators .active {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #cc0000;
    border-color: #cc0000;
}

/* 轮播图控制按钮样式 */
.carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15%;
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    background-color: rgba(0, 0, 0, 0);
    filter: alpha(opacity=50);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.carousel-control:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9;
}

.carousel-control.left {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}

.carousel-control.right {
    right: 0;
    left: auto;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}

.carousel-control .glyphicon {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
    margin-top: -10px;
}

.carousel-control .glyphicon-chevron-left {
    left: 50%;
    margin-left: -10px;
}

.carousel-control .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px;
}

/* 搜索框样式 */
.search-box {
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.search-input {
    width: 200px;
    height: 30px;
    padding: 8px 40px 8px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    background-color: #ffffff;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #FFC107;
    box-shadow: 0 0 10px rgba(247, 192, 78, 0.2);
}

.search-input::placeholder {
    color: #999;
    font-size: 13px;
}

.search-btn {
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    height: 32px;
    width: 28px;
    padding: 0;
    border: none;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    /* background-color: #03a9f4; */
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 50px;
}

.search-btn i {
    margin: 0;
    color: #a0a0a0;
}

/* 搜索框焦点动画效果 */
.search-box:focus-within .search-input {
    width: 240px;
}

.search-box:focus-within .search-btn {
    background-color: #FFC107;
}

.search-box:focus-within .search-btn .fa-search{
    color: #fff;
}

/* 快速链接图标 */
.quick-links-section {
    padding: 20px 0;
}

.quick-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.quick-box .icon-link{
    display: flex;
    width: 100%;
}

.section-title h5 {
    font-weight: bold;
    color: #000000ad;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
    padding-right: 20px;
    padding-left: 15px;
}

.section-title h5::before {
    content: "";
    height: 100%;
    width: 4px;
    background-color: #fac748;
    margin-right: 10px;
    position: absolute;
    left: 0px;
    top: 0;
}
.quick-link-item {
    padding: 10px;
    transition: all 0.3s ease;
    flex: 1;
}

.quick-link-item:hover {
    transform: translateY(-10px);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    width: 100%;
    border-radius: 10px;
}

.quick-link-item:hover .icon-wrapper {
    transform: scale(1.05);
}

.icon-wrapper i {
    font-size: 30px;
    color: #007bff;
    transition: all 0.3s ease;
}

/* 为不同快速链接图标设置不同颜色 */
.quick-link-item:nth-child(1) .icon-wrapper {
    background-color: #e6f7ff;
}
.quick-link-item:nth-child(1) .icon-wrapper i {
    color: #007bff;
}
.quick-link-item:nth-child(1):hover .icon-wrapper {
    background-color: #007bff;
}

.quick-link-item:nth-child(2) .icon-wrapper {
    background-color: #fef5e7;
}
.quick-link-item:nth-child(2) .icon-wrapper i {
    color: #fac748;
}
.quick-link-item:nth-child(2):hover .icon-wrapper {
    background-color: #fac748;
}

.quick-link-item:nth-child(3) .icon-wrapper {
    background-color: #e8f5e8;
}
.quick-link-item:nth-child(3) .icon-wrapper i {
    color: #28a745;
}
.quick-link-item:nth-child(3):hover .icon-wrapper {
    background-color: #28a745;
}

.quick-link-item:nth-child(4) .icon-wrapper {
    background-color: #f3e5f5;
}
.quick-link-item:nth-child(4) .icon-wrapper i {
    color: #6f42c1;
}
.quick-link-item:nth-child(4):hover .icon-wrapper {
    background-color: #6f42c1;
}

.quick-link-item:nth-child(5) .icon-wrapper {
    background-color: #fff3cd;
}
.quick-link-item:nth-child(5) .icon-wrapper i {
    color: #ffc107;
}
.quick-link-item:nth-child(5):hover .icon-wrapper {
    background-color: #ffc107;
}

.quick-link-item:nth-child(6) .icon-wrapper {
    background-color: #f8d7da;
}
.quick-link-item:nth-child(6) .icon-wrapper i {
    color: #dc3545;
}
.quick-link-item:nth-child(6):hover .icon-wrapper {
    background-color: #dc3545;
}

.quick-link-item:nth-child(7) .icon-wrapper {
    background-color: #d1ecf1;
}
.quick-link-item:nth-child(7) .icon-wrapper i {
    color: #17a2b8;
}
.quick-link-item:nth-child(7):hover .icon-wrapper {
    background-color: #17a2b8;
}

.quick-link-item:nth-child(8) .icon-wrapper {
    background-color: #e2e3e5;
}
.quick-link-item:nth-child(8) .icon-wrapper i {
    color: #6c757d;
}
.quick-link-item:nth-child(8):hover .icon-wrapper {
    background-color: #6c757d;
}

.quick-link-item:nth-child(9) .icon-wrapper {
    background-color: #f8f9fa;
}
.quick-link-item:nth-child(9) .icon-wrapper i {
    color: #343a40;
}
.quick-link-item:nth-child(9):hover .icon-wrapper {
    background-color: #343a40;
}

.quick-link-item:nth-child(10) .icon-wrapper {
    background-color: #e6fffa;
}
.quick-link-item:nth-child(10) .icon-wrapper i {
    color: #00b894;
}
.quick-link-item:nth-child(10):hover .icon-wrapper {
    background-color: #00b894;
}

.quick-link-item:hover .icon-wrapper i {
    color: #fff;
}

.quick-link-item h5 {
    margin: 0;
    font-size: 18px;
    transition: all 0.3s ease;
    font-family: 'FontAwesome';
    color: #666;
    margin-left: 10px;
}

.quick-link-item:hover h5 {
    color: #fff;
    transform: translateX(3px);
}

/* 招生信息和视频在线部分样式 */

.admission-info-section, .video-section {
    /* background-color: #fff; */
    border-radius: 8px;
}

.section-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section-title .title-text .en {
    color: #dadfe4;
    display: block;
    font-size: 20px;
    font-style: italic;
    line-height: 20px;
}
.section-title .title-text .zh {
    color: #08121c;
    font-size: 1.4em;
    position: relative;
    z-index: 2;
}
.section-title .title-text .zh::after {
    content: "";
    height: 20px;
    width: 20px;
    background-color: #fac748;
    position: absolute;
    left: -3px;
    bottom: -3px;
    border-radius: 50%;
    z-index: -1;
}


.more-link {
    font-size: 14px;
    color: #666;
}

.more-link a {
    background-image: url('../images/more_ico.png');
    background-repeat: no-repeat;
    display: block;
    height: 24px;
    line-height: 24px;
    width: 95px;
    text-align: right;
    transition: all 0.3s ease;
    color: #757272;
}

.more-link a:hover {
    transform: translateX(5px);
    color: #cc0000;
}

/* 研究进展部分样式 */
.research-progress-section {
    margin-bottom: 30px;
}

.research-banner {
    overflow: hidden;
}

.research-banner>a:hover .diagram{
    transform: scale(1.1); 
}

.research-banner>a:hover .research-content{
    background: #990000;
}

.research-banner>a:hover .research-content h3{
    color: #fff;
}

.research-banner>a:hover .research-content .research-date{
    color: #ffffff;
}

.diagram-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 208px;
    z-index: 1;
    overflow: hidden;
}

.diagram {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0); /* GPU加速 */
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.research-content {
    background-color: #f7faff;
    overflow: hidden;
    padding: 15px;
}

.research-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.5;
    text-align: left;
    margin: 0;
}

.research-date {
    font-size: 15px;
    color: #7f8c8d;
    margin: 0;
    text-align: left;
    font-style: italic;
    margin-top: 10px;
}

.article-list-box {
    width: 100%;
    padding: 0;
    margin: 0;
}

.article-item {
    border-bottom: 1px solid #dedede;
    transition: all 0.5s ease;
    border-radius: 2px;
}
.article-item:hover {
    color: rgb(255, 255, 255);
    border-left-color: rgb(255, 255, 255);
    transform: translateX(0px);
    font-weight: 600;
    background: linear-gradient(90deg, #cc0000eb, rgb(247, 104, 104));
    padding-left: 10px;
}

.article-item:hover .article-content h4 {
    color: #fff !important;
}
.article-item:hover .article-content p {
    color: #f8f8f8 !important;
}

.article-item:hover .day, .article-item:hover .year {
    color: #fff !important;
}

.article-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.article-link {
    display: flex;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.article-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 70px;
    height: 55px;
    border-radius: 4px;
    margin-right: 20px;
    flex-shrink: 0;
    line-height: 16px;
    padding-bottom: 5px;
    color: #fff;
}

.article-date .day {
    font-weight: bold;
    color: #cc0000eb;
    font-size: 1.4em;
}

.article-date .year {
    font-size: 0.9em;
    color: #333;
}

.article-content {
    flex: 1;
    min-width: 0;
}

.article-content h4 {
    margin: 0 0 12px 0;
    font-size: 1em;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-content p {
    margin: 0;
    font-size: 0.9em;
    color: #666;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 视频在线部分样式 */
.video-box {
    position: relative;
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.video-thumbnail img {
    width: 100%;
    height: 310px;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-thumbnail:hover .video-overlay {
    opacity: 1;
}

.video-overlay i {
    font-size: 48px;
    color: #fff;
}

.video-info {
    padding: 20px 0;
    background-color: #ca0010;
}

.video-info h4 {
    margin: 0;
    font-size: 1.1em;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 工作动态 */

.article-content-gzdt{
    position: relative;
    border-bottom: 1px solid #ccc;
    width: 100%;
    padding: 0 5px;
}

.article-content-gzdt::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 3px;
    background-color: #990000;
    transition: width 0.3s ease;
}

.article-content-gzdt:hover::after {
    width: 100%;
}

.article-content-gzdt:hover a>p{
    color: #cc0000;
}

.article-content-gzdt>a{
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    width: 100%;
}

.article-content-gzdt:nth-of-type(1) a{
    padding-top: 0;
}

.article-title-gzdt{
    font-size: 1em;
    color: #333;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.5;
    margin: 0;
    margin-right: 8px;
}

.article-date-gzdt{
    font-size: 1em;
    color: #666;
    text-align: left;
    font-style: italic;
    align-self: center;
}

/* 光影校园 */
.gyxy{
    display: block!important;
    text-align: center;
    position: relative;
}

.gyxy .more-link{
    position: absolute;
    top: 20px;
    right: 0;
}

.poster-main {
  position: relative;
  margin: 0 auto;
  z-index: 1;
}

.poster-main a, .poster-main img { 
    display: block; width: 100%; height: 100%;
}

.poster-main .poster-list {
  width: 100%;
  height: 500px;
}

.poster-main .poster-list .poster-item {
  width: 400px;
  height: 500px;
  position: absolute;
  left: 0;
  top: 0;
 
}

.poster-main .poster-btn {
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  cursor: pointer;
  filter: opacity(.5) brightness(1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 24px;
}
.poster-main .poster-btn:hover{ filter: opacity(1) brightness(2); }

.poster-main .poster-prev-btn {
  left: 0;
}

.poster-main .poster-next-btn {
  right: 0;
}

.poster-main .poster-btn i {
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  font-size: 1.9em;
}
.poster-item-title{
	font-size: 18px;
	text-align: center;
	line-height: 48px;
	display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    width: 100%;
}

.footer-section {
    /* background-color: #0047a0; */
    color: white;
    padding: 40px 0 20px 0;
    position: relative;
    background-image: url('../images/icoloring-2qf8.png');
    background-size: 100% 100%;
    background-position: center;
    /* z-index: -1; */
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(204, 0, 0, 0.92), rgb(153, 0, 0));
    transition: 0.4s all;
    opacity: 0.9;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    width: 100%;
    z-index: 3;
    position: relative;
    color: #fff;
}

.footer-left,
.footer-middle,
.footer-right {
    flex: 1;
    min-width: 0;
	align-self: center;
}

.footer-left {
    display: flex;
    align-items: center;
}

/* 响应式设计 */
@media (max-width: 767px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-left {
        flex-direction: column;
        margin-bottom: 20px;
    }
    
    .footer-logo img {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .footer-middle {
        width: 100%;
    }
    
    .qrcode-container {
        justify-content: center;
    }
}
.footer-logo{
    margin-bottom: 10px;
}
.footer-logo img {
    max-height: 74px;
    margin-right: 20px;
}

.footer-middle h4,
.footer-right h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
    font-weight: 600;
}

.footer-middle p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-middle p i {
    margin-right: 5px;
    font-size: 15px;
}

.qrcode-item {
    text-align: center;
}

.qrcode-img {
    width: 120px;
    height: 120px;
    border: 2px solid white;
    margin-bottom: 10px;
}

.qrcode-text {
    margin: 0;
    font-size: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 15px;
}

.footer-bottom > p {
    padding: 0;
    margin: 0;
}

.part1{
    background: url('../images/part1_bg.jpg') no-repeat center center;
    background-size: 100% 100%;
    height: 100%; /* 确保元素有足够的高度显示背景图片 */
    min-height: 300px; /* 设置最小高度，避免内容不足时背景图片不可见 */
}

/* 学院链接样式 */
.college-links {
    padding: 0;
}

.college-link {
    display: block;
    padding: 5px 0;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-size: 0.9em;
}

.college-link:hover {
    color: #cc0000;
    transform: translateX(5px);
}

/* 友情链接样式 */
.friendship-links h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
    font-weight: 600;
}

.friendship-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.friendship-links li {
    margin-bottom: 10px;
}

.friendship-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.friendship-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.part2{
    background: url('../images/part1_bg.jpg') no-repeat center center;
    background-size: 100% 100%;
    height: 100%; /* 确保元素有足够的高度显示背景图片 */
    min-height: 300px; /* 设置最小高度，避免内容不足时背景图片不可见 */
    z-index: -3;
}

/* 右侧招生类型导航样式 */
.admission-type-section {
    border-radius: 8px;
    padding: 20px;
    border: #cc0000 1px solid;
    margin-top: 30px;
}

.admission-type-box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}

.admission-type-item {
    flex: 0 0 calc(50% - 7.5px);
    padding: 15px;
    transition: all 0.3s ease;
}

.admission-type-item:hover {
    transform: translateY(-5px);
}

.admission-type-item .icon-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.admission-type-item .icon-wrapper i {
    font-size: 34px;
    color: #cc0000;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.admission-type-item .icon-wrapper h5 {
    font-size: 16px;
    color: #333;
    margin: 0;
    text-align: center;
    transition: all 0.3s ease;
}

.admission-type-section hr {
    width: 100%;
    margin: 0;
    border-top: 1px solid #dedede;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .admission-type-item {
        flex: 0 0 calc(50% - 7.5px);
    }
}

@media (max-width: 767px) {
    .admission-type-item {
        margin-bottom: 10px;
    }
    
    .admission-type-item .icon-wrapper i {
        font-size: 36px;
    }
    
    .admission-type-item .icon-wrapper h5 {
        font-size: 16px;
    }
}

/* 学在民大部分样式 */
.learn-at-university {
    background: #fff;
    padding: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 卡片网格布局 */
.learn-at-university .card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    flex: 1;
    min-width: 0;
    margin-right: 15px;
}

.learn-at-university .card-grid .card-item {
    flex: 0 0 calc(50% - 7.5px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    transition: transform 0.3s ease;
    overflow: hidden;
    padding: 50px;
}

.learn-at-university .card-item:hover {
    transform: translateY(-5px);
}

.learn-at-university .card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.learn-at-university .card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* 蓝色遮罩 */
.learn-at-university .blue-mask::before {
    background: linear-gradient(rgba(0, 86, 179, 0.2), rgba(0, 51, 102, 0.4));
    transition: background 0.3s ease;
}

.learn-at-university .blue-mask:hover::before {
    background: linear-gradient(rgba(0, 86, 179, 0.6), rgba(0, 51, 102, 0.8));
}

/* 红色遮罩 */
.learn-at-university .red-mask::before {
    background: linear-gradient(rgba(204, 0, 0, 0.2), rgba(153, 0, 0, 0.4));
    transition: background 0.3s ease;
}

.learn-at-university .red-mask:hover::before {
    background: linear-gradient(rgba(204, 0, 0, 0.6), rgba(153, 0, 0, 0.8));
}

.learn-at-university .card-body {
    text-align: center;
    z-index: 3;
    position: relative;
    color: #fff;
}

.learn-at-university .card-icon {
    font-size: 48px;
    color: #fff;
}

.learn-at-university .card-title {
    font-size: 20px;
    margin: 0;
    color: #fff;
}

/* 政策访谈卡片 */
.learn-at-university .interview-card {
    height: 500px; /* 两个小卡片的高度加上margin */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.learn-at-university .interview-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.learn-at-university .interview-subtitle {
    font-size: 16px;
    margin: 0;
}

/* 查看更多链接 */
.learn-at-university .view-more {
    color: #cc0000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.learn-at-university .view-more:hover {
    color: #990000;
}

/* 响应式设计 */
@media (max-width: 767px) {
    .learn-at-university .interview-card {
        height: 200px;
        margin-top: 15px;
    }
    
    .learn-at-university .interview-title {
        font-size: 18px;
    }
    
    .learn-at-university .interview-subtitle {
        font-size: 14px;
    }
    
    /* 移动端一行显示两个卡片 */
    .learn-at-university .card-grid {
        margin-right: 0;
        gap: 10px;
    }
    
    .learn-at-university .card-grid .card-item {
        flex: 0 0 calc(50% - 5px);
        height: 120px;
    }
    
    .learn-at-university .card-icon {
        font-size: 30px;
        margin-bottom: 10px;
    }
    
    .learn-at-university .card-title {
        font-size: 14px;
    }
}
