.friend-links-section11 {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
            padding: 5px 35px;
            margin: 50px 50px 0px;
        }
        
        .friend-links-header11 {
            border-bottom: 1px dotted #eee;
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .friend-links-title11 {
            font-size: 20px;
            color: #2c3e50;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        
        .friend-links-more11 {
            color: #7f8c8d;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .links-container11 {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .link-item11 {
            padding: 8px 15px;
            background: #f8f9fa;
            border-radius: 4px;
            transition: all 0.3s;
            color: #34495e;
            text-decoration: none;
            font-size: 14px;
            border: 1px solid #eee;
            position: relative;
        }
        
        .link-item11:hover {
            background: #258C44;
            color: #fff;
            border-color: #258C44;
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(52, 152, 219, 0.2);
        }
        
        .link-item11:hover:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 3px;
            background: #333;
            border-radius: 3px;
            opacity: 0.5;
        }
        
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .friend-links-header11 {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .friend-links-more11 {
                margin-top: 10px;
            }
            
            .links-container11 {
                gap: 10px;
            }
            
            .link-item11 {
                padding: 6px 12px;
                font-size: 13px;
            }
        }
        
        @media (max-width: 480px) {
            .friend-links-section11 {
                padding: 15px;
            }
            
            .links-container11 {
                justify-content: center;
            }
        }
		