﻿
/* 主内容区与侧边栏布局 */
.main-content {
    display: flex;
}

.module-table {
    flex: 1;
}

.module-news {
    width: 390px;
    padding-left: 10px;
}

.breadcrumbs {
    font-size: 14px;
    color: #666;
    padding: 10px 20px;
    /* background-color: #f5f5f5; */
}

    .breadcrumbs a {
        color: #666;
        text-decoration: none;
    }

        .breadcrumbs a:hover {
            color: #d90000;
        }

    .breadcrumbs span {
        /*margin: 0 5px;*/
        color: #999;
    }

.search-wrap {
    display: flex;
    align-items: center;
    width: 100%;
    /* 可根据需求调整宽度 */
    margin-top: 10px;
}

.search-input {
    flex: 1;
    height: 36px;
    padding: 0 12px;
    border: 1px solid #e02020;
    border-right: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-size: 16px;
}

.search-btn {
    height: 36px;
    padding: 0 18px;
    background-color: #e02020;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    font-size: 16px;
    cursor: pointer;
}

    .search-btn:hover {
        background-color: #c01010;
    }

.module-news .chart-container {
    width: 100%;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
    /* padding: 10px; */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-top: 15px;
}

.price-info-container {
    width: 100%;
    /* background: #fff; */
    /* border: 1px solid #eee; */
    border-radius: 4px;
    padding: 15px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); */
}

.price-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.price-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.guide-box {
    display: flex;
    align-items: flex-start;
    background-color: #fef5f5;
    border: 1px solid #f5d0d0;
    border-radius: 4px;
    padding: 10px;
    font-size: 14px;
    color: #333;
}

.guide-icon {
    color: #fff;
    font-weight: bold;
    margin-right: 8px;
    margin-top: 2px;
    /* border-radius: 50%;
  overflow: hidden; */
    display: inline-block;
    width: 26px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    background-color: #d90000;
}

.guide-text {
    line-height: 1.6;
}

.showroom-intro-container {
    width: 100%;
    margin-top: 15px;
}



.popular-articles {
    width: 100%;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-top: 15px;
}

    .popular-articles .section-header {
        background-color: #d90000;
        color: #fff;
        padding: 10px 15px;
        font-size: 18px;
        font-weight: bold;
    }

    .popular-articles .article-list {
        list-style: none;
        margin: 0;
        padding: 15px;
    }

        .popular-articles .article-list li {
            padding: 8px 0;
            font-size: 16px;
            color: #333;
            line-height: 1.5;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

            .popular-articles .article-list li::before {
                content: "●";
                color: #d90000;
                margin-right: 8px;
            }

.market-recommend-container {
    width: 100%;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-top: 15px;
}

.section-header {
    background-color: #d90000;
    color: #fff;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: bold;
}

.market-list {
    list-style: none;
    margin: 0;
    padding: 15px;
}

    .market-list li {
        padding: 8px 0;
        font-size: 16px;
        color: #333;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

        .market-list li::before {
            content: "♦";
            color: #d90000;
            margin-right: 8px;
        }

.related-articles-container {
    width: 100%;
    border-radius: 4px;
    padding: 15px;
    margin-top: 15px;
}

.section-title {
    font-size: 18px;
    font-weight: bold;
    color: #d90000;
    margin-bottom: 12px;
}

.articles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.article-item {
    font-size: 16px;
    color: #333;
    white-space: nowrap; /* 防止文本换行 */
    overflow: hidden; /* 隐藏溢出的内容 */
    text-overflow: ellipsis; /* 显示省略符号来代表被修剪的文本 */
}

    .article-item::before {
        content: "●";
        color: #d90000;
        margin-right: 8px;
    }


.disclaimer-bar {
    width: 100%;
    max-width: 800px;
    padding: 10px 15px;
    background-color: #e2e2e2;
    border: 1px solid #eee;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
}

    .disclaimer-bar .highlight {
        color: #d90000;
        font-weight: 500;
    }

    .disclaimer-bar a {
        color: #0066cc;
        text-decoration: none;
    }

        .disclaimer-bar a:hover {
            text-decoration: underline;
        }

/* 当屏幕宽度小于725px时 */
@media (max-width: 725px) {
    .main-content {
        display: flex;
        flex-direction: column;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .module-table {
        order: 1;
    }

    .module-news {
        order: 2;
        width: 100%;
    }

    .breadcrumbs {
        display: none;
    }

    .wholesale-strategy-container {
        display: block;
    }

    .gold-price-table th, .gold-price-table td {
        font-size: 12px;
        padding: 10px 0;
        box-sizing: border-box;
    }
}