/* 通用样式 */
body {
    margin: 0;
    font-family: 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', Arial, sans-serif;
    background: #f8f9fa;
    color: #222;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* 顶部小菜单栏 */
.topbar {
    background: #222;
    color: #fff;
    font-size: 14px;
}
.topbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 38px;
}
.topbar li {
    margin-left: 24px;
}
.topbar a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}
.topbar a:hover {
    color: #ffd700;
}
.topbar i {
    margin-right: 6px;
}

.topbar-menu {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}
.topbar-menu li {
    margin-left: 24px;
}
.topbar-menu li:first-child {
    margin-left: 0;
}
.topbar-menu .menu-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

/* LOGO+搜索+按钮区域 */
.site-header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 56px 0 48px 0;
}
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo img {
    height: 48px;
    display: block;
}
.search-bar {
    flex: 1;
    margin: 0 40px;
}
.search-container {
    display: flex;
    align-items: center;
    background: #f1f3f4;
    border-radius: 8px;
    padding: 4px 12px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.search-input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 16px;
    flex: 1;
    padding: 8px 0;
}
.btn-search {
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 16px;
    margin-left: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.2s;
}
.btn-search:hover {
    background: #0056b3;
}
.btn-search i {
    margin-right: 4px;
}
.header-actions {
    display: flex;
    gap: 16px;
}
.btn-publish, .btn-join {
    display: flex;
    align-items: center;
    background: #ff9800;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.2s;
    box-shadow: 0 1px 4px rgba(255,152,0,0.08);
}
.btn-join {
    background: #4caf50;
}
.btn-publish:hover {
    background: #e68900;
}
.btn-join:hover {
    background: #388e3c;
}
.btn-publish i, .btn-join i {
    margin-right: 6px;
}

@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        align-items: stretch;
    }
    .search-bar {
        margin: 16px 0;
    }
    .header-actions {
        justify-content: flex-start;
    }
    .topbar-menu {
        flex-wrap: wrap;
    }
    .topbar-menu .menu-right {
        margin-left: auto;
        white-space: nowrap;
    }
}

/* 顶部登录注册分隔符 */
.auth-divider {
    display: inline-block;
    margin: 0 12px;
    color: #bbb;
    font-size: 15px;
    font-weight: 400;
}

/* 主导航菜单 */
.category-nav {
    background: #1565c0;
    box-shadow: 0 2px 8px rgba(21,101,192,0.08);
}
.category-list {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}
.category-item {
    position: relative;
}
.category-item > a {
    position: relative;
    overflow: hidden;
    display: block;
    color: #fff;
    padding: 0 22px;
    height: 48px;
    line-height: 48px;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.category-item > a:hover,
.category-item:hover > a {
    background: #1976d2;
    color: #ffd700;
}
.special-home > a {
    background: #fff;
    color: #1565c0 !important;
    font-weight: bold;
    border-radius: 24px;
    margin-right: 8px;
    box-shadow: 0 2px 8px rgba(21,101,192,0.08);
    padding: 0 28px;
}
.special-home > a:hover {
    background: #e3f2fd;
    color: #0d47a1 !important;
}

/* 主菜单下划线动画效果 */
.category-item:not(.nav-right-btn) > a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: 0;
    height: 2px;
    background: #ffd700;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 2;
}
.category-item:not(.nav-right-btn):hover > a::after,
.category-item:not(.nav-right-btn) > a:hover::after {
    left: 0;
    width: 100%;
}

/* 下拉子菜单优化 */
.sub-category {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    min-width: 100%;
    box-shadow: 0 8px 32px rgba(21,101,192,0.13);
    border-radius: 0 0 10px 10px;
    z-index: 99;
    padding: 10px 0;
    border: 1px solid #e3eaf3;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.25s cubic-bezier(0.4,0,0.2,1), transform 0.25s cubic-bezier(0.4,0,0.2,1);
    list-style: none;
}
.category-item:hover > .sub-category,
.category-item:focus-within > .sub-category {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.sub-category li {
    padding: 0;
    list-style: none;
}
.sub-category a {
    color: #1565c0;
    background: none;
    padding: 10px 16px;
    font-size: 15px;
    line-height: 1.8;
    display: block;
    border-radius: 6px;
    transition: background 0.18s, color 0.18s;
    position: relative;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sub-category a:hover {
    background: #e3f2fd;
    color: #0d47a1;
}
.sub-category li:not(:last-child) {
    border-bottom: 1px solid #f0f4fa;
}

/* 导航右侧按钮 */
.nav-right-btn {
    margin-left: auto;
    display: flex;
    align-items: center;
}
.recharge-btn {
    background: linear-gradient(90deg, #ff9800 0%, #ffb300 100%);
    color: #fff !important;
    border-radius: 24px;
    padding: 0 26px;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    font-weight: bold;
    margin-left: 24px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(255,152,0,0.12);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.recharge-btn i {
    margin-right: 8px;
}
.recharge-btn:hover {
    background: linear-gradient(90deg, #fb8c00 0%, #ffa726 100%);
    color: #fff;
}

/* 按钮圆角统一 */
.btn-search,
.btn-publish,
.btn-join,
.recharge-btn {
    border-radius: 8px !important;
}

@media (max-width: 1024px) {
    .category-list {
        flex-wrap: wrap;
    }
    .category-item > a {
        padding: 0 14px;
        font-size: 15px;
    }
    .special-home > a {
        padding: 0 18px;
    }
    .recharge-btn {
        padding: 0 16px;
        font-size: 15px;
    }
}
@media (max-width: 768px) {
    .category-list {
        flex-direction: column;
        align-items: stretch;
    }
    .category-item > a, .special-home > a {
        height: 44px;
        line-height: 44px;
        padding: 0 12px;
        font-size: 15px;
    }
    .nav-right-btn {
        margin-left: 0;
        margin-top: 8px;
        justify-content: flex-end;
    }
}

/* 幻灯片和公告栏布局 */
.main-content {
    margin: 40px 0 0 0;
    background: #f8f9fa;
}
.main-flex {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
}
.slider-section {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: stretch;
}
.notice-section {
    width: 320px;
    min-width: 260px;
    max-width: 340px;
    display: flex;
    align-items: stretch;
}

/* 幻灯片样式 */
.slider {
    position: relative;
    width: 100%;
    height: 280px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0; top: 0;
    transition: opacity 0.5s;
}
.slide.active {
    display: block;
    position: relative;
    opacity: 1;
    z-index: 1;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.35);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
}
.slider-btn:hover {
    background: rgba(21,101,192,0.8);
}
.slider-btn.prev { left: 18px; }
.slider-btn.next { right: 18px; }
.slider-dots {
    position: absolute;
    left: 0; right: 0;
    bottom: 18px;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 2;
}
.slider-dots .dot {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.6;
    cursor: pointer;
    transition: opacity 0.2s, background 0.2s;
    border: 2px solid #1565c0;
}
.slider-dots .dot.active {
    background: #1565c0;
    opacity: 1;
}

/* 公告栏样式 */
.notice-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    padding: 0 0 0 0;
    width: 100%;
    min-width: 0;
    border: 1px solid #f0f4fa;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.notice-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px 10px 24px;
    border-bottom: 1px solid #f0f4fa;
}
.notice-title {
    font-size: 18px;
    color: #1565c0;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}
.notice-title i {
    color: #ff9800;
    font-size: 18px;
}
.notice-more {
    color: #888;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}
.notice-more:hover {
    color: #1565c0;
}
.notice-list {
    list-style: none;
    margin: 0;
    padding: 0 0 0 0;
}
.notice-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    border-bottom: 1px solid #f0f4fa;
    font-size: 15px;
    height: 38px;
    line-height: 38px;
    transition: background 0.18s;
}
.notice-list li:last-child {
    border-bottom: none;
}
.notice-list a {
    color: #1565c0;
    text-decoration: none;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.18s;
}
.notice-list a:hover {
    color: #ff9800;
    text-decoration: underline;
}
.notice-date {
    color: #bbb;
    font-size: 13px;
    margin-left: 16px;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .slider {
        width: 420px;
        height: 200px;
    }
    .notice-section {
        max-width: 320px;
    }
}
@media (max-width: 900px) {
    .main-flex {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .slider {
        width: 100%;
        min-width: 0;
        height: 180px;
    }
    .notice-section {
        width: 100%;
        max-width: 100%;
    }
}

.hot-section {
    margin: 40px 0 0 0;
}
.hot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.hot-title {
    font-size: 20px;
    color: #ff5722;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hot-title i {
    color: #ff9800;
    font-size: 20px;
}
.hot-more {
    color: #888;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.2s;
}
.hot-more:hover {
    color: #1565c0;
}
.hot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.hot-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(21,101,192,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
    min-width: 0;
}
.hot-card:hover {
    box-shadow: 0 6px 24px rgba(21,101,192,0.13);
    transform: translateY(-4px) scale(1.02);
}
.hot-img-link {
    display: block;
    text-decoration: none;
}
.hot-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    background: #f5f5f5;
    display: block;
}
.hot-info {
    padding: 14px 16px 0 16px;
    flex: 1;
    min-height: 60px;
}
.hot-card-title {
    font-size: 16px;
    color: #222;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    display: block;
    margin-bottom: 2px;
    transition: color 0.18s;
}
.hot-card-title:hover {
    color: #ff9800;
    text-decoration: none;
}
.hot-card-desc {
    font-size: 14px;
    color: #888;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hot-card-footer {
    padding: 0 16px 12px 16px;
    font-size: 13px;
    color: #bbb;
    text-align: right;
}
.hot-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px 12px 16px;
    font-size: 13px;
    color: #bbb;
}
.hot-card-author {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #888;
}
.hot-card-date {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #bbb;
}
@media (max-width: 1100px) {
    .hot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .hot-grid {
        grid-template-columns: 1fr;
    }
}

.software-section {
    margin: 40px 0 0 0;
}
.software-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.software-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(21,101,192,0.07);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    min-width: 0;
    cursor: pointer;
}
.software-card:hover {
    box-shadow: 0 6px 24px rgba(21,101,192,0.13);
    transform: translateY(-4px) scale(1.02);
}
.software-img-link {
    display: block;
    min-width: 160px;
    max-width: 180px;
    width: 180px;
    height: 120px;
    overflow: hidden;
    background: #f5f5f5;
}
.software-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}
.software-info {
    flex: 1;
    padding: 18px 20px 12px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
    min-height: 90px;
}
.software-title {
    font-size: 17px;
    color: #222;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    transition: color 0.18s;
}
.software-title:hover {
    color: #ff9800;
    text-decoration: none;
}
.software-desc {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.software-footer {
    font-size: 13px;
    color: #bbb;
    text-align: right;
    margin-top: auto;
}
.software-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px 0 16px;
    font-size: 13px;
    color: #bbb;
    margin-top: auto;
}
.software-author {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #888;
}
.software-date {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #bbb;
}
@media (max-width: 900px) {
    .software-list {
        grid-template-columns: 1fr;
    }
    .software-img-link {
        width: 120px;
        min-width: 100px;
        max-width: 120px;
        height: 90px;
    }
    .software-info {
        padding: 12px 12px 8px 12px;
    }
}

/* 软件服务板块 */
.service-section {
    margin: 40px 0 0 0;
}
.service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.service-col {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(21,101,192,0.07);
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.service-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 44px;
    color: #1565c0;
    text-decoration: none;
    border-bottom: 1px solid #f0f4fa;
    font-size: 15px;
    transition: background 0.18s, color 0.18s;
}
.service-link:last-child {
    border-bottom: none;
}
.service-link:hover {
    background: #e3f2fd;
    color: #ff9800;
    text-decoration: none;
}
.service-title {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.service-date {
    margin-left: 16px;
    color: #bbb;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
}
@media (max-width: 900px) {
    .service-list {
        grid-template-columns: 1fr;
    }
}

/* 优质服务商板块 */
.provider-section {
    margin: 40px 0 0 0;
}
.provider-flex {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}
.provider-list {
    display: flex;
    gap: 20px;
    flex: 1;
}
.provider-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(21,101,192,0.07);
    padding: 24px 18px 18px 18px;
    width: 176px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.provider-card:hover {
    box-shadow: 0 6px 24px rgba(21,101,192,0.13);
    transform: translateY(-4px) scale(1.02);
}
.provider-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 2px solid #e3f2fd;
}
.provider-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #222;
    text-align: center;
}
.provider-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
    justify-content: center;
}
.provider-tag {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    border-radius: 8px;
    padding: 2px 10px;
    background: #f5f5f5;
    color: #1565c0;
    font-weight: 500;
}
.provider-tag.guarantee {
    background: #ff9800;
    color: #fff;
}
.provider-tag.auth {
    background: #1976d2;
    color: #fff;
}
.provider-tag.location {
    background: #e3f2fd;
    color: #1976d2;
}
.provider-tag i {
    margin-right: 4px;
}
.provider-desc {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-top: 4px;
    min-height: 38px;
}

/* 右侧官方认证介绍 */
.provider-side {
    width: 260px;
    min-width: 220px;
    height: 225px;
    background: linear-gradient(90deg, #ff9800 0%, #ffb300 100%);
    border-radius: 16px;
    color: #fff;
    padding: 24px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}
.provider-side-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 0;
}
.provider-side-features {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}
.provider-side-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    margin: 8px 0;
}
.provider-side-features i {
    font-size: 18px;
}
.provider-side-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #ff9800;
    font-weight: bold;
    border-radius: 24px;
    padding: 8px 24px;
    font-size: 16px;
    text-decoration: none;
    margin-top: 8px;
    transition: background 0.2s, color 0.2s;
}
.provider-side-btn:hover {
    background: #ffe0b2;
    color: #e65100;
}
@media (max-width: 1100px) {
    .provider-flex {
        flex-direction: column;
        gap: 24px;
    }
    .provider-side {
        height: auto;
    }
}

/* 最新发布信息流板块 */
.info-wrapper {
    margin-top: 40px;
    margin-bottom: 0;
}
.info-inner {
    background: linear-gradient(120deg, #e0eafc 0%, #cfdef3 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(21,101,192,0.08);
    padding: 32px 0 24px 0;
    display: flex;
    gap: 32px;
    align-items: flex-start;
}
.info-left {
    flex: 2.2;
    min-width: 0;
    padding-left: 24px;
}
.info-right {
    flex: 1;
    min-width: 220px;
    max-width: 320px;
    padding-right: 24px;
}
.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.section-header i {
    font-size: 22px;
    color: #1976d2;
    background: #fff;
    border-radius: 50%;
    padding: 6px;
    box-shadow: 0 2px 8px rgba(21,101,192,0.10);
}
.section-header h2 {
    font-size: 20px;
    font-weight: bold;
    color: #1976d2;
    margin: 0;
}
.section-header .sub-title {
    margin-left: auto;
    font-size: 14px;
    color: #888;
}
.section-header .more-link {
    color: #1976d2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.18s;
}
.section-header .more-link:hover {
    color: #ff9800;
    text-decoration: underline;
}

/* 信息流列表 */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.info-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(21,101,192,0.06);
    transition: box-shadow 0.18s, transform 0.18s;
    padding: 16px 18px 10px 18px;
    margin-bottom: 2px;
}
.info-item:hover {
    box-shadow: 0 6px 24px rgba(21,101,192,0.13);
    transform: translateY(-2px) scale(1.01);
}
.info-link {
    display: block;
    color: #222;
    text-decoration: none;
}
.info-title {
    font-size: 16px;
    font-weight: 500;
    color: #222;
    margin-bottom: 8px;
    display: block;
    transition: color 0.18s;
}
.info-link:hover .info-title {
    color: #1976d2;
}
.info-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #888;
    align-items: center;
}
.info-meta .category {
    color: #ff5252;
    font-weight: 500;
}
.info-meta .author {
    color: #1976d2;
}
.info-meta .time {
    color: #bbb;
}

/* 最新发布右侧列表 */
.latest-list {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(21,101,192,0.06);
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.latest-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    height: 36px;
    border-bottom: 1px solid #f0f4fa;
    font-size: 15px;
    transition: background 0.15s;
}
.latest-item:last-child {
    border-bottom: none;
}
.latest-item span {
    color: #bbb;
    font-size: 14px;
    width: 28px;
    text-align: right;
    flex-shrink: 0;
}
.latest-item .title {
    color: #222;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    transition: color 0.18s;
}
.latest-item .title:hover {
    color: #1976d2;
    text-decoration: none;
}
.latest-item:hover {
    background: #f5faff;
}
@media (max-width: 900px) {
    .info-inner {
        flex-direction: column;
        gap: 18px;
        padding: 18px 0 12px 0;
    }
    .info-left,
    .info-right {
        padding-left: 12px;
        padding-right: 12px;
    }
}

.footer {
    background: #fff;
    border-top: 1px solid #eee;
    color: #888;
    font-size: 15px;
    margin-top: 48px;
    padding: 0;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 16px 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.friend-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin-bottom: 8px;
}
.home_footer_line {
    color: #1976d2;
    text-decoration: none;
    transition: color 0.18s;
    font-size: 15px;
}
.home_footer_line:hover {
    color: #ff9800;
    text-decoration: underline;
}
.company-info, .icp-info {
    text-align: center;
    font-size: 14px;
    color: #888;
    line-height: 1.8;
}
.icp-info a {
    color: #888;
    text-decoration: none;
    margin: 0 4px;
    font-size: 13px;
    transition: color 0.18s;
}
.icp-info a:hover {
    color: #1976d2;
    text-decoration: underline;
}
@media (max-width: 600px) {
    .footer-content {
        padding: 18px 4px 12px 4px;
        font-size: 13px;
        gap: 10px;
    }
    .friend-links {
        gap: 10px;
        font-size: 13px;
    }
    .company-info, .icp-info {
        font-size: 12px;
    }
}

.links-section {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(21,101,192,0.07);
    margin: 48px auto 0 auto;
    padding: 24px 0 18px 0;
    max-width: 1200px;
}
.links-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: #1976d2;
    margin-bottom: 18px;
    gap: 8px;
}
.links-title i {
    color: #ff9800;
    font-size: 20px;
}
.links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
}
.links-list a {
    color: #1976d2;
    background: #f5faff;
    border-radius: 8px;
    padding: 6px 18px;
    text-decoration: none;
    font-size: 15px;
    transition: background 0.18s, color 0.18s;
    box-shadow: 0 1px 4px rgba(21,101,192,0.04);
}
.links-list a:hover {
    background: #e3f2fd;
    color: #ff9800;
    text-decoration: underline;
}
@media (max-width: 600px) {
    .links-section {
        padding: 14px 0 8px 0;
    }
    .links-list {
        gap: 10px;
    }
    .links-list a {
        font-size: 13px;
        padding: 5px 10px;
    }
} 

.provider-card a,
.big-publisher-card a {
    color: inherit;           /* 继承父级颜色 */
    text-decoration: none;    /* 去除下划线 */
}
.provider-card a:hover,
.big-publisher-card a:hover {
    color: inherit;
    text-decoration: none;    /* 悬停也无下划线 */
}