﻿.job-list {
    width: 92%;
    margin: 50px auto;
    background-color: white;
    border-radius: 12px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); */
    overflow: hidden;
    margin-bottom: 30px;
}

.job-item {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 24px 30px;
    border-bottom: 1px solid #eef1f5;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    align-items: center;
}

.job-item:last-child {
    border-bottom: none;
}

.job-item:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.job-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center;
}

.job-title i {
    margin-right: 12px;
    color: #d61518;
    font-size: 1.2rem;
}

.salary {
    font-size: 1.0rem;
    color: #d61518;
    font-weight: 600;
    padding: 8px 18px;
    background-color: #fdf2f2;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.job-item:hover .salary {
    background-color: #ffeaea;
    transform: scale(1.05);
}

.arrow {
    margin-left: 10px;
    color: #95a5a6;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.job-item:hover .arrow {
    transform: translateX(5px);
    color: #3498db;
}

.cp-a4 h3 {
	margin-bottom: 2%;
    font-size: 42px;
    text-align: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .job-item {
        grid-template-columns: 1fr;
        grid-gap: 15px;
        padding: 20px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .job-title {
        font-size: 1.2rem;
    }
    
    body {
        padding: 15px;
    }
}





@media (max-width: 480px) {
    .job-title {
        font-size: 1.1rem;
    }
    
    .salary {
        font-size: 1rem;
        padding: 6px 15px;
        justify-self: start;
    }
    
    .header h1 {
        font-size: 1.7rem;
    }
}