/* 国际SEO优化页面主样式 */
:root {
    /* 主色调 */
    --int-seo-primary: #3a78ff;
    --int-seo-secondary: #ff6b6b;
    --int-seo-accent: #29cc97;

    
    /* 渐变色 */
    --int-seo-gradient: linear-gradient(135deg, #3a78ff, #29cc97);
    --int-seo-gradient-alt: linear-gradient(135deg, #ff6b6b, #ffb259);
    
    /* 阴影 */
    --int-seo-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --int-seo-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --int-seo-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    /* 过渡 */
    --int-seo-transition: all 0.3s ease;
    
    /* 字体 */
    --int-seo-font-heading: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --int-seo-font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    
    /* 边框圆角 */
    --int-seo-border-radius: 8px;
}

/* 全局样式 */
.int-seo-page {
    font-family: var(--int-seo-font-body);
    color: var(--int-seo-dark);
    line-height: 1.6;
}

/* Font Awesome图标统一样式 */
.fas, .fab, .far, .fal, .fad {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    vertical-align: middle;
}

/* 确保图标在容器中居中显示 */
i[class^="fa"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.int-seo-page h1, 
.int-seo-page h2, 
.int-seo-page h3, 
.int-seo-page h4, 
.int-seo-page h5, 
.int-seo-page h6 {
    font-family: var(--int-seo-font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--int-seo-dark);
}

.int-seo-page h1 {
    font-size: 3.5rem;
}

.int-seo-page h2 {
    font-size: 2.5rem;
}

.int-seo-page h3 {
    font-size: 2rem;
}

.int-seo-page h4 {
    font-size: 1.5rem;
}

.int-seo-page h5 {
    font-size: 1.25rem;
}

.int-seo-page h6 {
    font-size: 1rem;
}

.int-seo-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.int-seo-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* 背景装饰元素 */
.int-seo-bg-pattern {
    position: absolute;
    z-index: 0;
    opacity: 0.05;
}

/* 按钮样式 */
.int-seo-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--int-seo-border-radius);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: var(--int-seo-transition);
    cursor: pointer;
    border: none;
    outline: none;
}

.int-seo-btn-primary {
    background: var(--int-seo-gradient);
    color: white;
    box-shadow: var(--int-seo-shadow-md);
}

.int-seo-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--int-seo-shadow-lg);
}

.int-seo-btn-secondary {
    background: white;
    color: var(--int-seo-primary);
    border: 2px solid var(--int-seo-primary);
}

.int-seo-btn-secondary:hover {
    background: var(--int-seo-primary);
    color: white;
}

/* 卡片样式 */
.int-seo-card {
    background: white;
    border-radius: var(--int-seo-border-radius);
    box-shadow: var(--int-seo-shadow-md);
    padding: 30px;
    transition: var(--int-seo-transition);
}

.int-seo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--int-seo-shadow-lg);
}

/* 文本强调 */
.int-seo-text-primary {
    color: var(--int-seo-primary);
}

.int-seo-text-secondary {
    color: var(--int-seo-secondary);
}

.int-seo-text-accent {
    color: var(--int-seo-accent);
}

/* 文本对齐 */
.int-seo-text-center {
    text-align: center;
}

.int-seo-text-right {
    text-align: right;
}

.int-seo-text-left {
    text-align: left;
}

/* 边距工具类 */
.int-seo-mt-1 { margin-top: 0.5rem; }
.int-seo-mt-2 { margin-top: 1rem; }
.int-seo-mt-3 { margin-top: 1.5rem; }
.int-seo-mt-4 { margin-top: 2rem; }
.int-seo-mt-5 { margin-top: 3rem; }

.int-seo-mb-1 { margin-bottom: 0.5rem; }
.int-seo-mb-2 { margin-bottom: 1rem; }
.int-seo-mb-3 { margin-bottom: 1.5rem; }
.int-seo-mb-4 { margin-bottom: 2rem; }
.int-seo-mb-5 { margin-bottom: 3rem; }

/* 响应式网格 */
.int-seo-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.int-seo-col {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 768px) {
    .int-seo-col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .int-seo-col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    
    .int-seo-col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    
    .int-seo-col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .int-seo-col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
}

/* 动画类 */
.int-seo-fade-in {
    animation: intSeoFadeIn 1s ease forwards;
}

.int-seo-fade-up {
    animation: intSeoFadeUp 1s ease forwards;
}

@keyframes intSeoFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes intSeoFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 媒体查询 */
@media (max-width: 768px) {
    .int-seo-page h1 {
        font-size: 2.5rem;
    }
    
    .int-seo-page h2 {
        font-size: 2rem;
    }
    
    .int-seo-page h3 {
        font-size: 1.75rem;
    }
    
    .int-seo-section {
        padding: 60px 0;
    }
} 