
/* 友情链接容器 */
.yqlj {
    font-family: Arial, sans-serif;
    margin: 20px auto;
    padding: 15px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    background-color: #f9f9f9;
    width: 1000px;
}

/* 标题样式 */
.yqlj_tit h2 {
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #ed6d00;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

/* 链接列表容器 */
.yqlj ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 链接项样式 */
.link-item {
    margin: 0;
    padding: 0;
}

/* 链接样式 */
.link-item a {
    display: inline-block;
    padding: 8px 16px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* 链接悬停效果 */
.link-item a:hover {
    background-color: #ed6d00;
    border-color: #ed6d00;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* 链接激活状态 */
.link-item a:active {
    transform: translateY(0);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .yqlj ul {
        gap: 8px;
    }
    
    .link-item a {
        padding: 6px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .yqlj ul {
        flex-direction: column;
        align-items: center;
    }
    
    .link-item {
        width: 100%;
        text-align: center;
    }
}
