.contentDetail {
    padding: 1vw 10vw 8vh;
    background: url('../image/index/BankBg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat, ;
    background-position: bottom center;
}

.backText {
    border-right: rgba(204, 204, 204, 1) solid 1px;
    padding-right: 10px;
}

.detailBox {
    /* max-width: 1200px; */
    margin: 0 auto;
}

.bread {
    display: flex;
    align-items: center;
    color: rgba(56, 56, 56, 1);
    font-size: 14px;
    margin: 8px 0 16px
}

.bread .back-icon {
    margin-right: 6px;
    color: #9aa0a6
}

.breadHome {
    margin-left: 10px;
    color: rgba(204, 204, 204, 1);
}

.bread .bread-link {
    /* color:rgba(56, 56, 56, 1); */
    text-decoration: none;
    /* margin-left: 10px; */
}

.bread .bread-sep {
    margin: 0 5px;
    color: #b8b8b8
}

.policy-layout {
    display: flex;
    gap: 24px
}

.policy-main {
    flex: 1
}

.policy-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 16px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 14px;
}

.policy-head-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937
}

.policy-tag {
    font-size: 12px;
    color: #64748b;
    border-radius: 4px;
    padding: 4px 8px
}

.policy-card {
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 24px;
    /* max-height: calc(100vh - 200px); 限制最大高度，为头部和底部留出空间 */
    max-height: calc(100vh); /* 限制最大高度，为头部和底部留出空间 */
    overflow-y: auto; /* 允许垂直滚动 */
    width: 55vw;
    overflow-x: auto;
}

.policy-title {
    font-size: 16px;
    margin: 0 0 16px;
    color: #0f172a
}

.policy-section {
    margin-bottom: 18px
}

.section-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px
}

.section-content {
    color: #4b5563;
    line-height: 1.8
}

.policy-side {
    width: 320px;
    height: calc(100vh - 200px); /* 固定高度 */
    position: sticky; /* 固定定位 */
    top: 0; /* 距离顶部的位置 */
    /* background:#fff url('../image/detail/rightBg.png'); */

    /* fallback：舊版 IE 僅渲染單一背景 */
    background: #fff url('../image/newsDetail/rightBg.png') no-repeat top center;
    background-size: contain;

    /* 現代瀏覽器覆蓋為多重背景 */
    /* background-image: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)), url('../image/newsDetail/rightBg.png');
    background-size: cover, contain; */
    background-repeat: no-repeat, no-repeat;
    /* background-position: center, top center; */
    padding: 1vw;
    overflow-y: auto; /* 内容超出时可滚动 */
}

.side-banner {
    /* height:120px; */
    /* border-radius:12px; */
    display: flex;
    align-items: flex-end;
    padding: 16px;
    color: #fff;
    /* box-shadow:0 6px 20px rgba(59,130,246,0.35) */
}

.side-banner-title {
    font-size: 18px;
    font-weight: 700
}

.side-list {
    margin-top: 14px;
}

.side-item {
    display: block;
    background: #fff;
    border-radius: 6px;
    padding: 16px 18px;
    margin-bottom: 16px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06)
}

.side-item.active {
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.25);
    position: relative
}

.side-item .item-title {
    font-size: 13px;
    color: #0b1220;
    margin-bottom: 10px;
    font-weight: 800
}

.side-item .item-meta {
    font-size: 10px;
    color: #6b7280;
    margin-bottom: 12px
}

.side-item .meta-value {
    color: rgba(128, 128, 128, 1)
}

.side-item .item-tags {
    display: flex;
    gap: 10px
}

.side-item .item-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px;
    border-radius: 2px;
    background: #f1f5f9;
    color: rgba(128, 128, 128, 1);
    font-size: 9px;
}

@media (max-width: 992px) {
    .contentDetail {
        padding: 16px 20px 60px
    }

    .policy-layout {
        flex-direction: column
    }

    .policy-side {
        width: 100%;
        background-size: cover;
    }

    .policy-card {
        width: 100%;
        max-height: calc(100vh - 150px); /* 移动端使用较小的高度限制 */
    }
    .policy-head{
        width: 100%;
    }
}
.registerSub-icon{
    width: 23%;
    /* height: 40%; */
    object-fit: contain;
    margin: 0 auto;
    display: block;
    cursor: pointer;
}
/* 弹框样式 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content{
    position: relative;
    background: linear-gradient(180deg, rgba(42, 130, 228, 1) 0%, rgba(245, 245, 245, 1) 100%);
    width: 50%;
    max-width: 500px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.modal-content::after{
    content: "";
    position: absolute;
    top: 10px;
    right: 45px;
    width: 100px;
    height: 110px;
    background: url("../image/detail/baominglogo.png") no-repeat center center;
    background-size: contain;
    z-index: 1;
}
.modal-header{
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    height: 90px;
    display: flex;
    align-items: center;
    position: relative;
}
.close-icon{
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 1;
    width: 25px;
    height: 25px;
}

.modal-body{
    background-color: #fff;
    /* margin-top: 60px; */
    padding: 25px;
    border-radius: 10px;
}
.modalTwo{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modalTwo header {
    font-size: 14px;
    color: #333;
    font-weight: bold;
    margin: 0;
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.radio-option input[type="radio"] {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
}

.radio-custom {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(42, 130, 228, 1);
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    background-color: #E0EBFF;
    border-color: #E0EBFF;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: rgba(15, 143, 255, 1);
    border-radius: 50%;
}


.radio-text {
    font-size: 14px;
    color: rgba(42, 130, 228, 1);
    font-weight: 400;
}

.radio-option input[type="radio"]:checked + .radio-custom + .radio-text {
    font-weight: bold;
}

/* 表单样式 */
.modalForm {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-input, .form-select {
    width: 100%;
    padding: 12px 16px;
    border: 0.1px solid rgba(42, 130, 228, 1);
    border-radius: 8px;
    background-color: #E0EBFF ;
    color: rgba(42, 130, 228, 1);
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: #2a82e4;
    background-color: #fff;
}
.register-icon {
    width: 40%;
    height: 40%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    cursor: pointer;
}
.form-input::placeholder {
    color: rgba(42, 130, 228, 1);
}

.form-select {
    appearance: none;
    background-image: url("../image/detail/down.png");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.submit-btn {
    width: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 10px 0;
    padding: 0;
}

.submit-btn:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.submit-btn:active {
    transform: translateY(0);
}

/* 错误提示样式 */
.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: none;
    line-height: 1.4;
}

.arrow-icon {
    font-size: 18px;
    font-weight: bold;
}
/* Two-layer modal layout */
