:root {
    --yubang-gold: #d4af37;
    --yubang-dark: #222222;
    --yubang-light: #f8f8f8;
}


.container-custom_exhibition {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.container-custom_exhibition .content{
    border: 1px solid #69696b;
    margin: 0 auto;
    border-top-style: dashed;
    border-bottom-style: dashed;
    border-right:none;
}


/* Exhibition Section */
.exhibition-section {
    background-color: #f5f5f7;
    padding: 3rem 0;
}

.exhibition-title {
    font-weight: 600;
    text-align: left;
    margin-left: 0;
    font-family: "Times New Roman";
}

.exhibition-item {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px dashed #ccc;
    /* 新增：给每个展会条目增加内间距 */
    padding: 1.5rem;
    border-radius: 8px;
}

.exhibition-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.exhibition-location {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e6bf0c;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.exhibition-name {
    margin-bottom: 0.5rem;
}

.exhibition-date {
    color: #000;
    margin-top: 1rem;
    display: inline-block;
    border-bottom: 3px solid #000;

}

.exhibition-desc {
    line-height: 1.6;
    color: #000;
    text-decoration-line: underline;
}
.right-img{
    text-align: right;
}
.exhibition-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


/* 响应式适配：移动端调整间距 */
@media (max-width: 768px) {
.container-custom_exhibition {
        padding: 1rem;
        margin: 0.5rem;
    }
.exhibition-item {
        padding: 1rem;
    }
.why-choose-section {
        padding: 1.5rem;
    }

    .exhibition-section{
        padding:1rem 0;
    }
    .container-custom_exhibition .content{
        margin: 0;
    }

    .exhibition-title{
        margin-left: 0;
    }
}