/* 全局动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 导航栏样式 */
body {
    max-width: 1920px;
    margin: 0 auto;
}

/* 全局悬停效果 */
* {
    transition: all 0.3s ease;
}

@font-face {
    font-family: Abhaya-Libre-Bold;
    src: url("../fonts/Abhaya-Libre-Bold.woff") format("woff");
}

@font-face {
    font-family: Abhaya-Libre-Medium;
    src: url("../fonts/Abhaya-Libre-Medium.woff") format("woff");
}

@font-face {
    font-family: AbhayaLibre-Regular;
    src: url("../fonts/AbhayaLibre-Regular.woff") format("woff");
}

@font-face {
    font-family: AbhayaLibre-SemiBold;
    src: url("../fonts/AbhayaLibre-SemiBold.woff") format("woff");
}

@font-face {
    font-family: SourceSansPro-Black;
    src: url("../fonts/SourceSansPro-Black.woff") format("woff");
}

@font-face {
    font-family: SourceSansPro-Bold;
    src: url("../fonts/SourceSansPro-Bold.woff") format("woff");
}

@font-face {
    font-family: Sourcesanspro-light;
    src: url("../fonts/Sourcesanspro-light.woff") format("woff");
}

@font-face {
    font-family: SourceSansPro-Regular;
    src: url("../fonts/SourceSansPro-Regular.woff") format("woff");
}

@font-face {
    font-family: SourceSansPro-SemiBold;
    src: url("../fonts/SourceSansPro-SemiBold.woff") format("woff");
}

.navbar {
    position: relative;
    width: 100%;
    animation: fadeIn 1s ease-out;
}

.navbar-container {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    max-height: 40px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    position: relative;
    font-size: 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: SourceSansPro-Bold;

    border-radius: 8px;
}

.nav-link:hover {
    color: #5820BC;
    background-color: rgba(88, 32, 188, 0.1);
    transform: translateY(-2px);
}

/* 当前页面样式 */
.nav-link.active {
    background: linear-gradient(90deg, #5820BC, #C10A43);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #5820BC, #C10A43);
}

/* 导航栏下方灰色横线 */
.navbar-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .navbar-container {
        height: 60px;
        padding: 0 15px;
    }

    .logo img {
        max-height: 30px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-link {
        font-size: 14px;
    }

    .nav-link.active::after {
        bottom: -6px;
        height: 1.5px;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        height: 50px;
    }

    .logo img {
        max-height: 25px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-link {
        font-size: 13px;
    }
}

/* Hero Section 样式 */
.hero-section {
    position: relative;
    width: 100%;
    margin-top: 40px;
}

.hero-container {
    max-width: 1750px;
    float: right;
    display: flex;
    align-items: flex-start;
    position: relative;
}

.hero-content {
    flex: 1;
    padding-left: 20px;
    animation: slideInLeft 1.2s ease-out;
}

.hero-text h1 {
    font-family: 'Abhaya-Libre-Bold';
    font-size: 68px;
    line-height: 1.1;
    margin: 0 0 30px 0;
}

.hero-text h1 span {
    display: block;
    color: #000;
}

.hero-text h1 .hero-text-light {
    color: #595B6C;
}

.hero-description {
    font-family: 'SourceSansPro-Regular';
    font-size: 16px;
    color: #595B6C;
    line-height: 1.5;
    margin: 0 0 40px 0;
}

.hero-button {
    font-family: 'SourceSansPro-Regular';
    font-size: 16px;
    color: #fff;
    background-color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #5820BC, #C10A43);
    transition: all 0.5s ease;
    z-index: -1;
}

.hero-button:hover::before {
    left: 0;
}

.hero-button:hover {
    background-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
    animation: slideInRight 1.2s ease-out;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.hero-badge {
    position: absolute;
    bottom: 40px;
    left: -120px;
    background-color: rgba(221, 221, 221, 0.8);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: #fff;
    max-width: 200px;
}

.badge-title {
    font-family: 'SourceSansPro-Regular';
    font-size: 22px;
    color: #000;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.badge-text {
    font-family: 'SourceSansPro-Regular';
    font-size: 18px;
    color: #383838;
    display: block;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 56px;
    }

    .hero-badge {
        left: -100px;
        padding: 15px;
    }
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-content {
        padding-left: 0;
        margin-bottom: 40px;
    }

    .hero-image {
        justify-content: center;
    }

    .hero-badge {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 48px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-button {
        padding: 12px 24px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero-badge {
        padding: 12px;
        max-width: 180px;
    }

    .badge-title {
        font-size: 13px;
    }

    .badge-text {
        font-size: 14px;
    }
}

/* Our Story 模块样式 */
.our-story {
    background-color: #F9F8FB;
    padding: 80px 0;
}

.our-story-container {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.our-story-title {
    font-family: 'Abhaya-Libre-Bold';
    font-size: 48px;
    color: #000;
    margin: 0 0 60px 0;
}

.story-content {
    position: relative;
    margin-bottom: 60px;
}

.story-slider {
    overflow: hidden;
    margin-bottom: 40px;
}

.story-items {
    display: flex;
    gap: 40px;
    transition: transform 0.3s ease;
    justify-content: space-between;
}

.story-item {
    flex: 0 0 30%;
    min-width: 30%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 1s ease-out;
    animation-fill-mode: both;
}

.story-item:nth-child(1) {
    animation-delay: 0.2s;
}

.story-item:nth-child(2) {
    animation-delay: 0.4s;
}

.story-item:nth-child(3) {
    animation-delay: 0.6s;
}

.story-image {
    max-width: 92%;
    text-align: left;
    border-radius: 12px;
    margin-bottom: 160px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.story-image:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.story-image img {
    transition: all 0.3s ease;
}

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


.story-item:nth-child(2) .story-image{

    margin-bottom: 0;
}
.story-item:nth-child(2) .story-text{
    height: 420px;
    padding-top: 180px;
    box-sizing: border-box;
}


.story-image img {
    max-width: 100%;
    height: auto;
    background: #fff;
    border-radius: 8px;
    padding: 8px;
    box-sizing: border-box;
}

.story-text {
    max-width: 92%;
}

.story-text p {
    font-family: 'SourceSansPro-Regular';
    font-size: 18px;
    color: #333;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

/* 横线和圆点样式 */
.story-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #5820BC;
    transform: translateY(-50%);
    z-index: 1;
}

.story-dots {
    position: relative;
    display: flex;
    justify-content: space-between;
    max-width: 80%;
    margin: 0 auto;
    z-index: 2;
    transform: translateY(-50%);
}

.story-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(90deg, #5820BC, #C10A43);
    position: relative;
    top: 0;

    border: 2px solid #fff;
    box-shadow: 0 0 0 2px rgba(88, 32, 188, 1);
}

/* 箭头样式 */
.arrow-container {
    margin: 40px 0;
    text-align: center;
}

.arrow-image {
    max-width: 40px;
    height: auto;
}

/* 结论文字样式 */
.story-conclusion {
    margin-top: 20px;
}

.story-conclusion p {
    font-family: 'SourceSansPro-Regular';
    font-size: 18px;
    color: #333;
    margin: 0;
}

.case-module {
    display: none;
    margin-bottom: 60px;
}

.case-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.case-image {
    margin-bottom: 20px;
    max-width: 100%;
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.case-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.case-text {
    max-width: 100%;
    text-align: left;
}

.case-text p {
    font-family: 'SourceSansPro-Regular';
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 1280px) {
    .story-content {
        display: none;
    }
    
    .arrow-container {
        display: none;
    }
    
    .story-conclusion {
        display: none;
    }
    
    .case-module {
        display: block;
    }
}

@media (max-width: 1200px) {
    .story-item {
        flex: 0 0 35%;
        min-width: 35%;
    }
}

@media (max-width: 992px) {
    .our-story {
        padding: 60px 0;
    }

    .our-story-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .story-items {
        gap: 30px;
    }

    .story-item {
        flex: 0 0 45%;
        min-width: 45%;
    }

    .story-text p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .our-story {
        padding: 40px 0;
    }

    .our-story-title {
        font-size: 28px;
    }

    .story-items {
        gap: 20px;
    }

    .story-item {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .story-image {
        margin-bottom: 15px;
    }

    .story-text p {
        font-size: 14px;
    }

    .story-conclusion p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .our-story {
        padding: 30px 0;
    }

    .our-story-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .story-content {
        margin-bottom: 40px;
    }

    .arrow-image {
        max-width: 30px;
    }

    .story-conclusion p {
        font-size: 15px;
    }
}

/* Our Solutions 模块样式 */
.our-solutions {
    position: relative;
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden;
        background-image: url('../img/wang.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
}



.solutions-container {
    position: relative;
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    z-index: 2;
}

.solutions-title {
    font-family: 'Abhaya-Libre-Bold';
    font-size: 36px;
    color: #000;
    margin: 0 0 30px 0;
}

.solutions-description {
    font-family: 'SourceSansPro-Regular';
    font-size: 16px;
    color: #595B6C;
    line-height: 1.5;
    margin: 0 0 60px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    text-align: left;
}

.solution-item {
    position: relative;
    border-radius: 16px;
    padding: 40px;
    min-height: 400px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    animation: scaleIn 1s ease-out;
    animation-fill-mode: both;
    transition: all 0.3s ease;
    cursor: pointer;
}

.solution-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.solution-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.solution-item:hover::before {
    opacity: 1;
}

.solution-content {
    position: relative;
    z-index: 2;
}

.solution-item:nth-child(1) {
    animation-delay: 0.2s;
}

.solution-item:nth-child(2) {
    animation-delay: 0.4s;
}

.solution-item:nth-child(3) {
    animation-delay: 0.6s;
}

.solution-item:nth-child(4) {
    animation-delay: 0.8s;
}

.solution-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.9;
    z-index: 1;
}

.item-1::before {
    background-image: url('../img/img5.png');
}

.item-2::before {
    background-image: url('../img/img6.png');
}

.item-3::before {
    background-image: url('../img/img7.png');
}

.item-4::before {
    background-image: url('../img/img8.png');
}

.solution-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    color: #fff;
}

.solution-title {
    font-family: 'Abhaya-Libre-Bold';
    font-size: 24px;
    margin: 0;
    line-height: 1.2;
}

.solution-text {
    font-family: 'SourceSansPro-Regular';
    font-size: 16px;
    line-height: 1.5;
}

.solution-text p {
    margin: 0 0 20px 0;
}

.solution-text p:last-child {
    margin-bottom: 0;
}

/* 响应式设计 */
@media (max-width: 1280px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .our-solutions {
        padding: 60px 0;
    }

    .solutions-title {
        font-size: 28px;
    }

    .solutions-description {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
                padding: 0 12px;
        box-sizing: border-box;
    }

    .solution-item {
        padding: 30px;
        min-height: 350px;
    }

    .solution-title {
        font-size: 18px;
    }

    .solution-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .our-solutions {
        padding: 40px 0;
    }

    .solutions-title {
        font-size: 24px;
    }

    .solution-item {
        padding: 20px;
        min-height: 300px;
    }
}

/* Aether News 模块样式 */
.aether-news {
    padding: 80px 0;
       background-color: #F9F8FB;
}

.news-container {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-title {
    font-family: 'Abhaya-Libre-Bold';
    font-size: 36px;
    color: #000;
    text-align: center;
    margin: 0 0 60px 0;
}

.news-content {
    display: flex;
    gap: 40px;
}

.news-list {
    flex: 1;
}

.news-item {
    border-bottom: 1px solid #E0E0E0;
    padding: 30px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out;
    animation-fill-mode: both;
    border-radius: 8px;
    padding-left: 20px;
    padding-right: 20px;
}

.news-item:hover {
    background-color: rgba(88, 32, 188, 0.05);
    transform: translateX(10px);
}

.news-item:hover .news-item-title {
    color: #5820BC;
}

/* .news-item:hover .news-arrow {
    transform: translateX(5px);
} */

.news-item:nth-child(1) {
    animation-delay: 0.2s;
}

.news-item:nth-child(2) {
    animation-delay: 0.4s;
}

.news-item:nth-child(3) {
    animation-delay: 0.6s;
}

.news-item:nth-child(4) {
    animation-delay: 0.8s;
}

.news-item:first-child {
    padding-top: 0;
}

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

.news-item.active .news-item-title {
    color: #000;
    font-weight: bold;
}
.news-item.active .news-footer{
    display: flex;
}
.news-item.active .news-arrow1{
    display: none;
}
.news-arrow1{
    margin-right: 10px;
}
.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.news-item-title {
    font-family: 'SourceSansPro-Regular';
    font-size: 22px;
    color: #595B6C;
    margin: 0;
    transition: color 0.3s ease;
}

.news-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.news-description {
    max-height: 48px;
    overflow: hidden;
    margin-bottom: 20px;
}

.news-item:not(.active) .news-description {
    display: none;
}

.news-description p {
    font-family: 'SourceSansPro-Regular';
    font-size: 16px;
    color: #595B6C;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: none;
}

.news-date {
    font-family: 'SourceSansPro-Regular';
    font-size: 12px;
    color: #595B6C;
}

.news-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .news-content {
        flex-direction: column;
    }

 
}

@media (max-width: 768px) {
    .aether-news {
        padding: 60px 0;
    }

    .news-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .news-item {
        padding: 20px 0;
    }

    .news-item-title {
        font-size: 18px;
    }

    .news-description p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .aether-news {
        padding: 40px 0;
    }

    .news-title {
        font-size: 24px;
    }
}

/* Honors Section 模块样式 */
.honors-section {
    position: relative;
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden;
    background-image: url('../img/wang2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


.honors-container {
    position: relative;
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.honors-content {
    max-width: 1200px;
    /* margin: 0 auto; */
}

.honors-part {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.honors-part:last-child {
    margin-bottom: 0;
}

.honors-text {
    flex: 1;
    text-align: left;
}

.honors-text h2 {
   font-family: 'AbhayaLibre-Regular';
   font-weight: bold;
    font-size: 62px;
    color: #000;
    margin: 0 0 10px 0;
}

.honors-text p {
    font-family: 'AbhayaLibre-Regular';
    font-size: 32px;
    line-height: 1.5;
    color: #595B6C;
    margin: 0;
}

.honors-modules {
    flex: 1;
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.honors-module {
    padding: 40px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    animation: scaleIn 1s ease-out;
    animation-fill-mode: both;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.honors-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.honors-module:hover::before {
    left: 100%;
}

.honors-module:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.honors-part:nth-child(1) .honors-module:nth-child(1) {
    animation-delay: 0.2s;
}

.honors-part:nth-child(1) .honors-module:nth-child(2) {
    animation-delay: 0.4s;
}

.honors-part:nth-child(2) .honors-module:nth-child(1) {
    animation-delay: 0.6s;
}

.honors-part:nth-child(2) .honors-module:nth-child(2) {
    animation-delay: 0.8s;
}

.purple-gradient {
    background: linear-gradient(to bottom, #5820BC, #C10A43);
    color: #fff;
}

.gray-gradient {
    background: linear-gradient(to bottom, rgba(216, 216, 216, 0), rgba(216, 216, 216, 0.8));
    color: #000;
}

.honors-module-header {
    margin-bottom: 30px;
}

.honors-number {
    display: block;
    font-family: 'Abhaya-Libre-Bold';
    font-size: 62px;
    line-height: 1;
    margin-bottom: 10px;
}

.honors-label {
    display: block;
    font-family: 'SourceSansPro-Regular';
    font-size: 20px;
}

.honors-module-content p {
    font-family: 'SourceSansPro-Regular';
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .honors-part {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .honors-modules {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .honors-section {
        padding: 60px 0;
    }

    .honors-text h2 {
        font-size: 28px;
    }

    .honors-text p {
        font-size: 16px;
    }

    .honors-modules {
        flex-direction: column;
        gap: 20px;
    }

    .honors-module {
        flex: 1;
        min-height: 180px;
        padding: 30px;
    }

    .honors-number {
        font-size: 36px;
    }

    .honors-label {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .honors-section {
        padding: 40px 0;
    }

    .honors-part {
        margin-bottom: 60px;
        padding: 0 12px;
    box-sizing: border-box;
    }

    .honors-text h2 {
        font-size: 24px;
    }

    .honors-text p {
        font-size: 16px;
    }

    .honors-module {
        padding: 20px;
        min-height: 150px;
    }

    .honors-number {
        font-size: 28px;
    }

    .honors-label {
        font-size: 14px;
    }
}

/* Partners Section 模块样式 */
.partners-section {
    background-color: #F9F8FB;
    padding: 80px 0;
}

.partners-container {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.partners-title {
    font-family: 'Abhaya-Libre-Bold';
    font-size: 32px;
    color: #000;
    margin: 0 0 20px 0;
}

.partners-description {
    font-family: 'SourceSansPro-Regular';
    font-size: 16px;
    color: #595B6C;
    margin: 0 0 60px 0;
}

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1s ease-out;
    animation-fill-mode: both;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.partner-logo:nth-child(1) {
    animation-delay: 0.1s;
}

.partner-logo:nth-child(2) {
    animation-delay: 0.2s;
}

.partner-logo:nth-child(3) {
    animation-delay: 0.3s;
}

.partner-logo:nth-child(4) {
    animation-delay: 0.4s;
}

.partner-logo:nth-child(5) {
    animation-delay: 0.5s;
}

.partner-logo img {
    max-width: 180px;
    height: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: rgba(88, 32, 188, 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.partner-logo img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .partners-section {
        padding: 60px 0;
    }

    .partners-title {
        font-size: 28px;
    }

    .partners-description {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .partners-logos {
        gap: 40px;
    }

    .partner-logo img {
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .partners-section {
        padding: 40px 0;
    }

    .partners-title {
        font-size: 24px;
    }

    .partners-logos {
        gap: 20px;
    }

    .partner-logo img {
        max-width: 80px;
    }
}

/* Footer Section 模块样式 */
.footer-section {
    background-color: #fff;
    padding: 80px 0 40px;
    border-top: 1px solid #E0E0E0;
}

.footer-container {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-left {
    animation: fadeIn 1s ease-out;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-tagline {
    font-family: 'SourceSansPro-Regular';
    font-size: 16px;
    color: #595B6C;
    line-height: 1.5;
    margin: 0 0 40px 0;
}

.footer-subscribe {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-family: 'SourceSansPro-Regular';
    font-size: 14px;
    color: #333;
}

.footer-input::placeholder {
    color: #999;
}

.footer-button {
    padding: 12px 30px;
    background: linear-gradient(to right, #5820BC, #C10A43);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'SourceSansPro-Regular';
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-position 0.3s ease;
    background-size: 200% 100%;
    background-position: left;
}

.footer-button:hover {
    background-position: right;
}

.footer-note {
    font-family: 'SourceSansPro-Regular';
    font-size: 16px;
    color: #595B6C;
    margin: 0;
}

.footer-right {
   
    display: flex;
    gap: 60px;
}



.footer-column-title {
    font-family: 'Abhaya-Libre-Bold';
    font-size: 22px;
    color: #000;
    margin: 0 0 20px 0;
    font-weight: bold;
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    font-family: 'SourceSansPro-Regular';
    font-size: 16px;
    color: #595B6C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #000;
}

.footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social li {
    margin-bottom: 15px;
}

.footer-social a {
    font-family: 'SourceSansPro-Regular';
    font-size: 16px;
    color: #595B6C;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #000;
}

.social-icon {
    font-size: 16px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #E0E0E0;
}

.footer-bottom-container {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-copyright {
    font-family: 'SourceSansPro-Regular';
    font-size: 16px;
    color: #595B6C;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-right {
        gap: 40px;
        animation: fadeIn 1s ease-out;
        animation-delay: 0.3s;
        animation-fill-mode: both;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 60px 0 30px;
    }

    .footer-logo img {
        max-width: 120px;
    }

    .footer-tagline {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .footer-subscribe {
        flex-direction: column;
    }

    .footer-button {
        align-self: flex-start;
    }

    .footer-right {
        /*flex-direction: column;*/
        gap: 30px;
        display: flex;
        justify-content: space-between;
            padding: 0 12px;
    box-sizing: border-box;
    }
.footer-left {
       
            padding: 0 12px;
    box-sizing: border-box;
    }
    .footer-bottom {
        margin-top: 40px;
        padding-top: 30px;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 40px 0 20px;
    }

    .footer-logo img {
        max-width: 100px;
    }

    .footer-input {
        padding: 10px 15px;
    }

    .footer-button {
        padding: 10px 20px;
    }

    .footer-bottom {
        margin-top: 30px;
        padding-top: 20px;
    }

    .footer-copyright {
        font-size: 10px;
    }
}

/* Banner Section 模块样式 */
.banner-section {
    position: relative;
    height: 400px;
    background-image: url('../img/img10.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 100px;
    animation: fadeIn 1.5s ease-out;
}

.banner-content {
    /* text-align: right; */
    animation: slideInRight 1.2s ease-out;
}

.banner-container {
    width: 100%;
    max-width: 1580px;
    margin: 0 auto;
   
}


.banner-title {
    font-family: 'Abhaya-Libre-Bold';
    font-size: 64px;
    color: #000;
    margin: 0;
    font-weight: bold;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .banner-section {
        height: 300px;
        padding: 0 60px;
    }

    .banner-title {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .banner-section {
        height: 200px;
        padding: 0 30px;
    }

    .banner-title {
        font-size: 32px;
    }
}

/* Blog Posts Section 模块样式 */
.blog-posts-section {
    padding: 80px 0;
    background-color: #fff;
}

.blog-posts-container {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-post-item {
    display: flex;
    gap: 30px;
    padding: 40px 20px;
    border-bottom: 1px solid #E0E0E0;
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out;
    animation-fill-mode: both;
    border-radius: 12px;
}

.blog-post-item:nth-child(1) {
    animation-delay: 0.2s;
}

.blog-post-item:nth-child(2) {
    animation-delay: 0.4s;
}

.blog-post-item:nth-child(3) {
    animation-delay: 0.6s;
}

.blog-post-item:nth-child(4) {
    animation-delay: 0.8s;
}

.blog-post-item:hover {
    transform: translateY(-5px) scale(1.02);
    background-color: rgba(88, 32, 188, 0.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.blog-post-item:hover .post-title {
    color: #5820BC;
    transform: translateX(5px);
}

.blog-post-item:hover .post-readmore {
    transform: translateX(5px);
}

.blog-post-item:hover .post-readmore span {
    color: #5820BC;
}

.post-image {
    overflow: hidden;
    border-radius: 12px;
}

.post-image img {
    transition: all 0.3s ease;
}

.blog-post-item:hover .post-image img {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-post-item:last-child {
    border-bottom: none;
}

.post-date {
    flex: 0 0 11%;
    font-family: 'SourceSansPro-Regular';
    font-size: 16px;
    color: #595B6C;
    display: flex;
    align-items: flex-start;
}

.post-image {
    flex: 0 0 23%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.post-content {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.post-title {
    font-family: 'Abhaya-Libre-Bold';
    font-size: 24px;
    color: #000;
    margin: 0 0 15px 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.post-description {
    font-family: 'SourceSansPro-Regular';
    font-size: 16px;
    color: #595B6C;
    line-height: 1.5;
    margin: 0 0 30px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-readmore {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.post-readmore span {
    font-family: 'SourceSansPro-Regular';
    font-size: 16px;
    color: #595B6C;
    transition: color 0.3s ease;
}

.post-readmore .post-arrow {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

/* Hover 效果 */
.blog-post-item:hover .post-title {
    color: #4B1AA2;
}

.blog-post-item:hover .post-readmore .post-arrow {
    content: url('../img/y2-jian.png');
}

/* 响应式设计 */
@media (max-width: 992px) {
    .blog-posts-section {
        padding: 60px 0;
    }

    .blog-post-item {
        padding: 30px 0;
        gap: 20px;
    }

    .post-date {
        flex: 0 0 20%;
    }

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

    .post-content {
        flex: 0 0 45%;
    }
}

@media (max-width: 768px) {
    .blog-posts-section {
        padding: 40px 0;
    }

    .blog-post-item {
        flex-direction: column;
        padding: 30px 0;
        gap: 15px;
    }

    .post-date {
        flex: 1;
    }

    .post-image {
        flex: 1;
    }

    .post-content {
        flex: 1;
    }

    .post-title {
        font-size: 16px;
    }

    .post-description {
        font-size: 13px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .blog-posts-section {
        padding: 30px 0;
    }

    .blog-post-item {
        padding: 20px 0;
    }

    .post-date {
        font-size: 14px;
    }

    .post-image img {
        border-radius: 8px;
    }

    .post-title {
        font-size: 14px;
    }

    .post-description {
        font-size: 12px;
    }
}

/* News Detail Module */
.news-detail-section {
    padding: 80px 0;
    background-color: #fff;
}

.news-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-detail-title {
    font-family: 'Abhaya-Libre-Bold';
    font-size: 36px;
    color: #000;
    margin: 0 0 30px 0;
    line-height: 1.2;
    animation: fadeIn 1s ease-out;
}

.news-detail-meta {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E0E0E0;
    animation: fadeIn 1s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.news-detail-date,
.news-detail-views {
    font-family: 'SourceSansPro-Regular';
    font-size: 16px;
    color: #595B6C;
}

.news-detail-content {
    margin-bottom: 60px;
    animation: fadeIn 1s ease-out;
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.news-detail-content p {
    font-family: 'SourceSansPro-Regular';
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.news-detail-content p:last-child {
    margin-bottom: 0;
}

.news-detail-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: fadeIn 1s ease-out;
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

.news-detail-prev,
.news-detail-next {
    font-family: 'SourceSansPro-Regular';
    font-size: 16px;
    color: #000;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #E0E0E0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.news-detail-prev::before,
.news-detail-next::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #5820BC, #C10A43);
    transition: all 0.5s ease;
    z-index: -1;
}

.news-detail-prev:hover::before,
.news-detail-next:hover::before {
    left: 0;
}

.news-detail-prev:hover,
.news-detail-next:hover {
    background-color: transparent;
    color: #fff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 20px rgba(88, 32, 188, 0.3);
    border-color: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-detail-section {
        padding: 60px 0;
    }

    .news-detail-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .news-detail-meta {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px;
    }

    .news-detail-content {
        margin-bottom: 40px;
    }

    .news-detail-content p {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .news-detail-prev,
    .news-detail-next {
        font-size: 14px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .news-detail-section {
        padding: 40px 0;
    }

    .news-detail-title {
        font-size: 24px;
    }

    .news-detail-content p {
        font-size: 14px;
    }

    .news-detail-nav {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .news-detail-prev,
    .news-detail-next {
        text-align: center;
    }
}