﻿.jobpage {
    width: 1400px;
    margin: 0 auto;
    padding: 50px 0;
}

    .jobpage .daoyu {
        text-align: center;
        padding: 25px;
        background-color: #ffffff;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
        font-size: 18px;
        color: #475569;
        border-left: 5px solid #1a6dcc;
        border-right: 5px solid #1a6dcc;
/*        border-top: 1px solid #1a6dcc;
        border-bottom: 1px solid #1a6dcc;*/
    }

    /* 招聘类别卡片 */
    .jobpage .category-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
        gap: 30px;
        padding: 30px 0;
    }

    .jobpage .category-card {
        background: #FFF;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-top: 4px solid #3b82f6;
    }

        .jobpage .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(30, 58, 138, 0.15);
        }

    .jobpage .card-header {
        /*        background-color: #1e3a8a;
        color: white;
        padding: 20px 25px;*/
        background: linear-gradient(to right, #2c80e0, #1a6dcc);
        color: white;
        padding: 1px 25px;
    }

        .jobpage .card-header h2 {
            font-size: 26px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

            .jobpage .card-header h2 i {
                font-size: 24px;
            }

    .jobpage .card-body {
        padding: 25px;
    }

    .jobpage .responsibility, .positions {
        margin-bottom: 20px;
    }

    .jobpage h3 {
        color: #1e3a8a;
        font-size: 22px;
        margin-bottom: 10px;
        padding-bottom: 5px;
        border-bottom: 2px dashed #e2e8f0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .jobpage h3 i {
            color: #3b82f6;
        }

    /* 修改：为 ul 添加可滚动功能 */
    .jobpage .card-body ul {
        list-style-type: none;
        padding-left: 5px;
        /* 设置固定高度，显示4行 */
        max-height: 180px; /* 大约4行的高度（每行约45px） */
        overflow-y: auto; /* 垂直滚动 */
        padding-right: 8px; /* 为滚动条留出空间 */
        scrollbar-width: thin; /* Firefox 细滚动条 */
        scrollbar-color: #93c5fd transparent; /* Firefox 滚动条颜色 */
    }

        /* Webkit 浏览器滚动条样式 */
        .jobpage .card-body ul::-webkit-scrollbar {
            width: 3px; /* 滚动条宽度 */
        }

        .jobpage .card-body ul::-webkit-scrollbar-track {
            background: transparent; /* 滚动条轨道透明 */
            border-radius: 3px;
        }

        .jobpage .card-body ul::-webkit-scrollbar-thumb {
            background: #93c5fd; /* 滚动条滑块颜色 */
            border-radius: 3px;
        }

            .jobpage .card-body ul::-webkit-scrollbar-thumb:hover {
                background: #3b82f6; /* 鼠标悬停时颜色 */
            }

        .jobpage .card-body ul li {
            padding: 8px 0;
            padding-left: 24px;
            position: relative;
            color: #475569;
        }

            .jobpage .card-body ul li:before {
                content: "•";
                color: #3b82f6;
                font-weight: bold;
                font-size: 19px;
                position: absolute;
                left: 0;
            }
/****/
/* 突出显示的联系方式 */
    .jobpage .joblx {
        background: linear-gradient(135deg, #1a6dcc 0%, #0a4d9c 100%);
        color: white;
        padding: 25px 30px;
        border-radius: 12px;
        text-align: center;
        margin: 0 0 30px;
        box-shadow: 0 5px 20px rgba(26, 109, 204, 0.3);
        border: 2px solid rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
    }

        .jobpage .joblx::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
        }

        .jobpage .joblx span {
            font-size: 1.3rem;
            font-weight: 600;
            display: inline-block;
            position: relative;
            z-index: 1;
        }

            .jobpage .joblx span:first-child {
                margin-right: 30px;
            }

            .jobpage .joblx span i {
                margin-right: 10px;
                font-size: 1.4rem;
            }
        
    /****/
    /* 我们提供 */
    .jobpage .benefits {
        background-color: #ffffff;
        border-radius: 12px;
        padding: 30px;
        margin-top: 20px;
        box-shadow: #ffffff;
        border-left: 5px solid #FFF;
        border-right: 5px solid #FFF;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

        .jobpage .benefits h2 {
            color: #1a6dcc;
            font-size: 32px;
            margin-bottom: 30px;
            text-align: center;
        }

            .jobpage .benefits h2 i {
                margin-right: 3px;
            }

    .jobpage .benefit-items {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .jobpage .benefit-item {
        flex: 1;
        min-width: 200px;
        background-color: #f1f5f9;
        padding: 20px;
        border-radius: 10px;
        text-align: center;
        transition: background-color 0.3s;
    }

        .jobpage .benefit-item:hover {
            background-color: #e0f2fe;
        }

        .jobpage .benefit-item i {
            font-size: 40px;
            color: #3b82f6;
            margin-bottom: 15px;
        }

        .jobpage .benefit-item h4 {
            font-size: 20px;
            color: #3b82f6;
            margin-bottom: 10px;
        }
