﻿
/* 主内容区与侧边栏布局 */
.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;
    margin-bottom: 15px;
}

.module-news .chart-nav {
    background-color: #d90000;
    color: #fff;
    padding: 0px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .module-news .chart-nav .time-tab {
        color: #fff;
        text-decoration: none;
        margin-right: 15px;
        font-size: 16px;
        padding: 7px 0;
        border-bottom: 2px solid transparent;
        background-color: transparent;
        border: none;
        cursor: pointer;
    }

    .module-news .chart-nav .active {
        border-bottom: 2px solid rgba(254, 148, 28, 1);
    }

    .module-news .chart-nav .more {
        color: #ffcc00;
        font-size: 16px;
    }

.module-news .chart-img {
    width: 100%;
    display: block;
}

.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;
    display: inline-block;
    width: 30px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    background-color: #d90000;
    box-sizing:border-box;
}

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

.wholesale-price-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);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #fff;
}

.wholesale-price-container .section-title {
    font-size: 18px;
    font-weight: bold;
    color: #d90000;
}

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

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

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

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

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

    .price-table tr:nth-child(even) {
        background-color: #fcfcfc;
    }

    .price-table tr:hover {
        background-color: #fef5f5;
    }

.showroom-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); 
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-top: 15px;
}

.showroom-item {
    margin: 15px 0;
}
    .showroom-item > p {
        margin-bottom: 10px;
/*        letter-spacing: 2px;*/
    }

    .showroom-item > h3 {
        margin-bottom: 10px;
    }

    .showroom-title {
        font-weight: bold;
        color: #000;
        margin-bottom: 5px;
    }


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

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

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

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

    .hot-recommend-container .recommend-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .hot-recommend-container .recommend-list li {
            padding: 10px 15px;
            font-size: 16px;
            border-bottom: 1px solid #eee;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

    .hot-recommend-container .recommend-list li:nth-child(1) {
        background-color: #fceaea;
    }

    .hot-recommend-container .recommend-list li:nth-child(2) {
        background-color: #fdf6e6;
    }

    .hot-recommend-container .recommend-list li:nth-child(3) {
        background-color: #eafae6;
    }

    .hot-recommend-container .recommend-list li:last-child {
        border-bottom: none;
    }

.disclaimer-bar {
    margin-top:15px;
    width: 100%;
    max-width: 850px;
    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;
        padding: 0;
        box-sizing: border-box;
        margin: 0px 0 0 0;
        width: 100%;
    }

    .breadcrumbs{
        display: none;
    }

    .section-header{
        display: block;
    }

    .price-table th, .price-table td{
        padding: 8px 10px;
        font-size:12px;
    }
}