@import "/css/public-fcc5fda76142186ad094f59be9e8fb4f.css";
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ================= 加载动画（旋转圆环 + 文字） ================= */
.loading-wrapper {
    position: relative;
}
.loading-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f9ff;
    z-index: 2;
    transition: opacity 0.4s ease;
}
.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}
.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #e8ecf4;
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
.loading-text {
    margin-top: 20px;
    font-size: 15px;
    color: #999;
    letter-spacing: 2px;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

.news-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
    cursor: pointer;
    display: flex; flex-direction: column;
    justify-content: space-between;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.news-image-wrapper {
    position: relative;
    height: 180px;
    background: #f0f0f0;
    overflow: hidden;
    flex:none;
}

.news-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    background: linear-gradient(135deg,#e8eaff,#f5f0ff);
    color: #667eea;
}
.news-image img{
    width:100%;
}
.news-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: rgba(255,255,255,0.95);
    border-radius: 4px;
    font-size: 12px;
    color: #667eea;
    font-weight: 500;
}

.news-content {
    padding: 20px;
    flex:1;
    display: flex; flex-direction: column;
    justify-content: space-between;
}


.news-title {
    flex:1;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.6;
}
.card-tools{
    flex:none;line-height:20px;
    display: flex; justify-content: space-between;
    align-items: center;
    padding-top:20px;
}
.news-date {
    font-size: 13px;
    color: #999;
}

.news-link {
    font-size: 14px;
    color: #667eea;
}

/* ================= solution-card 风格（与 solution.css 一致） ================= */
.solution-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 20px; align-items: center;
    text-align: center;
    transition: all 0.3s;
}
.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.solution-card-icon {
    width:72px;
    flex:none;
    font-size: 48px;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
}
.solution-card-icon img {
    width:64px;height:64px;
    border-radius: 7px;
    flex-shrink: 0;
    background-color: var(--color-light);
}
.solution-card-body {
    flex:1;
    display: flex;
    flex-direction: column;
}
.solution-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 10px;
    flex: 1;
}
.solution-card-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .news-grid { grid-template-columns: 1fr; gap: 12px; }
    .news-grid .solution-card { padding: 16px; flex-direction: row; text-align: left; gap: 16px; align-items: flex-start; }
    .news-grid .solution-card-icon { width: 72px; flex: none; }
    .news-grid .solution-card-icon img { width: 56px; height: 56px; }
    .news-grid .solution-card-title { font-size: 15px; margin-bottom: 6px; }
    .news-grid .solution-card-desc { font-size: 13px; }
}

