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

.module-table {
    flex: 1;
}

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

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

    .search-wrap .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-wrap .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-wrap .search-btn:hover {
            background-color: #c01010;
        }

.breadcrumbs {
    font-size: 16px;
    color: #666;
    padding: 10px 15px;
}

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

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

    .breadcrumbs span {
/*        color: #d90000;*/
        font-weight: 500;
    }

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

.price-title-container {
    width: 100%;
    padding: 15px;
    border-radius: 4px;
}

    .price-title-container .main-title {
        font-size: 18px;
        font-weight: bold;
        color: #333;
        margin-bottom: 8px;
    }

    .price-title-container .update-time {
        font-size: 16px;
        color: #999;
    }


.brand-inquiry-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;
}

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

.brand-list {
    padding: 15px;
    font-size: 16px;
    color: #333;
    line-height: 2;
}

.brand-item {
    display:inline-block;
    width:32%;
    cursor: pointer;

}

.popular-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;
}

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

.popular-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.popular-item {
    padding: 10px 15px;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    /* 前三项渐变背景色 */
    .popular-item:nth-child(1) {
        background-color: #ffe6e6;
    }

    .popular-item:nth-child(2) {
        background-color: #fff3e6;
    }

    .popular-item:nth-child(3) {
        background-color: #e6ffe6;
    }

.price-table-wrap {
    width: 100%;
    /* background: #fff;
  border: 1px solid #eee; */
    border-radius: 4px;
    overflow: hidden;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); */
}

.table-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    font-size: 16px;
}

.price-table-wrap .table-title {
    font-size: 18px;
    font-weight: bold;
    color: #d90000;
}

    .price-table-wrap .table-title::before {
        content: '';
        display: inline-block;
        width: 4px;
        height: 14px;
        background-color: red;
        margin-right: 5px;
    }

    .notice-text {
        color: #666;
        font-size: 14px;
    }

.gold-price-table {
    width: 100%;
    border-collapse: collapse;
}

    .gold-price-table th,
    .gold-price-table td {
        padding: 12px;
        text-align: center;
        font-size: 16px;
        border: 1px solid #d9d7d7;
    }

    .gold-price-table th {
        background-color: #d90000;
        color: #fff;
        font-weight: bold;
    }

    .gold-price-table td:nth-child(2) {
        color: #d90000;
    }

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

    .chart-container .chart-title {
        font-size: 18px;
        font-weight: bold;
        color: #d90000;
        margin-bottom: 10px;
    }

    .chart-container .chart-img {
        width: 100%;
        border-radius: 4px;
    }



.brand-intro-container {
    width: 100%;
    /* background: #fff;
  border: 1px solid #eee; */
    border-radius: 4px;
    padding: 20px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); */
    line-height: 1.6;
}

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

.brand-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.brand-logo {
    width: 80px;
    height: 50px;
    background: #8B0000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 10px;
}

    .brand-logo img {
        display: block;
        width: 100%;
        height: 100%;
    }

.brand-info {
    font-size: 14px;
    color: #333;
}

    .brand-info p {
        margin: 5px 0;
    }

.brand-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
    font-size: 14px;
}

    .brand-table td {
        border: 1px solid #eee;
        padding: 8px 10px;
        color: #333;
    }

.intro-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    text-align: justify;
}


.disclaimer-bar {
    width: 100%;
    max-width: 800px;
    padding: 10px 15px;
    background-color: #e2e2e2;
    border: 1px solid #eee;
    border-radius: 4px;
    font-size: 12px;
    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;
        }

.article-nav {
    margin-top: 15px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 14px;
}

.nav-item {
    display: flex;
    align-items: center;
}

.nav-label {
    color: #333;
    margin-right: 8px;
}

.nav-link {
    color: #d90000;
    text-decoration: none;
}

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


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

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

        .related-articles-container .section-title::before {
            content: '';
            display: inline-block;
            width: 4px;
            height: 14px;
            background-color: red;
            margin-right: 5px;
        }

    .related-articles-container .article-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .related-articles-container .article-list li {
            margin-bottom: 10px;
            font-size: 16px;
            color: #333;
            max-width: 770px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

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


/* 当屏幕宽度小于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;
    }

    .price-title-container{
        padding:15px 15px 0 15px;
    }

    .table-top {
        display: block;
    }
}