@charset "utf-8";
/* ==================== 首页模块样式 ==================== */

/* ---- 首页动画（来自 animate-home.css） ---- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 40px, 0);
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.animated {
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/* ===== 1. 服务卡片区 ===== */
.huicontainer {
    width: 90%;
    max-width: 1600px;
    margin: 60px auto 0;
    text-align: center;
}

.service-section-header {
    margin-bottom: 3rem;
    animation: fadeIn 1.5s ease;
}

.service-section-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #003429;
    font-weight: 700;
}

.service-section-header .service-subtitle {
    font-size: 1.15rem;
    margin: 0 auto;
    color: #4e6266;
    line-height: 1.7;
}

.bbservices {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 20px;
}

.bbservice-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 1.8rem;
    box-shadow: 0 4px 20px rgba(0, 52, 41, 0.06);
    transition: all 0.35s ease;
    position: relative;
    border: 1px solid rgba(0, 52, 41, 0.08);
    display: flex;
    flex-direction: column;
}

.bbservice-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 52, 41, 0.12);
    border-color: rgba(0, 52, 41, 0.15);
}

.icon-huicontainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.icon {
    font-size: 2.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #dce9e6 0%, #f4f7f7 100%);
    color: #003429;
    margin-bottom: 1.2rem;
    transition: all 0.35s ease;
}

.icon .icon-svg {
    width: 2.5rem;
    height: 2.5rem;
}

.bbservice-card:hover .icon {
    background: linear-gradient(135deg, #00664d 0%, #00806b 100%);
    color: #fff;
    transform: translateY(-3px);
}

.bbservice-title {
    font-size: 1.4rem;
    color: #003429;
    font-weight: 600;
    position: relative;
    display: inline-block;
    line-height: 1.4;
}

.bbservice-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #00664d;
    border-radius: 3px;
    transition: width 0.35s ease;
}

.bbservice-card:hover .bbservice-title:after {
    width: 50px;
}

.bbservice-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #4e6266;
    margin: 1.8rem 0 calc(0.5rem + 30px);
}

.bbservice-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.7rem 0;
    color: #00664d;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    width: fit-content;
    margin: 0 auto;
}

.bbservice-link:hover {
    border-bottom-color: #00664d;
    color: #004d3a;
}

.bbservice-link:after {
    content: '\2192';
    transition: transform 0.3s ease;
}

.bbservice-link:hover:after {
    transform: translateX(4px);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== 2. 品牌实力模块 ===== */
.brand-strength-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fbf9 0%, #e8f3ed 100%);
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.brand-strength-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(73, 172, 53, 0.08) 0%, transparent 40%),
                      radial-gradient(circle at 90% 80%, rgba(30, 136, 229, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.brand-strength-container {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.strength-title {
    text-align: center;
    margin-bottom: 3rem;
}

.strength-title h2 {
    font-size: 2.5rem;
    color: #003429;
    font-weight: 700;
    margin-bottom: 1rem;
}

.strength-subtitle {
    font-size: 1.2rem;
    color: #4e6266;
}

.time-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.time-card {
    flex: 1;
    max-width: 480px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 52, 41, 0.1);
    transition: transform 0.3s ease;
}

.time-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 52, 41, 0.15);
}

.time-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.time-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.time-card:hover .time-image img {
    transform: scale(1.05);
}

.time-content {
    padding: 2rem;
    position: relative;
}

.year-badge {
    display: inline-block;
    background: linear-gradient(135deg, #49ac35 0%, #2d7a20 100%);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.time-content h3 {
    font-size: 1.5rem;
    color: #003429;
    margin-bottom: 0.8rem;
}

.time-content p {
    color: #4e6266;
    line-height: 1.8;
}

.time-arrow {
    font-size: 3rem;
    color: #49ac35;
    font-weight: bold;
    animation: strength-pulse 2s infinite;
}

@keyframes strength-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.time-quote {
    text-align: center;
    margin: calc(3rem - 72px) 0 calc(3rem - 115px);
    padding: 2rem;
}

.quote-text {
    font-size: 1.4rem;
    color: #003429;
    font-style: italic;
    line-height: 1.8;
    position: relative;
    display: inline-block;
}

.quote-text::before,
.quote-text::after {
    content: '"';
    font-size: 3rem;
    color: #49ac35;
    opacity: 0.6;
}

.quote-text::before {
    margin-right: 0.5rem;
    vertical-align: text-bottom;
}

.quote-text::after {
    margin-left: 0.5rem;
    vertical-align: text-top;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.credential-item {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 52, 41, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #49ac35;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.credential-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 52, 41, 0.12);
}

.credential-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.credential-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.credential-item:hover .credential-image img {
    transform: scale(1.05);
}

.credential-content {
    padding: 1.5rem;
}

.credential-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.credential-item h4 {
    font-size: 1.3rem;
    color: #003429;
    margin-bottom: 0.8rem;
}

.credential-item p {
    color: #4e6266;
    line-height: 1.7;
}

.strength-promise {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 52, 41, 0.08);
}

.strength-promise p {
    font-size: 1.2rem;
    color: #4e6266;
    line-height: 1.8;
}

.strength-promise strong {
    color: #003429;
    font-size: 1.4rem;
}

/* ===== 3. 信任统计与偏执理念模块 ===== */
.trust-section {
    width: 90%;
    max-width: 1600px;
    background: linear-gradient(135deg, #f2f5f4 0%, #fdfdfd 100%);
    border-radius: 24px;
    box-shadow: 0 10px 40px -10px rgba(0, 52, 41, 0.1);
    padding: 4.5rem 3.5rem;
    margin: 3rem auto;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 52, 41, 0.08);
    box-sizing: border-box;
}

.trust-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/middle.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.trust-content {
    position: relative;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
}

.trust-title-container {
    width: 100%;
    margin: 0 auto 3.5rem auto;
    text-align: center;
}

.trust-title-block {
    text-align: center;
}

.trust-title-block .trust-main-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: #003429;
    letter-spacing: -0.01em;
}

.trust-title-block .trust-main-title span {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    color: #4e6266;
    margin-top: 0.8rem;
}

.trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}

.trust-stat-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(0, 52, 41, 0.12);
    box-shadow: 0 8px 20px -5px rgba(0, 52, 41, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trust-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #003429;
    opacity: 0.15;
}

.trust-stat-card:nth-child(1)::before { background: #F5821E; opacity: 0.18; }
.trust-stat-card:nth-child(2)::before { background: #1E88E5; opacity: 0.18; }
.trust-stat-card:nth-child(3)::before { background: #49ac35; opacity: 0.18; }
.trust-stat-card:nth-child(4)::before { background: #EB4034; opacity: 0.18; }

.trust-stat-card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: rgba(73, 172, 53, 0.4);
    box-shadow: 0 12px 25px -8px rgba(0, 52, 41, 0.15);
}

.trust-stat-number {
    font-size: 3.8rem;
    font-weight: 600;
    color: #003429;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 5px rgba(0, 52, 41, 0.1);
    position: relative;
    letter-spacing: 1px;
}

.trust-stat-card:nth-child(1) .trust-stat-number,
.trust-stat-card:nth-child(2) .trust-stat-number,
.trust-stat-card:nth-child(3) .trust-stat-number,
.trust-stat-card:nth-child(4) .trust-stat-number {
    color: #003429;
}

.trust-stat-sub {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4e6266;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.trust-stat-desc {
    font-size: 1rem;
    color: #4e6266;
    line-height: 1.6;
    padding: 0 0.5rem;
    text-align: left;
}

/* 偏执理念 */
.philosophy-title-container {
    width: 100%;
    margin: 4rem auto 4rem auto;
    text-align: center;
}

.philosophy-title-block {
    text-align: center;
}

.philosophy-title-block .philosophy-main-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: #003429;
    letter-spacing: -0.01em;
}

.philosophy-title-block .philosophy-main-title span {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    color: #4e6266;
    margin-top: 0.8rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 2rem 0 1rem;
}

.philosophy-bubble-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.2rem 1.8rem;
    text-align: left;
    border: 1px solid rgba(0, 52, 41, 0.12);
    box-shadow: 0 8px 20px -5px rgba(0, 52, 41, 0.1);
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.philosophy-bubble-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #003429;
    opacity: 0.12;
}

.philosophy-bubble-card:nth-child(1)::before { background: #F5821E; opacity: 0.05; }
.philosophy-bubble-card:nth-child(2)::before { background: #1E88E5; opacity: 0.05; }
.philosophy-bubble-card:nth-child(3)::before { background: #49ac35; opacity: 0.05; }

.philosophy-bubble-card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: rgba(73, 172, 53, 0.4);
    box-shadow: 0 12px 25px -8px rgba(0, 52, 41, 0.15);
    z-index: 10;
}

.philosophy-bubble-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px dashed rgba(0, 52, 41, 0.15);
    padding-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.philosophy-bubble-num {
    background: #003429;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 30px 30px 30px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    box-shadow: 0 8px 12px -5px rgba(245, 130, 30, 0.4);
    transform: rotate(-2deg);
    position: relative;
}

.philosophy-bubble-card:nth-child(1) .philosophy-bubble-num,
.philosophy-bubble-card:nth-child(2) .philosophy-bubble-num,
.philosophy-bubble-card:nth-child(3) .philosophy-bubble-num {
    background: #003429;
}

.philosophy-bubble-title {
    font-size: 1.8rem;
    font-weight: 650;
    color: #003429;
    letter-spacing: 1px;
}

.philosophy-bubble-content {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #2d3a5e;
    padding: 0.5rem 0;
    position: relative;
    flex-grow: 1;
}

.philosophy-bubble-content p {
    position: relative;
    z-index: 2;
    font-style: normal;
    color: #4e6266;
    line-height: 1.6;
}

.philosophy-bubble-card:nth-child(1) .philosophy-bubble-content { background: rgba(245, 130, 30, 0.03); padding: 0.5rem; border-radius: 8px; margin-left: -0.5rem; margin-right: -0.5rem; }
.philosophy-bubble-card:nth-child(2) .philosophy-bubble-content { background: rgba(30, 136, 229, 0.03); padding: 0.5rem; border-radius: 8px; margin-left: -0.5rem; margin-right: -0.5rem; }
.philosophy-bubble-card:nth-child(3) .philosophy-bubble-content { background: rgba(73, 172, 53, 0.03); padding: 0.5rem; border-radius: 8px; margin-left: -0.5rem; margin-right: -0.5rem; }

.philosophy-bubble-footer {
    margin-top: 1.8rem;
    text-align: right;
    font-size: 0.95rem;
    color: #4e6266;
    font-weight: 500;
    border-top: 1px solid rgba(0, 52, 41, 0.12);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.philosophy-bubble-footer span {
    background: rgba(0, 52, 41, 0.05);
    padding: 0.3rem 1rem;
    border-radius: 40px;
    color: #4e6266;
    font-weight: 400;
}

.philosophy-bubble-card:nth-child(1) .philosophy-bubble-footer span { background: rgba(245, 130, 30, 0.08); color: #4e6266; }
.philosophy-bubble-card:nth-child(2) .philosophy-bubble-footer span { background: rgba(30, 136, 229, 0.08); color: #4e6266; }
.philosophy-bubble-card:nth-child(3) .philosophy-bubble-footer span { background: rgba(73, 172, 53, 0.08); color: #4e6266; }

.philosophy-hand-draw {
    font-size: 1.2rem;
    opacity: 0.5;
}

/* 信任分隔线 */
.trust-divider {
    margin: 4rem 0;
    border-top: 1px solid rgba(0, 52, 41, 0.1);
}

/* 偏执理念底部容器 */
.philosophy-motto-wrap {
    text-align: center;
    margin-top: 3rem;
}

.philosophy-motto {
    text-align: center;
    margin-top: 4rem;
    font-size: 1.4rem;
    font-weight: 400;
    color: #4e6266;
    background: rgba(0, 52, 41, 0.05);
    padding: 1.5rem 2rem;
    border-radius: 100px;
    display: inline-block;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    border: 1px dashed rgba(0, 52, 41, 0.15);
    box-shadow: 0 10px 20px -10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
}

.philosophy-motto strong {
    color: #F5821E;
    font-weight: 650;
}

.philosophy-paperclip {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    opacity: 0.3;
    transform: rotate(15deg);
    color: #6B7A93;
}

/* ===== 4. 案例展示模块 ===== */
.case-section {
    background: linear-gradient(135deg, #f8fbf9 0%, #e8f3ed 100%);
    padding: 80px 0 40px;
}

.case-container {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.case-header {
    margin-bottom: 2.5rem;
}

.case-header h2 {
    font-size: 2.5rem;
    color: #003429;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.case-header .case-subtitle {
    font-size: 1.15rem;
    color: #4e6266;
    margin-top: 1.2rem;
}

.case-header-pc { display: block; }
.case-header-mb { display: none; }

.case-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.case-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 52, 41, 0.06);
    border: 1px solid rgba(0, 52, 41, 0.08);
    transition: all 0.35s ease;
    text-decoration: none;
    display: block;
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 52, 41, 0.12);
    border-color: rgba(0, 52, 41, 0.15);
}

.case-card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.case-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.case-card:hover .case-card-image img {
    transform: scale(1.06);
}

.case-card-image .case-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-card:hover .case-overlay {
    opacity: 1;
}

.case-overlay span {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border: 2px solid #fff;
    border-radius: 25px;
    padding: 0.5rem 1.8rem;
    letter-spacing: 2px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    background: rgba(0,0,0,0.25);
}

.case-card-body {
    padding: 1.5rem 1.5rem 1.2rem;
    text-align: center;
}

.case-card-body h3 {
    font-size: 1.15rem;
    color: #003429;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.case-more {
    margin-top: 2.5rem;
}

.case-more a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.8rem 2.2rem;
    background: #fff;
    color: #00664d;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1rem;
    border: 2px solid rgba(0, 102, 77, 0.3);
    transition: all 0.3s ease;
}

.case-more a:hover {
    background: #00664d;
    color: #fff;
    border-color: #00664d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 77, 0.2);
}

.case-more a:after {
    content: '\2192';
    transition: transform 0.3s ease;
}

.case-more a:hover:after {
    transform: translateX(4px);
}

/* ===== 6. 新闻资讯模块 ===== */
.news-section {
    background: #f7f8fa;
    padding: 80px 0 50px;
}

.news-container {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.news-header {
    margin-bottom: 2.5rem;
}

.news-header h2 {
    font-size: 2.5rem;
    color: #003429;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.news-header .news-subtitle {
    font-size: 1.15rem;
    color: #4e6266;
}

.news-header-pc { display: block; }
.news-header-mb { display: none; }

.news-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.news-column {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.8rem 1.5rem 1.2rem;
    box-shadow: 0 4px 20px rgba(0, 52, 41, 0.06);
    border: 1px solid rgba(0, 52, 41, 0.08);
}

.news-col-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 102, 77, 0.15);
}

.news-col-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #00664d, #009974);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.news-col-icon span {
    color: #fff;
    font-size: 1rem;
}

.news-col-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #003429;
    line-height: 1.3;
}

.news-col-title small {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.news-item {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    padding-left: 8px;
}

.news-item a {
    text-decoration: none;
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.news-date {
    flex-shrink: 0;
    width: 48px;
    text-align: center;
    background: #f0f7f4;
    border-radius: 8px;
    padding: 6px 4px;
}

.news-date-day {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00664d;
    line-height: 1;
}

.news-date-mon {
    font-size: 0.7rem;
    color: #666;
    line-height: 1.4;
}

.news-info {
    flex: 1;
    min-width: 0;
}

.news-info-title {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
}

.news-item:hover .news-info-title {
    color: #00664d;
}

.news-info-desc {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-col-more {
    margin-top: 1rem;
    text-align: center;
}

.news-col-more a {
    display: inline-block;
    font-size: 0.9rem;
    color: #00664d;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.news-col-more a:hover {
    transform: translateX(4px);
}

.news-col-more a:after {
    content: ' \2192';
}

/* ==================== 响应式断点 ==================== */

/* ---- 服务卡片 ---- */
@media (max-width: 1100px) {
    .bbservices {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .bbservices {
        grid-template-columns: 1fr;
    }
    .service-section-header h1 {
        font-size: 1.6rem;
    }
    .service-section-header .service-subtitle {
        font-size: 1rem;
        white-space: normal;
    }
}

/* ---- 品牌实力 ---- */
@media (max-width: 1000px) {
    .time-comparison {
        flex-direction: column;
    }
    .time-arrow {
        transform: rotate(90deg);
    }
    .credentials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .credential-image {
        height: 120px;
    }
}

@media (max-width: 600px) {
    .brand-strength-section .strength-title h2 {
        font-size: 1.6rem !important;
    }
    .brand-strength-section .strength-subtitle {
        font-size: 1.1rem !important;
        max-width: 85%;
        margin: 0 auto !important;
    }
    .time-image {
        height: 200px;
    }
    .quote-text {
        font-size: 1.1rem;
    }
    .strength-promise strong {
        font-size: 1.2rem;
    }
}

/* ---- 信任统计 ---- */
@media (max-width: 1000px) {
    .trust-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .trust-stats-grid {
        grid-template-columns: 1fr;
    }
    .trust-section {
        padding: 3rem 1.5rem;
    }
    .trust-title-block .trust-main-title {
        font-size: 1.6rem;
    }
    .trust-title-block .trust-main-title span {
        font-size: 1rem;
    }
    .trust-stat-number {
        font-size: 1.9rem;
    }
    .trust-stat-sub {
        font-size: 1rem;
    }
    .trust-stat-desc {
        font-size: 0.9rem;
    }
}

/* ---- 偏执理念 ---- */
@media (max-width: 1000px) {
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    .philosophy-title-block .philosophy-main-title {
        font-size: 1.6rem;
    }
    .philosophy-title-block .philosophy-main-title span {
        font-size: 1rem;
    }
    .philosophy-section {
        padding: 3rem 1.5rem;
    }
    .philosophy-bubble-title {
        font-size: 1.6rem;
    }
    .philosophy-bubble-card::before {
        display: none;
    }
}

/* ---- 案例展示 ---- */
@media (max-width: 1000px) {
    .case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .case-card-image {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .case-grid {
        grid-template-columns: 1fr;
    }
    .case-header-pc { display: none; }
    .case-header-mb { display: block; }
    .case-header-mb h2 { font-size: 1.6rem; line-height: 35px; padding-top: 15px; }
    .case-card-image {
        height: 280px;
    }
}

/* ---- 新闻资讯 ---- */
@media (max-width: 1200px) {
    .news-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .news-columns {
        grid-template-columns: 1fr;
    }
    .news-header-pc { display: none; }
    .news-header-mb { display: block; }
    .news-header-mb h2 { font-size: 1.6rem; line-height: 35px; padding-top: 15px; }
}
