* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", sans-serif;
}

html, body {
    overflow-x: hidden;
}

img, video {
    max-width: 100%;
    height: auto;
}

.text-white {
    color: #FFF !important;
}

textarea::-webkit-input-placeholder { color: #fff; }
textarea::-moz-placeholder { color: #fff; }
textarea:-moz-placeholder { color: #fff; }
textarea::-ms-input-placeholder { color: #fff; }

input {
    background: none;
    border: 0px;
    outline: none;
}

/* 模态框关闭按钮 */
.modal-header .btn-close {
    width: 2rem;
    height: 2rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    background-size: 1.5em;
    padding: 0.5rem;
}
.modal-header .btn-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* 加载动画 */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.loading .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.t1{
	color: #777777;font-size: 12px;
}
/* ======= 顶部导航 ======= */
.top-banner {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
    padding: 0 100px;
    background: linear-gradient(90deg, #FF597D, #FF8E53);
}

.logo-area { display: flex; align-items: center; }
.logo {
    width: 571px;
    height: 50px;
}

.nav-links { display: flex; gap: 20px; }
.link-a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    width: 80px;
    height: 36px;
    border-radius: 30px;
    text-align: center;
    line-height: 36px;
    border: none;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    overflow: hidden;
    outline: 2px solid #FFFFFF;
}
.link-a:hover {
    color: #000;
    transform: scale(1.1);
    outline: 2px solid #FFFFFF;
    box-shadow: 4px 5px 17px -4px #FFFFFF;
}
.link-a::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #FFFFFF;
    transform: skewX(45deg);
    z-index: -1;
    transition: width 500ms;
}
.link-a:hover::before { width: 250%; }

/* ======= 首屏主视觉 ======= */
.header-content {
    position: relative;
    padding-bottom: 2rem;
}
.bg {
    position: absolute;
    left: 0;
    right: 0;
    top: -80px;
    width: 100%;
    height: calc(100% + 80px);
}
.header-mian {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.header-left {
    flex: 6;
    background: rgba(255,255,255,0.5);
    box-shadow: 11px 10px 22px 0px rgba(184,163,123,0.3);
    border-radius: 20px;
    display: flex;
    overflow: hidden;
}
.champion-img {
    height: 700px;
    display: block;
    object-fit: cover;
}
.header-middle {
    flex: 1;
    padding: 18px;
    width: 300px;
}
.header-middle h2 {
    margin-bottom: 10px;
    font-size: 36px;
}
.header-middle p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 5px;
    color: #777777;
}
.header-right {
    background: rgba(255,255,255,0.5);
    box-shadow: 11px 10px 22px 0px rgba(184,163,123,0.3);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    flex: 3;
    position: relative;
	padding-bottom: 0px;
}
.coupon {
    position: absolute;
    right: 0;
    top: 0;
    width: 130px;
    height: 130px;
}
.logoTwo {
    width: 280px;
    margin-top: 22px;
}
.qr-code {
    height: 280px;
    background-color: #FFF;
    margin: 15px auto;
    border-radius: 10px;
}
.promotion-section {
    display: flex;
	flex-direction: column;
	gap: 15px;
	max-width: fit-content;
	margin: 0 auto 10px;
	padding: 0 10px 10px;
}
.promotion-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 5px 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(255,89,125,0.1);
    transition: all 0.3s ease;
}
.promotion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255,89,125,0.15);
}
.promotion-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF597D, #FF8E53);
    border-radius: 50%;
    color: white;
}
.promotion-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    flex: 1;
}
.scan-register-section {
    margin: 5px 0;
    padding: 8px;
    background: linear-gradient(135deg, #FF597D 0%, #FF8E53 100%);
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.scan-register-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
    animation: sparkle 4s linear infinite;
}
@keyframes sparkle {
    0% { transform: translate(0,0) rotate(0deg); }
    100% { transform: translate(20px,20px) rotate(180deg); }
}
.scan-register-hint { position: relative; z-index: 2; }
.scan-register-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* ======= 服务项目 ======= */
.service-section-wrap {
    background: linear-gradient(to right, #E0F2FF 0%, #FFE3DE 100%);
}
.service-section {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px 0;
}
.service-title {
    margin-bottom: 10px;
    font-size: 36px;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 20px;
}
.card {
    width: 100%;
    height: 500px;
    transition: all 0.4s;
    border-radius: 10px;
    font-size: 30px;
    font-weight: 900;
	overflow: hidden;
}
.first-content {
    height: 100%;
    width: 100%;
    transition: all 0.4s;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    border-radius: 15px;
}
.service-item {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.25,0.1,0.25,1), box-shadow 0.5s cubic-bezier(0.25,0.1,0.25,1);
}
.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(184,163,123,0.2);
}
.service-img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.service-desc {
    padding: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #FFF;
    background: linear-gradient(180deg, rgba(13,13,13,0) 0%, #000000 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.service-desc-left h3 {
    font-size: 20px;
    margin-bottom: 6px;
}
.service-desc-left p { font-size: 12px; }
.price { margin-top: 6px; }
.price-one { color: #FD2D39; font-size: 14px; }
.price-two { color: #FD2D39; font-size: 20px; }
.price-three { font-size: 12px; margin-left: 6px; }

/* ======= 保障区域 ======= */
.guarantee-section-warp {
    padding-top: 40px;
    background: linear-gradient(to right, #E0F2FF 0%, #FFE3DE 100%);
}
.guarantee-section {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 20px;
}
.guarantee-section-title {
    margin-bottom: 10px;
    font-size: 36px;
}
.guarantee-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
}
.guarantee-img {
    width: 100%;
    max-width: 1400px;
    object-fit: cover;
}
.guarantee-text {
    padding: 25px 60px;
    width: 100%;
    background: linear-gradient(90deg, #FF597D 0%, #FF7055 100%);
    color: #FFF;
    letter-spacing: 5px;
}

/* ======= 问答与AI ======= */
.question-section-wrap {
    padding-top: 20px;
    /* padding-bottom: 60px; */
    background: linear-gradient(to right, #E0F2FF 0%, #FFE3DE 100%);
}
.question-title {
    margin-bottom: 10px;
    font-size: 36px;
}
.chat-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
}
.chat-messages {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.faq-card {
    border-radius: 0px 20px 20px 20px;
    padding-top: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    color: #FFF;
}
.faq-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220,180,180,0.1);
}
/* .mycontent {
    background: #FFF !important;
    color: #000 !important;
    border-radius: 20px 0px 20px 20px !important;
    margin-left: 100px !important;
    margin-right: 0 !important;
} */
.flex { 
	display: flex;
	background: linear-gradient(90deg, #FF597D 0%, #FF7055 100%);
	border-radius: 10px 10px 0px 0px;
}
.flex-left{
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.chatContainer {
    /* height: 566px; */
    overflow-y: auto;
    padding: 0 30px;
}
.chat-input-area {
    padding: 30px 2rem;
    background: linear-gradient(90deg, #FF597D 0%, #FF7055 100%);
	border-radius: 0px 0px 10px 10px;
}
.gradient-button {
    background: linear-gradient(130deg, #ffedf1, #e86db6);
    color: white;
    transition: all 0.3s ease;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255,122,122,0.2);
    color: #000;
    height: 40px;
    position: absolute;
    right: 20px;
    bottom: 20px;
}
.gradient-button:hover { transform: translateY(-2px); }
.gradient-button:active { transform: translateY(0); }
.chat-input {
    border: 1px solid #f0e6e6;
    border-radius: 5px;
    padding: 0.75rem 150px 0.75rem 1rem;
    outline: none;
    transition: all 0.3s ease;
    flex: 1;
    background: rgba(255,255,255,0.1);
    min-height: 100px;
    color: #FFF;
}
.chat-input:focus {
    border-color: #ff9e9e;
    box-shadow: 0 0 0 3px rgba(255,158,158,0.1);
}

/* ======= 城市列表 ======= */
.city-station-wrap {
    padding: 60px 0 10px;
    margin-top: 0;
}
.city-station-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
.city-station-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1e2a3e;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.city-station-sub {
    text-align: center;
    font-size: 13px;
    color: #a0a4b0;
    letter-spacing: 0.5px;
    margin-bottom: 48px;
    text-transform: uppercase;
    position: relative;
}
.city-station-sub::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #FF597D, #FF8E53);
    margin: 12px auto 0;
    border-radius: 4px;
}
.city-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 10px;
    margin-bottom: 20px;
}
.city-item {
    display: inline-block;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 48px;
    padding: 10px 28px;
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    letter-spacing: 0.5px;
}
.city-item:hover {
    background: linear-gradient(90deg, #FF597D, #FF8E53);
    border-color: #e2b13b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(226,177,59,0.12);
    text-decoration: none;
}

/* ======= 页脚 ======= */
.footer {
    width: 100%;
    background: linear-gradient(90deg, #FF597D 0%, #FF7055 100%);
    padding-bottom: 10px;
}
.footer-main {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}
.footer2-text1, .footer3-text1 {
    height: 18px;
    font-size: 18px;
    font-weight: normal;
    color: #FFFFFF;
    line-height: 18px;
    margin-top: 44px;
}
.footer2-text2 {
    margin-top: 20px;
    width: 509px;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 20px;
}
.footer3 { padding-left: 60px; }
.footer3-code {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.footer3-code-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 30px;
}
.footer3-code-item img { width: 70px; height: 70px; }
.footer3-code-item span {
    font-size: 14px;
    color: #FFFFFF;
    line-height: 20px;
    margin-top: 8px;
}

.banquan, .chengshi {
    width: 100%;
    background: linear-gradient(90deg, #FF597D 0%, #FF7055 100%);
    font-size: 14px;
    color: #FFFFFF;
    line-height: 50px;
    text-align: center;
}
.banquan a, .chengshi a {
    color: white;
    text-decoration: none;
}
.banquan a:hover, .chengshi a:hover { color: blue; }
.banquanInfo {
    font-size: 12px;
    margin-top: 20px;
}
.chengshi1, .footer4 {
    box-sizing: border-box;
    text-align: start;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    border-top: 1px solid #FFFFFF;
}
.footer4-text1 {
    font-size: 18px;
    color: #FFFFFF;
    margin-top: 44px;
}
.footer4-text2 {
    font-size: 14px;
    line-height: 16px;
}
.footer4-text2 a { color: #FFFFFF !important; margin-right: 5px;}
.footer4-text2 a:hover { color: #212529 !important; }

/* ======= 悬浮二维码 ======= */
.floating-qrcode {
    position: fixed;
    right: 20px;
    top: 50%;
    width: 230px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 15px;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateY(-50%) translateX(100px);
}
.floating-qrcode.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}
.floating-qrcode-title {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}
.floating-qrcode-img {
    width: 200px;
    height: 200px;
    background-color: #FFF;
    border-radius: 8px;
    display: block;
}

/* ======= 弹窗提示 ======= */
.tip-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.tip-modal.show { opacity: 1; visibility: visible; }
.tip-modal-content {
    background: #fff;
    border-radius: 12px;
    padding: 30px 40px;
    min-width: 280px;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    text-align: center;
}
.tip-modal-icon {
    width: 60px; height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
}
.tip-modal-message { font-size: 16px; color: #333; line-height: 1.5; margin-bottom: 20px; }
.tip-modal-btn {
    padding: 10px 30px;
    background: linear-gradient(90deg, #FF597D 0%, #FF7055 100%);
    color: #fff; border: none; border-radius: 20px; cursor: pointer;
    font-size: 14px; transition: all 0.3s ease;
}
.tip-modal-btn:hover {
    background: linear-gradient(90deg, #dc4d6e 0%, #de604a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,89,125,0.3);
}

/* ======= 工具提示 ======= */
.tooltip-container { position: relative; overflow: visible; }
.tooltip-content {
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background: white;
    border-radius: 15px;
    padding: 22px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, transform 0.5s, visibility 0.5s;
    z-index: 100;
    pointer-events: none;
	display: none;
}
.tooltip-container:hover .tooltip-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
    pointer-events: auto;
}
.social-icons { display: flex; justify-content: space-between; gap: 12px; }

/* 动画 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 768px) {
    /* 顶部导航 */
    .top-banner {
        flex-direction: column;
        height: auto;
        padding: 10px 20px;
        gap: 10px;
    }
    .logo { width: 280px; height: auto; }
    .nav-links { gap: 10px; flex-wrap: wrap; justify-content: center; display: none;}
    .link-a { width: 70px; height: 32px; font-size: 13px; line-height: 32px; }

    /* 首屏 */
    .header-mian {
        flex-direction: column;
        padding-top: 20px;
        gap: 20px;
    }
    .header-left {
        flex-direction: column;
        flex: none;
    }
    .champion-img { 
		height: 432px; 
		/* max-height: 50vh;  */
		width: 100%; }
    .header-middle { padding: 20px; width: 100%; display: none;}
    .header-middle h2 { font-size: 28px; }
    .header-right {
        margin-left: 0;
        flex: none;
        width: 100%;
    }
    .logoTwo { width: 200px; }
    .qr-code { height: 200px; width: auto; }
    .coupon { width: 100px; height: 100px; }

    /* 服务 */
    .service-section { padding: 20px 15px 0; }
    .service-title { font-size: 28px; }
    .service-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .card, .service-item { height: 400px; }
    .service-img { height: 400px; }

    /* 保障 */
    .guarantee-section { padding: 20px 15px; }
    .guarantee-section-title { font-size: 28px; }
    .guarantee-text { padding: 20px; letter-spacing: 2px; }

    /* 问答 */
    .question-title { font-size: 28px; }
    .chat-container { padding: 0 15px; }
    .chat-messages .flex { flex-direction: column; }
    .chatContainer { height: auto; padding: 0; margin-left: 0 !important; }
    .faq-card { margin-right: 0; }
    .mycontent { margin-left: 0 !important; }
    .chat-input-area { padding: 20px 15px; }
    .chat-input { padding: 0.75rem 100px 0.75rem 1rem; min-height: 80px; }
    .gradient-button { position: static; margin-top: 10px; width: 100%; }

    /* 城市 */
    .city-station-wrap { padding: 40px 0 20px; }
    .city-station-title { font-size: 26px; }
    .city-item { padding: 6px 20px; font-size: 14px; }
    .city-grid { gap: 10px 2px; }

    /* 页脚 */
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer2-text2 { width: 100%; }
    .footer3 { padding-left: 0; }
    .footer3-code { justify-content: center; flex-wrap: wrap; gap: 20px; }
    .footer4, .chengshi1 { padding: 0 15px; text-align: center; }
    .footer4-text1 { margin-top: 30px; }
    .banquanInfo { line-height: 1.8; }
}

@media (max-width: 480px) {
    .service-grid { grid-template-columns: 1fr; }
    .promotion-section { padding: 8px; }
    .scan-register-title { font-size: 16px; }
    .faq-card { padding: 15px; }
    .chat-input { padding-right: 1rem; min-height: 60px; }
    .gradient-button { width: 35%; }
}
/* ========= 文章模块新增样式 ========= */

/* 文章板块容器 */
.articles-section-wrap {
    padding: 80px 0;
    position: relative;
}

.articles-section {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 20px; */
}

.articles-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    position: relative;
}
.articles-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FF597D, #FF8E53);
    border-radius: 2px;
}

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

/* 文章卡片 */
.article-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.article-card a:hover { text-decoration: none; }
.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* 文章图片区域 */
.article-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.article-card:hover .article-img {
    transform: scale(1.05);
}

/* 分类标签 */
.article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(90deg, #FF597D, #FF8E53);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 文章内容 */
.article-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.article-content a { color: rgba(255, 89, 125, 0.9); }

.article-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 文章底部元信息 */
.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}
.article-author {
    display: flex;
    align-items: center;
    color: #777;
    font-size: 13px;
}
.article-date {
    color: #999;
    font-size: 13px;
}

/* 查看更多按钮 */
.articles-more {
    text-align: center;
    margin-top: 60px;
}
.articles-more-btn {
    display: inline-block;
    background: linear-gradient(90deg, #FF597D, #FF8E53);
    color: white;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 89, 125, 0.2);
}
.articles-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 89, 125, 0.3);
    color: white;
}

/* ======= 分页补充样式（列表页用） ======= */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.page-info {
    font-size: 16px;
    color: #666;
}

/* ======= 文章模块响应式 ======= */
@media (max-width: 768px) {
    .articles-section-wrap {
        padding: 50px 0;
    }
    .articles-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }
    .articles-title {
        font-size: 28px;
    }
    .article-img-container {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .articles-section-wrap {
        padding: 40px 0;
    }
    .articles-grid {
        grid-template-columns: 1fr;
    }
    .article-title {
        font-size: 18px;
    }
    .articles-more {
        margin-top: 40px;
    }
}
/* ========= 标签样式 ========= */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
}

.tag-item {
    display: inline-block;
    background: rgba(255, 89, 125, 0.1);
    color: #FF597D;
    border: 1px solid rgba(255, 89, 125, 0.3);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    transition: all 0.2s ease;
}

.tag-item:hover {
    background: #FF597D;
    color: #fff;
    transform: translateY(-1px);
}
/* ========= 标签列表页网格 ========= */
.tag-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.tag-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 15px;
    padding: 25px 15px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.tag-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255,89,125,0.15);
    border-color: #FF597D;
    text-decoration: none;
}

.tag-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    text-align: center;
}

.tag-count {
    font-size: 14px;
    color: #999;
    background: rgba(255,89,125,0.08);
    padding: 4px 12px;
    border-radius: 20px;
}

/* 确保 .tag-item 链接无下划线（如有需要） */
.tag-item {
    text-decoration: none;
}
.tag-item:hover {
    text-decoration: none;
}