/* 焦点图 */

.slideBox {
    width: 100%;
    height: calc(100vh - 99px);
    overflow: hidden;
    position: relative;
}

.slideBox .hd {
    height: 30px;
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    text-align: center;
}

.slideBox .hd ul {
    width: 100%;
    text-align: center;
    zoom: 1;
}

.slideBox .hd ul li {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 6px;
    text-align: center;
    background: #fff;
    cursor: pointer;
    overflow: hidden;
    color: #fff;
}

.slideBox .hd ul li.on {
    background: #0a347f;
    color: #0a347f;
}

.slideBox .bd {
    position: relative;
    height: 100%;
    z-index: 0;
}

.slideBox .bd li a {
    display: block;
    width: 100%;
    height: calc(100vh - 99px);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 100%;
    zoom: 1;
    vertical-align: middle;
}

.slideBox .bd img {
    display: block;
}

.slideBox .prev,
.slideBox .next {
    position: absolute;
    left: 3%;
    top: 50%;
    margin-top: -25px;
    display: block;
    width: 32px;
    height: 40px;
    background: url(../images/slider-arrow.png) -110px 5px no-repeat;
    filter: alpha(opacity=50);
    opacity: 0.5;
}

.slideBox .next {
    left: auto;
    right: 3%;
    background-position: 8px 5px;
}

.slideBox .prev:hover,
.slideBox .next:hover {
    filter: alpha(opacity=100);
    opacity: 1;
}

.slideBox .prevStop {
    display: none;
}

.slideBox .nextStop {
    display: none;
}


/* index */

.box_1 {
    display: flex;
    padding: 100px 0 70px;
    justify-content: space-between;
}

.shu {
    width: 1px;
    background-color: #fff;
    box-shadow: 0 0 3px 5px #fafafa;
}

.brand_img {
    width: 40%;
}

.index_brand {
    width: 53%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 30px;
}

.title_a img {
    height: 70px;
}

.title_a b {
    display: block;
    color: #0a347f;
    font-size: 45px;
    /* font-weight: bold; */
    margin-top: -20px;
}

.index_brand section {
    padding: 20px 0;
    font-size: 20px;
    line-height: 32px;
    text-align: justify;
}

.index_brand section p {
    text-indent: 2em;
}

.more_a {
    display: flex;
    justify-content: flex-end;
    text-transform: uppercase;
    font-size: 26px;
    font-family: Helvetica, sans-serif;
    padding-bottom: 30px;
}

@media (max-width: 1280px) {
    .title_a img {
        height: 60px;
    }
    .title_a b {
        font-size: 40px;
        margin-top: -15px;
    }
    .index_brand section {
        font-size: 18px;
        line-height: 32px;
    }
    .more_a {
        font-size: 22px;
        padding-bottom: 10px;
    }
}

.wrap_2 {
    background: url(../images/bg_1.jpg) no-repeat center bottom;
    background-size: 1920px auto;
    padding-bottom: 180px;
}

.index_video {
    width: 100%;
    height: 675px;
    border-radius: 10px;
    background-color: #000;
}

@media (max-width: 1280px) {
    .wrap_2 {
        background-size: 1550px auto;
        padding-bottom: 130px;
    }
    .index_video {
        height: 550px;
    }
}

.box_3 {
    padding: 50px 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title_b {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 65px;
}

.title_b img {
    height: 70px;
}

.title_b b {
    display: block;
    color: #0a347f;
    font-size: 45px;
    /* font-weight: bold; */
    margin-top: -20px;
}

.course_btn {
    margin-bottom: 50px;
}

.index_course {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.index_course li {
    width: 375px;
    height: 490px;
    border-radius: 0 30px 0 30px;
    position: relative;
    overflow: hidden;
}

.index_course li a>img {
    width: 375px;
    height: 490px;
}

.index_course li section {
    position: absolute;
    left: 0;
    top: 0;
    width: 375px;
    height: 490px;
    padding: 60px 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.index_course li section b {
    font-size: 28px;
    font-weight: bold;
    line-height: 60px;
    color: #f8b600;
}

.index_course li section p {
    height: 250px;
    color: #fff;
    font-size: 20px;
    line-height: 36px;
    text-align: center;
}

.index_course li:hover section {
    background-color: #f8b600;
}

.index_course li:hover section b {
    color: #fff
}

@media (max-width: 1280px) {
    .box_3 {
        padding: 40px 0 65px;
    }
    .title_b {
        margin-bottom: 52px;
    }
    .title_b img {
        height: 55px;
    }
    .title_b b {
        font-size: 40px;
    }
    .course_btn {
        margin-bottom: 32px;
        height: 60px;
    }
    .index_course li {
        width: 275px;
        height: 360px;
        border-radius: 0 20px 0 20px;
    }
    .index_course li a>img {
        width: 275px;
        height: 360px;
    }
    .index_course li section {
        width: 275px;
        height: 360px;
        padding: 45px 0;
    }
    .index_course li section b {
        font-size: 24px;
        line-height: 50px;
    }
    .index_course li section p {
        height: 200px;
        font-size: 16px;
        line-height: 30px;
    }
    .index_course li section img {
        height: 28px;
    }
}

.wrap_4 {
    padding-top: 175px;
    height: 625px;
    box-sizing: border-box;
    background: url(../images/bg_2.jpg) no-repeat center 0;
}

.picMarquee-left {
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.picMarquee-left .bd ul {
    overflow: hidden;
    zoom: 1;
}

.picMarquee-left .bd ul li {
    margin: 0 8px;
    float: left;
    _display: inline;
    overflow: hidden;
    text-align: center;
}

.picMarquee-left .bd ul li .pic {
    text-align: center;
}

.picMarquee-left .bd ul li .pic img {
    width: 385px;
    height: 295px;
    display: block;
}

@media (max-width: 1280px) {
    .wrap_4 {
        padding-top: 140px;
        height: 500px;
        background-size: 1550px auto;
    }
    .picMarquee-left .bd ul li .pic img {
        width: 310px;
        height: 235px;
        display: block;
    }
}

.box_5 {
    padding: 80px 0 40px;
}

.news_box {
    display: flex;
    justify-content: space-between;
}

.news_left,
.news_right {
    width: 570px;
    flex-grow: 0;
}

.news_left img {
    width: 570px;
    height: 380px;
    border-radius: 0 30px 0 30px;
    margin-bottom: 20px;
}

.news_right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.new_in {
    margin-bottom: 20px;
}

.new_in section {
    height: 45px;
    display: flex;
    align-items: center
}

.new_in section b {
    font-size: 30px;
    margin-right: 10px;
}

.new_in section span {
    font-size: 20px;
    margin-right: 10px;
}

.new_in .circle {
    width: 10px;
    height: 10px;
    box-sizing: border-box;
    border: 2px #0a347f solid;
    border-radius: 5px;
}

.new_in .line {
    flex: 1;
    height: 0;
    border-bottom: 1px #0a347f dashed;
}

.new_t {
    font-size: 26px;
    line-height: 50px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new_pro {
    font-size: 18px;
    line-height: 40px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.more_b {
    display: flex;
    justify-content: flex-end;
}

.more_b a {
    padding: 0 15px;
    background-color: #f8b600;
    color: #fff;
    border-radius: 10px;
    font-size: 24px;
    text-transform: uppercase;
    line-height: 50px;
}

@media (max-width: 1280px) {
    .box_5 {
        padding: 65px 0 30px;
    }
    .news_left,
    .news_right {
        width: 455px;
    }
    .news_left img {
        width: 455px;
        height: 305px;
        border-radius: 0 24px 0 24px;
        margin-bottom: 15px;
    }
    .new_in section {
        height: 36px;
    }
    .new_in section b {
        font-size: 24px;
    }
    .new_in section span {
        font-size: 16px;
    }
    .new_t {
        font-size: 20px;
        line-height: 40px;
    }
    .new_pro {
        font-size: 16px;
        line-height: 32px;
    }
    .more_b a {
        font-size: 20px;
        line-height: 40px;
    }
}

.banner_box {
    height: 500px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 100%;
}

.banner_brand {
    background-image: url(../images/banner_brand.jpg)
}

.banner_news {
    background-image: url(../images/banner_news.jpg);
}

.banner_bus {
    background-image: url(../images/banner_bus.jpg)
}

.banner_contact {
    background-image: url(../images/banner_contact.jpg)
}

.banner_course {
    background-image: url(../images/banner_course.jpg)
}

@media (max-width: 1280px) {
    .banner_box {
        height: 400px;
    }
}

.wrap_6 {
    background: url(../images/bg_1.jpg) no-repeat center bottom;
    background-size: 1920px auto;
    padding-top: 90px;
    padding-bottom: 350px;
}

.story_a {
    color: #f8b600;
    font-size: 33px;
    font-weight: bold;
    line-height: 60px;
    margin-top: -60px;
}

.story_b {
    padding: 50px 0;
    font-size: 20px;
    line-height: 36px;
}

.story_b p {
    margin-bottom: 10px;
}

.story_b b {
    font-weight: bold;
    margin-right: 20px;
}

.story_box2 {
    padding: 40px 0 90px;
    font-size: 22px;
    line-height: 36px;
    background: url(../images/story_3.jpg) no-repeat center center;
}

.story_box2 p {
    margin-bottom: 10px;
    text-indent: 2em;
    text-align: justify;
}

.story_box2 b {
    font-weight: bold;
    color: #f8b600;
}

@media (max-width: 1280px) {
    .wrap_6 {
        background-size: 1550px auto;
        padding-top: 70px;
        padding-bottom: 280px;
    }
    .story_1 {
        height: 116px;
    }
    .story_a {
        font-size: 30px;
        line-height: 50px;
        margin-top: -50px;
    }
    .story_b {
        padding: 40px 0;
        font-size: 16px;
        line-height: 30px;
    }
    .story_2 {
        height: 80px;
    }
    .story_box2 {
        padding: 30px 0 70px;
        font-size: 16px;
        line-height: 30px;
        background-size: auto 125px;
    }
}

.about_a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about_a1 {
    width: 65%;
    font-size: 22px;
    line-height: 40px;
    text-align: justify;
}

.about_a1 p {
    margin-bottom: 20px;
}

@media (max-width: 1280px) {
    .about_a2 {
        width: 285px;
    }
    .about_a1 {
        font-size: 18px;
        line-height: 30px;
    }
}

.wrap_7,
.wrap_9 {
    background: url(../images/course_bg.jpg) no-repeat center bottom;
    padding-bottom: 175px;
}

.slideTxtBox {
    padding-top: 60px;
}

.slideTxtBox .hd {
    height: 175px;
    line-height: 62px;
    display: flex;
}

.slideTxtBox .hd p {
    font-size: 22px;
    font-weight: bold;
    color: #0a347f;
    padding-top: 68px;
    margin-right: 30px;
}

.slideTxtBox .hd ul {
    display: flex;
}

.slideTxtBox .hd ul li {
    width: 62px;
    text-align: center;
    padding-top: 68px;
    cursor: pointer;
    margin-right: 30px;
    background: url(../images/year_bg.png) no-repeat 0 0;
    color: #fff;
    font-size: 26px;
    font-weight: bold;
}

.slideTxtBox .hd ul li.on {
    background: url(../images/year_bg2.png) no-repeat 0 0;
    color: #0a347f;
}

.slideTxtBox .bd section {
    background-color: #fff;
    border-radius: 15px;
    display: flex;
}

.slideTxtBox .bd img {
    width: 465px;
    height: 400px;
}

.slideTxtBox .bd aside {
    padding: 50px;
}

.slideTxtBox .bd b {
    display: block;
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: bold;
}

.slideTxtBox .bd li {
    display: flex;
    line-height: 40px;
    font-size: 22px;
}

.slideTxtBox .bd li span {
    width: 150px;
    flex-shrink: 0;
}

@media (max-width: 1280px) {
    .wrap_7 {
        background-size: 1650px auto;
        padding-bottom: 150px;
    }
    .slideTxtBox .bd img {
        width: 372px;
        height: 320px;
    }
    .slideTxtBox .bd aside {
        padding: 40px;
    }
    .slideTxtBox .bd b {
        margin-bottom: 15px;
        font-size: 24px;
    }
    .slideTxtBox .bd li {
        line-height: 32px;
        font-size: 18px;
    }
    .slideTxtBox .bd li span {
        width: 120px;
    }
}

.cer_box {
    padding-bottom: 80px;
    font-size: 22px;
    line-height: 40px;
}

.cer_box b {
    color: #f8b600;
    font-size: 30px;
    font-weight: bold;
    line-height: 80px;
}

.cer_box2 {
    padding-bottom: 80px;
    display: flex;
    height: 512px;
}

.cer_a {
    flex: 1;
    width: 431px;
	height:512px;
}

.cer_b {
    flex-shrink: 0;
    width: 769px;
	height:512px;
}

.wrap_12 {
    padding: 230px 0 60px;
    background: url(../images/bus_con.jpg) no-repeat center 0;
}

.box_12 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box_12 img {
    width: 770px;
}

.form_box {
    width: 1200px;
    box-sizing: border-box;
    border: 1px #d6d6d6 solid;
    border-radius: 10px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.form_box b {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

.form_box input {
    height: 45px;
    font-size: 16px;
    margin-bottom: 20px;
    border: 1px #d6d6d6 solid;
    border-radius: 5px;
    padding: 0 10px;
}

.form_box textarea {
    height: 120px;
    font-size: 16px;
    margin-bottom: 20px;
    border: 1px #d6d6d6 solid;
    border-radius: 5px;
    padding: 8px;
}

.form_box button {
    height: 45px;
    font-size: 16px;
    border-radius: 5px;
    color: #fff;
    background-color: #f8b600;
    cursor: pointer;
}

@media (max-width: 1280px) {
    .cer_box2 {
        padding-bottom: 64px;
        height: 410px;
    }
    .cer_a {
        width: 326px;
        height:512px;
    }
    .cer_b {
        width: 624px;
        height:512px;
    }
    .wrap_12 {
        padding: 180px 0 50px;
        background-size: auto 150px;
    }
    .box_12 img {
        width: 600px;
    }
    .form_box {
        width: 325px;
        padding: 30px 26px;
        font-size: 16px;
    }
    .form_box b {
        font-size: 18px;
    }
    .form_box input {
        height: 40px;
    }
    .form_box textarea {
        height: 120px;
    }
    .form_box button {
        height: 40px;
    }
}

.picMarquee-left2 {
    overflow: hidden;
    position: relative;
    padding: 15px;
    background-color: #c3c3c3;
}

.picMarquee-left2 .bd ul {
    overflow: hidden;
    zoom: 1;
}

.picMarquee-left2 .bd ul li {
    margin: 0 8px;
    float: left;
    _display: inline;
    overflow: hidden;
    text-align: center;
}

.picMarquee-left2 .bd ul li .pic {
    text-align: center;
}

.picMarquee-left2 .bd ul li .pic img {
    width: 307px;
    height: 215px;
    display: block;
}

@media (max-width: 1280px) {
    .cer_box {
        padding-bottom: 65px;
        font-size: 18px;
        line-height: 32px;
    }
    .cer_box b {
        font-size: 24px;
        line-height: 60px;
    }
}

.course_a {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.course_a li {
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.course_a li b {
    font-size: 35px;
    color: #f8b600;
    font-weight: bold;
    line-height: 70px;
}

.course_a li p {
    line-height: 32px;
    font-size: 20px;
}

@media (max-width: 1280px) {
    .course_a li img {
        width: 95px;
    }
    .course_a li b {
        font-size: 28px;
        line-height: 60px;
    }
    .course_a li p {
        line-height: 28px;
        font-size: 16px;
    }
}


/* about */

.box_9 {
    padding-top: 100px;
}

.slideTxtBox1 {
    padding-top: 20px;
    display: flex;
    align-items: center;
}

.slideTxtBox1 .hd {
    width: 230px;
    line-height: 65px;
    display: flex;
    margin-right: 50px;
}

.slideTxtBox1 .hd ul li {
    position: relative;
    width: 225px;
    text-align: center;
    cursor: pointer;
    color: #fff;
    font-size: 26px;
}

.slideTxtBox1 .hd ul li.on {
    background-color: rgba(255, 255, 255, .2);
    color: #0a347f;
    font-weight: bold;
}

.slideTxtBox1 .hd ul li.on::before {
    width: 7px;
    height: 69px;
    background-color: #0a347f;
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: -2px;
    border-radius: 4px;
}

.slideTxtBox1 .bd section {
    display: flex;
}

.slideTxtBox1 .bd img {
    width: 280px;
    height: 395px;
    border-radius: 140px;
}


.slideTxtBox1 .bd aside {
    padding: 30px 50px;
    width: 645px;
    box-sizing:border-box;
}

.slideTxtBox1 .bd b {
    display: block;
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #0a347f;
}

.slideTxtBox1 .bd span {
    display: block;
    color: #0a347f;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: bold;
}

.slideTxtBox1 .bd p {
    font-size: 20px;
    color: #fff;
    line-height: 36px;
}

@media (max-width: 1280px) {
    .wrap_9 {
        background-size: 1550px auto;
        padding-bottom: 140px;
    }
    .box_9 {
        padding-top: 80px;
    }
    .slideTxtBox1 {
        padding-top: 16px;
    }
    .slideTxtBox1 .hd {
        width: 185px;
        line-height: 52px;
        margin-right: 40px;
    }
    .slideTxtBox1 .hd ul li {
        width: 185px;
        font-size: 20px;
    }
    .slideTxtBox1 .hd ul li.on::before {
        width: 5px;
        height: 54px;
    }
    .slideTxtBox1 .bd img {
        width: 224px;
        height: 316px;
        border-radius: 112px;
    }
    .slideTxtBox1 .bd aside {
        padding: 24px 40px;
        width: 500px;
    }
    .slideTxtBox1 .bd b {
        margin-bottom: 16px;
        font-size: 24px;
    }
    .slideTxtBox1 .bd span {
        font-size: 16px;
        margin-bottom: 16px;
    }
    .slideTxtBox1 .bd p {
        font-size: 16px;
        line-height: 30px;
    }
}

.ex_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 50px;
}

.ex_box li {
    margin-bottom: 30px;
}

@media (max-width: 1280px) {
    .ex_box li img {
        width: 300px;
    }
}


/* 商务合作 */

.policy_box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.policy_box img {
    width: 48%;
}

.policy_box section {
    width: 50%;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    box-sizing: border-box;
    font-size: 18px;
}

@media (max-width: 1280px) {
    .policy_box section {
        font-size: 16px;
    }
}


/* news */

.box_10 {
    padding: 100px 0;
}

.news_main {
    display: flex;
    justify-content: space-between;
}

.news_ul {
    width: 830px;
    flex-grow: 0;
}

.news_aside {
    width: 315px;
}

.news_one {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px #eee solid;
}

.news_one section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.news_one section img {
    width: 300px;
    height: 200px;
    border-radius: 10px;
}

.news_one section div {
    width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news_one section div>a {
    font-size: 26px;
    line-height: 40px;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news_one section div p {
    font-size: 18px;
    line-height: 30px;
    height: 60px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    -webkit-box-flex: 1;
    overflow: hidden;
}

.news_one section div p a {
    color: #999;
}

.news_one section div p a:hover {
    color: #0a347f
}

.news_one section div time {
    font-size: 18px;
    line-height: 32px;
    line-height: 50px;
    color: #999;
}

.news_one aside {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news_one aside b {
    color: #fff;
    line-height: 30px;
    padding: 0 12px;
    font-size: 16px;
    border-radius: 5px;
    background-color: #f8b600;
}

.news_one aside a {
    font-size: 16px;
    margin-right: 20px;
}

@media (max-width: 1280px) {
    .box_10 {
        padding: 80px 0;
    }
    .news_ul {
        width: 660px;
    }
    .news_aside {
        width: 250px;
    }
    .news_one {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    .news_one section {
        margin-bottom: 24px;
    }
    .news_one section img {
        width: 240px;
        height: 160px;
    }
    .news_one section div {
        width: 400px;
    }
    .news_one section div>a {
        font-size: 22px;
        line-height: 32px;
    }
    .news_one section div p {
        font-size: 16px;
        line-height: 28px;
        height: 56px;
    }
    .news_one section div time {
        font-size: 16px;
        line-height: 30px;
        line-height: 40px;
    }
}

.news_xg {
    border: 1px #d6d6d6 solid;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 0 25px 20px;
    margin-bottom: 30px;
}

.title_c {
    font-size: 24px;
    line-height: 70px;
}

.title_c .line {
    width: 50px;
    height: 3px;
    background-color: #f8b600;
}

.title_c span {
    color: #f8b600;
}

.slideBox1 {
    width: 260px;
    margin: 0 auto;
}

.slideBox1 .hd {
    height: 20px;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.slideBox1 .hd ul {
    text-align: center;
    zoom: 1;
}

.slideBox1 .hd ul li {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    text-align: center;
    background: #eeeeee;
    cursor: pointer;
    overflow: hidden;
    color: #eee;
}

.slideBox1 .hd ul li.on {
    background: #f8b600;
    color: #f8b600;
}

.slideBox1 .bd {
    position: relative;
    height: 100%;
    z-index: 0;
}

.slideBox1 .bd img {
    display: block;
    width: 260px;
    height: 180px;
    margin-bottom: 10px;
}

.slideBox1 .bd b {
    display: block;
    font-size: 18px;
    font-weight: bold;
    height: 60px;
    line-height: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    -webkit-box-flex: 1;
    overflow: hidden;
    margin-bottom: 10px;
}

.slideBox1 .bd p {
    color: #999;
    font-size: 14px;
    height: 46px;
    line-height: 23px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    -webkit-box-flex: 1;
    overflow: hidden;
    margin-bottom: 10px;
}

.slideBox1 .bd time {
    color: #999;
    font-size: 14px;
    line-height: 30px;
}

@media (max-width: 1280px) {
    .title_c {
        font-size: 20px;
        line-height: 56px;
    }
    .slideBox1 {
        width: 195px;
    }
    .slideBox1 .bd img {
        width: 195px;
        height: 145px;
    }
    .slideBox1 .bd b {
        font-size: 16px;
        height: 50px;
        line-height: 25px;
    }
}

.page_box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.page_box a {
    width: 36px;
    line-height: 36px;
    margin-left: 10px;
    border: 1px #d6d6d6 solid;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
}

.page_box a:hover {
    background-color: #f8b600;
    color: #fff;
}

.news_detail {
    box-shadow: 0 0 20px #ddd;
    border-radius: 10px;
    padding: 40px;
    background-color: #fff;
}

.detail_top {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px #d6d6d6 solid;
    font-size: 18px;
}

.detail_top section {
    display: flex;
    align-items: center;
}

.detail_top b {
    display: block;
    color: #fff;
    line-height: 30px;
    padding: 0 12px;
    font-size: 16px;
    border-radius: 5px;
    background-color: #f8b600;
    margin-right: 15px;
}

.detail_con {
    padding: 5% 10%;
}

.detail_con>h1 {
    font-size: 30px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 50px;
}

.detail_con .info {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.detail_con .info p {
    font-size: 16px;
    width: 160px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.content {
    font-size: 18px;
    line-height: 1.7em;
    text-align: justify;
}

.content img {
    max-width: 70%;
    margin: 20px auto;
}

.detail_back {
    display: block;
    width: 30%;
    text-align: center;
    line-height: 50px;
    margin: 60px auto 0;
    background-color: #f5f5f5;
    border-radius: 8px;
    font-size: 18px;
}

.detail_back:hover {
    background-color: #f8b600;
    color: #fff;
}

.box_11 {
    padding: 50px 0;
}

.map_a {
    margin-bottom: 40px;
}

.map_a select {
    width: 200px;
    border: 1px #d6d6d6 solid;
    border-radius: 8px;
    margin-right: 30px;
    height: 40px;
    padding: 0 10px;
    font-size: 16px;
}

.map_b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.map_b img {
    width: 775px;
    height: 495px;
}

.map_ul {
    width: 395px;
    height: 495px;
    overflow-y: scroll;
    background-color: #f2f2f2;
    border: 10px #f2f2f2 solid;
    box-sizing: border-box;
}

.map_ul li {
    background-color: #fafafa;
    padding: 20px;
    margin-bottom: 2px;
    display: flex;
    align-items: flex-start;
}

.map_ul li aside {
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background-color: #f8b600;
    border-radius: 10px;
    color: #fff;
    margin-right: 10px;
    margin-top: 3px;
}

.map_ul li b {
    font-size: 18px;
    font-weight: bold;
    color: #f8b600;
}

.map_c {
    padding: 50px;
    display: flex;
    justify-content: space-around;
}

.map_c section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.map_c section img {
    margin-right: 20px;
}

.map_c section b {
    display: block;
    text-transform: capitalize;
    font-size: 22px;
    color: #000;
    font-weight: bold;
}

.map_c section span {
    display: block;
    font-size: 16px;
    line-height: 30p;
}

@media (max-width: 1280px) {
    .map_b img {
        width: 620px;
        height: 395px;
    }
    .map_ul {
        width: 315px;
        height: 395px;
    }
}


/* 6.6 添加 */

.box_13 {
    margin-bottom: 100px;
}

.box_13 li {
    box-sizing: border-box;
    height: 141px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0 80px 0 160px;
    margin-bottom: 10px;
    background-position: 0 0;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-image: url(../images/cl1.png);
}

.box_13 li b {
    color: #0a347f;
    font-size: 30px;
    font-weight: bold;
    line-height: 40px;
    margin-bottom: 5px;
}

.box_13 li p {
    font-size: 22px;
    line-height: 32px;
}

.box_13 li:nth-child(1) {
    width: 947px;
    background-image: url(../images/cl1.png);
}

.box_13 li:nth-child(2) {
    width: 971px;
    background-image: url(../images/cl2.png);
}

.box_13 li:nth-child(3) {
    width: 998px;
    background-image: url(../images/cl3.png);
}

.box_13 li:nth-child(4) {
    width: 1034px;
    background-image: url(../images/cl4.png);
}

.box_13 li:nth-child(5) {
    width: 1077px;
    background-image: url(../images/cl5.png);
}

.box_13 li:nth-child(6) {
    width: 1123px;
    background-image: url(../images/cl6.png);
}

.box_13 li:nth-child(7) {
    width: 1160px;
    background-image: url(../images/cl7.png);
    color: #fff;
}

.box_13 li:nth-child(8) {
    background-image: url(../images/cl8.png);
    color: #fff;
}

@media (max-width: 1280px) {
    .box_13 {
        margin-bottom: 80px;
    }
    .box_13 li {
        height: 110px;
        padding: 0 64px 0 128px;
        margin-bottom: 8px;
    }
    .box_13 li b {
        font-size: 24px;
        line-height: 32px;
    }
    .box_13 li p {
        font-size: 16px;
        line-height: 26px;
    }
    .box_13 li:nth-child(1) {
        width: 760px;
    }
    .box_13 li:nth-child(2) {
        width: 780px;
    }
    .box_13 li:nth-child(3) {
        width: 800px;
    }
    .box_13 li:nth-child(4) {
        width: 835px;
    }
    .box_13 li:nth-child(5) {
        width: 865px;
    }
    .box_13 li:nth-child(6) {
        width: 900px;
    }
    .box_13 li:nth-child(7) {
        width: 930px;
    }
    .box_13 li:nth-child(8) {
        width: 950px;
    }
}

.unit_join_a {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.join_1 {
    width: 225px;
    flex-shrink: 0;
    background-image: url(../images/no1.png);
    background-position: 0 30px;
    background-repeat: no-repeat;
    padding-top: 100px;
    font-size: 32px;
    text-align: center;
    font-weight: bold;
    color: #0a347f;
    box-sizing: border-box;
    padding-right: 10px;
    margin-bottom: 20px;
}

.join_2 {
    width: 28px;
    height: 28px;
    margin-top: 30px;
}

.unit_join_a section {
    background-color: #f8b600;
    border-radius: 10px;
    display: flex;
    width: 840px;
    height: 185px;
    overflow: hidden;
    align-items: center;
}

.unit_join_a section div {
    margin: 20px;
    font-size: 22px;
    max-height: 160px;
    line-height: 32px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    -webkit-box-flex: 1;
    overflow: hidden;
}

.unit_join_a section img {
    width: 240px;
    height: 185px;
    flex-shrink: 0;
}

.unit_join_a:nth-child(2n) {
    flex-direction: row-reverse;
}

.unit_join_a:nth-child(2n) section {
    flex-direction: row-reverse;
    background-color: #0f347f;
    color: #fff;
}

.unit_join_a:nth-child(2n) .join_1 {
    background-position: right 30px;
}

.unit_join_a:nth-child(2) .join_1 {
    background-image: url(../images/no2.png);
}

.unit_join_a:nth-child(3) .join_1 {
    background-image: url(../images/no3.png);
}

.unit_join_a:nth-child(4) .join_1 {
    background-image: url(../images/no4.png);
}

.unit_join_a:nth-child(5) .join_1 {
    background-image: url(../images/no5.png);
}