/* 爱卡云 - 全局样式覆盖，统一所有页面风格 */

/* 覆盖原有导航样式 */
.nav-shadow {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    background: rgba(255,255,255,0.85) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(0,0,0,0.06) !important;
    box-shadow: none !important;
}

.nav-header {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    height: 68px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.nav-icon img {
    height: 40px !important;
    max-height: 40px !important;
}

.nav-menu {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.nav-item {
    padding: 10px 18px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #1d2129 !important;
    border-radius: 6px !important;
    transition: all 0.15s ease !important;
}

.nav-item:hover {
    color: #0052d9 !important;
    background: rgba(0,82,217,0.08) !important;
}

.nav-right .control {
    padding: 8px 16px !important;
    font-size: 14px !important;
    color: #4e5969 !important;
    border-radius: 6px !important;
    transition: all 0.15s ease !important;
}

.nav-right .control:hover {
    color: #0052d9 !important;
    background: rgba(0,82,217,0.08) !important;
}

.btn-normal {
    background: linear-gradient(135deg, #002ab1 0%, #0052d9 50%, #1466ed 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 8px 20px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    box-shadow: 0 2px 8px rgba(0,82,217,0.25) !important;
    transition: all 0.3s ease !important;
}

.btn-normal:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 16px rgba(0,82,217,0.35) !important;
    color: white !important;
}

.btn-normal-light {
    background: transparent !important;
    color: #0052d9 !important;
    border: 1px solid #0052d9 !important;
    border-radius: 6px !important;
    padding: 8px 20px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.btn-normal-light:hover {
    background: #0052d9 !important;
    color: white !important;
}

/* Banner区域 */
.section.banner {
    background: linear-gradient(135deg, #002ab1 0%, #0052d9 50%, #1466ed 100%) !important;
    min-height: 320px !important;
    display: flex !important;
    align-items: center !important;
}

.section-content {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

/* 产品卡片 */
.product-item {
    background: white !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
    border: 1px solid #f2f3f5 !important;
    transition: all 0.3s ease !important;
    overflow: hidden !important;
}

.product-item:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12) !important;
    transform: translateY(-4px) !important;
    border-color: rgba(0,82,217,0.2) !important;
}

/* 区块标题 */
.section-title h2 {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #1d2129 !important;
    margin-bottom: 12px !important;
}

.section-desc {
    font-size: 16px !important;
    color: #4e5969 !important;
}

/* 服务卡片 */
.service-box {
    background: white !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
    border: 1px solid #f2f3f5 !important;
    transition: all 0.3s ease !important;
    padding: 28px !important;
}

.service-box:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12) !important;
    transform: translateY(-4px) !important;
}

.service-title {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #1d2129 !important;
    margin-bottom: 10px !important;
}

/* 页脚 */
.footer {
    background: #1a1a2e !important;
    color: rgba(255,255,255,0.7) !important;
    padding: 64px 0 24px !important;
}

.footer-nav-head {
    color: white !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
}

.footer-nav-item a {
    color: rgba(255,255,255,0.7) !important;
    font-size: 14px !important;
    transition: all 0.15s ease !important;
}

.footer-nav-item a:hover {
    color: #51d4ff !important;
    padding-left: 4px !important;
}

.footer-record {
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    padding-top: 24px !important;
    color: rgba(255,255,255,0.5) !important;
    font-size: 13px !important;
}

.footer-record a {
    color: rgba(255,255,255,0.5) !important;
}

.footer-record a:hover {
    color: #51d4ff !important;
}

/* 承诺区域 */
.section-promise {
    background: white !important;
    padding: 40px 0 !important;
    border-bottom: 1px solid #f2f3f5 !important;
}

.promise-box {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 15px !important;
    color: #4e5969 !important;
    font-weight: 500 !important;
}

.promise-box img {
    width: 32px !important;
    height: 32px !important;
}

/* 注册广告 */
.register-advert {
    display: none !important;
}

/* 侧边工具栏 */
.aside-tools .tools-item {
    width: 48px !important;
    height: 48px !important;
    background: white !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    margin-bottom: 8px !important;
}

.aside-tools .tools-item:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
}

.aside-tools .tools-item img {
    width: 24px !important;
    height: 24px !important;
}

/* 通用按钮 */
.btn {
    border-radius: 6px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.btn2 {
    background: linear-gradient(135deg, #002ab1 0%, #0052d9 50%, #1466ed 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(0,82,217,0.25) !important;
}

.btn2:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 16px rgba(0,82,217,0.35) !important;
    color: white !important;
}

/* 价格 */
.price {
    color: #0052d9 !important;
    font-weight: 700 !important;
}

/* 标签 */
.service-tag {
    background: rgba(0,82,217,0.08) !important;
    color: #0052d9 !important;
    border-radius: 4px !important;
    padding: 4px 10px !important;
    font-size: 12px !important;
}

/* 表单 */
input, select, textarea {
    border-radius: 6px !important;
    border: 1px solid #e5e6eb !important;
    transition: all 0.15s ease !important;
}

input:focus, select:focus, textarea:focus {
    border-color: #0052d9 !important;
    box-shadow: 0 0 0 3px rgba(0,82,217,0.1) !important;
    outline: none !important;
}

/* 表格 */
table {
    border-radius: 10px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
}

th {
    background: #f5f7fa !important;
    color: #1d2129 !important;
    font-weight: 600 !important;
    padding: 14px 16px !important;
}

td {
    padding: 14px 16px !important;
    border-bottom: 1px solid #f2f3f5 !important;
}

/* 分页 */
.pagination li a {
    border-radius: 6px !important;
    border: 1px solid #e5e6eb !important;
    transition: all 0.15s ease !important;
}

.pagination li.active a {
    background: #0052d9 !important;
    border-color: #0052d9 !important;
    color: white !important;
}

.pagination li a:hover {
    border-color: #0052d9 !important;
    color: #0052d9 !important;
}

/* 动画 */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* 响应式 */
@media (max-width: 768px) {
    .nav-menu { display: none !important; }
    .section-title h2 { font-size: 24px !important; }
    .section.banner { min-height: 240px !important; }
}
