.partner-list {
    padding: 50px 0;
    background: #fff;
}

.partner-list .wide1190 {
    overflow: hidden;
    zoom: 1;
}

.partner-card {
    float: left;
    width: 31.33%;
    margin-right: 3%;
    margin-bottom: 25px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    position: relative;
    overflow: visible;
}

.partner-card:nth-child(3n) {
    margin-right: 0;
}

.partner-card:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37,99,235,0.1);
    transform: translateY(-2px);
}

.partner-card a {
    display: block;
    padding: 20px;
    text-decoration: none;
    color: #333;
}

.card-left {
    float: left;
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.card-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    object-fit: contain;
}

.card-right {
    overflow: hidden;
    zoom: 1;
    min-height: 60px;
    position: relative;
}

.card-name {
    font-size: 15px;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.partner-card:hover .card-name {
    color: #2563eb;
}

.card-desc {
    font-size: 12px;
    color: #64748b;
    line-height: 1.6;
    height: 38px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-tooltip {
    position: fixed;
    padding: 12px 16px;
    background: #1e293b;
    color: #fff;
    font-size: 12px;
    line-height: 1.6;
    border-radius: 6px;
    max-width: 280px;
    white-space: normal;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    pointer-events: none;
}

.partner-apply {
    padding: 60px 0;
    background: #f0f5ff;
}

.apply-header {
    text-align: center;
    margin-bottom: 40px;
}

.apply-header h2 {
    font-size: 26px;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 10px;
}

.apply-header p {
    font-size: 14px;
    color: #64748b;
}

.apply-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.apply-section h3 {
    font-size: 17px;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid #2563eb;
    display: inline-block;
}

.apply-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 30px;
}

.apply-requirements h3 {
    font-size: 17px;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #2563eb;
    display: inline-block;
}

.apply-requirements ul {
    list-style: none;
    padding: 0;
    overflow: hidden;
    zoom: 1;
}

.apply-requirements li {
    float: left;
    width: 22%;
    font-size: 13px;
    color: #475569;
    padding: 5px 5px;
    text-align: center;
    box-sizing: border-box;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-right: 4%;
    margin-bottom: 0;
    transition: all 0.3s ease;
    position: relative;
}

.apply-requirements li:nth-child(4n) {
    margin-right: 0;
}

.apply-requirements li:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37,99,235,0.12);
    transform: translateY(-3px);
}

.apply-requirements li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.apply-requirements li:hover::after {
    width: 40%;
}

.apply-contact {
    margin-top: 25px;
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
}

.apply-contact p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 15px;
}

.contact-btn {
    display: inline-block;
}

@media screen and (max-width: 1190px) {
    .partner-card {
        width: 48%;
        margin-right: 4%;
    }
    .partner-card:nth-child(3n) {
        margin-right: 4%;
    }
    .partner-card:nth-child(2n) {
        margin-right: 0;
    }
}

@media screen and (max-width: 768px) {
    .partner-card {
        width: 100%;
        margin-right: 0;
    }
    .apply-content {
        padding: 20px;
    }
}