<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.tool-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* å¤§æ´²åŒºåŸŸæ&nbsp;·å¼ */
.continent-section {
    margin-bottom: 40px;
}

.continent-title {
    margin: 30px 0 20px;
    padding: 0 20px;
}

.continent-title h2 {
    font-size: 1.5rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.continent-title span {
    font-size: 1rem;
    color: var(--text-color-60);
    font-weight: normal;
}

/* é¦–éƒ½å¡ç‰‡ç½‘æ&nbsp;¼ */
.continent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

/* é¦–éƒ½å¡ç‰‡æ&nbsp;·å¼ */
.capital-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-color-50);
    border-radius: 12px;
    border: 1px solid var(--border-color-10);
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
}

.capital-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* å¡ç‰‡å¤´éƒ¨ */
.card-header {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-bottom: 1px solid var(--border-color-10);
}

.flag-container {
    flex-shrink: 0;
}

.flag-container .fi {
    font-size: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.country-info {
    flex-grow: 1;
    min-width: 0; /* é˜²æ­¢æ–‡æœ¬æº¢å‡º */
}

.name-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.name-line, .capital-line {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.country {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
}

.country-en {
    font-size: 0.9rem;
    color: var(--text-color-60);
}

.capital {
    font-size: 1.1rem;
    color: var(--text-color-80);
}

.capital-en {
    font-size: 0.9rem;
    color: var(--text-color-60);
}

/* å¡ç‰‡å†…å®¹ */
.card-content {
    padding: 16px 20px;
}

.details-container {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.location-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.location-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--text-color-60);
}

.details {
    font-size: 0.9rem;
    color: var(--text-color-60);
    line-height: 1.5;
    flex-grow: 1;
    min-width: 0; /* é˜²æ­¢æ–‡æœ¬æº¢å‡º */
}

.copy-hint {
    font-size: 0.85rem;
    color: var(--text-color-40);
    text-align: right;
}

/* å¯¼èˆªæ&nbsp; */
.tools-nav {
    margin-top: 24px;
}

/* å“åº”å¼è®¾è®¡ */
@media (max-width: 768px) {
    .continent-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 15px;
        padding: 0 15px;
    }

    .continent-title {
        padding: 0 15px;
    }

    .continent-title h2 {
        font-size: 1.25rem;
    }

    .card-header {
        padding: 16px;
    }

    .card-content {
        padding: 12px 16px;
    }

    .flag-container .fi {
        font-size: 1.75rem;
    }

    .country {
        font-size: 1.1rem;
    }

    .capital {
        font-size: 1rem;
    }

    .country-en, .capital-en {
        font-size: 0.85rem;
    }
}

/* ç©ºçŠ¶æ€æ&nbsp;·å¼ */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-color-60);
}

.empty-state svg {
    width: 48px;
    height: 48px;
    fill: var(--text-color-40);
    margin-bottom: 16px;
}

.empty-state h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-color);
}

.empty-state p {
    font-size: 1rem;
    color: var(--text-color-60);
}</pre></body></html>