/*-----------------------------------------------------------------------------------

    Template Name: JobHelp
    Template URI: http://bootexperts.com
    Description: This is html5 template
    Author: BootExperts
    Author URI: http://bootexperts.com
    Version: 1.0

-----------------------------------------------------------------------------------*/

/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Microsoft YaHei', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #f5f7fa;
}

/* 段落美化 */
.section-content p {
    font-size: 16px;
    line-height: 2.1;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
    text-indent: 2em;
    letter-spacing: 0.3px;
    word-spacing: 2px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #3498db;
}

.section-content strong {
    color: #2c3e50;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* 页面特定段落样式 */
.page-daima-content .section-content p {
    border-left-color: #667eea;
    background: linear-gradient(135deg, #f5f7fa 0%, #eef2ff 100%);
}

.page-daihuai-content .section-content p {
    border-left-color: #f5576c;
    background: linear-gradient(135deg, #f5f7fa 0%, #fff0f1 100%);
}

.page-daisheng-content .section-content p {
    border-left-color: #4facfe;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f5fe 100%);
}

.page-daimu-content .section-content p {
    border-left-color: #43e97b;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8fff0 100%);
}

.page-zhuyun-content .section-content p {
    border-left-color: #fa709a;
    background: linear-gradient(135deg, #f5f7fa 0%, #fff0f4 100%);
}

/* 标题样式 */
h1 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #3498db;
    position: relative;
}

h1::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #e74c3c;
}

h2 {
    font-size: 26px;
    font-weight: 600;
    color: #34495e;
    margin: 30px 0 20px;
}

/* 卡片容器 */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.single-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.single-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.single-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* 特色区块 */
.feature-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.feature-section h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.feature-item .icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 14px;
    opacity: 0.9;
}

/* 图片展示区 */
.image-showcase {
    margin: 40px 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.showcase-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 220px;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.showcase-item:hover img {
    transform: scale(1.15);
}

.showcase-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-item:hover .overlay {
    opacity: 1;
}

.showcase-item .overlay-text {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* 统计数据区域 */
.stats-section {
    padding: 50px 0;
    background: #f5f5f5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.stat-item .number {
    font-size: 42px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-item .label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 按钮样式 */
.btn-custom {
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
    text-decoration: none;
    color: #fff;
}

.btn-custom-secondary {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.btn-custom-secondary:hover {
    box-shadow: 0 8px 20px rgba(155, 89, 182, 0.4);
}

/* 页面特定样式 */
.page-daima {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.page-daihuai {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
}

.page-daisheng {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #43e97b 100%);
}

.page-daimu {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 50%, #fa709a 100%);
}

.page-zhuyun {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 50%, #ff9a9e 100%);
}

.page-index {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #6B8DD6 100%);
}

/* 服务特色卡片 */
.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #3498db;
}

.service-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.service-card h3::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #3498db;
    color: #fff;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 14px;
}

.service-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

/* 页头美化 */
.header-area {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.logo a {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.logo a:hover {
    color: #3498db;
}

.main-menu li a {
    font-weight: 600;
    color: #34495e;
    transition: color 0.3s ease;
}

.main-menu li a:hover {
    color: #3498db;
}

/* 面包屑区域 */
.breadcrumb-banner-area {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.breadcrumb-banner-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.breadcrumb-text h2 {
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breadcrumb-bar a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.breadcrumb-bar a:hover {
    color: #fff;
}

/* 内容区域 */
.job-post-area {
    padding: 80px 0;
}

/* 页脚美化 */
.footer-widget-area {
    background: #1a1a2e;
}

.footer-widget-area h3 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-list li a:hover {
    color: #fff;
    padding-left: 10px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #3498db;
    transform: translateY(-5px);
}

.footer-area {
    background: #16213e;
}

/* 响应式设计 */
@media (max-width: 768px) {
    h1 {
        font-size: 24px;
    }
    
    .breadcrumb-text h2 {
        font-size: 28px;
    }
    
    .card-container {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s ease forwards;
}

.animate-scaleIn {
    animation: scaleIn 0.5s ease forwards;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* 延迟动画 */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* 页面特定背景装饰 */
.page-daima::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(102,126,234,0.3) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.page-daihuai::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(245,87,108,0.3) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite reverse;
}

.page-daisheng::before {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -25%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(79,172,254,0.3) 0%, transparent 70%);
    animation: float 5s ease-in-out infinite;
}

.page-daimu::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -25%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(67,233,123,0.3) 0%, transparent 70%);
    animation: float 5s ease-in-out infinite reverse;
}

.page-zhuyun::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(250,112,154,0.3) 0%, transparent 70%);
    animation: float 7s ease-in-out infinite;
}

.page-index::before {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(102,126,234,0.25) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite reverse;
}

/* 装饰元素 */
.decor-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

/* 高级卡片悬停效果 */
.single-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52,152,219,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.single-card:hover::before {
    opacity: 1;
}

/* 服务卡片发光效果 */
.service-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3498db, #9b59b6, #e74c3c, #3498db);
    background-size: 400% 400%;
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.service-card:hover::after {
    opacity: 0.5;
}

/* 图片展示区进阶效果 */
.showcase-item {
    perspective: 1000px;
}

.showcase-item img {
    transform-style: preserve-3d;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.showcase-item:hover img {
    transform: scale(1.15) rotateY(5deg);
    filter: brightness(1.1);
}

/* 统计数字动画 */
.stat-item .number {
    position: relative;
}

.stat-item .number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: currentColor;
    transition: width 0.5s ease;
}

.stat-item:hover .number::after {
    width: 60%;
}

/* 响应式优化 */
@media (max-width: 768px) {
    .section-content p {
        padding: 18px 20px;
        font-size: 15px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .card-container {
        gap: 20px;
    }
}