/* 出海资讯页面样式 */
.news-hero {
    min-height: 450px;
    background: linear-gradient(135deg, #1e3a5f 0%, #1d4ed8 40%, #7c3aed 100%);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}
.news-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(59,130,246,0.1) 0%, transparent 70%);
}
.news-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}
.news-hero .section-tag {
    color: #60a5fa;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}
.news-hero h1 {
    font-size: 42px;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
}
.news-hero h1 span {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.news-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 30px;
}
.search-box {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 5px;
    border: 1px solid rgba(255,255,255,0.2);
}
.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
}
.search-box input::placeholder {
    color: rgba(255,255,255,0.5);
}
.search-box button {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}
.search-box button:hover {
    transform: scale(1.05);
}

/* 焦点新闻 */
.news-featured {
    padding: 80px 0;
    background: #ffffff;
}
.news-featured .section-header {
    text-align: center;
    margin-bottom: 50px;
}
.news-featured .section-tag {
    color: #3b82f6;
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}
.news-featured .section-title {
    font-size: 32px;
    color: #333333;
    font-weight: bold;
}
.featured-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}
.featured-main {
    background: #f8fafc;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    display: block;
    text-decoration: none;
    color: inherit;
}
.featured-main:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}
.featured-main .featured-image {
    height: 280px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    display: flex;
    align-items: center;
    justify-content: center;
}
.featured-main .featured-image i {
    font-size: 80px;
    color: rgba(255,255,255,0.3);
}
.featured-main .featured-content {
    padding: 30px;
}
.featured-main .news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.featured-main .news-meta span {
    color: #64748b;
    font-size: 13px;
}
.featured-main .news-meta .category {
    color: #3b82f6;
    font-weight: 500;
}
.featured-main h3 {
    font-size: 24px;
    color: #1e293b;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.4;
}
.featured-main p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}
.featured-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.featured-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s;
}
.featured-item:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}
.featured-item .item-image {
    width: 120px;
    height: 90px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.featured-item .item-image i {
    font-size: 30px;
    color: rgba(255,255,255,0.5);
}
.featured-item .item-content {
    flex: 1;
}
.featured-item .news-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}
.featured-item .news-meta span {
    color: #64748b;
    font-size: 12px;
}
.featured-item h4 {
    font-size: 16px;
    color: #1e293b;
    font-weight: bold;
    line-height: 1.4;
}

/* 资讯分类 */
.news-categories {
    padding: 80px 0;
    background: #f8fafc;
}
.news-categories .section-header {
    text-align: center;
    margin-bottom: 40px;
}
.news-categories .section-tag {
    color: #3b82f6;
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}
.news-categories .section-title {
    font-size: 32px;
    color: #333333;
    font-weight: bold;
}
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
a.category-tab {
    text-decoration: none;
}
.category-tab {
    padding: 12px 28px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 25px;
    color: #64748b;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}
.category-tab:hover,
.category-tab.active {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    border-color: transparent;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.category-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}
.category-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-color: #3b82f6;
}
.category-card .card-image {
    height: 180px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.category-card .card-image i {
    font-size: 50px;
    color: rgba(255,255,255,0.4);
}
.category-card .card-image .tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.9);
    color: #3b82f6;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}
.category-card .card-content {
    padding: 25px;
}
.category-card .news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}
.category-card .news-meta span {
    color: #94a3b8;
    font-size: 12px;
}
.category-card h4 {
    font-size: 18px;
    color: #1e293b;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.4;
}
.category-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 热门文章 */
.news-popular {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
}
.news-popular .section-header {
    text-align: center;
    margin-bottom: 50px;
}
.news-popular .section-tag {
    color: #60a5fa;
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}
.news-popular .section-title {
    font-size: 32px;
    color: #ffffff;
    font-weight: bold;
}
.popular-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.popular-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px 25px;
    transition: all 0.3s;
    position: relative;
}
.popular-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(59,130,246,0.5);
    transform: translateY(-5px);
}
.popular-card .rank {
    position: absolute;
    top: -10px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
}
.popular-card .rank.top1 { background: linear-gradient(135deg, #f59e0b, #d97706); }
.popular-card .rank.top2 { background: linear-gradient(135deg, #94a3b8, #64748b); }
.popular-card .rank.top3 { background: linear-gradient(135deg, #cd7c2f, #a16207); }
.popular-card h4 {
    font-size: 16px;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.5;
    margin-top: 10px;
}
.popular-card .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.popular-card .meta span {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
}
.popular-card .views {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #60a5fa;
}

/* 专题报告 */
.news-reports {
    padding: 80px 0;
    background: #ffffff;
}
.news-reports .section-header {
    text-align: center;
    margin-bottom: 50px;
}
.news-reports .section-tag {
    color: #3b82f6;
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}
.news-reports .section-title {
    font-size: 32px;
    color: #333333;
    font-weight: bold;
}
.reports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.report-card {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #bfdbfe;
}
.report-card:hover {
    box-shadow: 0 15px 30px rgba(59,130,246,0.15);
    transform: translateY(-5px);
}
.report-card .report-cover {
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: relative;
}
.report-card .report-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.report-card:hover .report-cover img {
    transform: scale(1.05);
}
.report-card .report-body {
    padding: 28px;
}
.report-card .report-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.report-card .report-icon i {
    font-size: 24px;
    color: #ffffff;
}
.report-card h4 {
    font-size: 20px;
    color: #1e293b;
    font-weight: bold;
    margin-bottom: 12px;
}
.report-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.report-card .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}
.report-card .download-btn:hover {
    color: #2563eb;
    gap: 12px;
}

/* 资讯标签 */
.news-tags {
    padding: 60px 0;
    background: #f8fafc;
}
.news-tags .container {
    text-align: center;
}
.news-tags h3 {
    font-size: 20px;
    color: #1e293b;
    font-weight: bold;
    margin-bottom: 25px;
}
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.tag-item {
    padding: 8px 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    color: #64748b;
    font-size: 14px;
    transition: all 0.3s;
    cursor: pointer;
}
.tag-item:hover {
    background: #3b82f6;
    color: #ffffff;
    border-color: transparent;
}

/* 订阅区域 */
.news-subscribe {
    padding: 80px 0;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    text-align: center;
}
.news-subscribe h2 {
    font-size: 32px;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 15px;
}
.news-subscribe p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    margin-bottom: 30px;
}
.subscribe-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    background: rgba(255,255,255,0.15);
    border-radius: 30px;
    padding: 5px;
}
.subscribe-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 25px;
    color: #ffffff;
    font-size: 15px;
    outline: none;
}
.subscribe-form input::placeholder {
    color: rgba(255,255,255,0.6);
}
.subscribe-form button {
    background: #ffffff;
    color: #3b82f6;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    transition: all 0.3s;
}
.subscribe-form button:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .featured-grid { grid-template-columns: 1fr; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .popular-grid { grid-template-columns: repeat(2, 1fr); }
    .reports-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .news-hero h1 { font-size: 32px; }
    .search-box { flex-direction: column; border-radius: 15px; }
    .search-box button { border-radius: 15px; margin-top: 10px; }
    .category-grid { grid-template-columns: 1fr; }
    .popular-grid { grid-template-columns: 1fr; }
    .reports-grid { grid-template-columns: 1fr; }
    .subscribe-form { flex-direction: column; border-radius: 15px; }
    .subscribe-form button { border-radius: 15px; margin-top: 10px; }
}

/* 联系弹窗样式 */
.contact-modal-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.75); z-index: 9999;
    align-items: center; justify-content: center;
}
.contact-modal-overlay.show { display: flex; }
.contact-modal {
    background: #0a0a0a; border-radius: 16px;
    padding: 95px 49px; display: flex;
    align-items: center; gap: 60px;
    position: relative; max-width: 700px; width: 90%;
}
.contact-modal-close {
    position: absolute; top: 16px; right: 22px;
    color: #fff; font-size: 28px; cursor: pointer;
    opacity: 0.5; line-height: 1; transition: opacity 0.2s;
}
.contact-modal-close:hover { opacity: 1; }
.contact-modal-left { flex: 1; }
.contact-modal-logo { max-width: 160px; margin-bottom: 16px; display: block; }
.contact-modal-tagline { color: #fff; font-size: 20px; font-weight: 500; line-height: 1.6; margin: 0; }
.contact-modal-right { display: flex; gap: 32px; }
.contact-qr-item { text-align: center; }
.contact-qr-item img { width: 120px; height: 120px; display: block; object-fit: contain; margin-bottom: 8px; background: #fff; border-radius: 6px; padding: 4px; }
.contact-qr-label { color: rgba(255,255,255,0.75); font-size: 13px; }
@media (max-width: 600px) {
    .contact-modal { flex-direction: column; padding: 36px 24px; gap: 32px; }
    .contact-modal-right { justify-content: center; }
}
