/* PC端样式 */
@media (min-width: 960px) {
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Merriweather', serif;
        /* 使用 Merriweather 字体，后备选择 serif */
        font-size: 1rem;
        /* 设置合适的字号 */
        font-weight: 100;
    }

    h1 {
        font-family: 'Oswald', sans-serif;
        font-size: 48px;
        font-weight: 500;
        text-transform: uppercase;
    }

    .adsContent {
        width: 100%;
        padding: 0 60px;
        font-family: 'Open Sans', sans-serif;
        margin-bottom: 20px;
    }

    .adsIndex {
        /* border: 1px solid #999; */
    }

    .adsContent h3 {
        text-align: center;
    }

    .ads-item {
        font-family: 'Open Sans', sans-serif;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 3px solid #8DBC8C;
    }

    .ads-item img {
        width: 25px;
        height: 27px;
    }

    .article-h1 {
        margin-top: 5px;
        margin-bottom: 10px;
    }

    .navbar {
        padding: 15px 40px;
        background-color: #ffffff;
    }

    .center-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: 'Oswald', sans-serif;
        text-transform: uppercase;
    }

    .header-logo {
        font-size: 40px;
        font-weight: 500;
        color: #000;
        text-decoration: none;
    }

    .nav-links {
        display: flex;
        gap: 30px;
        color: #000;
        font-weight: 500;
        text-decoration: none;
        text-transform: uppercase;
    }

    .nav-links a {
        color: #000000;
        text-decoration: none;
        font-size: 14px;
        position: relative;
        /* 为伪元素定位 */
        transition: color 0.3s ease;
        /* 颜色渐变效果 */
    }

    .nav-links a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        /* 下划线位置，可以根据需要调整 */
        width: 100%;
        height: 2px;
        background-color: #0d9cbf;
        transform: scaleX(0);
        /* 初始状态：隐藏 */
        transform-origin: left;
        /* 从左到右展开 */
        transition: transform 0.3s ease;
        /* 动效平滑过渡 */
        opacity: 0;
    }

    .nav-links a:hover {
        color: #0d9cbf;
        /* 悬停时的颜色 */
    }

    .nav-links a:hover::after {
        transform: scaleX(1);
        /* 悬停时展开下划线 */
        opacity: 1;
        /* 显示下划线 */
    }

    .h1-text {
        text-transform: uppercase;
    }

    .left-section {
        font-size: 14px;
        font-style: italic;
        color: #999;
        width: 300px;
    }

    .right-section {
        display: flex;
        gap: 15px;
        font-size: 18px;
        color: #000;
    }

    .right-section a {
        color: #000;
        text-decoration: none;
    }


    .container {
        display: grid;
        margin: 0 auto;
        grid-template-columns: 1fr 2fr 1fr;
        gap: 20px;
        max-width: 1360px;
        width: 100%;
        padding-top: 10px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .posts {
        display: grid;
        margin: 0 auto;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
        max-width: 1360px;
        width: 100%;
        padding-top: 90px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .side-images {
        display: grid;
        grid-template-rows: 1fr 1fr;
        gap: 20px;
    }

    .side-images .image-box {
        position: relative;
        overflow: hidden;
        transition: transform 0.3s ease;
    }

    .side-images .image-box a {
        color: #000;
        text-decoration: none;
    }


    .side-images .image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .side-images .image-box:hover {
        transform: scale(1.01);
        transition: transform 0.3s ease;

    }

    .overlay-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        text-align: center;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    }

    .main-content {
        position: relative;
    }

    .main-content a {
        color: #000;
        text-decoration: none;
    }

    .main-image {
        overflow: hidden;
        margin-bottom: 10px;
        transition: transform 0.3s ease;
    }

    .main-image:hover {
        transform: scale(1.01);
        transition: transform 0.3s ease;

    }

    .main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .text-content {
        padding: 10px 0;
    }

    .text-content h1 {
        font-size: 38px;
        margin-bottom: 10px;
    }

    .text-content p {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
    }

    .right-list {
        padding-left: 10px;
    }

    .right-list h2 {
        font-size: 14px;
        font-weight: bold;
        color: #666;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .article-item {
        padding-top: 16px;
        padding-bottom: 17px;
        outline: 0;
        position: relative;
        display: block;
        border-bottom: 1px solid #eee;
        transition: transform 0.3s ease;
    }

    .article-item a {
        color: #000;
        text-decoration: none;
    }

    .article-item:hover {
        transform: scale(1.01);
        /* 悬停时放大1.1倍 */
    }

    .article-h1 {
        display: block;
        margin-bottom: -1px;
        font-weight: 400;
        font-size: 24px;
        line-height: 110%;
        text-transform: uppercase;
        color: #1d1d1d;
    }

    .article-item h3 {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .article-item p {
        font-size: 15px;
        color: #888;
    }

    .card {
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .card_h1 {
        margin-top: 20px;
        margin-bottom: 4px;
        font-size: 24px;
    }

    .card a {
        color: #000;
        text-decoration: none;
    }

    .card img {
        width: 100%;
        height: 231px;
        object-fit: cover;
        object-position: center;
    }

    .card img:hover {
        transform: scale(1.01);
        transition: transform 0.3s ease;
    }

    .card h2 {
        font-size: 18px;
        font-weight: bold;
        margin: 26px 0 10px;
    }

    .card p {
        font-size: 14px;
        color: #666;
    }

    /*  */
    .section-title {
        font-size: 56px;
        margin: 90px 0 20px;
        color: #eee;
        position: relative;
        text-transform: uppercase;
    }

    .section-title::after {
        content: "";
        display: block;
        width: 60px;
        height: 2px;
        background-color: #eee;
        margin: 10px auto;
    }

    .guide-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin: 0 auto;
        max-width: 1360px;
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
        margin-bottom: 30px;
    }

    .city-card {
        position: relative;
        overflow: hidden;
        width: 302px;
        height: 425px;
        transition: transform 0.3s ease, opacity 0.5s ease;
    }

    .city-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 0.3s ease;
    }

    .city-card:hover {
        transform: scale(1.01);
        opacity: 0.9;
    }

    .city-card a {
        color: #000;
        text-decoration: none;
    }

    .city-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center; /* 垂直居中 */
        justify-content: center; /* 水平居中 */
        color: #fff;
        font-size: 20px;
        font-weight: bold;
        overflow: hidden; /* 防止内容溢出 */
    }

    .city-name {
        padding-bottom: 2px;
        text-transform: uppercase;
        text-align: center; /* 确保文字在行内居中 */
        white-space: nowrap; /* 不换行 */
        overflow: hidden; /* 隐藏溢出部分 */
        text-overflow: ellipsis; /* 添加省略号表示溢出部分 */
        max-width: 90%; /* 限制最大宽度，避免占满整个容器 */
    }



    .cardBox {
        width: 20%;
        text-align: center;
        margin: auto;
        padding-bottom: 42px;
    }

    .more-guides-button {
        display: inline-block;
        font-size: 16px;
        font-weight: bold;
        color: #000;
        text-decoration: none;
        padding: 10px 20px;
        border-radius: 4px;
        transition: color 0.3s ease, box-shadow 0.3s ease;
    }

    .more-guides-button::after {
        content: "→";
        margin-left: 5px;
        transition: transform 0.3s ease;
    }

    .more-guides-button:hover {
        color: #00AEEF;
        /* 蓝色 */
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    }

    .more-guides-button:hover::after {
        transform: translateX(3px);
        /* 箭头稍微向右移动 */
    }

    .layout-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        max-width: 1360px;
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
        margin: 0 auto;
        align-items: center;
        padding-bottom: 50px;
    }

    .layout-grid a {
        color: #000;
        text-decoration: none;
    }

    .content-block h1 {
        font-size: 36px;
        line-height: 1.2;
        margin-top: 26px;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .content-block p {
        font-size: 16px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .image-wrapper:hover img {
        transform: scale(1.01);
        transition: transform 0.3s ease;
    }

    .content-block a:hover {
        color: #00AEEF;
    }

    .cta-link {
        font-size: 14px;
        font-weight: bold;
        text-transform: uppercase;
        color: #000;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
    }

    .cta-link::after {
        content: "→";
        margin-left: 8px;
        transition: transform 0.3s;
    }

    .cta-link:hover::after {
        transform: translateX(4px);
    }

    .image-wrapper img {
        width: 100%;
        height: 520px;
        transition: transform 0.3s ease;
        object-fit: cover;
        object-position: center;
    }


    .latest-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        max-width: 1360px;
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
        margin: 0 auto;
        align-items: center;
        padding-bottom: 50px;
    }

    .latest-container a {
        color: #000;
        text-decoration: none;
    }

    .image-container {
        overflow: hidden;
    }

    .image-container:hover img {
        transform: scale(1.01);
        transition: transform 0.3s ease;
    }

    .image-container img {
        width: 100%;
        height: 520px;
        transition: transform 0.3s ease;
        object-fit: cover;
        object-position: center;
    }

    .text-content h1 {
        font-size: 36px;
        margin-bottom: 20px;
        line-height: 1.2;
        text-transform: uppercase;
    }

    .text-content a {
        display: inline-block;
        font-size: 14px;
        font-weight: bold;
        text-transform: uppercase;
        color: #000;
        text-decoration: none;
        margin-top: 10px;
        transition: color 0.3s ease;
    }

    .text-content a:hover {
        color: #0073e6;
        /* 悬停时改变链接颜色 */
    }

    .text-content a::after {
        content: "→";
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .text-content a:hover::after {
        transform: translateX(4px);
        /* 悬停时箭头向右移动 */
    }

    .content-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        max-width: 1360px;
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
        margin: 0 auto;
        align-items: center;
        padding-bottom: 50px;
    }

    .content-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .content-item a {
        color: #000;
        text-decoration: none;
    }

    .content-item img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        object-position: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .content-item img:hover {
        transform: scale(1.01);
        transition: transform 0.3s ease;
        /* 图片悬停放大效果 */
    }

    .content_h1 {
        font-size: 30px;
        text-transform: uppercase;
        line-height: 1.2;
        margin-top: 26px;
        margin-bottom: 12px;
    }

    .content-item h3 {
        font-size: 18px;
        font-weight: bold;
        margin-top: 26px;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .content-item p {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        max-width: 90%;
        margin: 0 auto;
    }


    .grid-container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
        max-width: 1360px;
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
        margin: 0 auto;
        align-items: center;
        padding-bottom: 50px;
    }

    .grid-item {
        width: 413px;
        /* 固定宽度 */
        height: 415px;
        /* 固定高度 */
        text-align: center;
        overflow: hidden;
        /* 隐藏超出部分 */
    }

    .grid-item a {
        color: #000;
        text-decoration: none;
    }

    .grid-image {
        width: 413px;
        height: 227px;
        object-fit: cover;
        object-position: center;
    }

    .grid-image:hover {
        transform: scale(1.01);
        transition: transform 0.3s ease;
        /* 图片悬停放大效果 */
    }

    .grid-title {
        font-size: 30px;
        margin-top: 15px;
        text-transform: uppercase;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .grid-description {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        max-width: 90%;
        margin: 0 auto;
    }

    .button_box {
        display: flex;
        justify-content: center;
        /* 水平居中 */
        margin: 0 auto;
        margin-bottom: 90px;
    }

    .button {
        font-family: 'Oswald', sans-serif;
        display: inline-block;
        padding: 10px 20px;
        font-size: 14px;
        font-weight: bold;
        color: #ffffff;
        background-color: #000000;
        /* 默认黑色背景 */
        text-transform: uppercase;
        text-decoration: none;
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }

    .button:hover {
        background-color: #00AEEF;
        /* 悬停时蓝色背景 */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        /* 悬停时阴影效果 */
    }

    .footer {
        align-items: center;
        width: 100%;
        padding: 36px;
        background-color: #222;
    }

    .footer_box {
        font-family: 'Oswald', sans-serif;
        display: flex;
        justify-content: space-between;
        margin: 0 auto;
        max-width: 1360px;
        width: 100%;
        padding-top: 10px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .footer .copyright {
        font-size: 18px;
        color: white;
    }

    .footer .links {
        display: flex;
        gap: 20px;
    }

    .footer .links a {
        color: #ccc;
        text-decoration: none;
        font-size: 14px;
        text-transform: uppercase;
        transition: color 0.3s ease;
    }

    .footer .links a:hover {
        color: #fff;
    }


}

/* 移动端样式 */
@media (max-width: 960px) {
    a {
        text-decoration: none;
    }

    body {
        font-family: 'Georgia', serif;
        /* 使用 Merriweather 字体，后备选择 serif */
        font-size: 1rem;
        /* 设置合适的字号 */
        font-weight: 100;
        width: 100vw;
        height: 100vh;
    }

    .adsContent {
        width: 100%;
        padding: 0 18px;
        font-family: 'Open Sans', sans-serif;
    }

    .adsIndex{
        border: 1px solid #999;
    }

    .adsContent h3{
        text-align: center;
    }

    .ads-item {
        font-family: 'Open Sans', sans-serif;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 3px solid #8DBC8C;
    }
    .ads-item img{
        width: 25px;
        height: 27px;
    }

    .article-h1{
        margin-top: 5px;
        margin-bottom: 10px;
    }

    h1 {
        font-family: 'Oswald', sans-serif;
        font-size: 22px;
        font-weight: 500;
        color: #000;
        text-transform: uppercase;
    }

    .nav-links {
        text-transform: uppercase;
        display: none;
        /* 隐藏导航链接 */
    }

    .right-section {
        font-size: 24px;
        gap: 10px;
    }

    .container {
        display: grid;
        grid-template-areas:
            "main-content"
            "right-list"
            "side-images";
        margin-top: 10px;
        padding: 0 18px;
    }

    .main-image img {
        height: auto;
    }

    .side-images {
        padding-top: 26px;
        grid-area: side-images;
        /* grid-template-columns: 1fr 1fr;
        display: grid;
        grid-template-rows: 1fr 1fr;
        gap: 12px; */
        display: flex;
        justify-content: space-between;
    }

    .right-list {
        grid-area: right-list;
    }

    .right-list h2 {
        display: none;
    }

    .guide-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 24px;
    }

    .image-wrapper {
        grid-row: 1;
        /* 定义 .image-wrapper 在第一行 */
        padding-top: 40px;
        margin-bottom: 12px;
    }

    .content-block {
        grid-row: 2;
        /* 定义 .content-block 在第二行 */
    }

    .content-block h1 {
        font-size: 22px;
        text-transform: uppercase;
    }

    .button_box {
        text-align: center;
        margin: 0 auto;
        padding-bottom: 60px;
        padding-top: 40px;
    }

    .content-block p {
        font-size: 14px;
    }

    .grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .grid-item {
        margin-top: 40px;
        text-align: left;
    }

    .grid-title {
        font-size: 16px;
    }

    .grid-description {
        font-size: 14px;
    }

    .footer {
        flex-direction: column;
        text-align: center;
    }

    .footer .links {
        margin-top: 10px;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .navbar {
        width: 100%;
        height: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        font-family: 'Oswald', sans-serif;
    }

    .header-logo {
        font-size: 20px;
        font-weight: 500;
        color: #000;
        text-decoration: none;
        margin-bottom: 8px;
        /* 调整与导航链接的间距 */
    }

    .center-section {
        display: flex;
        flex-direction: column;
        /* 垂直排列 */
        align-items: center;
        /* 水平居中对齐 */
        text-align: center;
        text-transform: uppercase;
    }

    .center-section a {
        text-decoration: none;
        color: #000;
    }

    .nav-links {
        display: flex;
        gap: 20px;
        font-size: 12px;
        color: #000;
        font-weight: 500;
    }

    .nav-links a:hover {
        color: #0073e6;
    }

    .right-section {
        display: flex;
        gap: 15px;
        font-size: 18px;
        color: #000;
    }

    .right-section a {
        color: #000;
        text-decoration: none;
    }


    .side-images .image-box {
        height: 172px;
        width: 172px;
        position: relative;
        overflow: hidden;
        object-fit: cover;
        object-position: center;
    }

    .side-images .image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    /* .side-images .image-box:hover img {
        transform: scale(1.05);
    } */

    .overlay-text {
        position: absolute;
        text-transform: uppercase;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); /* 水平垂直居中 */
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    }

    .main-content {
        padding-bottom: 12px;
        border-bottom: 1px solid #F2F2F2;
    }

    .main-image {
        overflow: hidden;
        margin-bottom: 12px;
    }

    .main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .text-content {
        text-decoration: none;
    }

    .text-content h1 {
        font-size: 22px;
        margin-bottom: 10px;
        text-decoration: none;
        text-transform: uppercase;
        color: #000;
    }

    .text-content p {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
    }

    .text-content a {
        color: #000;
        text-decoration: none;
    }

    .article-item {
        margin-top: 10px;
        padding-bottom: 15px;
        border-bottom: 1px solid #f2f2f2;
    }

    .article-item h1 {
        font-size: 22px;
        margin-bottom: 5px;
        text-transform: uppercase;
        color: #000;
    }

    .article-item p {
        font-size: 14px;
        color: #888;
    }

    .card {
        background-color: #ffffff;
        padding: 26px 18px 18px 18px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .card img {
        width: 100%;
        height: 195.5px;
        margin-bottom: 12px;
        transition: transform 0.3s ease;
        object-fit: cover;
        object-position: center;
    }

    .card_h1 {
        text-align: left;
        text-transform: uppercase;
    }

    /* .card img:hover {
        transform: scale(1.1);
    } */

    .card h2 {
        font-size: 18px;
        font-weight: bold;
        margin: 20px 0 10px;
    }

    .card p {
        line-height: 1.6;
        font-size: 14px;
        color: #666;
        text-align: left;
    }

    /*  */
    .section-title {
        font-size: 32px;
        font-weight: lighter;
        margin: 40px 0 20px;
        color: #ccc;
        position: relative;
        text-transform: uppercase;
    }

    .section-title::after {
        content: "";
        display: block;
        width: 60px;
        height: 2px;
        background-color: #ccc;
        margin: 10px auto;
    }

    .cardBox {
        margin-top: 10px;
        text-align: center;
    }

    .guide-container {
        display: grid;
        gap: 12px;
        padding: 0 18px;
        margin: 0 auto;
    }

    .city-card {
        position: relative;
        overflow: hidden;
    }

    .city-image {
        width: 100%;
        height: 242px;
        transition: transform 0.3s ease;
        object-fit: cover;
        object-position: center;
    }

    /* .city-card:hover .city-image {
        transform: scale(1.1);
    } */

    .city-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 20px;
        font-weight: bold;
        padding: 0 10px;
    }

    .city-name {
        border-bottom: 2px solid #fff;
        padding-bottom: 2px;
        text-transform: uppercase;
        overflow: hidden;
        /* 确保溢出部分被隐藏 */
        text-overflow: ellipsis;
        /* 使用省略号表示溢出 */
        white-space: nowrap;
        /* 不换行显示 */
        max-width: 90%;
        /* 限制最大宽度，防止溢出 */
    }

    #a,
    #b {
        width: 20%;
        text-align: center;
        margin: auto;
    }

    .more-guides-button {
        display: inline-block;
        font-size: 12px;
        font-weight: bold;
        color: #000;
        text-decoration: none;
        padding: 10px 20px;
        border-radius: 4px;
        transition: color 0.3s ease, box-shadow 0.3s ease;
    }

    .more-guides-button::after {
        content: "→";
        margin-left: 5px;
        transition: transform 0.3s ease;
    }

    .more-guides-button:hover {
        color: #00AEEF;
        /* 蓝色 */
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    }

    .more-guides-button:hover::after {
        transform: translateX(3px);
        /* 箭头稍微向右移动 */
    }

    .layout-grid {
        display: grid;
        margin: auto;
        padding: 0 18px;
        align-items: center;
    }

    .content-block {
        /* max-width: 500px; */
    }

    .content-block p {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    /* .image-wrapper:hover img {
        transform: scale(1.1);
    } */

    .content-block a:hover {
        color: #00AEEF;
    }

    .cta-link {
        font-size: 14px;
        font-weight: bold;
        text-transform: uppercase;
        color: #000;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
    }

    .cta-link::after {
        content: "→";
        margin-left: 8px;
        transition: transform 0.3s;
    }

    .cta-link:hover::after {
        transform: translateX(4px);
    }

    .image-wrapper img {
        width: 100%;
        height: auto;
        transition: transform 0.3s ease;
        /* 平滑过渡 */
    }


    .latest-container {
        margin: auto;
        padding: 0 18px;
        /* text-transform: uppercase; */
    }

    .image-container {
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .image-container img {
        width: 100%;
        height: auto;
        transition: transform 0.3s ease;
    }

    /* .image-container:hover img {
        transform: scale(1.05);
    } */

    .text-content {
        max-width: 500px;
    }

    .text-content h2 {
        font-size: 32px;
        font-weight: bold;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .text-content a {
        display: inline-block;
        font-size: 14px;
        font-weight: bold;
        text-transform: uppercase;
        color: #000;
        text-decoration: none;
        margin-top: 10px;
        transition: color 0.3s ease;
    }

    .text-content a:hover {
        color: #0073e6;
        /* 悬停时改变链接颜色 */
    }

    .text-content a::after {
        content: "→";
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .text-content a:hover::after {
        transform: translateX(4px);
        /* 悬停时箭头向右移动 */
    }

    .content-container {
        margin: auto;
        padding: 0 18px;
    }

    .content-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
    }

    .content-item img {
        width: 100%;
        height: 195.5px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        margin-bottom: 12px;
        object-fit: cover;
        object-position: center;
    }

    /* .content-item img:hover {
        transform: scale(1.05);
    } */

    .content-item h3 {
        font-size: 18px;
        font-weight: bold;
        margin-top: 15px;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .content-item p {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        margin: 0 auto;
    }


    .grid-container {
        padding: 0 18px;
        margin: auto;
    }

    .grid-image {
        width: 100%;
        height: 195.5px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        object-fit: cover;
        object-position: center;
    }

    /* .grid-image:hover {
        transform: scale(1.05);
    } */

    .grid-title {
        font-size: 22px;
        margin-top: 15px;
    }

    .grid-description {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        margin: 0 auto;
    }

    .button {
        display: inline-block;
        padding: 10px 20px;
        font-size: 12px;
        font-weight: bold;
        color: #ffffff;
        background-color: #000000;
        /* 默认黑色背景 */
        text-transform: uppercase;
        text-decoration: none;
    }

    .footer {
        display: flex;
        justify-content: center; /* 水平居中整个 footer_box */
        width: 100%;
        font: 700 13px / 19px "Univers W01", "Helvetica Neue", Helvetica, Arial, sans-serif;
        padding-top: 45px;
        padding-bottom: 60px;
        background-color: #222;
        text-transform: uppercase;
    }
    
    .footer_box {
        display: flex;
        flex-direction: column; /* 垂直排列 */
        align-items: center;    /* 水平居中 */
        gap: 20px;
    }
    
    .footer .links {
        order: 1; /* 将 links 放在第一位 */
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .footer .copyright {
        order: 2; /* 将 copyright 放在第二位 */
        font-size: 14px;
        color: white;
        margin-top: 20px;
    }

    .footer .links a {
        color: #ccc;
        text-decoration: none;
        font-size: 12px;
        text-transform: uppercase;
        transition: color 0.3s ease;
    }

    .footer .links a:hover {
        color: #fff;
    }
}