* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow: auto;
}

.container {
    max-width: 12rem;
    margin: 0 auto;
    /* padding: 0 20px; */
}

/* Swiper轮播图样式 */
.hero-swiper-section {
    position: relative;
    /*height: 60vh;
    min-height: 500px;*/
}
.hero-swiper-section img {
    width: 100%;
}
.hero-swiper-section .hero-text {
    position: absolute;
    bottom: 0.24rem;
    left: 0;
    color: #fff;
    padding: 0 1.2rem;
}
.hero-swiper-section .hero-text h2 {
    font-size: 0.56rem;
}
.hero-swiper-section .hero-text p {
    font-size: 0.18rem;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-slide h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-slide p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* 学校简介区域 */
.about-section {
    padding: 0.8rem 0;
    background: #fff;
}

.about-header {
    margin-bottom: 0.6rem;
}

.about-header .section-top-title {
    font-size: 0.4rem;
    font-weight: bold;
    /* margin-bottom: 0.2rem; */
}

.about-content {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    margin-bottom: 0.32rem;
}

.about-text {
    flex: 0 0 70%;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    font-size: 0.16rem;
    margin-bottom: 0;
}
.about-text p b {
    color: #333;
    margin-bottom: 0.16rem;
    display: inline-block;
}

.about-image {
    flex: 0 0 30%;
}

.about-image img {
    /* width: 100%; */
    height: auto;
    border-radius: 0.08rem;
    box-shadow: 0 0.05rem 0.15rem rgba(0, 0, 0, 0.1);
}

.view-detail-btn {
    display: inline-block;
    padding: 0.12rem 0.4rem;
    border: 0.02rem solid #ddd;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    background: #fff;
}

.view-detail-btn:hover {
    border-color: #003366;
    color: #003366;
    background: #f8f9fa;
    transform: translateY(-0.02rem);
}

/* Swiper导航样式 */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
}

/* Swiper分页器样式 */
.swiper-pagination {
    bottom: 30px;
}

/* Swiper自定义样式 */
.swiper-button-prev,
.swiper-button-next {
    width: 0.6rem;
    height: 0.6rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(0.1rem);
    transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 0.24rem;
    color: #fff;
    font-weight: bold;
}

.swiper-pagination-bullet {
    width: 0.16rem;
    height: 0.16rem;
    background: #fff;
    opacity: 0.6;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: inline-block;
    left: 0 !important;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.2);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    margin-left: 15px;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

/* 功能卡片区域 */
.features {
    /* padding: 80px 0; */
    /* background: #f8f9fa; */
}
.mlxy_features .container{
    max-width: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-title {
    text-align: center;
    font-size: 0.4rem;
    margin-bottom: 50px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    flex-direction: column;

    label {
        font-size: .28rem;
        color: #879099;
    }

    span {
        font-weight: 600;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}
/* 公告通知区域 */
.announcement-section {
    padding:0rem 0  1.3rem 0;
    /* background: url('../img/inbj.jpg') no-repeat center bottom; */
    background-size:100% auto;
    background-position: bottom;
    transform: translateY(0.5rem);
    transition: all 0.8s ease-out;
}

.announcement-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.announcement-container {position: relative;clear: both;display: block;width: 100%;}

.announcement-left {    background: linear-gradient(to right, #06295d, #053a7c, #0450a1);
    padding: 0.56rem 0.72rem;
    border-radius: 0.12rem;
    box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    margin-right: -8%;
    float: left;
    display: block;width:54%;}

.announcement-right {    background: #fff;
    padding: 0.4rem 0.5rem 0.4rem 0rem;
    border-radius: 0.12rem;
    box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    float: left;
    width: 54%;
    padding-left: 12%;
    margin-top: 0.74rem;}

.announcement-header {
    margin-bottom: 0.3rem;
}

.announcement-title {
    color: #fff;
    font-size: 0.4rem;
    font-weight: bold;
    margin-bottom: 0.15rem;
}

.announcement-right .announcement-title {
    color: #003366;
}

.title-line {
    width:0.61rem;
    height: 0.05rem;
    background: #fff;
    border-radius:0.05rem;
}
.about-header.wow.bounceInUp.animated {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-header .title-image {justify-content:flex-start;}

.title-image {
    display: flex;
    justify-content:center;
    background: #fff;
    width: 0.8rem;
    height: 0.08rem;
    border-radius: 0.04rem;
}
.announcement-right .title-line {
    background: #003366;
}

.announcement-list {
    margin-bottom: 0.3rem;
}

.announcement-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:0.15rem 0 0.15rem 0;
    border-bottom: 0.01rem solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.announcement-right .announcement-item {
    border-bottom: 0.01rem solid #e9ecef;
}

.announcement-content {
    flex:0 0 85%;
    display: flex;
    align-items: center;
}

.announcement-text {color: #fff;
    font-size: 0.18rem;
    font-weight: normal;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    transition: all 0.3s ease;
}

.announcement-text a {
    color: inherit;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.announcement-right .announcement-text {
    color: #1d1d1d;
}

.announcement-date {    text-align: center;
    background: transparent;
    border-radius: 0;}

.announcement-right .announcement-date {
    background: transparent;
}

.announcement-item {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.announcement-list .announcement-item:hover{transform:translateX(0.15rem) !important;}

.announcement-text a {
    transition: all 0.3s ease;
    display: block;
}

.date-day {    display: block;
    font-size:0.32rem;
    font-weight: normal;
    color: #fff;
    line-height: 1;}

.announcement-right .date-day {
    color: #1d1d1d;
}

.date-month-year {
    display: block;
    font-size: 0.14rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top:0.1rem;
}

.announcement-right .date-month-year {
    color: #1d1d1d;
}

.announcement-footer {
    text-align: center;
}

.announcement-footer .view-more-btn {    display: inline-block;
    padding: 0.08rem 0.2rem;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    border: 0.01rem solid transparent;
    float: right;}

.announcement-footer .view-more-btn:hover {
    background: #f8f9fa;
    color: #003366;
    border-color: #003366;
    transform: translateY(-0.02rem);
}

.announcement-right .announcement-footer .view-more-btn {
    background: #003366;
    color: #fff;
}

.announcement-right .announcement-footer .view-more-btn:hover {
    background: #002244;
    color: #fff;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .announcement-container {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .announcement-left,
    .announcement-right {
        flex: 1;
        margin-right: 0;    width: 100%;    padding: 0.2rem;
    }
    .announcement-content {
    flex: 0 0 78%;
}
    .announcement-title {
        font-size: 0.15rem;
    }
    
    .announcement-text {
        font-size: 0.09rem;
    }
}
/* 新闻公告区域 */
.news {
    padding: 80px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.news-main {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.news-content {
    padding: 30px;
}

.news-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.news-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.news-excerpt {
    color: #666;
    line-height: 1.6;
}

.news-sidebar {
    /* background: white; */
    border-radius: 15px;
    /* padding: 30px; */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.sidebar-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #2c3e50;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.news-list {
    list-style: none;
}

.news-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.news-list li:last-child {
    border-bottom: none;
}

.news-list a {
    color: #333;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.news-list a:hover {
    color: #667eea;
}

.news-date {
    color: #999;
    font-size: 0.85rem;
    margin-top: 5px;
}

/* 页脚 */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #ecf0f1;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}
.el-row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.el-row[type="flex"] {
    display: flex !important;
}

.el-col {
    padding-left: 12px !important;
    padding-right: 12px !important;
}

/* 防止横向滚动条 */
* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 12rem;
    overflow: hidden;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1e3c72;
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }

    .nav.show {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-slide h1 {
        font-size: 2.5rem;
    }

    .hero-slide p {
        font-size: 1.1rem;
    }

    .hero-swiper-section {
        height: 50vh;
        min-height: 400px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 16px;
    }

    /* .section-title {
                font-size: 2rem;
            } */

    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .container {
        /* padding: 0 15px; */
    }

    .features {
        padding: 50px 0;
    }

    .news {
        padding: 50px 0;
    }

    .hero {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .hero-slide h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-swiper-section {
        height: 45vh;
        min-height: 350px;
    }

    /* .section-title {
                font-size: 1.8rem;
            } */

    .feature-card {
        padding: 30px 20px;
    }

    .news-content {
        padding: 20px;
    }

    .news-sidebar {
        padding: 20px;
    }
}

/* 动画效果 */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 加载动画 */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 新闻区域样式 */
.news-sidebar {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* gap: 16px; */
}

.news-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #fff;
    /* border-radius: 8px; */
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 80px;
    border-bottom: 0.01rem solid #D3D9DF;
}

.news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.news-image {
    width: 100px;
    height: 75px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.news-text {
    flex: 1;
    display: flex;
    align-items: flex-start;
    padding-top: 4px;
}

.news-text h4 {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: #333;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.szdwBoxCont .statistic-card {
    text-align: center;
    font-size: 0.18rem;
}
.jxglList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* gap: 0.12rem; */
    height: 1.88rem;
    overflow: hidden;
    list-style: none;
    /* margin-top: 0.64rem; */
    width: 100%;
    height: 100%;
    /* margin: 0 0.64rem;; */
}
.jxglList  li{
    font-size: 0.18rem;
    position: relative;
}
.jxglList  li:after {
	background:linear-gradient(180deg, rgba(5, 40, 92, 0) 50%, #05285C 100%);
	content: '';
	display: block;
	position: absolute;
	top:0;
	bottom: 0;
	left: 0;
	right: 0;
	
}
.jxglList  li .about-header {
    position: absolute;
    bottom: 0.24rem;
    left: 0rem;
    width: 100%;
    align-items: start!important;
    padding-left: 0.4rem;
    color: #fff;
    z-index: 2;
    margin-bottom: 0;
}
.jxglList  li img{
   width: 100%;
   height:  100%;
}
/* 媒体查询 */
@media screen and (max-width: 1200px) {}

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

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

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