﻿@charset "utf-8";
/* CSS Document */
body {
    max-width: 100%; overflow-x: hidden; background: #fff;
    font: 18px/36px "Hiragino Sans GB", "MicroSoft YaHei", Arial, sans-serif; }
body , h1 , h2 , h3 , h4 , h5 , h6 , hr , p , blockquote , dl , dt , dd , ul , ol , li ,
pre , form , fieldset , legend , button , input , select, textarea ,
th, td { margin: 0; padding: 0; }
img { border: none; max-width: 100%; }
a { color: #2b2a3c; text-decoration: none; }
a:hover { text-decoration: none; }
a , area { blr: expression(this.onFocus=this.blur()); }
ul , ol , li { list-style: none; }
table { border-collapse: collapse; border-spacing: 0; max-width: 100%; }
input , :focus { outline: 0; }
input[type="button"] , input[type="submit"] , input[type="reset"] , select { -webkit-appearance: none; appearance:none; -moz-appearance:none; -ms-appearance:none;}
input::focus-inner { padding: 0; border: 0; }
input::-webkit-input-placeholder{ color: #999; }
input::-moz-placeholder{ color: #999; }
input:-moz-placeholder{ color: #999; }
input:-ms-input-placeholder{ color: #999; }
select::-ms-expand { display: none; }
select{
    appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;
}

.fl { float: left; } .fr { float: right; }
.clearfix::after { display: block; content: ''; height: 0; font-size: 0; clear: both; } .clearfix { zoom: 1;}
.clear { height: 0; width: 100%; overflow: hidden; font-size: 1px; line-height: 0; visibility: hidden; }
.Width { width: 1190px; margin: 0 auto; }
.hide , .onlymob { display: none; }
.container{ width:1200px; margin:0 auto; position:relative; box-sizing: border-box }
.container::after { display: block; content: ''; height: 0; font-size: 0; clear: both; }
ul::after { display: block; content: ''; height: 0; font-size: 0; clear: both; }
.no_after::after { display: none; content: ''; height: 0; font-size: 0; clear: both; }

/* 通用头部 */
.ht_top {
    width: 100%; overflow: hidden;
    background: #fafafa url(../images/nav_bg.gif) repeat-x 0 0;
    line-height: 41px; }
.ht_top .zt_top {
    width: 1200px; height: 41px; margin: 0 auto; }
.ht_top h1 {
    float: left; }
.ht_top h1 a {
    float: left; width: 131px; height: 40px; overflow: hidden;
    background: url(../images/logo.gif) no-repeat;
    font-size: 12px; text-indent: -100em; }
.ht_top .topnav {
    float: right; color: #333; font-size: 12px; }
.ht_top .topnav a {
    padding: 0 8px; }
.ht_top .topnav a:hover {
    color: #e4393c; text-decoration: underline; }

/* 通用底部 */
.footer { clear: both; position: relative; padding: 30px 0; text-align: center; }
.footer p { position: relative; z-index: 2; color:#333; font-size: 16px; line-height: 30px; }
.footer p span { padding: 0 5px; }
.footer p a { color:#333; }
.box_container{
    padding: 40px 0;
}

html,body{
    width: 100%;
    height: 100%;
}

.body_box{
    width: 100%;
    height: 100%;
    background-image: url('../images/body.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    box-sizing: border-box;
    padding: 20px;
}
.body_l{
    width: 340px;
}
.body_main{
    background-image: url('../images/lt.png');
    background-size: auto 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    flex-direction: column;
    box-sizing: border-box;
    height: 250px;
    padding: 30px 0;
}
.body_main h1{
    display: none;
    font-size: 0;
}
.body_main p{
    background: #222324;
    color: #F9DAC8;
    box-sizing: border-box;
    padding: 0 10px;
    line-height: 33px;
    font-size: 18px;
    box-shadow: 0px 5px 8px 0px rgba(3, 3, 3, 0.5);
}
.body_main h2{
    font-weight: normal;
    color: #222324;
    line-height: 48px;
    font-size: 42px;
}
.nav_list{
    position: relative;
    margin-top: 30px;
}
.nav_list::before{
    content: '';
    display: block;
    position: absolute;
    left: 40px;
    top: 25px;
    bottom: 25px;
    height: calc(100% - 50px);
    width: 1px;
    background: #fff;
}
.nav_list li{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    z-index: 2;
    color: #333;
    height: 50px;
    padding-left: 30px;
    font-size: 18px;
}
.nav_list li::before{
    content: '';
    display: block;
    position: absolute;
    transition: all .5s;
    left: 0;
    top: 0;
    bottom: 0;
    background: rgba(255,255,255,.2);
    height: 100%;
    width: 0;
    border-radius: 4px;
}
.nav_list li.active::before,
.nav_list li:hover::before{
    width: 100%;
}
.nav_list li.active,
.nav_list li:hover{
    color: #cb3930;
}
.nav_list li .nav_circle{
    transition: all .5s;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #bc4539;
    border: 1px solid #FFFFFF;
    width: 20px;
    height: 20px;
    margin-right: 40px;
    border-radius: 50%;
}
.nav_list li .nav_circle i{
    transition: all .5s;
    display: block;
    box-sizing: border-box;
    position: relative;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    border: 3px solid #FFFFFF;
}

.nav_list li.active .nav_circle,
.nav_list li:hover .nav_circle{
    border: 1px solid #FFD2B0;
}
.nav_list li.active .nav_circle i,
.nav_list li:hover .nav_circle i{
    border: 3px solid #FFD2B0;
    background: #FFD2B0;
}
.nav_list li .nav_circle i::before{
    content: '';
    display: block;
    position: absolute;
    box-sizing: border-box;
    left: 50%;
    top: 50%;
    transition: all .5s;
    transform: translate(-50%,-50%);
    width: 0;
    height: 0;
    border: 4px solid #FFDCC3;
    opacity: 0;
    border-radius: 50%;
}
.nav_list li:hover .nav_circle i::before,
.nav_list li.active .nav_circle i::before{
    animation: nav_circle 1s linear infinite;
}
@keyframes nav_circle {
    0% { width: 0; height: 0; opacity: 0; }
    50% { width: 32px; height: 32px; opacity: .4; }
    100% { width: 40px; height: 40px; opacity: 0; }
}
.body_r{
    width: calc(100% - 340px);
    height: 100%;
}
.body_r_top{
    height: 95px;
	margin-left: 15px;
    padding: 0 60px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.x_title{
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	margin-top: -20px;
}
.body_r_title h3{
    line-height: 60px;
    font-size: 50px;
    color: #333;
   
}
.body_r_title p{
    line-height: 26px;
    font-size: 16px;
    color: #333;
}
.search_box{
    width: auto;
	margin-right: 27px;
    position: relative;
}
.search_box a{
    box-sizing: border-box;
    color: #fff;
    background: none;
    font-size: 18px;
    padding: 6px 20px;
    line-height: 55px;
    border-radius: 40px;
	background:#d54239;
}
.search_btn{
    border: 0;
    cursor: pointer;
    z-index: 2;
    position: absolute;
    background: url('../images/search.png');
    background-size: 100%;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
    width: 24px;
    height: 24px;
}
.book_box{
    position: relative;
    box-sizing: border-box;
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    height: 600px;
    padding: 30px 90px 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    justify-content: space-between;
    font-size: 50px;
    color: #fff;
    background-image: url('../images/book_bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.book_btn{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 60%;
    bottom: 40px;
}
.book_btn a{
    line-height: 24px;
    font-size: 14px;
    color: #222324;
    text-decoration: underline;
}
.book_page_box,
.book_page{
    width: 100%;
}
.book_page{
    display: none;
    transition: all .5s;
    opacity: 0;
}
.book_page.active{
    display: block;
    animation: book_show .3s linear forwards;
}
@keyframes book_show{
    0% { opacity: 0; }
    100% { opacity: 1; }
}
.page_top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    height: 30px;
    line-height: 30px
}
.page_title{
    font-size: 20px;
    color: #222324;
}
.page_title span{
    color: #C4A389;
}
.page_btn{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.page_btn li{
    text-align: center;
    background: linear-gradient(180deg, #F8CCAD, #A8856D);
    margin-left: 16px;
    width: 105px;
    line-height: 28px;
    border-radius: 14px;
    font-size: 14px;
}
.page_btn li a{
    display: block;
    color: #fff;
}
.book_link_box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
   /* max-height: 432px;
    overflow-y: scroll;*/
}
.gwy1{
	background: #fef7f7;
	width: 400px;
	height:430px;
	border-radius:9px;
	margin-top: 60px;
}
.gwy1 p{
	width: 360px;
	padding-left: 20px;
	font-size: 18px;
	line-height: 40px;
	margin-top: 25px;
	background:#d5584b;
	border-bottom-right-radius: 50px;
	border-top-right-radius: 50px;
}
.gwy2{
	background: #fef7f7;
	width: 400px;
	height:430px;
	border-radius:9px;
	margin-top: 60px;
}
.gwy2 h3{
	font-size: 30px;
	text-align: center;
	margin-top: 35px;
	color: #d5584b;
}
.gwy2 p{
	font-size: 14px;
	line-height: 40px;
	text-align: center;
	color: #333;
}
.gwy2 p img{
	width:200px;
}
.tupian{
	width: 220px;
	margin: auto;
}
.tupian2{
	width: 240px;
	height: 180px;
	margin: auto;
	margin-top: 20px;
	margin-bottom: 15px;
}
.tupian2 img{
	width: 240px;
	height: 180px;
}
.kc1{
	background: #f35d54;
	width: 270px;
	height:430px;
	border-radius:9px;
	margin-top: 60px;
}
.kc2{
	background: #fef7f7;
	width: 270px;
	height:430px;
	border-radius:9px;
	margin-top: 60px;
}
.kc1 h3{
	font-size: 24px;
	text-align: center;
	margin-top: 30px;
	letter-spacing: 2px;
}
.kc1 p{
	font-size: 18px;
	text-align: center;
	
}
.kc1 a{
	background: #fef7f7;
	padding: 9px 50px;
	border-radius: 50px;
	box-shadow: 0 3px 9px #c42016;
}
.kc2 h3{
	font-size: 24px;
	letter-spacing: 2px;
	text-align: center;
	margin-top: 30px;
	color: #d5584b;
}
.kc2 p{
	font-size: 18px;
	text-align: center;
	color: #d5584b;
}
.lianjie{
	margin-top: 20px;
}
.kc2 a{
	background: #f35d54;
	padding: 9px 50px;
	border-radius: 50px;
	color: #fef7f7;
	box-shadow: 0 3px 9px #c42016;
}
.kc3{
	width: 270px;
	height:200px;
	border-radius:9px;
	margin-top: 30px;
}
.tupian3{
	width: 270px;
	height: 220px;
	margin: auto;
	margin-top: 20px;
	margin-bottom: 5px;
	background: #fef7f7;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
}
.tupian3 img{
	width: 270px;
	height: 180px;
}
.kc3 p{
	font-size: 18px;
	text-align: center;
	color: #333;
}
.kc4{
	border-top-left-radius: 50px;
	border-bottom-right-radius: 50px;
	border-bottom-left-radius: 0px;
	border-top-right-radius: 0px;
}
.tupian4{
	width: 200px;
	height: 200px;
	margin: auto;
	margin-top: 20px;
	margin-bottom: 5px;
	background: #fef7f7;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
}
.tupian4 img{
	width: 200px;
	height: 200px;
}
.link_box{
    width: 42%;
}
.link_box p{
    display: block;
    overflow: hidden;
    text-overflow:ellipsis; 
    white-space: nowrap;
    line-height: 30px;
    margin-bottom: 6px;
    font-size: 16px;
    color: #222324;
    cursor: pointer;
}




.window_mask{
    display: none;
    background: rgba(0,0,0,.66);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.form_box{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    box-sizing: border-box;
    padding: 20px 28px 32px;
    width: 560px;
    border-radius: 20px;
    background: linear-gradient(180deg, #F8CCAD, #A8856D);
    background-size: 100% 100%;
}
.close{
    display: block;
    position: absolute;
    cursor: pointer;
    right: -35px;
    top: -35px;
    width: 32px;
}
.form_box h3{
    line-height: 45px;
    margin-bottom: 20px;
    font-size: 30px;
    color: #fff;
    text-align: center;
}
.ajax_form{
    width: 100%;
}
.ajax_form p{
    margin-bottom: 24px;
}
.ajax_form input,
.ajax_form select{
    width: 245px;
    height: 54px;
    line-height: 54px;
    border-radius: 4px;
    border: 0;
    box-sizing: border-box;
    padding-left: 20px;
    background: #fff;
    color: #999;
    font-size: 20px;
    float: left;
}
.ajax_form select{
    background: #fff url("../images/select_bg.png") 95% center no-repeat;
}
.ajax_form input#shoujihao{
    width: 100%;
}
.ajax_form select#city{
    float: right;
}
.ajax_form input#PhoneCode{
    width: 345px;
}
.ajax_form input#fs{
    float: right;
    padding: 0;
    text-align: center;
    cursor: pointer;
    color: #000;
    width: 140px;
    background: #FFD40A;
}
.ajax_form input.button{
    width: 100%;
    height: 54px;
    line-height: 54px;
    border-radius: 27px;
    border: 0;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
    padding: 0;
    background: linear-gradient(180deg, #F8CCAD, #A8856D);
    box-shadow: 1px 2px 36px 0px rgba(32, 26, 121, 0.34);
    color: #fff;
    font-size: 26px;
    float: none;
}

@media only all and (max-width:1080px) {
    .onlymob {
        display: block;
    }

    html {
        font-size: 20px;
    }

    body {
        width: 100%;
        font-size: .7rem;
        line-height: 1.2rem;
		background: #ffafa0;
    }

    html, body {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    }

    .Width {
        width: 17.5rem;
    }
    .container{
        width: 98%;
    }
    .fl,.fr{
        float: none;
    }

    /* 隐藏元素 */
    .ht_top .topnav a:nth-child(n+2),
    .stage,
    .footer p,
    .pc, .onlypc {
        display: none;
    }

    /* 通用头部 */
    .ht_top {
        height: 2.5rem;
        background-size: auto 100%;
        line-height: 2.5rem;
    }

    .ht_top h1 a {
        height: 2.5rem;
        width: 7.5rem;
        background: url(../images/mob_logo.png) no-repeat center / contain;
    }

    .ht_top .topnav {
        font-size: .8rem;
        text-indent: -1000rem;
    }

    .ht_top .topnav a {
        padding: 0 0 0 0.3rem;
        text-indent: 0;
        float: right;
    }

    .footer {
        position: relative;
        height: 2.4rem;
        padding: 0;
        overflow: hidden;
    }

    .footer:before {
        display: block;
        content: "华图教育集团版权所有";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 2.4rem;
        overflow: hidden;
        color: #333;
        font-size: .7rem;
        line-height: 2.4rem;
        text-align: center;
    }

    .box_container{
        padding: 1rem 0;
    }


    html,body{
        width: 100%;
        height: 100%;
    }
    
    .body_box{
        height: 100%;
        background-size: auto 100%;
        padding: 0 .5rem;
		
    }
    .body_l{
        width: 100%;
    }
    .body_main{
        margin: 0 auto;
        width: 11.4rem;
        height: 8.4rem;
        padding: 1rem 0;
    }
    .body_main p{
        padding: 0 .3rem;
        line-height: 1rem;
        font-size: .7rem;
    }
    .body_main h2{
        line-height: 1.5rem;
        font-size: 1rem;
    }
    .nav_list{
        margin-top: 1rem;
    }
    .nav_list::before{
        content: '';
        display: none;
    }
    .nav_list li{
        float: left;
        width: 50%;
        height: 1.4rem;
        padding-left: .5rem;
        font-size: .75rem;
    }
    .nav_list li::before{
        border-radius: .1rem;
    }
    .nav_list li .nav_circle{
        width: .8rem;
        height: .8rem;
        margin-right: 1rem;
    }
    .nav_list li .nav_circle i{
        width: .4rem;
        height: .4rem;
        border: 2px solid #FFFFFF;
    }
    .nav_list li.active .nav_circle i,
    .nav_list li:hover .nav_circle i{
        border: 2px solid #FFD2B0;
    }
    .nav_list li .nav_circle i::before{
        border: 3px solid #FFDCC3;
    }
    @keyframes nav_circle {
        50% { width: 1.1rem; height: 1.1rem; opacity: .4; }
        100% { width: 1.5rem; height: 1.5rem; opacity: 0; }
    }
    .body_r{
        margin-top: 1rem;
        width:100%;
        height: auto;
    }
    .body_r_top{
        height: auto;
		margin-left: 0;
        padding: 0 1rem;
		margin-bottom: .5rem;
        display: block;
    }
	.x_title{
	    margin-top:.5rem;
		color: #ce3b32;
	}
    .body_r_title h3{
        text-align: center;
        line-height: 1.3rem;
        font-size: 1rem;
    }
    .body_r_title p{
        text-align: center;
        line-height: 1rem;
        font-size: .75rem;
    }
    .search_box{
		display: none;
        margin: .5rem auto;
        width: 15rem;
    }
    .search_input{
        padding-left: .5rem;
        font-size: .7rem;
        width: 100%;
        height: 1.6rem;
        line-height: 1.6rem;
        border-radius: .8rem;
    }
    .search_btn{
        right: .5rem;
        width: 1rem;
        height: 1rem;
    }
    .book_box{
        max-width: 100%;
        height: auto;
        display: block;
        padding: .5rem 1rem;
        font-size: 1rem;
        background: #fff;
    }
    .book_btn{
        position: relative;
        left: auto;
        transform: translateX(0);
        margin: 0 auto;
        width: 60%;
        bottom: auto;
    }
    .book_btn a{
        line-height: 1.3rem;
        font-size: .8rem;
    }
    .page_top{
        display: block;
        margin-bottom: .5rem;
        height: auto;
        line-height: 1.2rem;
    }
    .page_title{
        font-size: .8rem;
        text-align: center;
    }
    .page_btn{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .page_btn li{
        margin: .5rem 1%;
        width: 31.3%;
        line-height: 1.4rem;
        border-radius: .7rem;
        font-size: .7rem;
    }
    .book_link_box{
        display: block;
        /*max-height: 12rem;*/
    }
    .link_box{
        width: 100%
    }
    .link_box a{
        line-height: 1rem;
        margin-bottom: .2rem;
        font-size: .7rem;
    }
.gwy1{
	width: 100%;
	height:auto;
	margin-top: .7rem;
	background: #fff;
	
}
.gwy1 p{
	width: 95%;
	padding-left: .5rem;
	font-size: .7rem;
	line-height: 1.6rem;
	margin-top: .4rem;
	background:#d5584b;
}
.gwy2{
	width: 100%;
	background: #fff;
	height:auto;
	margin-top: 1.5rem;
	border-bottom: .3rem solid #ffafa0;
}
.gwy2 h3{
	font-size: 1.2rem;
	text-align: center;
	margin-top: .7rem;
	color: #d5584b;
}
.gwy2 p{
	font-size: .8rem;
	line-height: 3rem;
	text-align: center;
	color: #333;
}
.tupian{
	width: 12rem;
	margin: auto;
	margin-bottom: .5rem;
}
    .form_box{
        padding: .5rem 1rem;
        width: 90%;
        border-radius: .5rem;
    }
    .close{
        right: 0;
        top: -1.5rem;
        width: 1.3rem;
    }
    .form_box h3{
        line-height: 1.5rem;
        margin-bottom: .5rem;
        font-size: 1rem;
    }
    .ajax_form p{
        margin-bottom: .6rem;
    }
    .ajax_form input,
    .ajax_form select{
        width: 49%;
        height: 1.6rem;
        line-height: 1.6rem;
        border-radius: .2rem;
        padding-left: .5rem;
        font-size: .7rem;
    }
    .ajax_form select{
        background-size: .5rem;
    }
    .ajax_form input#PhoneCode{
        width: 59%;
    }
    .ajax_form input#fs{
        width: 39%;
    }
    .ajax_form input.button{
        height: 1.8rem;
        line-height: 1.8rem;
        border-radius: .9rem;
        font-size: 1rem;
    }
.kc1{
	width: 100%;
	height:17.5rem;
	margin-top: .5rem;
}
.kc2{
	width: 100%;
	height:17.5rem;
	margin-top: .5rem;
}
.kc1 h3{
	font-size: 1.1rem;
	text-align: center;
	padding-top: .8rem;
	margin-top: 1rem;
	letter-spacing: .1rem;
}
.kc1 p{
	font-size: .9rem;
	text-align: center;
	
}
.kc1 a{
	background: #fef7f7;
	padding: 9px 50px;
	border-radius: 50px;
	box-shadow: 0 3px 9px #c42016;
}
.kc2 h3{
	font-size: 1.1rem;
	text-align: center;
	padding-top: .8rem;
	margin-top: 1rem;
	letter-spacing: .1rem;
}

.kc3{
	width: 100%;
	height:auto;
	margin-top: 1rem;
}
.tupian3{
	width: 95%;
	height: 10.7rem;
}
.tupian3 img{
	width: 100%;
	height: 180px;
}
.kc3 p{
	font-size: 18px;
	text-align: center;
	color: #333;
}

.tupian4{
	width: 9rem;
	height: 9rem;
}
.tupian4 img{
	width: 9rem;
	height: 9rem;
}
}


@media only all and (max-height:900px){
    .body_box{
        background-size: auto 130%;
    }
}