
.nav-main {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
        }

        .nav-wrapper {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .site-card {
            padding: 25px;
            background: #fff;
        }

        .site-info-header {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 25px;
        }

        .site-info-logo {
    width: 90px;
    height: 90px;
    background: #f5f5f5;
    border-radius: 8px;
    border: 1px solid #ddd;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    }
        .site-main-content {
            flex: 1;
            min-width: 0;
        }

        .site-name {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin: 0 0 15px 0;
            line-height: 1.4;
        }

        .site-name i {
            color: #1890ff;
            margin-right: 6px;
        }

        .site-buttons {
            display: flex;
            gap: 10px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            border: none;
            color: #fff;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .btn-primary {
            background: #1890ff;
        }

        .btn-secondary {
            background: #52c41a;
        }

        .btn:hover {
            opacity: 0.9;
            transform: translateY(-1px);
        }

        .btn.liked {
            background: #ff4d4f;
        }

        .site-stats {
            margin-bottom: 30px;
            border-top: 1px solid #f0f0f0;
            padding-top: 20px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }

        .stat-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            font-size: 14px;
            border-bottom: 1px solid #f5f5f5;
        }

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

        .stat-label {
            color: #666;
            font-weight: 500;
        }

        .stat-value {
            color: #333;
            font-weight: 600;
        }

        .star-rating {
            display: inline-flex;
            gap: 2px;
        }

        .star-active {
            color: #faad14;
        }

        .star-inactive {
            color: #d9d9d9;
        }

        .domain-link {
            color: #1890ff;
            text-decoration: none;
        }

        .domain-link:hover {
            text-decoration: underline;
        }

        .quick-tools {
            margin-bottom: 25px;
            border-top: 1px solid #f0f0f0;
            padding-top: 20px;
        }

        .tools-header {
            font-size: 15px;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }

        .tools-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tool-link {
            padding: 8px 12px;
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 20px;
            font-size: 13px;
            color: #666;
            text-decoration: none;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .tool-link:hover {
            background: #1890ff;
            color: #fff;
            border-color: #1890ff;
        }

        .detail-section {
            margin-bottom: 25px;
            padding: 0 25px;
        }

        .section-header {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 12px;
            padding-bottom: 6px;
            border-bottom: 2px solid #1890ff;
            display: inline-block;
        }

        .section-body {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        .section-body p {
            margin-bottom: 10px;
        }

        .section-body ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .section-body li {
            margin-bottom: 8px;
            padding-left: 0;
            position: relative;
            font-size: 14px;
            color: #333;
        }

        .section-body li strong {
            color: #666;
            font-weight: 500;
            margin-right: 8px;
        }

        .related-sites {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 12px;
        }

        .related-link {
            background: #fff;
            padding: 15px 10px;
            border-radius: 6px;
            text-align: center;
            border: 1px solid #d9d9d9;
            text-decoration: none;
            color: #333;
            transition: all 0.2s ease;
            
            display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    max-height: 4.5em;
    word-wrap: break-word;
        }

        .related-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            color: #1890ff;
            border-color: #1890ff;
        }

        .related-link i {
            display: block;
            font-size: 24px;
            color: #1890ff;
            margin-bottom: 6px;
        }

        .related-link div {
            font-size: 12px;
        }

        @media (max-width: 768px) {
            .nav-main {
                margin: 10px auto;
                padding: 0 10px;
            }

            .nav-wrapper {
                border-radius: 6px;
            }

            .site-card {
                padding: 15px;
            }

            .site-info-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 12px;
                margin-bottom: 20px;
            }

            .site-info-logo {
                width: 70px;
                height: 70px;
            }

            .site-main-content {
                width: 100%;
            }

            .site-name {
                font-size: 16px;
                text-align: center;
                margin-bottom: 12px;
            }

            .site-buttons {
                justify-content: center;
                flex-wrap: wrap;
            }

            .btn {
                flex: 1;
                min-width: 100px;
                justify-content: center;
                font-size: 13px;
                padding: 10px 14px;
            }

            .site-stats {
                padding-top: 15px;
                margin-bottom: 20px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .stat-item {
                padding: 10px 0;
                font-size: 13px;
            }

            .quick-tools {
                padding-top: 15px;
                margin-bottom: 20px;
            }

            .tools-list {
                gap: 6px;
            }

            .tool-link {
                font-size: 12px;
                padding: 6px 10px;
            }

            .detail-section {
                padding: 0 15px;
                margin-bottom: 20px;
            }

            .section-header {
                font-size: 15px;
                text-align: center;
                width: 100%;
            }

            .section-body {
                font-size: 13px;
            }

            .related-sites {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
            }

            .related-link {
                padding: 12px 8px;
                font-size: 11px;
            }

            .related-link i {
                font-size: 20px;
                margin-bottom: 4px;
            }
        }
        .site-info-logo i{
    align-items: center;
    justify-content: center;
            font-size:48px;
        }
        