*{
    margin: 0;
    padding: 0;
}
body{
    width: 100%;
    min-width: 1200px;
    height: 100%;
    color: #333;
    font-size: 16px;
    letter-spacing: 1px;
    background-color:#fff;
}
a{
    display: inline-block;
    text-decoration: none;
    -webkit-tap-highlight-color:transparent
}
li{
    list-style: none;
}
img{
    border:none;
    vertical-align:middle;
}
.clear{
    clear:both
}
.page_container{
    width: 100%;
    background: url("../images/page_bg.jpg") no-repeat;
    background-size: 100% auto;
}
/*head*/
.head{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    margin:0 auto;
    height:82px;
    background:#fff;
    border-bottom: 1px #f5f6f7 solid;
}
.head1{
    width:1200px;
    margin:0 auto;
}
.logo{
    float:left;
    padding-top:7px;
}
.nav{
    width:1200px;
    line-height:80px;
    margin-left:20px;
}
.nav_item{
    position:relative;
    z-index:2;
    float:left;
    margin-left: 30px;
    text-align:center;
    cursor:pointer;
    color:#333;
}
.nav_item>a{
    display:block;
    color:#333;
    border-bottom:#fff 2px solid;
}
.nav_item>a:hover{
    border-bottom:#ef5c52 2px solid;
}
.histroy_link {
    position: absolute;
    left: -16px;
    top: 65px;
    z-index: 1;
    width: 100px;
    display: none;
    padding: 10px 0;
    background: #ef5c52;
    border-radius: 10px;
    box-shadow: 0 5px 10px #ef5c52;
}
.histroy_link li{
    width:100%;
    line-height:36px;
}
.histroy_link a{
    display:block;
    color:#fff;
}
.nav_item:hover .histroy_link{
    display:block;
    color:#ef5c52;
}
.navlogin{
    float:right;
    margin-top:23px;
}
.navlogin a{
    display:block;
    float:left;
    margin-left:10px;
    text-align:center;
}


.loginon{
    display: inline-block;
    width: 109px;
    height: 28px;
    border-bottom: 1px solid #333;
    margin-top: 25px;
}
.loginon1{
    margin-top: 25px;
}



.n_join{
    float: right;
    min-width: 210px;
    max-width: 340px;
    text-align: center;
    line-height: 30px;
}
.n_join .lbg{
    display: inline-block;
    min-width: 145px;
    min-height: 30px;
    line-height: 19px;
    color: #fff;
    border-radius: 8px;
    margin-top: 18px;
    padding: 3px 5px;
    text-align: center;
    margin-left: 5px;
    font-size: 15px;
    font-weight: bold;
    background-color: #e13b29;
    border: #f00 1px solid;
}
.n_join a span{
    display: block;
    font-size: 12px;
    font-weight: normal;
}


/*center*/
.center{
    width: 100%;
    margin-top: 82px;
}
.banner{
    width: 100%;
    height: 450px;
    background: url("../images/banner.jpg") no-repeat center;
}
.banner_line{
    width: 100%;
    height: 50px;
    background-color: #fea624;
}
.banner_con{
    width: 1200px;
    margin: 0 auto;
}
.b_c_org{
    width: 1065px;
    height: 175px;
    margin: 0 auto;
    color: #000;
    font-size: 18px;
    line-height: 30px;
    padding-top: 365px;
    font-weight: bold;
}
.menu{
    width: 100%;
    padding: 22px 0;
    background-color: #f0f1f5;
}
.menu ul{
    width: 1200px;
    margin: 0 auto;
}
.menu_item{
    float: left;
    width: 25%;
    text-align: center;
}
.menu_item a{
    display: inline-block;
    width: 220px;
    height: 32px;
    text-align: left;
    color: #fff;
    font-size: 21px;
    font-weight: bold;
    text-shadow: 3px 2px 2px #d95f02;
    letter-spacing: 3px;
    line-height: 32px;
    padding:27px 0 27px 30px ;
    background: url(../images/menu_bg_01.png) no-repeat;
    background-size: 100% 100%;
}
.menu_item:nth-child(2) a{
    height: 64px;
    padding: 11px 0 11px 30px;
    text-shadow: 3px 2px 2px #509d26;
    background-image: url("../images/menu_bg_02.png");
}
.menu_item:nth-child(3) a{
    text-shadow: 3px 2px 2px #0e59ed;
    background-image: url("../images/menu_bg_03.png");
}
.menu_item:nth-child(4) a{
    text-shadow: 3px 2px 2px #701f82;
    background-image: url("../images/menu_bg_04.png");
}

.menuSlideUp{
    animation-name: menuSlideUp;
    -webkit-animation-name: menuSlideUp;

    animation-duration: 1s;
    -webkit-animation-duration:1s;

    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;

}
@keyframes menuSlideUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-5px);
    }
}
@-webkit-keyframes menuSlideUp {
    0% {
        -webkit-transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-5px);
    }
}
.menuSlideDown{
    animation-name: menuSlideDown;
    -webkit-animation-name: menuSlideDown;

    animation-duration: 1s;
    -webkit-animation-duration:1s;

    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;

}
@keyframes menuSlideDown {
    0% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}
@-webkit-keyframes menuSlideDown {
    0% {
        -webkit-transform: translateY(-5px);
    }
    100% {
        -webkit-transform: translateY(0);
    }
}



.c1{
    width: 100%;
    margin:0 auto;
    padding-top:80px;
}
.c1_title{
    width: 100%;
    text-align:center;
    letter-spacing: 7px;
}
.c1_title p:first-child{
    position: relative;
    display: inline-block;
    color: #000;
    font-size: 32px;
    font-weight: bold;
    padding: 0 84px;
    line-height: 37px;
}
.c1_title p:first-child:before{
    content: ' ';
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    width: 77px;
    height: 37px;
    background: url("../images/title_left.png") no-repeat;
    background-size: 100% 100%;
}
.c1_title p:first-child:after{
    content: ' ';
    position: absolute;
    right: 0;
    top: 0;
    display: inline-block;
    width: 77px;
    height: 37px;
    background: url("../images/title_right.png") no-repeat;
    background-size: 100% 100%;
}
.c1_list{
    width:1200px;
    margin:auto;
    margin-top:40px;
    border: 1px #efefef solid;
}
.c1_left{
    float:left;
    width:764px;
    height:430px;
    overflow:hidden;
}
.c1_right{
    float:right;
    width:384px;
    height:430px;
    padding-left:26px;
    padding-right:26px;
    overflow:auto;
    background-image: linear-gradient(to bottom right,#fff,#fdefef);
}
.c1_right::-webkit-scrollbar{
    width:8px;
    height:8px;
}
.c1_right::-webkit-scrollbar-track{
    background: rgb(239, 239, 239);
    border-radius:2px;
}
.c1_right::-webkit-scrollbar-thumb{
    background: #bfbfbf;
    border-radius:10px;
}
.c1_right::-webkit-scrollbar-thumb:hover{
    background: #ed626e;
}
.c1_right::-webkit-scrollbar-corner{
    background: #ed626e;
}
.c1_rtitle{
    height: 45px;
    line-height: 45px;
    font-size:20px;
    border-bottom: 1px #888e84 solid;
}
.tab_bg{
    display: inline-block;
    width: 100px;
    color:#770e9d;
    font-weight: bold;
    text-align: center;
}
.tab_active{
    font-style: italic;
    border-bottom: 2px #770e9d solid;
}
.c1_news{
    display: none;
    padding: 10px 0;
}
.cl_news_active{
    display: block;
}
.c1_news1{
    position: relative;
    margin: 10px 0;
    color: #fff;
    line-height: 28px;
}
.c1_title1 a{
    color:#666;
}
.c1_news1 a:hover{
    text-decoration:underline;
}
.c1_more1{
    margin-bottom: 35px;
}
.c1_more1 a{
    display:block;
    height:37px;
    line-height:37px;
    text-align:center;
    color:#fff;
    border-radius:8px;
    background-color: #e13745;
    background-image: linear-gradient(to right,#e13745,#ed626e);
}


.c2{
    width: 100%;
    margin:0 auto;
    margin-top: 80px;
}
.c2_list{
    width:1000px;
    margin:0 auto;
    padding: 50px 100px;
    margin-top: 50px;
    background: url("../images/org_bg.png") no-repeat;
    background-size: 100% 100%;
}
.org_item{
    width: 100%;
    color: #000;
    font-size: 19px;
    font-weight: bold;
    line-height: 40px;
}
.zd_org,.zb_1,.zb_2{
    display: inline-block;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    margin-right: 40px;
    margin-bottom: 25px;
    padding: 6px 23px 6px 87px;
    background: url("../images/national_emblem.png") no-repeat;
    background-size: 47px 50px;
    background-position: 23px center;
}
.zb_1{
    background-image: url("../images/zd_logo_01.png");
    background-size: 50px 50px;
}
.zb_2{
    background-image: url("../images/zd_logo_02.png");
    background-size: 50px 50px;
}

.org_wyh{
    width:1040px;
    margin:0 auto;
    padding: 80px 60px 80px 100px;
    margin-top: 50px;
    line-height: 42px;
    background: url("../images/org_wyh_bg.png") no-repeat;
    background-size: 100% 100%;
}
.wyh_left{
    float: left;
    width: 490px;
    padding-right: 10px;
}
.wyh_right{
    float: left;
    width: 490px;
    padding-left: 50px;
}
.wyh_item{
    width: 100%;
}
.wyh_item>p{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
.mingdan li span{
    display: inline-block;
    width: 52px;
    margin-right: 12px;
    text-align: justify;
    text-justify:distribute-all-lines;
    text-align-last: justify;
}


.c_details{
    width: 1200px;
    margin: 0 auto;
    margin-top: 50px;
    text-align: left;
}
.details_left{
    float: left;
    width: 589px;
}
.details_right{
    float: right;
    width: 589px;
}
.d_title{
    width: 525px;
    min-height: 72px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    line-height: 36px;
    padding:10px 32px ;
    letter-spacing: 2px;
    background: url("../images/details_title_bg_01.png") no-repeat;
    background-size: 100% 100%;
}
.details_right .d_title{
    line-height: 72px;
    background-image: url("../images/details_title_bg_02.png");
}
.d_text{
    width: 523px;
    min-height: 657px;
    padding: 32px 32px 60px 32px;
    line-height: 30px;
    border: 1px #dcdddd solid;
    background-color: #fff;
}
.d_text p{
    text-indent: 34px;
}
.answer_entry{
    width: 100%;
    margin-top: 60px;
    text-align: center;
}
.answer_entry a{
    width: 232px;
    height: 56px;
    color: #fff;
    line-height: 56px;
    font-size: 18px;
    letter-spacing: 3px;
    background-color: #e13b29;
    border-radius: 10px;
}
.dy_ewm{
    width: 100%;
    margin-top: 31px;
    text-align: center;
    font-weight: bold;
}
.dy_ewm img{
    width: 175px;
    height: 175px;
}


.c3{
    width: 100%;
}
.c3_list{
    width:1200px;
    /*height: 500px;*/
    margin:0 auto;
    padding-top:80px;
    /*text-align:center;*/
    /*background:url("../images/process_bg_20.png") no-repeat center;*/
}
.p_item{
    float: left;
    position: relative;
    width: 20%;
    line-height: 25px;
    text-align: center;
}
.process ul li p:nth-child(1){
    font-size:16px;
}
.process ul li p:nth-child(2){
    font-size:14px;
    color: #7c7c7c;
    letter-spacing: 0;
}
.p_1{
    top: 224px;
    left: 55px;
}
.p_2{
    top: 282px;
    left: 41px;
}
.p_3{
    top: 199px;
    left: 25px;
}
.p_4{
    top: 294px;
    left: 12px;
}
.p_5{
    top: 202px;
    left: -40px;
}

.c4{max-width:1920px;margin:auto;padding-top:60px;height:860px;background:url(../images/ph_bg_22.png) no-repeat center;}
.c4_list{width:1100px;height:586px;margin:auto;overflow:hidden;margin-top:80px;}
.c4_titlebg{height:84px;background:url(../images/ph_tab_24.png) no-repeat;background-size: 100% 100%;}
.c4_title1{text-align:center;}
.c4_title1 li{display:inline-block;width:170px;height:48px;line-height:48px;font-size:18px;text-align:center;cursor:pointer;margin:18px 20px;color:#e13745;border-radius: 10px;}
.r1{background-color: #fff;box-shadow:0 5px 10px -5px #9a105a;}
.r2{background-color: #ffdce9;box-shadow:0 5px 10px -5px #c50e4e;}
.c4_rank{background-color: #fff;  }
.ranklist1_1{width:90%;height:405px;margin:auto;overflow-y:auto;}
.rtitle{height:60px;line-height:60px;background-color: #fff7eb;}
.rtitleline{width:90%;margin:auto;}
.rtitleline div{float:left;width:24.7%;text-align:center;font-size:18px;}
.rlist{height:85px;line-height:85px;border-bottom:#fcb750 1px dashed}
.rlist div{float:left;width:25%;text-align:center}
.irankbg{background:#ecdc8f}
.rtitlex{height:60px;line-height:60px;background:#fff7ec;}
.rtitlelinex{width:90%;margin:auto;}
.rtitlelinex div{float:left;width:33.3%;text-align:center;font-size:18px;}
.rlistx{height:85px;line-height:85px;border-bottom:#fcb750 1px dashed}
.rlistx div{float:left;width:33.3%;text-align:center}
.ranklist2{display:none;}
.ranklist2_1{width:90%;height:405px;margin:auto;overflow-y:auto;}

.c5{
    width: 100%;
    margin: 0 auto;
    padding: 80px 0;
}
.c5_list{
    width:1200px;
    margin:0 auto;
    margin-top:40px;
    padding-top:0;
}
.cb_list_school{
    width: 100%;
    height: 400px;
    overflow-y: auto;
}
.cb_list_school li{
    float: left;
    width: 30%;
    padding: 0 1.65%;
    margin-top: 12px;
    font-size: 15px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.c5 .more{
    padding:15px 0 30px 0;
    text-align:right;
    font-weight:bold;
}
.c5 .more a{
    color:#333;
}
.cb_logo{
    width: 1100px;
    height: 163px;
    overflow: hidden;
    background-color: #fff;
    border: 1px #cfcfd0 solid;
}
.logo_slider{
    width: 1100px;
    overflow: hidden;
}
.logo_slider img{
    width: 117px;
    padding:23px 48px;
    border: none;
    border-left: 1px #cfcfd0 solid;
}
.cb_search{
    width: 570px;
    height: 40px;
    margin: 0 auto;
}
.cb_search #school{
    width: 477px;
    height: 38px;
    background-color: #fcfcfc;
    border: 1px #e4e4e4 solid;
    border-radius: 5px 0 0 5px;
    border-right: none;
    outline: none;
    padding-left: 15px;
    font-size: 16px;
}
input::-webkit-input-placeholder{
    color:#999;
}
input::-moz-placeholder{   /* Mozilla Firefox 19+ */
    color:#999;
}
input:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
    color:#999;
}
input:-ms-input-placeholder{  /* Internet Explorer 10-11 */
    color:#999;
}
.s_btn{
    float: right;
    display: inline-block;
    width: 77px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    padding-left: 23px;
    background: url(../images/search_1_05.png) no-repeat;
    background-size: 14px 16px;
    background-position: 14px 12px;
    text-decoration: none;
    background-color: #e13b29;
    border: none;
    outline: none;
    font-size: 16px;
    border-radius: 0 5px 5px 0;
}
.query_results{
    display: none;
    width: 490px;
    margin: 0 auto;
    margin-top: 20px;
    padding:30px 40px;
    text-align: center;
    line-height: 30px;
    border: 1px #ccc solid;
}
.query_results .apply_btn{
    color: #fff;
    padding: 4px 20px;
    border-radius: 10px;
    margin-top: 10px;
    background-color: #e13b29;
}




.foot{background:#171927;max-width:1920px;min-width:1200px;width:100%;margin:auto;}
.foot1{max-width:1200px;width:100%;margin:auto;padding:10px 0 20px 0}
.foot1_left{float:left;width:305px;padding-top:15px;}
.ftitle{color:#fff;}
.foot1_left li{color:#dad8d8;}
.tel{background:url(../images/tel_03.png) no-repeat 0px 4px;padding-left:30px;margin-top:10px;}
.teltips{font-size:12px;color:#CCC;padding-left:95px;}
.member{background:url(../images/contacts_06.png) no-repeat 0px 4px;padding-left:30px;margin-top:10px;}
.qq{background:url(../images/qq_08.png) no-repeat 0px 4px;padding-left:30px;margin-top:10px;}
.qq a{color:#dad8d8; text-decoration:underline}
.foot1_right{float:right;}
.foot1_right a{display:block;width:205px;height:48px;line-height:48px;background:#fff;border-radius:30px;text-align:center;margin-top:30px;}
.footlink{width:490px;background:#171927;float:left;}
.footlink1{padding:20px;}
.footlink1 li{float:left;width:200px;margin-top:5px}
.footlink1 a{color:#dad8d8;font-size:14px}

.foot2{height:50px;line-height:50px;background:#0d0f1c;color:#b8b6b6;text-align:center}
.foot2 a{color:#b8b6b6}

.technical_support{
    width: 100%;
    height: 46px;
    line-height: 46px;
    color: #f98322;
    font-weight: bold;
    text-align: center;
    background-color: #fdf4ec;
}
.add_stroke::before{
    content: attr(data-text);
    position: absolute;
    background-color: #f98322;
    /*background-image: linear-gradient(#FFCF02, #FF7352);*/
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0;
}
.add_stroke{
    display: inline-block;
    position: relative;
    padding-left: 42px;
    font-size: 17px;
    letter-spacing: 2px;
    -webkit-text-stroke: 1px #fff;
    /*text-shadow: 0 0 10px #fbcaa1;*/
    background: url(../images/logo_wajsw.png) no-repeat;
    background-size: 32px auto;
    background-position: left center;
}


.lnav{
    position: fixed;
    top: 200px;
    left: 50px;
    z-index: 3;
    display: none;
    width: 126px;
    height: 502px;
    padding-top: 90px;
    text-align: center;
    background: url(../images/lnavbg1.png) no-repeat center;
}
.lnav1 div{cursor:pointer;text-align:right;padding-right:16px}
.lnav1_1{text-align:right;margin-top:-68px;margin-left:-5px;}
.lnav1_1 a{  width: 126px;  height: 121px;}
.lnav1_2{height:49px;line-height:49px;color:#fff;padding-right:18px;}
.lnav1_3{height:49px;line-height:49px;color:#fff;}
.lnav1_4{height:49px;line-height:49px;color:#fff;padding-top:5px}
.lnav1_5{height:49px;line-height:49px;color:#fff;padding-top:3px}
.lnav1_6{height:49px;line-height:49px;color:#fff;padding-top:3px}
.lnav1_9{height:49px;line-height:49px;color:#fff;padding-top:3px}
.lnav1_7{height:49px;line-height:49px;color:#fff;}
.lnav1_7 a{color:#fff;display:block}
.lnav1_8{width:52px;height:52px;margin-top:15px;margin-left:30px;}



.loginbg{max-width:1920px;min-width:1200px;min-height:750px;width:100%;margin:auto;background:url(../images/loginbg.jpg) no-repeat center #f0f0fc;}

.innerbg{max-width:1920px;min-width:1200px;min-height:600px;margin:auto;background:#edfafa;padding-top:1px}
.login{width:860px;height:540px;margin:auto;padding-top:50px;}
.login_title{text-align:center;padding-top:180px}



.innerbg{max-width:1920px;min-width:1200px;min-height:600px;margin:auto;background:#edfafa;padding-top:1px;margin-top: 83px}
.login{width:860px;height:540px;margin:auto;padding-top:50px;}
.login_title{text-align:center;padding-top:180px}





#right{cursor:pointer}
#wrong{ cursor:pointer}
#ifright1{ cursor:pointer}
#ifright2{ cursor:pointer}
#ifright3{ cursor:pointer}
#ifright4{ cursor:pointer}
#ifright5{ cursor:pointer}





.nologin{width:100%;position:absolute;z-index:999;left:0;top:0;height:500px;}



.xytitle{text-align:center;font-size:18px;font-weight:bold;margin-bottom:10px;}




.qlist{max-width:1200px;width:100%;margin:auto;}
.qlist1{padding-top:0px;}
.qlist2{max-width:750px;width:100%;margin:auto;padding-bottom:40px;background:#fff;}
.qlist3{width:1024px;margin:auto;padding:10px;padding-bottom:0px;background:#fff;}
.red{color:#f00}
.applytips{padding-left:58px;min-height:25px;margin-top:10px;}
.applytips a{float:right;padding-right:25px;text-decoration:underline;font-size:14px;}
.qtitle{font-size:16px;}
.answer{margin-top:5px;}
.answer1{float:left;margin-left:20px;}
.answer2{float:left;margin-left:20px;}
.answer3{float:left;margin-left:20px;}
.answer4{float:left;margin-left:20px;}
.answer5{float:left;margin-left:20px;}

.qsub{margin-top:35px;margin-left:20px;}

.qtipsbg{height:145px;margin:auto;position:relative;margin-top:16px}
.qtips{max-width:1200px;margin:auto;}
.qtips1{float:left;padding-top:30px;font-size:18px;}
.qtips1_1{float:left;padding-left:30px;font-size:20px;color:#fff;background:url(../images/qtypebg.png) no-repeat;width:150px;height:39px;line-height:39px;}
.qtips1_2{float:left;padding-top:6px;font-size:20px;}
.qtips1_2 span{color:#ff8e52}
.qtips2{width:163px;height:116px;line-height:150px;float:right;margin-right:50px;margin-top:10px;background:url(../images/lefttime.png) no-repeat center;margin-top:30px;}
.qtips2_2{font-size:32px;float:left;color:#fc4d61;margin-left:20px}
.qtips2_3{font-size:32px;color:#070707;float:left;margin-left:10px}

.qnow{max-width:1160px;margin:auto;height:500px;}
.qtitle1{min-height:20px;padding:20px;padding-left:20px;padding-top:0px;font-size:18px;line-height:36px;font-weight:580;margin-top:30px;}
.qanswer{margin-top:20px;margin-left:20px;}
.qanswer1{margin-top:10px;}
.qanswer2{margin-top:10px;}
.qanswer3{margin-top:10px;}
.qanswer4{margin-top:10px;}
.qanswer5{margin-top:10px;}
.ansub{background:#fea624;width:236px;height:54px;border-radius:25px;border:none;outline:none;border-bottom:#bd3c35 1px solid;color:#fff;font-weight:600;cursor:pointer;font-size:16px;}

.qall{margin-left:10px;margin-top:75px;}
.qall span{display:inline-block;width:26px;text-align:center;color:#27c2a8}
.qall font{display:inline-block;width:26px;text-align:center;}

.record{width:953px;margin:auto;background:#fff;overflow:hiddenborder-radius:16px;border-top-left-radius:8px;border-top-right-radius:8px;margin-top:100px;}


.scorebg{margin:auto;margin-top:10px;text-align:center;}
.score{font-size:45px;color:#f50510;margin-top:220px;}
.score span{font-size:40px;color:#f90101;color:#fff}
.scoretips{margin-top:50px;font-size:20px;color:#fff}

.certlist{width:479px;margin:auto;padding-top:45px;}
.certlist li{float:left;height:55px;line-height:55px;text-align:center;}
.certlist a{display:block;font-size:18px;}

.score1{width:49%;border:#fe7183 1px solid;border-top-left-radius:25px;border-bottom-left-radius:25px}

.score2{width:49%;background:#ff9c95;border:#fe7183 1px solid;border-left:none;border-top-right-radius:25px;border-bottom-right-radius:25px}
.score2 a{color:#fff}

.score3{width:100%;background:#fc773a;color:#fff;border:#fe7183 1px solid;border-radius:25px;}
.score3 a{color:#fff}


.choose{width:1071px;height:702px;margin:auto;}
.choose1{text-align:center;margin:auto;padding-top:80px;}

.ibg{height:45px;background:#edfafa}

.ititle2{background:url({../images/jt.png) no-repeat center;width:507px;margin:auto;height:117px;text-align:right;padding-right:75px;padding-top:36px;color:#fff;font-size:20px;}

.getq{width:260px;height:60px;cursor:pointer;margin-top:100px;border:none;font-size:20px;background:#fea624;color:#fff;border-radius:50px;}
.getq:hover{color:#f00;}

.mrtop{margin-top:26px;}

.sclass{width:245px;height:50px;line-height:50px;}

.ititle{font-size:18px;}

.infolist{width:860px;margin:0 auto;margin-top:5px;padding:20px;}
.infolist a{font-size:18px;}
.infolist a:hover{color:#f00}
.infolist ul li{width:350px;margin-top:16px;height:40px;line-height:40px;border-bottom:#596179 1px dashed;font-size:18px;float:left;margin-left:60px}
.infolist span{color:#fc4d61}

#f4 a{ text-decoration:underline;}
#f8 a{background:#fba993;color:#fff;display:block;width:100%;height:35px;line-height:35px;text-align:center;border-radius:30px}


.newstitle{font-size:18px;margin-top:20px;text-align:center;font-weight:600}
.newsdate{margin-top:6px;color:#999;text-align:center}
.newscontent{line-height:25px;}

.newscontent img{max-width:60%;display:block;margin:auto;margin-top:20px;}




.lo{margin-top:30px;width:100%;}
.login_left{width:50%;float:left;text-align:center;}
.login_right{width:50%;float:left;color:#9c9c9c;}
.ltitle{color:#a6a6a6;font-size:16px;}
.input_lg{width:240px;height:32px;line-height:32px;border:#d4d4d4 1px solid;background:#f7f7f7;border-radius:5px;padding-left:6px;}

.login_sub{width:143px;height:32px;background:#07ead9;color:#fff;border-radius:5px;border:none;}
.regc{display:inline-block;width:90px;height:32px;line-height:32px;background:#308c7f;text-align:center;color:#fff;border-radius:5px;}

.position{max-width:1200px;margin:auto;margin-top:30px;margin-bottom:20px;}
.typename{height:65px;line-height:65px;margin-top:10px;font-size:25px;font-weight:bold;color:#3a9f09;border-top:#9fa0a0 2px solid;padding-left:5px;padding-top: 10px}
.typename span{display:inline-block;font-size:25px;font-weight:bold;padding-left:10px;padding-right:10px;}

.pcontent{line-height:26px;margin-top:26px;}
.pcontent img{max-width:100%;}

.gslist{border:#eaeaea 1px dashed;padding:20px;line-height:24px;color:#585858;margin-top:20px;}
.news_img{
    float: left;
    width: 180px;
}
.news_img img{
    width: 180px;
    height: 115px;
}
.news_info{
    float: left;
    width: calc(100% - 205px);
    padding-left: 25px;
}
.ntitle{
    height: 50px;
    line-height: 25px;
    font-size: 17px;
    font-weight: bold;
}
.ntitle a{
    color: #333;
}
.gsdate{
    color: #666;
    text-align: right;
}

.answertips{margin-top:10px;border:#CCC 1px dashed;text-align:center;height:36px;line-height:36px;}

.bmtips{padding-top:10px;text-align:center;height:300px;line-height:300px;}

.ph{width:1200px;margin:auto;margin-top:10px;}




.gr{background:#b83b59;color:#fff}
.jt{background:#ba684d;color:#fff}
.ph_jt{display:none}


.content{width:100%;max-width:1100px;margin:auto;background:#fff;margin-top:10px;padding-bottom:30px;}
.ctitle {width:100%;max-width:1200px;margin:auto;height: 45px;line-height: 45px;border-bottom: #d3d3d3 1px solid;font-size:15px}
.ctitle font{color:#F00}

.mleft{text-align:left;}

.phlist_gr{height:68px;line-height:68px;background:#e7e7ea;overflow:hidden;font-size:18px}
.phlist_gr div{width:20%;text-align:center;float:left;}

.phlist{height:68px;line-height:68px;background:#e7e7ea;overflow:hidden;font-size:18px}
.phlist div{width:33.33%;text-align:center;float:left;}
.phlist img{margin-top:5px;}
.phbg{background:#ececec;}


.weixin{padding-top:30px;text-align:center}

.regtab {margin-top: 17px;position: relative;text-align:center}
.regtab1 {margin-top: 17px;position: relative;text-align:center}

.input1 {width: 355px;height: 45px;line-height:45px;border: #d3d3d3 1px solid;border-radius: 15px;padding-left: 8px;font-size:16px;}
.inputx1 {width: 473px;height: 55px;line-height:55px;border: #d3d3d3 1px solid;border-radius: 4px;padding-left: 5px;font-size:16px;}
.sub {width: 355px;height: 45px;background:#ffa996;border:none;border-radius: 20px;color: #fff; cursor:pointer;font-size:18px;background:url(../images/sub.png) no-repeat;}

.province {width: 122px;height: 55px;line-height:55px;border: #d3d3d3 1px solid;border-radius: 4px;padding-left: 5px;font-size:16px}
.city {width: 122px;height: 55px;line-height:55px;border: #d3d3d3 1px solid;border-radius: 4px;padding-left: 5px;font-size:16px}
.block {width: 122px;height: 55px;line-height:55px;border: #d3d3d3 1px solid;border-radius: 4px;padding-left: 5px;font-size:16px}



.newsbg{max-width:1200px;margin:auto;padding-bottom:30px;min-height: calc(100vh - 464px);}
.needtitle{height:50px;margin:auto;font-size:22px;letter-spacing:5px;padding-top:45px;text-align:center;color:#333}
.mtop{margin-top:20px;}

.schoollist{position:absolute;width:100%;background:#fff;z-index:2;display:none;border:#fb544c 1px solid;}
.cb_search .schoollist{width: 570px;}
.schooltitle{background:#fb544c;font-size:16px;height:30px;line-height:30px;color:#fff;padding-left:10px;}
.schooltitle span{float:right;padding-right:10px;color:#fff; cursor:pointer}
.plist{position:relative;height:400px; overflow:auto;margin-left:6px;}
.ptitle{float:left;width:60px;margin-top:5px; cursor:pointer;text-align: center}
.ptitle1{border-bottom:#CCC 1px solid}
/*.slist{display:none;}*/
.slist {position:absolute;top:120px;left:0;display:none;padding-bottom:3px;text-align: center;line-height: 30px}
.slist ul li{float:left;width:50%; cursor:pointer;font-size:14px;margin-top:3px;border-bottom:#fff 1px solid}
.slist ul li:hover{border-bottom:#CCC 1px solid}
.apply{margin-top:45px;padding-bottom:30px;}
.applytitle{height:153px;}
.applytitle span{font-size:18px;padding-left:20px;padding-right:20px;display:inline-block;border-bottom:#fa544b 2px solid}
.apply_left{width:596px;float:left;padding-bottom:30px;margin-bottom:30px;position:relative;background:#fff}
.apply_right{float:left;width:596px;margin:auto;position:relative;margin-left:8px;background:#fff}
.applytitle1{background:url(../images/applytips.png) no-repeat #dedede 20px 30px;height:92px;padding-left:100px;font-size:22px;padding-top:30px}
.applytitle1 span{font-size:18px;display:block;margin-top:5px}
.applytip{padding:30px;line-height:28px;padding-bottom:20px;height:634px;overflow-y:auto;overflow-x:hidden;padding-left:60px;}
.applytip span{font-weight:bold}

.paper{height:50px;margin-top:20px;}
.paper span{display:inline-block;text-align:center;float:right;width:136px;height:43px;line-height:43px;border-radius:5px;background:#fe4276;color:#fff;cursor:pointer}
.paper a{display:block;}
.paper ul li{float:left;width:200px;height:61px;line-height:61px;text-align:center;font-size:18px; cursor:pointer;}
.lion{background:#fe4276;border-bottom:#fe9bb6 2px solid;color:#fff;}
.paperbg{background:url(../images/paperbg.png) no-repeat;height:377px;margin-top:35px;text-align:center;   overflow: hidden; }
.paperbg iframe{border:none;overflow:visible}

.paper1{margin-top:50px;}
.papertitle{font-size:20px;border-bottom:#c9caca 1px solid;padding-bottom:20px;}
.papertip1{line-height:26px;margin-top:20px;}

.paper2{margin-top:45px;}
.papertitle1{font-size:20px;}
.papertitle1 span{color:#fe4276;font-size:20px;}
.buyinfo{margin-top:18px;}
.text{width:98.5%;height:48px;line-height:48px;border:#c9caca 1px solid;background:#f1f2f2;padding-left:15px;border-radius:4px;font-size:16px}
.buyinfo1{margin-top:18px;text-align:right}
.buy{width:223px;height:56px;color:#fff;background:#fe4276;border:none;border-radius:4px;font-size:16px;cursor:pointer}

.stitle{background:#fb544c;color:#fff;height:60px;line-height:60px;text-align:center;font-size:25px}

.srank td{ height:74px;border-bottom:#9fa0a0 1px dashed}

.stitle1 td{font-weight:bold}


.cb_s{
    margin-top: 30px;
}
.search{width:722px;margin:auto;margin-top:45px;padding-bottom:30px;min-height:500px;}
.sear_left{float:left;}
.sear_right{float:left;}
.sear1{width:573px;height:58px;line-height:58px;border:#fb544c 2px solid;padding-left:6px;border-right:none;font-size:16px;outline: none}
.sear2{background:#fb544c;color:#fff;width:140px;height:62px;border:none;margin-top: 17px;font-size:16px;cursor:pointer}

.scheck{display:none;padding:10px 22px 22px 22px;background:#efefef;border:#b5b5b6 1px solid;margin-top:30px;text-align: center}
.scheck ul li{line-height:30px;}
.apply_btn{
    color: #fff;
    padding: 4px 20px;
    border-radius: 10px;
    margin-top: 10px;
    line-height:30px;
    background-color: #e13b29;
}


.tlist{padding:22px;background:#fff;border-radius:12px;margin-top:30px;}
.tlist ul li{height:36px;line-height:36px;}


.c4_more {text-align:right;}

.overbg{width:100%;position:absolute;z-index:999;left:0;top:0;background:rgba(0, 0, 0, 0.5) none repeat scroll 0 0 !important;filter:Alpha(opacity=50);}
.close {text-align:right;}
.close a{display:inline-block;font-size:18px;text-align:right;}

.paperbg1{width:1024px;margin:auto;text-align:center;border:#CCC 1px solid}
.download {text-align:center;margin-top:15px;padding-bottom:15px}
.download a{display:inline-block;width:165px;height:60px;line-height:60px;background:#fb544c;color:#fff;border-radius:4px}

.subx{width:475px;height:58px; cursor:pointer;background:url(../images/subx.png) no-repeat center;border:none;font-size:18px;color:#fff;}
.applytitlex2{background:url(../images/applytitle2.png) no-repeat center;height:100px;line-height:100px;text-align:center;font-size:26px;color:#fff;padding-left:120px;}

.atitle{background:url(../images/applytips.png) no-repeat left;font-weight:bold;font-size:18px;padding-left:30px;}

/*领导关怀&&高校动态*/
.leaders_care,.school_dynamic{
    height: 360px;
}
.leaders_care_slider,.school_dynamic_slider{
    width: 1200px;
    margin: 0 auto;
    margin-top: 40px;
    overflow: hidden;
}
.leaders_care_slider ul,.school_dynamic_slider ul{
    position:relative;
}
.leaders_care_slider ul li,.school_dynamic_slider ul li{
    position: relative;
    float: left;
    width: 278px;
    margin-right: 10px;
}
.leaders_care_slider ul li:last-child,.school_dynamic_slider ul li:last-child{
    margin-right: 0;
}
.leaders_care_slider ul li img,.school_dynamic_slider ul li img{
    width: 278px;
    height: 230px;
}
.leaders_care_slider ul li p,.school_dynamic_slider ul li p{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 94%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
    padding: 0 3%;
    background-color: rgba(0,0,0,0.5);
}

/*精彩瞬间*/
.moments{
    width: 100%;
    padding-bottom: 80px;
    padding-top: 1px;
}
.moments_content{
    width: 1200px;
    margin: 0 auto;
    margin-top: 40px;
}
.moments_left{
    float: left;
    width: 603px;
    height: 332px;
    background-color: #000;
}
.moments_right{
    float: right;
    width: 597px;
}
.moments_item{
    float: left;
    width: 222px;
    height: 77px;
    padding: 40px 30px;
    margin-left: 16px;
    margin-bottom: 18px;
}
.zz_file{
    background: url("../images/jc_bg_01.png") no-repeat;
    background-size: 100% 100%;
}
.ranking{
    background: url("../images/jc_bg_02.png") no-repeat;
    background-size: 100% 100%;
}
.school_propaganda{
    background: url("../images/jc_bg_03.png") no-repeat;
    background-size: 100% 100%;
}
.histroy_link_footer{
    height: 117px;
    padding: 20px 30px;
    background: url(../images/jc_bg_04.png) no-repeat;
    background-size: 100% 100%;
}
.moments_item p{
    font-size: 27px;
    font-weight: bold;
    color: #7a3919;
    margin-bottom: 12px;
}
.moments_item a{
    color: #fff;
    padding: 4px 10px;
    font-size: 14px;
    background-color: #ca6f53;
    border-radius: 30px;
    background-image: linear-gradient(to right,#ca6f53,#ec9478);
}
.histroy_link_footer a{
    margin-bottom: 10px;
}

.modal_bg{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.3);
}
.modal_writing{
    position: fixed;
    top: 5vh;
    left:calc((100% - 625px) / 2);
    z-index: 11;
    width: 625px;
    background: url("../images/tk_bg_default.png") no-repeat;
    background-size: 100% auto;
    background-color: #fff;
    border-radius: 15px;
    padding-bottom: 60px;
}
.close_m{
    width: 94%;
    padding-top: 20px;
    text-align: right;
}
.close_m img{
    width: 28px;
}
.modal_writing p{
    width: 100%;
    color: #666;
    text-align: center;
    line-height: 48px;
    font-size: 28px;
    padding-top: 308px;
}
.into_writing{
    width: 100%;
    text-align: center;
    margin-top: 20px;
}
.into_writing a {
    display: inline-block;
    width: 70%;
    height: 60px;
    text-align: center;
    line-height: 60px;
    color: #fff;
    border-radius: 40px;
    font-size: 24px;
    margin: 10px 0;
    background-color: #fa6e46;
    text-decoration: none;
}
/*清除浮动*/
.clearfix:after{
    content:".";
    display:block;
    height:0;
    visibility:hidden;
    clear:both;
}
.clearfix{
    zoom:1;
}