.center {
    display: flex;
    flex-direction: column;
    margin: 36px 20px;
}

.center__box {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    color: #1A1A1A;
    box-shadow: 0px 1px 32px 8px rgba(197,197,197,0.2);
}

.center__box__title {
    font-size: var(--font-size-larger);
    font-weight: 600;
}

.center__box__view {
    display: flex;
    flex-wrap: wrap;
}

    .center__box__view.guid .center__box__item {
        width: 164px;
        height: 78px;
    }

        .center__box__view.guid .center__box__item:nth-child(4n) {
            margin-right: 18px;
        }

        .center__box__view.guid .center__box__item:nth-child(7n) {
            margin-right: 0;
        }

.center__box__item {
    border-radius: 5px;
    border: 2px solid #D3E5FC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-base);
    margin: 16px 18px 0 0;
    width: 258px;
    height: 100px;
    cursor: pointer;
    font-weight: 500;
    background: #f7f8fa;
}

    .center__box__item:nth-child(4n) {
        margin-right: 0;
    }

    .center__box__item:hover {
        color: #0D80F7;
        border: 2px solid #0D80F7;
        font-weight: 500;
    }

.center__content {
    margin-top: 30px;
    padding: 10px 20px 20px 20px;
    background-color: #fff;
}

.center__content__title {
    display: flex;
    align-items: center;
    font-size: 30px;
    font-weight: bold;
    color: #1A1A1A;
    margin: 20px 0;
}

.center__content__title__left {
    flex: 1;
    height: 4px;
    background: linear-gradient(-88deg, #0D80F7, #F0F0F0);
}

.center__content__title__right {
    flex: 1;
    height: 4px;
    background: linear-gradient(91deg, #0D80F7, #F0F0F0)
}

.center__content__title__icon {
    width: 30px;
    height: 20px;
    position: relative;
}

    .center__content__title__icon::before {
        position: absolute;
        content: "";
        left: 0;
        top: 0;
        width: 20px;
        height: 20px;
        border-radius: 20px;
        opacity: 0.29;
        background-color: #0D80F7;
    }

    .center__content__title__icon::after {
        position: absolute;
        content: "";
        top: 0;
        right: 0;
        width: 20px;
        height: 20px;
        border-radius: 20px;
        opacity: 0.29;
        background-color: #0D80F7;
    }

.center__content__left {
    flex: 1;
}

.center-list {
    width: 100%;
    font-size: 14px;
    color: #000;
}

    .center-list > div {
        height: 36px;
        line-height: 36px;
        border-bottom: 1px dashed #E6E6E6;
        cursor: pointer;
    }

        .center-list > div:hover {
            color: #5AA8F8;
        }

        .center-list > div:last-child {
            border: none;
        }

.center-list__more {
    border: none;
    color: #0D80F7;
    margin-top: 15px;
    font-size: 16px;
    display: flex;
    justify-content: flex-end;
    cursor: pointer;
    border: none;
}

    .center-list__more:hover {
        color: #0D80F7;
    }

.center__content__right {
    margin: 0 20px;
}

.question-list {
    padding: 15px;
    background: #EBF4FD;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
}

    .question-list > div {
        height: 36px;
        line-height: 36px;
        cursor: pointer;
        width: 350px;
        margin-right: 10px;
    }

        .question-list > div:nth-child(2n) {
            margin-right: 0;
        }

        .question-list > div > a > span:first-child {
            color: #000000;
            margin-right: 4px;
        }

        .question-list > div > a > span:last-child {
            color: #666;
        }

        .question-list > div:hover span {
            color: #0D80F7 !important;
        }

.center__content__right__more {
    color: #0D80F7;
    display: flex;
    justify-content: flex-end;
    margin-top: -20px;
    margin-bottom: 20px;
}

.center__search {
    width: 290px;
    background: #FAFAFF;
    border-radius: 5px;
    border: 1px solid #C5C5C5;
    padding: 15px 10px 30px 10px;
}

.center__search__btn {
    height: 30px;
    width: 64px;
}

.center__search__title {
    color: #2B2B2B;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
}

.address-box {
    padding: 15px 10px;
    color: #333333;
    font-size: 14px;
    line-height: 28px;
    border-radius: 5px;
    border: 1px solid #E5E5E5;
}

.center__content__kefu {
    width: 80px;
    height: 80px;
    margin: 10px auto 4px auto;
    background: #f7f7f7;
    cursor: pointer;
}
/*  */
.question-item {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
}

    .question-item:nth-child(3n) .question-item__top {
        background-color: #E6E9EC;
    }

.question-item__top {
    color: #0D80F7;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 20px;
    background-color: #E3F1FF;
    border-radius: 10px 10px 0 0;
}

.question-item__content {
    padding: 10px 20px;
    display: flex;
    flex-wrap: wrap;
    color: #333333;
    font-size: 14px;
}

.question-item__content__item {
    width: 50%;
    cursor: pointer;
    margin: 5px 0;
}

    .question-item__content__item:hover {
        color: #0D80F7;
    }

.agent {
    width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-bottom: 36px;
}

.agent__bg {
    width: 100vw;
    background: url('../assets/agent/agent-bg.jpg') repeat-y top / 100%;
    background-size: cover;
    height: 100vh;
    min-height: 1000px;
}

.agent-top-right {
    position: absolute;
    top: 53px;
    right: 20px;
    width: 226px;
    height: 177px;
    background: url('../assets/agent/icon-top-right.png') no-repeat center/100%;
    z-index: 10;
}

.agent-top-left {
    position: absolute;
    top: 53px;
    left: 20px;
    width: 200px;
    height: 185px;
    background: url('../assets/agent/icon-top-left.png') no-repeat center/100%;
    z-index: 10;
}

.agent__title {
    font-weight: 600;
    font-size: 43px;
    color: #409EFF;
    line-height: 50px;
    text-shadow: 0px 5px 6px #9CC5FD;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin: 75px auto 100px auto;
    z-index: 10;
}

.agent__title-2 {
    color: #333333;
    font-size: 24px;
    font-weight: 600;
    position: relative;
    padding: 0 138px;
    height: 35px;
    line-height: 35px;
    z-index: 10;
}

    .agent__title-2::before {
        content: '';
        position: absolute;
        top: 17px;
        left: 0;
        height: 1px;
        width: 112px;
        background-color: #B4B9C7;
    }

    .agent__title-2::after {
        content: '';
        position: absolute;
        top: 17px;
        right: 0;
        height: 1px;
        width: 112px;
        background-color: #B4B9C7;
    }

.agent__box {
    border: 1px solid #DEDEDE;
    background: #fff;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 0.125rem 0.8rem rgb(0 0 0 / 10%);
    width: 238px;
    height: 130px;
    margin: auto;
    border-radius: 10px 10px 10px 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
    display: flex;
    z-index: 10;
}

.icon-archives {
    width: 55px;
    height: 55px;
    background: url('/resource/assets/icon-archives.png') no-repeat center/100%;
}

.icon-allowance {
    width: 55px;
    height: 55px;
    background: url('/resource/assets/ren-tongshi.png') no-repeat center/100%;
}

.archivers-item {
    margin: 20px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 146px;
}

    .archivers-item:hover {
        scale: 1.1;
    }

.archivers-item__icon {
    width: 40px;
    height: 40px;
}

.archivers-item__name {
    color: #333;
    margin-top: 10px;
    font-size: 12px;
}

.agent__content {
    background: #FFFFFF;
    border-radius: 3px;
    border: 1px solid #EAEAEA;
    padding: 0 30px 80px 36px;
    width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    /* max-height: 600px;
    overflow: hidden; */
}

.agent__content__scroll {
    width: 100%;
    max-height: 483px;
    overflow-y: auto;
}

.agent__content__top {
    border-bottom: 1px solid #EAEAEA;
    font-size: 13px;
    color: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.agent__content__left {
    width: 505px;
}

.agent__content__right {
    width: 230px;
}

.agent__allowance {
    margin-top: 25px;
}

    .agent__allowance:first-child {
        margin-top: 14px;
    }

.agent__allowance__tag {
    color: #127FF0;
    font-size: 10px;
    padding: 2px 8px;
    border: 1px solid #127FF0;
    border-radius: 2px;
    height: fit-content;
}

.agent__allowance__tips {
    color: rgba(0,0,0,0.4);
    font-size: 11px;
    margin-top: 2px;
}

.agent__content__text {
    font-size: 13px;
    color: #333333;
    line-height: 24px;
    width: 100%;
}

.agent__content .must-name {
    font-size: 12px;
    color: rgba(0,0,0,0.9);
    position: relative;
    margin-bottom: 10px;
    padding-right: 7px;
    width: fit-content;
}

    .agent__content .must-name::after {
        content: '*';
        position: absolute;
        top: 0;
        right: 0;
        color: #E34D59;
        font-size: 14px;
    }
