/* ==================== 现代化招聘网站主题样式 ==================== */

/* 主题色彩定义 */
:root {
    --primary-color: #4361ee;
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-color: #f093fb;
    --accent-color: #4facfe;
    --success-color: #00b894;
    --warning-color: #fdcb6e;
    --danger-color: #e17055;
    --dark-color: #2d3436;
    --light-color: #f8f9fa;
    --text-color: #2d3436;
    --text-muted: #636e72;
    --border-radius: 12px;
    --box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== 全局样式 ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    color: var(--text-color);
    line-height: 1.6;
    padding-top: 70px;
}

/* ==================== 导航栏样式 ==================== */
.navbar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    box-shadow: 0 2px 20px rgba(102, 126, 234, 0.3);
    padding: 10px 0;
    transition: var(--transition);
}

.navbar-brand {
    font-size: 24px !important;
    font-weight: 700 !important;
    background: linear-gradient(45deg, #fff, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-brand::before {
    /* content: '\f0b1'; */
    
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    -webkit-text-fill-color: #fff;
    font-size: 28px;
}

.navbar-nav > li > a {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 12px 20px !important;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
}

/* 修复下拉菜单显示问题 */
.navbar-nav > li.dropdown {
    position: relative;
    z-index: 1001;
}

.navbar-nav > li.dropdown:hover .dropdown-menu {
    display: block;
}

/* 确保导航栏容器不会裁剪下拉菜单 */
.navbar-collapse {
    overflow: visible !important;
}

.navbar {
    overflow: visible !important;
}

/* 确保导航栏容器不会裁剪下拉菜单 */
.navbar > .container {
    overflow: visible !important;
}

/* 确保下拉菜单能够完整显示 */
.dropdown-menu {
    position: absolute !important;
    z-index: 1000 !important;
    overflow: visible !important;
}

.navbar-nav > li > a {
    transition: all 0.3s ease;
}

/* 鼠标悬停样式 */
.navbar-nav > li > a:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* 点击和激活样式 */
.navbar-nav > li.active > a,
.navbar-nav > li > a:active,
.navbar-nav > li > a:focus {
    background: rgba(206, 231, 243, 0.3) !important;
    color: #07fc9e !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.navbar-form {
    margin: 8px 15px;
}

.navbar-form .input-group {
    width: 350px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 5px;
    backdrop-filter: blur(10px);
}

.navbar-form .input-group-btn select {
    height: 38px;
    border: none !important;
    background: transparent !important;
    color: #fff !important;
    box-shadow: none !important;
    border-radius: 20px 0 0 20px;
    padding: 0 15px;
    font-size: 14px;
}

.navbar-form .form-control {
    height: 38px;
    border: none !important;
    background: transparent !important;
    color: #fff !important;
    box-shadow: none !important;
    font-size: 14px;
    padding: 0 15px;
    width: 200px;
}

.navbar-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.navbar-form .btn {
    height: 38px;
    border: none !important;
    background: transparent !important;
    color: #fff !important;
    box-shadow: none !important;
    border-radius: 0 20px 20px 0;
    padding: 0 15px;
}

.navbar-form .btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}

/* 下拉菜单样式 */
.dropdown-menu {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 10px 0;
    margin-top: 5px;
    min-width: 160px;
    z-index: 1000;
    position: absolute;
    right: 0;
    left: auto;
}

.dropdown-menu > li > a {
    padding: 12px 25px;
    color: var(--text-color);
    transition: var(--transition);
    font-size: 14px;
}

.dropdown-menu > li > a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

/* ==================== 轮播图样式 ==================== */
.carousel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin: 20px 0;
}

.carousel-inner .item img {
    transition: transform 0.5s ease;
}

.carousel-inner .item:hover img {
    transform: scale(1.05);
}

.carousel-caption {
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 40px;
    border-radius: 0 0 20px 20px;
}

.carousel-caption h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.carousel-caption p {
    font-size: 20px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s both;
}

/* ==================== 区块标题样式 ==================== */
.section-header {
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
    margin-top: 20px;
}

/* ==================== 职位卡片样式 ==================== */
.job-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.job-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.job-card:hover::before {
    transform: scaleX(1);
}

.job-card .job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.job-card .job-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-card .job-title::before {
    content: '\f0b1';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    font-size: 16px;
}

.job-card .job-salary {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 10px;
}

.job-card .job-company {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e0e0e0;
}

.job-card .company-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.job-card .company-name {
    font-weight: 500;
    color: var(--text-color);
}

.job-card .job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.job-card .job-tag {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
    color: var(--text-muted);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.job-card .job-tag i {
    font-size: 10px;
    color: var(--primary-color);
}

.job-card .job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.job-card .job-location {
    color: var(--text-muted);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-card .job-time {
    color: #999;
    font-size: 12px;
}

/* ==================== 公司卡片样式 ==================== */
.company-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.company-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.company-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.company-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.company-card:hover::after {
    transform: scaleX(1);
}

.company-card .company-logo-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.company-card:hover .company-logo-wrapper {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.company-card .company-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-card .company-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.company-card .company-field {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.company-card .company-field::before {
    content: '\f275';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
}

.company-card .company-info {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 12px;
    color: var(--text-muted);
}

.company-card .company-info span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ==================== 按钮样式 ==================== */
.btn {
    border-radius: 25px !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    transition: var(--transition) !important;
    border: none !important;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary-gradient) !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4) !important;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5) !important;
}

.btn-success {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%) !important;
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.4) !important;
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.5) !important;
}

.btn-warning {
    background: linear-gradient(135deg, #fdcb6e 0%, #e17055 100%) !important;
    box-shadow: 0 4px 15px rgba(253, 203, 110, 0.4) !important;
}

.btn-danger {
    background: linear-gradient(135deg, #e17055 0%, #d63031 100%) !important;
    box-shadow: 0 4px 15px rgba(225, 112, 85, 0.4) !important;
}

.btn-lg {
    padding: 15px 40px !important;
    font-size: 16px !important;
}

/* 查看更多按钮区域 - 居中显示 */
.list-more {
    text-align: center;
    margin: 50px 0 60px;
    clear: both;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* 查看更多按钮 */
.list-more-btn {
    background: transparent !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    padding: 15px 60px !important;
    font-size: 16px !important;
    display: inline-block;
    margin: 0 auto;
}

.list-more-btn:hover {
    background: var(--primary-gradient) !important;
    color: #fff !important;
    border-color: transparent !important;
}

/* ==================== 统计卡片 ==================== */
.stats-section {
    background: var(--primary-gradient);
    padding: 60px 0;
    margin: 40px 0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: moveBackground 20s linear infinite;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.stat-card .stat-icon {
    font-size: 40px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-card .stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.stat-card .stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* ==================== 特性展示 ==================== */
.features-section {
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* ==================== Footer样式 ==================== */
.footer {
    background: linear-gradient(135deg, #2d3436 0%, #1e272e 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 50px 0 30px;
    margin-top: 80px;
    border-radius: 30px 30px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    line-height: 2;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: #f093fb;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

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

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(20px, 20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .job-list {
        grid-template-columns: 1fr;
    }
    
    .company-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .carousel-caption h2 {
        font-size: 28px;
    }
    
    .carousel-caption p {
        font-size: 14px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ==================== 加载动画 ==================== */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(102, 126, 234, 0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ==================== 悬浮提示 ==================== */
.tooltip {
    position: relative;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--dark-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ==================== 返回顶部按钮 ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

/* ==================== 首页额外美化 ==================== */

/* 浮动装饰元素 */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    animation: float 6s ease-in-out infinite;
}

.floating-shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 5%;
    animation-delay: 2s;
}

.floating-shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 10%;
    animation-delay: 4s;
}

/* 热门标签 */
.hot-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    margin-left: 8px;
    animation: pulse 2s infinite;
}

.hot-badge i {
    font-size: 10px;
}

/* 新职位标签 */
.new-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    margin-left: 8px;
}

/* 推荐企业标签 */
.recommended-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #fdcb6e 0%, #f39c12 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(253, 203, 110, 0.4);
    z-index: 10;
}

/* 薪资高亮 */
.salary-highlight {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* 职位卡片额外样式 */
.job-card-featured {
    border: 2px solid rgba(102, 126, 234, 0.3);
    position: relative;
}

.job-card-featured::before {
    content: '推荐';
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* 公司卡片额外样式 */
.company-card-premium {
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.company-card-premium .company-logo-wrapper {
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
}

/* 轮播图增强 */
.carousel-item-content {
    position: relative;
    overflow: hidden;
}

.carousel-item-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
}

/* 轮播图片悬停缩放效果 */
.carousel .item.active .carousel-img {
    transform: scale(1.08);
}

.carousel .item .carousel-img {
    transform: scale(1);
}

/* 轮播指示器样式 */
.carousel-indicators li {
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.carousel-indicators li.active {
    background-color: #fff;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255,255,255,0.6);
}

/* 轮播控制按钮 */
.carousel-control {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.carousel:hover .carousel-control {
    opacity: 1;
}

.carousel-control:hover {
    background: rgba(255, 255, 255, 0.4);
}

.carousel-control .glyphicon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: white;
}

.carousel-control.left,
.carousel-control.right {
    background-image: none;
}

/* 统计数字动画 */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number.animate {
    animation: countUp 0.8s ease forwards;
}

/* 特性卡片图标动画 */
.feature-icon {
    animation: float 3s ease-in-out infinite;
}

.feature-card:nth-child(2) .feature-icon {
    animation-delay: 0.5s;
}

.feature-card:nth-child(3) .feature-icon {
    animation-delay: 1s;
}

/* CTA区域增强 */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section .cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
    animation: moveBackground 15s linear infinite;
}

/* 热门行业标签 */
.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 30px 0;
}

.industry-tag {
    background: #fff;
    color: #667eea;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.industry-tag:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.industry-tag i {
    margin-right: 8px;
}

/* 快速入口卡片 */
.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.quick-access-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.quick-access-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    text-decoration: none;
    color: inherit;
}

.quick-access-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.quick-access-card:nth-child(1) .quick-access-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.quick-access-card:nth-child(2) .quick-access-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.quick-access-card:nth-child(3) .quick-access-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.quick-access-card:nth-child(4) .quick-access-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.quick-access-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.quick-access-card p {
    font-size: 13px;
    color: #999;
    margin: 0;
}

/* 信任标识 */
.trust-section {
    background: #fff;
    padding: 40px 0;
    margin: 40px 0;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.trust-title {
    text-align: center;
    color: #999;
    font-size: 14px;
    margin-bottom: 30px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-logo {
    font-size: 24px;
    color: #ccc;
    transition: all 0.3s ease;
}

.trust-logo:hover {
    color: #667eea;
    transform: scale(1.1);
}

/* 成功案例 */
.success-stories {
    padding: 60px 0;
}

.story-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
}

.story-quote {
    font-size: 18px;
    color: #333;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.story-quote::before {
    content: '"';
    font-size: 50px;
    color: rgba(102, 126, 234, 0.2);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.story-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.story-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
}

.story-info p {
    font-size: 13px;
    color: #999;
    margin: 0;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .quick-access-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .quick-access-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-logos {
        gap: 30px;
    }
    
    .floating-shape {
        display: none;
    }
}

/* 页面加载动画 */
.page-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loading.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    font-size: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 1.5s infinite;
}

/* ==================== 紧凑版职位卡片 ==================== */

.job-card-compact {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.08);
    margin-bottom: 12px;
}

.job-card-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

/* 职位列表网格布局 */
.job-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 12px;
    padding: 10px 0;
}

@media (max-width: 768px) {
    .job-list {
        grid-template-columns: 1fr;
    }
}
