@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", Arial, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 2.0;
    font-size: 14px;
}

.container {
    max-width: 1660px;
    margin: 0 auto;
    /*  padding: 0 10px;*/
}

header {
    background: linear-gradient(135deg, #1e88e5, #0d47a1);
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    /*  position: sticky;*/
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo-icon {
    margin-right: 10px;
    font-size: 28px;
}

.copy-btn {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
   
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

nav {
    background: linear-gradient(135deg, #1565c0, #0d47a1);
    padding: 10px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /*  position: sticky;*/
    top: 64px;
    z-index: 99;
}

.nav-links {
    display: block;
    /* */ flex-wrap: nowrap;
    padding: 0 5px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 1px 15px;
    margin: 3px 6px;
    border-radius: 20px;
    transition: all 0.3s;
    white-space: nowrap;
    font-size: 14px;
    background-color: rgba(255,255,255,0.1);
}

.nav-links a:hover, .nav-links a.active {
    background-color: rgba(255,255,255,0.2);
}

.content-section {
    background-color: white;
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.section-title {
    color: #1e88e5;
    border-bottom: 2px solid #e3f2fd;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 20px;
    display: flex;
    align-items: left;
    justify-content: left;
}

.section-title i {
    margin-right: 10px;
    font-size: 22px;
}

.section-title .copy-btn {
    font-size: 12px;
    padding: 5px 10px;
}

.job-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
    
}

.job-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.job-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.job-title i {
    margin-right: 8px;
    color: #ff9800;
    font-size: 20px;
}

.job-info {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 8px;
    gap: 10px;
}

.job-info span {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    padding: 3px 10px;
    border-radius: 15px;
}

.job-info i {
    margin-right: 5px;
    font-size: 16px;
    color: #999;
}

.job-contact {
    background-color: #f9f9f9;
    padding: 12px;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 14px;
}

.job-contact p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.job-contact p:last-child {
    margin-bottom: 0;
}

.job-contact i {
    margin-right: 8px;
    color: #1e88e5;
    font-size: 16px;
    min-width: 20px;
    text-align: center;
}

.job-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.benefit-tag {
    background-color: #e3f2fd;
    color: #1976d2;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 12px;
}

.ad-container, .ad-banner {
    position: relative;
    width: 100%;
    max-width: 1660px;
    height: auto;
    min-height: auto;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    /* */ margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    /* padding: 15px; */
    text-align: center;
    border: 1px dashed #ccc;
}

.ad-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff6b6b;
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.ad-banner {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    color: #666;
    font-size: 18px;
    min-height: auto;
}

.ad-banner::before {
    content: "广告位招租";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #999;
    font-weight: bold;
    opacity: 0.5;
}

.ad-banner span {
    position: relative;
    z-index: 1;
    background-color: rgba(255,255,255,0.8);
    padding: 5px 15px;
    border-radius: 30px;
    display: flex;
    align-items: center;
}

.ad-banner span::before {
    content: "📞";
    margin-right: 8px;
}

footer {
    background: linear-gradient(135deg, #333, #222);
    color: #fff;
    padding: 30px 0;
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 15px 0;
    gap: 15px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.payment-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 30px;
}

.qrcode {
    margin: 10px;
    text-align: center;
}

.qrcode img, .qr-code {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: white;
    padding: 10px;
}

.bank-info {
    background-color: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.bank-info p {
    margin-bottom: 8px;
}

.to-top, .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e88e5, #0d47a1);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s;
    z-index: 99;
}

.to-top.show, .back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top {
    background: #ff4d8a;
}

.back-to-top:hover {
    background: #ff7eab;
    transform: translateY(-3px);
}

.icon {
    font-style: normal;
    font-family: Arial;
}

.job-highlight {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 15px 0;
    border-radius: 0 8px 8px 0;
}

.job-highlight-title {
    font-weight: bold;
    color: #ff6f00;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.job-highlight-title i {
    margin-right: 8px;
}

.tips-section {
    background-color: #e8f5e9;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.tips-title {
    color: #2e7d32;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.tips-title i {
    margin-right: 8px;
}

.tips-content {
    font-size: 14px;
    line-height: 1.8;
}

.tips-content p {
    margin-bottom: 8px;
}

.job-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.job-category {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.job-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.job-category-title {
    font-weight: bold;
    color: #1e88e5;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.job-category-title i {
    margin-right: 8px;
    font-size: 20px;
}

.job-category-count {
    background-color: #e3f2fd;
    color: #1976d2;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    margin-left: 8px;
}

.job-category-list {
    list-style-type: none;
}

.job-category-list li {
    padding: 5px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    justify-content: space-between;
}

.job-category-list li:last-child {
    border-bottom: none;
}

.job-category-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.job-category-link:hover {
    color: #1e88e5;
}

.job-category-more {
    display: block;
    text-align: right;
    margin-top: 10px;
    color: #666;
    font-size: 12px;
}

.statistics-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.statistic-card {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.statistic-number {
    font-size: 28px;
    font-weight: bold;
    color: #1e88e5;
    margin-bottom: 5px;
}

.statistic-label {
    font-size: 14px;
    color: #666;
}

.zjiteminfo {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border-radius: 16px;
    overflow: hidden;
}

.zjiteminfo img {
    border-radius: 16px;
    width: 100%;
    height: auto;
}

.zjiteminfo a {
    color: #e82f6e;
    text-decoration: none;
    font-size: 16px;
    margin-top: 20px;
}

.zjiteminfo:hover {
    transform: translateY(-3px);
}

.job-search {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.search-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
}

.search-title i {
    margin-right: 10px;
    color: #1e88e5;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.search-group {
    display: flex;
    flex-direction: column;
}

.search-label {
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.search-input, .search-select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.search-button {
    background: linear-gradient(135deg, #1e88e5, #0d47a1);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    align-self: flex-end;
}

.search-button:hover {
    background: linear-gradient(135deg, #0d47a1, #1e88e5);
}

.popular-searches {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.popular-tag {
    background-color: #f5f5f5;
    color: #666;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.popular-tag:hover {
    background-color: #e3f2fd;
    color: #1e88e5;
}

.job-alert {
    background-color: #fff3e0;
    border-left: 4px solid #ffa726;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.alert-title {
    font-weight: bold;
    color: #e65100;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.alert-title i {
    margin-right: 10px;
}

.alert-content {
    font-size: 14px;
    line-height: 1.6;
}

.alert-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    margin-top: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.alert-button:hover {
    background: linear-gradient(135deg, #f57c00, #ff9800);
}

/* 移动端优化 */
@media (max-width: 768px) {
    .container {
        /*  padding: 0 10px;*/
    }
    
    header {
        padding: 12px 0;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo-icon {
        font-size: 24px;
    }
    
    .copy-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    nav {
        top: 56px;
    }
    
    .nav-links a {
        padding: 5px 12px;
        font-size: 13px;
        margin: 0 3px;
    }
    
    .content-section {
        padding: 15px;
        margin: 15px 0;
    }
    
    .section-title {
        font-size: 18px;
        /*  flex-direction: column;*/
        align-items: flex-start;
        gap: 10px;
    }
    
    .section-title .copy-btn {
        align-self: flex-end;
    }
    
    .job-title {
        font-size: 16px;
    }
    
    .job-info span {
        font-size: 13px;
    }
    
    .job-contact {
        font-size: 13px;
        padding: 10px;
    }
    
    .job-categories {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .statistics-section {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .qrcode img, .qr-code {
        width: 120px;
        height: 120px;
    }
    
    .bank-info {
        padding: 15px;
        font-size: 13px;
    }
    
    .to-top, .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 18px;
    }
    
    .nav-links a {
        padding: 4px 10px;
        font-size: 12px;
        margin: 0 2px;
    }
    
    .section-title {
        font-size: 16px;
    }
    
    .job-info span {
        font-size: 12px;
    }
    
    .job-categories {
        grid-template-columns: 1fr;
    }
    
    .statistics-section {
        grid-template-columns: 1fr;
    }
    
    .search-form {
        grid-template-columns: 1fr;
    }
    
    .payment-info {
        flex-direction: column;
    }
    
    .qrcode {
        margin: 10px 0;
    }
    
    .to-top, .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 18px;
        bottom: 15px;
        right: 15px;
    }
}

.item-card {
            border: 1px solid #e9ecef;
            padding: 20px;
            border-radius: 8px;
            transition: all 0.3s;
            position: relative;
            background-color: #fff;
        }
        .item-card:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transform: translateY(-5px);
            border-color: #1c6ea4;
        }
        .item-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, #1a4b8c, #1c6ea4);
            opacity: 0;
            transition: opacity 0.3s;
        }
        .item-card:hover::before {
            opacity: 1;
        }