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

body {
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== 
   头部样式
==================== */
.header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    background: #1e88e5;
    padding: 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
}

.logo-area {
    flex-shrink: 0;
    z-index: 10;
    padding: 10px 0;
}

.logo {
    height: 45px;
    display: block;
}

.navbar-header {
    display: none;
}

.navbar-toggle {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

.navbar-menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-item a {
    display: block;
    padding: 18px 30px;
    color: #fff;
    font-size: 16px;
    position: relative;
}

.nav-item a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
}

.nav-item:first-child a::before {
    display: none;
}

.nav-item:hover a,
.nav-item.active a {
    background: rgba(255, 255, 255, 0.1);
}

/* ==================== 
   Banner轮播
==================== */
.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-swiper {
    width: 100%;
    height: 600px;
}

.banner-item {
    width: 100%;
    height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.banner-content {
    text-align: left;
    color: #fff;
    z-index: 2;
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 600px;
    padding: 40px;
    background: rgba(30, 136, 229, 0.85);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.banner-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.banner-content p {
    font-size: 20px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 25px;
}

.banner-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #1e88e5;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.banner-btn:hover {
    background: #1e88e5;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
}

.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(30, 136, 229, 0.8);
}

/* ==================== 
   通用区块样式
==================== */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #333;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #1e88e5;
}

.section-title .subtitle {
    font-size: 16px;
    color: #666;
    margin-top: 20px;
}

/* ==================== 
   服务项目
==================== */
.service {
    background: #f5f5f5;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-item {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1e88e5, #1565c0);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.15);
}

.service-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    background: linear-gradient(135deg, #1e88e5, #1565c0);
    transform: scale(1.05);
}

.service-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.service-item:hover .service-icon img {
    filter: brightness(0) invert(1);
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-item:hover .service-info h3 {
    color: #1e88e5;
}

.service-info p {
    color: #666;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 15px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.service-tags .tag {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1565c0;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-item:hover .service-tags .tag {
    background: linear-gradient(135deg, #1e88e5, #1565c0);
    color: #fff;
}

/* ====================
   能力展示
==================== */
.ability {
    background: #fff;
}

.ability-swiper {
    padding: 0 20px 40px;
}

.ability-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.ability-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(30, 136, 229, 0.2);
}

.ability-image {
    position: relative;
    height: 200px;
    background: #f5f5f5;
    overflow: hidden;
}

.ability-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}

.image-placeholder i {
    font-size: 60px;
    color: #1e88e5;
}

.ability-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 136, 229, 0.9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ability-card:hover .ability-link {
    opacity: 1;
}

.ability-info {
    padding: 20px;
}

.ability-info h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.ability-info p {
    font-size: 14px;
    color: #666;
}

/* ==================== 
   新闻资讯
==================== */
.news {
    background: #f5f5f5;
}

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

.news-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(30, 136, 229, 0.2);
}

.news-image {
    height: 200px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-image i {
    font-size: 50px;
    color: #1e88e5;
}

.news-content {
    padding: 25px;
}

.news-date {
    font-size: 13px;
    color: #1e88e5;
    margin-bottom: 12px;
}

.news-content h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
}

.news-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #1e88e5;
}

.news-summary {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-link {
    display: inline-block;
    color: #1e88e5;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #1565c0;
}

.news-more {
    text-align: center;
    margin-top: 40px;
}
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 15px;
}

.news-more {
    color: #1e88e5;
    font-size: 14px;
}

.news-more:hover {
    color: #1565c0;
}

.news-more-btn {
    text-align: center;
    margin-top: 40px;
}

/* ==================== 
   货物追踪
==================== */
.tracking {
    background: url('images/tracking-creative-bg.jpg') center center / cover no-repeat fixed;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.tracking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.85), rgba(21, 101, 192, 0.88));
    z-index: 0;
}

.tracking::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.02);
    z-index: 0;
    backdrop-filter: blur(1px);
}

.tracking .container {
    position: relative;
    z-index: 1;
}

.tracking .section-title h2,
.tracking .section-title .subtitle {
    color: #fff;
}

.tracking .section-title h2::after {
    background: #fff;
}

.tracking-box {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 50px 60px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.tracking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tracking-input {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.tracking-input:focus {
    outline: none;
    border-color: #1e88e5;
}

.tracking-hint {
    color: #999;
    font-size: 13px;
    margin-top: 15px;
    text-align: center;
}

.tracking-limit {
    color: #ffcc00;
    font-size: 12px;
    margin-top: 8px;
    text-align: center;
    font-weight: bold;
}

.captcha-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.captcha-input {
    width: 100px;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s ease;
    text-align: center;
    letter-spacing: 2px;
}

.captcha-input:focus {
    outline: none;
    border-color: #1e88e5;
}

#captchaCanvas {
    flex-shrink: 0;
    width: 160px;
    height: 40px;
}

/* 货物追踪结果样式 */
.tracking-result {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.5s ease;
}

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

.tracking-result-header {
    background: linear-gradient(135deg, #1e88e5, #1565c0);
    color: #fff;
    padding: 20px 30px;
}

.tracking-result-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.tracking-result-content {
    padding: 30px;
}

.tracking-info-card {
    background: linear-gradient(135deg, #f5f9ff, #e3f2fd);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
}

.tracking-number-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.tracking-number {
    font-size: 18px;
}

.tracking-number .label {
    color: #666;
    font-weight: 500;
}

.tracking-number .value {
    color: #1e88e5;
    font-weight: 700;
    font-size: 20px;
    margin-left: 10px;
}

.tracking-status-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.tracking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.tracking-info-section {
    background: #fafafa;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid #1e88e5;
}

.tracking-info-section h4 {
    color: #1e88e5;
    margin: 0 0 15px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tracking-info-section h4 i {
    font-size: 18px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px dashed #e0e0e0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row .label {
    color: #666;
    font-size: 14px;
    min-width: 80px;
}

.info-row .value {
    color: #333;
    font-weight: 500;
    font-size: 14px;
    text-align: right;
}

.tracking-timeline-section {
    background: #fafafa;
    border-radius: 8px;
    padding: 25px;
}

.tracking-timeline-section h4 {
    color: #1e88e5;
    margin: 0 0 20px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.timeline-item {
    position: relative;
    padding-bottom: 25px;
    display: flex;
    gap: 20px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item.current {
    background: linear-gradient(90deg, #e3f2fd, transparent);
    margin: 0 -25px;
    padding: 15px 25px;
    border-radius: 8px;
}

.timeline-dot {
    position: absolute;
    left: -30px;
    top: 0;
    width: 30px;
    height: 30px;
    background: #fff;
    border: 3px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.timeline-item.current .timeline-dot {
    background: #1e88e5;
    border-color: #1e88e5;
    box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.2);
}

.timeline-dot i {
    font-size: 10px;
    color: #999;
}

.timeline-item.current .timeline-dot i {
    color: #fff;
    font-size: 12px;
}

.timeline-content {
    flex: 1;
}

.timeline-time {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.timeline-item.current .timeline-time {
    color: #1e88e5;
    font-weight: 600;
}

.timeline-status {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.timeline-item.current .timeline-status {
    color: #1e88e5;
}

.timeline-location {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.timeline-location i {
    color: #1e88e5;
}

.timeline-description {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
}

.tracking-footer {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    text-align: right;
}

.update-time {
    color: #999;
    font-size: 13px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.update-time i {
    color: #1e88e5;
}

.tracking-error {
    text-align: center;
    padding: 40px;
    color: #999;
}

.tracking-error i {
    font-size: 48px;
    color: #ff5722;
    margin-bottom: 15px;
    display: block;
}

.tracking-error p {
    font-size: 16px;
    margin: 0;
}

@media (max-width: 768px) {
    .tracking-box {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .tracking-form {
        gap: 15px;
    }

    .tracking-input {
        padding: 16px 18px;
    }

    .captcha-group {
        flex-wrap: wrap;
        gap: 10px;
    }

    .captcha-input {
        flex: 1;
        min-width: 120px;
    }

    #captchaCanvas {
        width: 140px;
        height: 40px;
    }

    .tracking-btn {
        width: 100%;
    }

    .tracking-result-content {
        padding: 20px;
    }

    .tracking-grid {
        grid-template-columns: 1fr;
    }

    .tracking-number-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline-item.current {
        margin: 0 -20px;
        padding: 15px 20px;
    }
}

/* ====================
   按钮样式
==================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #1e88e5;
    color: #fff;
}

.btn-primary:hover {
    background: #1565c0;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #1e88e5;
    color: #1e88e5;
}

.btn-outline:hover {
    background: #1e88e5;
    color: #fff;
}

.btn-block {
    width: 100%;
    display: block;
}

/* ==================== 
   合作伙伴
==================== */
.partner {
    background: #fff;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.partner-item {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.partner-item:hover {
    background: #1e88e5;
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
}

.partner-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.partner-item:hover img {
    filter: brightness(0) invert(1);
}

.partner-logo i {
    font-size: 40px;
    color: #1e88e5;
    transition: color 0.3s ease;
}

.partner-item:hover .partner-logo i {
    color: #fff;
}

/* ====================
   招聘信息
==================== */
.recruit {
    background: #f5f5f5;
}

.recruit-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

/* 左侧：招聘岗位列表 */
.recruit-thumbs {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    height: fit-content;
    align-self: start;
}

/* Swiper slide自适应高度 */
.recruit-swiper-thumbs .swiper-slide {
    height: auto !important;
}

.recruit-list-header {
    padding: 24px 30px;
    background: linear-gradient(135deg, #1e88e5, #1565c0);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recruit-list-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.recruit-count {
    font-size: 14px;
    opacity: 0.9;
}

.recruit-thumb-item {
    padding: 35px 35px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.recruit-thumb-item:hover {
    background: #f5f5f5;
}

.thumb-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #f5f5f5;
}

.thumb-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumb-info {
    flex: 1;
}

.thumb-title {
    font-size: 17px;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}

.thumb-meta {
    display: flex;
    gap: 12px;
    font-size: 13px;
}

.thumb-count {
    color: #666;
}

.thumb-status {
    color: #4caf50;
    font-weight: 500;
}

.swiper-slide-thumb-active .recruit-thumb-item {
    background: #e3f2fd;
    border-left: 3px solid #1e88e5;
}

.swiper-slide-thumb-active .thumb-title {
    color: #1e88e5;
}

.swiper-slide-thumb-active .thumb-status {
    color: #1e88e5;
}

/* 右侧：招聘详情 */
.recruit-main {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.recruit-detail {
    padding: 40px;
    line-height: 2;
    min-height: auto;
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e3f2fd;
}

.detail-header h3 {
    margin: 0;
    font-size: 22px;
    color: #1e88e5;
    font-weight: 600;
}

.detail-status {
    padding: 8px 16px;
    background: linear-gradient(135deg, #4caf50, #43a047);
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.recruit-detail h4 {
    color: #1e88e5;
    margin: 25px 0 15px;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-left: 15px;
}

.recruit-detail h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background: #1e88e5;
    border-radius: 2px;
}

.recruit-detail h4:first-of-type {
    margin-top: 0;
}

.recruit-detail p {
    color: #555;
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 15px;
    line-height: 1.8;
}

/* 轮播按钮 */
.recruit-main .swiper-button-prev,
.recruit-main .swiper-button-next {
    color: #1e88e5;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.recruit-main .swiper-button-prev::after,
.recruit-main .swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-slide-thumb-active .thumb-icon {
    background: rgba(255, 255, 255, 0.2);
}

.swiper-slide-thumb-active .thumb-icon i,
.swiper-slide-thumb-active .thumb-title {
    color: #fff;
}

/* ==================== 
   联系我们
==================== */
.contact {
    background: url('images/contact-creative-bg.jpg') center center / cover no-repeat fixed;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(245, 245, 245, 0.90));
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 1);
}

.contact-item i {
    font-size: 36px;
    color: #1e88e5;
    margin-top: 5px;
}

.contact-text h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.contact-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

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

/* ==================== 
   页脚样式 - 精致版
==================== */
.footer {
    background: linear-gradient(135deg, #0a3d7a 0%, #1565c0 40%, #1976d2 100%);
    color: #fff;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

/* 波浪装饰 */
.footer-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    overflow: hidden;
}

.wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    clip-path: ellipse(60% 100% at 50% 100%);
}

.footer-main {
    padding: 80px 0 50px;
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    z-index: 1;
}

/* 特色区域 */
.footer-highlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #42a5f5, #64b5f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(66, 165, 245, 0.4);
}

.highlight-icon i {
    font-size: 24px;
    color: #fff;
}

.highlight-text h5 {
    font-size: 18px;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.highlight-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* 主要内容网格 */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 50px;
}

/* 公司品牌区域 */
.footer-brand {
    padding-right: 30px;
}

.footer-logo-wrapper {
    margin-bottom: 20px;
}

.footer-logo-text {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #fff, #64b5f6, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.3);
}

.logo-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
    border-radius: 20px;
    font-size: 12px;
    color: #64b5f6;
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
}

.footer-slogan {
    font-size: 16px;
    color: #64b5f6;
    margin-bottom: 18px;
    letter-spacing: 4px;
    font-weight: 500;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* 社交媒体图标 */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: #42a5f5;
    transform: translateY(-3px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(66, 165, 245, 0.5);
}

/* 快捷链接 */
.footer-links-new h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links-new h4 i {
    font-size: 16px;
    color: #64b5f6;
}

.footer-links-new h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #64b5f6, #42a5f5);
    border-radius: 2px;
}

.footer-links-new ul {
    list-style: none;
}

.footer-links-new ul li {
    margin-bottom: 12px;
}

.footer-links-new ul li a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    position: relative;
}

.footer-links-new ul li a i {
    font-size: 14px;
    color: #64b5f6;
    width: 20px;
    transition: transform 0.3s ease;
}

.footer-links-new ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #64b5f6;
    transition: width 0.3s ease;
}

.footer-links-new ul li a:hover {
    color: #fff;
    padding-left: 10px;
}

.footer-links-new ul li a:hover i {
    transform: scale(1.2);
}

.footer-links-new ul li a:hover::before {
    width: 100%;
}

/* 联系方式 */
.footer-contact-new h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-new h4 i {
    font-size: 16px;
    color: #64b5f6;
}

.footer-contact-new h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #64b5f6, #42a5f5);
    border-radius: 2px;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.contact-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-row:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(8px);
}

.contact-row:hover::before {
    left: 100%;
}

.contact-icon-wrapper {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #42a5f5, #64b5f6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(66, 165, 245, 0.3);
}

.contact-icon-wrapper i {
    font-size: 18px;
    color: #fff;
}

.contact-row > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.contact-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

.contact-value {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}

/* 底部版权 */
.footer-bottom {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #64b5f6;
    transition: width 0.3s ease;
}

.footer-bottom a:hover {
    color: #64b5f6;
}

.footer-bottom a:hover::after {
    width: 100%;
}

/* 响应式设计 */
@media screen and (max-width: 1024px) {
    .footer-highlight {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        padding-right: 0;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links-new h4,
    .footer-contact-new h4 {
        justify-content: center;
    }

    .footer-links-new h4::after,
    .footer-contact-new h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-new ul li a {
        justify-content: center;
    }

    .contact-detail {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        margin-top: 60px;
    }

    .footer-main {
        padding: 50px 0 40px;
    }

    .footer-logo-text {
        font-size: 28px;
    }

    .highlight-item {
        flex-direction: column;
        text-align: center;
    }

    .highlight-icon {
        width: 50px;
        height: 50px;
    }

    .contact-row {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .contact-icon-wrapper {
        margin: 0 auto;
    }

    .recruit-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .recruit-detail {
        padding: 25px 20px;
        min-height: auto;
    }

    .detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .detail-header h3 {
        font-size: 18px;
    }

    .recruit-thumb-item {
        padding: 15px 20px;
    }

    .thumb-icon {
        width: 40px;
        height: 40px;
    }
}

/* ==================== 
   回到顶部
==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #1e88e5;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
}

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

.back-to-top:hover {
    background: #1565c0;
    transform: translateY(-5px);
}

/* ====================
   响应式设计
==================== */
@media screen and (max-width: 1024px) {
    .banner-content {
        left: 5%;
        max-width: 70%;
        padding: 30px;
    }

    .banner-content h2 {
        font-size: 36px;
    }

    .banner-content p {
        font-size: 18px;
    }

    .banner-btn {
        padding: 12px 30px;
    }
}
    .container {
        padding: 0 20px;
    }
    
    .banner-swiper,
    .banner-item {
        height: 500px;
    }
    
    .banner-content h2 {
        font-size: 36px;
    }
    
    .service-list {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .recruit-container {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .banner-swiper,
    .banner-item {
        height: 400px;
    }

    .banner-content {
        left: 5%;
        right: 5%;
        max-width: 90%;
        padding: 25px;
        background: rgba(30, 136, 229, 0.9);
    }

    .banner-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .banner-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .banner-btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .navbar .container {
        flex-wrap: wrap;
    }

    .logo-area {
        flex: 1;
    }

    .logo {
        height: 40px;
    }

    .navbar-header {
        display: block;
        order: 2;
    }

    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1e88e5;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        order: 3;
    }

    .navbar-menu.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
    }

    .nav-item a::before {
        display: none;
    }

    .nav-item a {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .banner-swiper,
    .banner-item {
        height: 400px;
    }
    
    .banner-content h2 {
        font-size: 28px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .service-item {
        flex-direction: column;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-contact {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media screen and (max-width: 480px) {
    .banner-swiper,
    .banner-item {
        height: 300px;
    }
    
    .banner-content h2 {
        font-size: 24px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
    
    .tracking-form {
        flex-direction: column;
    }
    
    .partner-grid {
        grid-template-columns: 1fr;
    }
}
/* ==================== 
   布局优化 - 确保对齐
==================== */

/* 确保所有主要区块左右对齐 */
.header-top .container,
.navbar .container,
.footer-top,
.footer-contact,
.footer-bottom {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* 头部Logo对齐优化 */
.header-top {
    padding: 15px 20px;
}

.header-top .container {
    padding: 0;
}

.logo-area {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* 导航栏对齐优化 */
.navbar .container {
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 底部对齐优化 */
.footer-top .container {
    padding: 0;
}

.footer-contact .container {
    padding: 0;
}

.footer-bottom .container {
    padding: 0;
    text-align: center;
}

/* 内容区域统一间距 */
.section {
    padding: 80px 20px;
}

/* Banner全宽 */
.banner {
    width: 100%;
    margin: 0;
}

.banner .container {
    padding: 0;
}
