.coin-show-page {
    padding-top: 15px;
    min-height: 100vh;
    background: #f5f7fa;
}
.coin-show-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.breadcrumb {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    padding: 10px 0;
}
.breadcrumb a {
    color: #666;
    text-decoration: none;
}
.breadcrumb a:hover {
    color: #1a8cd9;
}
.breadcrumb span {
    margin: 0 5px;
    color: #999;
}

/* 顶部概览 */
.coin-overview {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-bottom: 1px solid #f0f0f0;
}
.coin-overview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}
.coin-overview-left {
    display: flex;
    align-items: center;
    gap: 15px;
}
.coin-overview-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    overflow: hidden;
    flex-shrink: 0;
}
.coin-overview-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.coin-overview-info {
    display: flex;
    flex-direction: column;
}
.coin-overview-symbol {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.coin-overview-actions {
    display: flex;
    gap: 10px;
}
.coin-action-btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}
.trade-btn {
    background: #3b82f6;
    color: #fff;
}
.trade-btn:hover {
    background: #2563eb;
}
.official-btn {
    background: #f5f5f5;
    color: #666;
}
.official-btn:hover {
    background: #e8e8e8;
}

/* 货币选择器 */
.currency-selector {
    position: relative;
    display: inline-block;
}
.currency-selector-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}
.currency-selector-btn:hover {
    background: #e8e8e8;
    border-color: #1a8cd9;
}
.currency-selector-btn.active {
    background: #1a8cd9;
    color: #fff;
    border-color: #1a8cd9;
}
.currency-selector-btn .flag-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}
.currency-selector-btn .arrow {
    font-size: 10px;
    margin-left: 4px;
}
.currency-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
    overflow: hidden;
}
.currency-dropdown.show {
    display: block;
}
.currency-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    transition: background 0.15s;
}
.currency-dropdown-item:hover {
    background: #f5f7fa;
}
.currency-dropdown-item.active {
    background: #e8f0fe;
    color: #1a8cd9;
}
.currency-dropdown-item .flag-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}
.currency-dropdown-item .currency-code {
    font-weight: 600;
    margin-right: auto;
}
.currency-dropdown-item .currency-name {
    color: #999;
    font-size: 12px;
}
.currency-dropdown-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 4px 0;
}

.coin-overview-price-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}
.coin-overview-prices {
    display: flex;
    align-items: baseline;
    gap: 15px;
    flex-wrap: wrap;
}
.coin-overview-price {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}
.coin-overview-price-cny {
    font-size: 24px;
    color: #666;
    font-weight: 500;
}
.coin-overview-change {
    font-size: 20px;
    font-weight: 600;
}
.coin-overview-change.up {
    color: #ef4444;
}
.coin-overview-change.down {
    color: #22c55e;
}

.coin-overview-rank {
    font-size: 14px;
    color: #666;
}
.rank-badge {
    display: inline-block;
    background: #22c55e;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 5px;
}

/* 币种换算模块样式 */
.coin-convert-module {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}
.coin-convert-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}
.coin-convert-body {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}
.coin-convert-input {
    flex: 1;
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 8px 12px;
    transition: border-color 0.3s;
}
.coin-convert-input:focus-within {
    border-color: #3b82f6;
}
.coin-convert-input input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    background: transparent;
}
.coin-convert-symbol {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-left: 8px;
}
.coin-convert-arrow {
    font-size: 24px;
    color: #3b82f6;
    font-weight: bold;
}
.coin-convert-result {
    flex: 1;
    display: flex;
    align-items: baseline;
    gap: 8px;
    background: #fff;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    padding: 10px 14px;
}
.coin-convert-value {
    font-size: 22px;
    font-weight: 700;
    color: #3b82f6;
}
.coin-convert-unit {
    font-size: 14px;
    color: #666;
}
.coin-convert-links {
    display: flex;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid #dee2e6;
}
.coin-convert-links a {
    color: #3b82f6;
    text-decoration: none;
    font-size: 13px;
    padding: 4px 12px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #3b82f6;
    transition: all 0.2s;
}
.coin-convert-links a:hover {
    background: #3b82f6;
    color: #fff;
}

.coin-overview-update {
    font-size: 12px;
    color: #999;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f5f5f5;
}

.coin-overview-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.coin-overview-stat-row {
    display: flex;
    gap: 30px;
}
.coin-overview-stat {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.coin-overview-stat .stat-label {
    font-size: 14px;
    color: #999;
}
.coin-overview-stat .stat-value {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 500;
}

/* 走势图区域 */
.coin-chart-section {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e8e8e8;
}
.coin-chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.coin-chart-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}
.coin-chart-tabs {
    display: flex;
    gap: 5px;
}
.coin-chart-tab {
    padding: 8px 18px;
    font-size: 13px;
    color: #666;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}
.coin-chart-tab.active {
    background: #1a8cd9;
    color: #fff;
    border-color: #1a8cd9;
}
.coin-chart-tab:hover {
    background: #e8f0fe;
    border-color: #1a8cd9;
}
.coin-chart-tab.active:hover {
    background: #1576bc;
}

/* 币种简介板块 */
.coin-intro-section {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e8e8e8;
}
.coin-intro-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1a8cd9;
}
.coin-intro-description {
    margin-bottom: 25px;
}
.intro-text {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}
.coin-intro-data {
    margin-bottom: 25px;
}
.coin-intro-team {
    margin-bottom: 35px;
}
.coin-intro-milestones {
    margin-bottom: 25px;
}
.coin-intro-data-title,
.coin-intro-team-title,
.coin-intro-milestones-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 3px solid #1a8cd9;
}
.coin-intro-data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.coin-intro-data-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
}
.coin-intro-data-table td:first-child {
    width: 30%;
    color: #666;
    background: #fafafa;
}
.coin-intro-data-table td:last-child {
    color: #333;
}
.coin-intro-data-table a {
    color: #1a8cd9;
    text-decoration: none;
}
.coin-intro-data-table a:hover {
    text-decoration: underline;
}
.coin-intro-team-list {
    display: flex;
    gap: 15px;
}
.coin-intro-team-item {
    flex: 1;
    min-width: 180px;
    background: #fafafa;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}
.coin-intro-team-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #1a8cd9;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    margin: 0 auto 10px;
}
.coin-intro-team-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}
.coin-intro-team-role {
    font-size: 12px;
    color: #1a8cd9;
    margin-bottom: 8px;
}
.coin-intro-team-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}
.coin-intro-milestones-list {
    position: relative;
    padding-left: 25px;
    min-height: 300px;
}
.coin-intro-milestones-list::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #1a8cd9, #e0e0e0);
}
.coin-intro-milestone-item {
    position: relative;
    padding-bottom: 24px;
}
.coin-intro-milestone-item:last-child {
    padding-bottom: 10px;
}
.coin-intro-milestone-item::before {
    content: '';
    position: absolute;
    left: -21px;
    top: 3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #1a8cd9;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #1a8cd9;
}
.coin-intro-milestone-date {
    font-size: 13px;
    font-weight: 600;
    color: #1a8cd9;
    margin-bottom: 5px;
}
.coin-intro-milestone-desc {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

/* 相关币种推荐 */
.coin-related-section {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e8e8e8;
}
.coin-info-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.coin-info-section {
    flex: none;
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin: 0;
    box-shadow: none;
    border: none;
}
.coin-info-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid #1a8cd9;
    display: inline-block;
}
.coin-info-content {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
}
.coin-info-content strong {
    color: #1a1a1a;
}
.price-highlight {
    color: #1a8cd9;
    font-weight: 600;
}
.hot-exchange-section {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e8e8e8;
}
.hot-exchange-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f3ba2f;
    display: inline-block;
}
.hot-exchange-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.hot-exchange-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
    border: 1px solid #e8e8e8;
}
.hot-exchange-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    border-color: #f3ba2f;
}
.hot-exchange-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}
.hot-exchange-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.hot-exchange-info {
    flex: 1;
    min-width: 0;
}
.hot-exchange-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
}
.hot-exchange-en {
    font-size: 13px;
    color: #666;
    font-weight: 400;
    margin-left: 6px;
}
.hot-exchange-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.hot-exchange-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hot-exchange-stats span {
    font-size: 12px;
    color: #999;
}
.hot-exchange-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    align-items: stretch;
}
.hot-exchange-btn {
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.hot-exchange-btn.primary {
    background: linear-gradient(135deg, #0B2A5B 0%, #1a8cd9 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(26,140,217,0.3);
}
.hot-exchange-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26,140,217,0.4);
}
.hot-exchange-btn.download {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(16,185,129,0.3);
}
.hot-exchange-btn.download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16,185,129,0.4);
}
.coin-related-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #1a8cd9;
    display: inline-block;
}
.coin-related-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.coin-related-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.coin-related-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.coin-related-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.coin-related-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.coin-related-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    overflow: hidden;
}
.coin-related-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.coin-related-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}
.coin-related-right {
    text-align: right;
}
.coin-related-price {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}
.coin-related-change {
    font-size: 14px;
    font-weight: 600;
}
.coin-related-change.up {
    color: #00b894;
}
.coin-related-change.down {
    color: #e74c3c;
}
.coin-related-chart {
    width: 100%;
    height: 60px;
}
.coin-related-chart svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .coin-related-list {
        grid-template-columns: 1fr;
    }
}

#coin-chart-container {
    width: 100%;
    height: 500px;
}

/* 详细信息表格 */
.coin-detail-section {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.coin-detail-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}
.coin-detail-table {
    width: 100%;
    border-collapse: collapse;
}
.coin-detail-table tr {
    border-bottom: 1px solid #f5f5f5;
}
.coin-detail-table tr:last-child {
    border-bottom: none;
}
.coin-detail-table td {
    padding: 14px 0;
    font-size: 14px;
}
.coin-detail-table td:first-child {
    width: 200px;
    color: #888;
    font-weight: 500;
}
.coin-detail-table td:last-child {
    color: #1a1a1a;
    font-weight: 500;
}

@media (max-width: 992px) {
    .coin-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    .coin-overview-right {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .coin-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .coin-overview-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .coin-overview-center {
        text-align: left;
    }
    .coin-overview-right {
        width: 100%;
        flex-wrap: wrap;
    }
    .coin-overview-price {
        font-size: 32px;
    }
    #coin-chart-container {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .coin-stats {
        grid-template-columns: repeat(1, 1fr);
    }
    .coin-intro-team-list {
        flex-direction: column;
    }
    .coin-intro-team-item {
        min-width: auto;
    }
}

/* 移动端币种详情页重新排版 */
@media (max-width: 768px) {
    .coin-show-container {
        padding: 0 12px;
    }
    .coin-overview {
        padding: 18px;
        border-radius: 10px;
    }
    .coin-overview-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 18px;
    }
    .coin-overview-left {
        width: 100%;
    }
    .coin-overview-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    .coin-overview-symbol {
        font-size: 16px;
    }
    .coin-overview-actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .coin-action-btn {
        padding: 8px 14px;
        font-size: 13px;
        flex: 1;
        min-width: 80px;
    }
    .currency-selector-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    .currency-selector-btn span:nth-child(3) {
        display: none;
    }
    .coin-overview-price-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 12px;
    }
    .coin-overview-prices {
        gap: 8px;
    }
    .coin-overview-price {
        font-size: 30px;
    }
    .coin-overview-price-cny {
        font-size: 16px;
    }
    .coin-overview-change {
        font-size: 16px;
    }
    .coin-overview-rank {
        font-size: 13px;
    }
    .coin-overview-update {
        margin-bottom: 18px;
        padding-bottom: 14px;
    }
    .coin-overview-stat-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .coin-overview-stat {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 10px;
        background: #f8f9fa;
        border-radius: 8px;
    }
    .coin-overview-stat .stat-label {
        font-size: 12px;
    }
    .coin-overview-stat .stat-value {
        font-size: 13px;
        word-break: break-all;
    }
    .coin-chart-section,
    .coin-info-box,
    .coin-intro-section,
    .hot-exchange-section,
    .coin-related-section {
        padding: 18px;
        border-radius: 10px;
    }
    .coin-chart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 15px;
    }
    .coin-chart-tabs {
        width: 100%;
    }
    .coin-chart-tab {
        flex: 1;
        padding: 7px 0;
        text-align: center;
        font-size: 12px;
    }
    #coin-chart-container {
        height: 280px;
    }
    .coin-info-box {
        gap: 20px;
    }
    .coin-info-title {
        font-size: 16px;
    }
    .coin-intro-title,
    .hot-exchange-title,
    .coin-related-title {
        font-size: 17px;
    }
    .coin-intro-data-table td {
        padding: 8px 10px;
        font-size: 13px;
    }
    .coin-intro-data-table td:first-child {
        width: 35%;
    }
    .hot-exchange-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 15px;
    }
    .hot-exchange-actions {
        width: 100%;
        flex-direction: row;
    }
    .hot-exchange-btn {
        flex: 1;
        text-align: center;
        padding: 8px 12px;
    }
    .coin-related-list {
        gap: 12px;
    }
    .coin-related-item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .coin-overview-stat-row {
        grid-template-columns: 1fr;
    }
    .coin-overview-actions {
        gap: 8px;
    }
    .coin-action-btn {
        min-width: 70px;
        padding: 8px 10px;
        font-size: 12px;
    }
}

/* 货币flag-icon颜色 */
.flag-icon-cny{background:#de2910;color:#fff;}
.flag-icon-usd{background:#3c3b6e;color:#fff;}
.flag-icon-eur{background:#039;color:#fff;}
.flag-icon-gbp{background:#012169;color:#fff;}
.flag-icon-jpy{background:#bc002d;color:#fff;}
.flag-icon-krw{background:#003478;color:#c60c30;}
.flag-icon-hkd{background:#008800;color:#fff;}
.flag-icon-aud{background:#000;color:#f00;}
.flag-icon-cad{background:#ff0000;color:#fff;}
.flag-icon-sgd{background:#fff;color:#f00;}
.flag-icon-btc{background:#f7931a;color:#fff;}
.flag-icon-eth{background:#627eea;color:#fff;}
.flag-icon-bnb{background:#f3ba2f;color:#fff;}
.flag-icon-sol{background:#00ffa3;color:#333;}
.flag-icon-doge{background:#ba9f33;color:#fff;}
.flag-icon-xrp{background:#232323;color:#00b5e9;}
.flag-icon-ada{background:#003366;color:#00e5ff;}
.flag-icon-avax{background:#e84142;color:#fff;}
.flag-icon-dot{background:#e6007a;color:#fff;}
.flag-icon-shib{background:#e6007a;color:#fff;}
.flag-icon-trx{background:#00b2e0;color:#fff;}
.flag-icon-ltc{background:#bfbfbf;color:#333;}