.main {
    min-width: 1250px;
}
.banner {
    width: 100%;
    height: 360px;
    object-fit: cover;
}
.actions {
    height: 75px;
    width: 100%;
    background: #ffffff;
}

.actions .action_container {
    width: 1200px;
    margin: 0 auto;
    display: flex;
}
.actions .action_container > div {
    flex-grow: 1;
    line-height: 75px;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
}
.actions .action_container .active_action {
    background: #447cc8;
    color: #ffffff;
}

.module {
    width: 1200px;
    padding: 66px 120px;
    box-sizing: border-box;
    background: #ffffff;
    margin: 20px auto;
    display: none;
}
.active_module {
    display: block;
}

.module .title {
    font-size: 36px;
    line-height: 50px;
    text-align: center;
    color: #000;
    font-weight: 500;
}
.module .title span {
    color: #447cc8;
}
.module .title_label {
    display: block;
    margin: 0 auto;
}

.module .hint {
    font-size: 16px;
    color: #444444;
    margin-top: 36px;
}
.module .desc {
    margin-top: 32px;
    text-align: center;
    font-size: 18px;
    color: #999999;
}

.module .tel_container {
    width: 700px;
    margin: 32px auto 0;
    display: flex;
    justify-content: space-between;
}
.module .tel_container .input_container {
    flex-grow: 1;
    margin-right: 20px;
    position: relative;
}
.module .tel_container .input_container input {
    border: none;
    text-align: center;
    font-size: 18px;
    width: 100%;
    background: #eeeeee;
    border-radius: 3px;
    height: 72px;
}
.module .tel_container .input_container .tel_num {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    color: #999;
    font-size: 14px;
}
.module .tel_container .btn {
    width: 200px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 3px;
    background: #447cc8;
    color: #ffffff;
    cursor: pointer;
}

/* 报名时间 选择地区 */
.address_view_BMSJ {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.address_view_BMSJ > div {
    width: 166px;
    height: 54px;
    background: #efefef;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    border-radius: 3px;
}
.address_view_BMSJ .active_address_item {
    background: #447cc8;
    color: #ffffff;
}

/* 考试科目 */
/* 报名费用 */
/* 考试时间 */
.select_view_KSKM,
.select_view_KSSJ,
.select_view_BMFY {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.select_view_KSKM > div,
.select_view_KSSJ > div,
.select_view_BMFY > div {
    width: 280px;
    height: 64px;
    background: #efefef;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    border-radius: 3px;
}
.select_view_KSKM .active_option,
.select_view_KSSJ .active_option,
.select_view_BMFY .active_option {
    background: #447cc8;
    color: #ffffff;
}

/* 注意事项 */
/* 报考资讯 */
.article_view_ZYSX,
.article_view_BKZX {
    margin-top: 24px;
    padding: 0 126px;
}
.article_view_ZYSX > div,
.article_view_BKZX > div {
    font-size: 18px;
    line-height: 2em;
    letter-spacing: 1px;
}
.article_view_ZYSX > div > span,
.article_view_BKZX > div > span {
    color: #447cc8;
    text-decoration: underline;
    cursor: pointer;
}
.dialog_component {
    display: none;
}
.dialog_content{
    position: fixed;
    z-index: 99;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dialog_content .dialog_container {
    width: 80%;
    max-width: 540px;
    border-radius: 8px;
    background: #ffffff;
    position: relative;
}
.dialog_content .close_btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    padding: 20px;
    cursor: pointer;
}
.dialog_content .dialog_title {
    padding: 24px 0;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}
.dialog_content .dialog_title span {
    color: #2c86db;
}
.dialog_content .input_container {
    position: relative;
    width: 86%;
    margin: 20px auto;
}
.dialog_content .input_container input {
    border: none;
    text-align: center;
    font-size: 18px;
    width: 100%;
    background: #eeeeee;
    border-radius: 3px;
    height: 72px;
}
.dialog_content .input_container .tel_num {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    color: #999;
    font-size: 14px;
}
.dialog_content .label {
    font-size: 14px;
    color: #666666;
    width: 86%;
    margin: 12px auto 0;
}
.dialog_content .label span {
    color: #2c86db;
}
.dialog_content .select_container {
    width: 86%;
    margin: 24px auto 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.dialog_content .select_container .option {
    width: 44%;
    height: 54px;
    background: #efefef;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    border-radius: 3px;
}
.dialog_content .select_container .active_option {
    background: #447cc8;
    color: #ffffff;
}
.dialog_content .btn {
    margin: 32px auto;
    width: 72%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 3px;
    background: #447cc8;
    color: #ffffff;
    cursor: pointer;
}


/* 备考资料 */
.article_view_BKZL {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
}
.article_view_BKZL > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 25%;
}
.article_view_BKZL img {
    width: 110px;
}
.article_view_BKZL .sub_title {
    font-size: 16px;
    font-weight: 600;
    margin: 12px 0 8px;
}
.article_view_BKZL p {
    line-height: 1.8em;
    font-size: 14px;
    color: #777777;
}
.article_view_BKZL .sub_btn {
    margin-top: 18px;
    width: 150px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 4px;
    background: #2c86db;
    color: #ffffff;
    cursor: pointer;
}
.article_view_BKZL .content_image {
    width: 100%;
    cursor: pointer;
}

footer {
    margin-top: 30px;
    padding: 20px 0;
}
footer p {
    width: 100%;
    text-align: center;
    line-height: 2;
    font-size: 14px;
    color: #666;
    max-width: 88%;
    margin: 0 auto;
}

.staff_qrcode {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    display: none;
}
.staff_qrcode > div {
    width: 72%;
    max-width: 420px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.staff_qrcode .qrcode_bg {
    width: 100%;
}
.staff_qrcode .close {
    position: absolute;
    top: 0;
    right: -40px;
    width: 28px;
    cursor: pointer;
}
.staff_qrcode .qrcode_container {
    position: absolute;
    top: 44.5%;
    width: 54%;
    left: 23%;
}
.staff_qrcode .qrcode_container img {
    width: 100%;
}
.staff_qrcode #qrcode_el {
    width: 100%;
}
