.banner-img-wrapper {
    width: 100vw;
    overflow: hidden;
    margin-top: 100px;
    margin-bottom: 24px;
}

.banner-img {
    width: 100vw;
    max-width: 100vw;
    height: 450px;
    object-fit: cover;
    display: block;
}

#navbar {
    position: relative;
    z-index: 10;
}


.main-content {
    display: flex;
    max-width: 1200px;
    margin: 32px auto 0 auto;
    min-height: 600px;
    gap: 36px;
    background: none;
}

.sidebar {
    margin-left: 0;
    margin-right: 0;
}

.policy-content {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    padding: 32px 32px 24px 32px;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.breadcrumb {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 24px;
}

.policy-list {
    flex: 1;
}

.policy-item {
    margin-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 16px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.policy-title {
    font-size: 16px;
    font-weight: bold;
    color: #222;
    margin-bottom: 6px;
}
.policy-title:hover {
    color: #d7262b;
    text-decoration: underline;
}

.policy-meta {
    font-size: 12px;
    color: #888;

}

.policy-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.policy-select select {
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid #e5e6eb;
    background: #fff;
    font-size: 14px;
    color: #1d2129;
    appearance: none;
}

.pagination {
    margin-top: 24px;
    text-align: right;
}

.pagination button {
    background: #fff;
    border: 1px solid #d32f2f;
    color: #d32f2f;
    border-radius: 4px;
    padding: 4px 12px;
    margin: 0 2px;
    cursor: pointer;
    transition: background 0.2s;
}

.pagination button.active,
.pagination button:hover {
    background: #d32f2f;
    color: #fff;
}

.pagination button:disabled {
    color: #ccc;
    border-color: #eee;
    background: #f9f9f9;
    cursor: not-allowed;
}

/* 头部横幅自定义样式 */
.custom-hero {
    margin-top: 100px;
    position: relative;
    width: 100%;
    height: 500px;
    /* overflow: hidden; */
    display: flex;
    align-items: center;
}

.custom-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.7);
}

.custom-hero-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    z-index: 2;
    text-align: center;
}

.custom-hero-content h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.custom-hero-content p {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.95;
    letter-spacing: 1px;
    color: #FFFFFF;
}

.section-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 8px;
}

.title-main {
    font-size: 20px;
    font-weight: bold;
    color: #d7262b;
    background: #fff;
    border-radius: 6px 6px 0 0;
    padding: 4px 18px;
    display: inline-block;
}

.title-en {
    font-size: 13px;
    color: #d7262b;
    margin-left: 4px;
    margin-top: 2px;
}

.select-wrapper {
    position: relative;
    display: inline-block;
    background: #EFEFEF;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    min-width: 60px;
    height: 36px;
    padding: 0 0;
    box-sizing: border-box;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: none;
    border-radius: 6px;
    padding: 0 28px 0 12px;
    font-size: 18px;
    color: #222;
    outline: none;
    box-shadow: none;
    height: 36px;
    line-height: 36px;
    width: 60px;
    font-family: inherit;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
}

@media (max-width: 900px) {
    .main-content {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        margin-right: 0;
        margin-bottom: 24px;
    }
}