/*css reset--------------------*/
html{color:#333;background:#FFF; font-size: 14px;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:text-top;}sub{vertical-align:text-bottom;}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}input,textarea,select{*font-size:100%;}legend{color:#000;}
a{text-decoration:none;  }

/*clearfix---------------*/
.clearfix:after {visibility: hidden;display: block;font-size: 0;content: " ";clear: both;height: 0;}.clearfix{*zoom:1;}

/*box-sizing-------------*/
*{-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing:border-box;}

/*font--------------*/
body{font-family:-apple-system,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,WenQuanYi Micro Hei,sans-serif;}
input{
    color: #666;
    padding: 0 10px;
    
}

input::-webkit-input-placeholder{
	color:#aaa;
}

a{
    color: #235e61;
}

/*清除 iPhone Safari 按钮默认样式*/
input[type="submit"],input[type="reset"],input[type="button"],button,select,textarea {-webkit-appearance: none;}

body{
    min-width: 1300px;
    min-height: 100vh;
 background: #f7faf9;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wrapper{
    width: 1200px;
    margin:  0 auto;
}

.flex,.flex_between,.flex_start,.flex_end,.flex_center{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.flex_start{justify-content: flex-start;}
.flex_end{justify-content: flex-end;}
.flex_center{justify-content: center;}

.mobile_only{
    display: none;
}

.pc_only{
    display: block;
}
.icon{
    background: url(../img/icon.png);
    background-size: 500px;
    display: block;
}

.hover_scale{
    transition: all .5s;
 
}
.hover_scale:hover{
    transform: scale(1.1);
}

.header{
    height: 170px;
    line-height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
        box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
        position: relative;
}
.header{
    position: sticky;
    position: -webkit-sticky;
    top: -41px;
    z-index: 9;
}

.header .top_link{
    height: 110px;
    border-bottom: solid #cc5f64 1px;
    line-height: 40px;
    display: flex;
    justify-content: space-between;
    z-index: 9;
}

.header .top_link a{
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    
}
.header .top_link a span{
    display: flex;
}
.header .top_link .left_link,.header .top_link .right_link{
    display: flex;
}
.header .top_link .left_link a{
    padding:0 10px;
}
 

.header .top_link .right_link a{
    color: #ffbcbf;
    padding:0 10px;
}
 

.header .top_link .right_link ul ul{
    background: #b5000d;
    z-index: 10;
    position: absolute;
    display: none;
}
 
 

 
 
.header .logo{
    width: 244px;
    margin-right: 15px;
}
.header_search {
    display: flex;
    align-items: center;
}
.header_search #keyword{
   
    height: 36px;
    border-radius: 6px;
    border: solid #ddd 1px;
    width: 400px;
    outline: none;
    transition: all 1s;
    width: 0;
    padding: 0;
    border-width:0;
}
.header_search form.show #keyword{
    border: solid #ddd 1px;
    width: 280px;
    padding: 0 10px; 
}
.header_search form{
   width: 0;
    opacity: 0;
}
.header_search form.show{
   width: 280px;
    opacity: 1;
}
.header_search .cancle{
    color: #fff;
    padding-left: 10px;
    display:inline-block;
    width:40px;
}

.header_search img{
    margin-top: 30px;
    margin-left: 15px;
}

.header_main{
    height: 60px;
}
.nav{
    transition: all .5s;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 90px;
    
}

.nav a{
    font-size: 16px;
    margin: 0 20px;
    display: block;
    height: 90px;
    color: #fff;
    line-height: 90px;
    overflow: hidden;
}
.nav a:hover{
    color: #f98d0d;
}

.nav li:hover ul{
    /* height: initial; */
}

.nav a.current{
    border-bottom: solid #f98d0d 4px;
    /* color: #e9aa45; */
}
.nav li ul{
    position: absolute;
    background:#235e61;
    transition: all .5s;
    height: 0;
    overflow: hidden;
}

.nav li ul a{
    height: auto;
    line-height: 46px;
}
.nav li   a.home{
    background: url(../img/icon_home.png) no-repeat left center;
    background-size: 18px;
    height: auto;
    line-height: 46px;
    padding-left: 30px;
}
.nav ul li{
    transition: all .5s;
}
.nav ul li:hover{
    background:#f98d0d;
}
.nav ul li a:hover{
    color: #fff;
    font-weight: bold;
}


.content{
    flex-grow: 1;
}


.footer{
    height: auto;
    font-size: 14px;
    color: #fff;
    background:#c8161e url(../img/footer_bg.png) no-repeat center top;
  
    
    width: 100%;
  
}
 
.btn{
    border-radius: 6px;
    background:#1e76ef;
    color: #fff;
    height: 36px;
    line-height: 36px;
    display: inline-block;
    
    padding:0 15px;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.07);
   }
   .btn:hover{
       opacity: .9;
   }
.btn div{
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn img{
    margin-right: 10px;
}
.btn_large{
    height: 46px;
    padding:0 20px;
    line-height: 46px;
    font-size: 18px;
}   

.btn_orange{
    background: #fa6c33;
}

.btn_yellow{
    background: #ff9900;
}

.btn_opacity{
    background:rgba(30, 118, 239, .1);
    color:#1e76ef;
    box-shadow: none;
}
.btn_opacity:hover{
    background:rgba(30, 118, 239, .2);
}

.ellipsis,.list_container a span{
    white-space: nowrap;
	overflow: hidden;
	text-overflow:ellipsis;
	display: block;
}  
.bread{
    padding: 15px 0;
    padding-top: 0;
}
.bread a,.bread span{
    padding:0 6px;
     
    color: #666;
}
.bread a.bread_home{
    padding-left: 18px;
    background: url(../img/bread_home.png) no-repeat left center;
    background-size: 12px;
}
.bread span{
    color: #999;
}
.header_btn_field{
    display: flex;
    align-items: center;
    padding-left: 15px;
}
.header_btn_field a{
    margin-left: 10px;
}

h3{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    color: #333;
    border-left: solid #235e61 4px;
    padding-left: 15px;
    line-height: 20px;
    margin-bottom: 20px;
}

h3 .more,.more{
    font-size: 14px;
    color: #666;
    background: url(../img/retangle.png) no-repeat right center;
    background-size: 7.5px;
    padding-right: 15px;
}


.footer{
    background: #215d67 url(../img/footer_bg.png);
    background-size: cover;
    padding: 15px 0;
}
.footer p{
   line-height: 14px;
   color: #fff;
   padding: 8px 0;
}

/*页码相关css=============================================*/

.edu_pager{
 
 
 
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
 
}
.edu_pager p,.edu_pager span,.edu_pager a{
	color: #666;
	font-size: 14px;
	line-height: 30px;
}	
.edu_pager_bar{
	float:right;
	 
	height:32px;
	line-height:32px;
 
 
	overflow: hidden;
}
.edu_pager_bar a{
	padding:0 11px;
	height:32px;
	/* border:1px solid #dedede; */
    background: #e1eaea;
    float:left;
    border-radius: 0;
    margin-left: 3px;
}

.edu_pager_bar a.disable{
    background: #f5f5f5;
    color: #b7b7b7;
}
 
.edu_pager_bar a.checked{
	background:#235e61;
    color:#fff;
    border: none;
}
.edu_pager_bar a:hover{
	text-decoration:none;
	color:#235e61;
}
.edu_pager_bar a.checked:hover{
	/* text-decoration:none; */
	color:#fff;
}
.edu_pager_bar a.pager_btn{
	padding:0 9px;
}
.goto{
	float:left;
	line-height:34px;
	margin:0 0 0 8px;
}
.goto_text{
	float:left;
	border:1px solid #dedede;
	height:32px;
	width:24px;
	padding:0 3px;
}
.goto_link{
	float:left;
	border:1px solid #dedede;
	height:32px;
	line-height:32px;
	border-radius:0 5px 5px 0;
	background:#f9f9f9;
	border-left:none;
	padding:0 8px;
}
.goto_link:hover{
	text-decoration:none;
	color:#26cc64;
}

/*页码相关css-END=============================================*/


.ellipsis,.list_container a span{
    white-space: nowrap;
	overflow: hidden;
	text-overflow:ellipsis;
	display: block;
}
.list_title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
}
.list_title h2{
    font-size: 18px;
    font-weight: bold;
    
}

.list_title a{
    color: #1e76ef;
    font-size: 14px;
    background: url(../img/icon_more.png) no-repeat right center;
    padding-right: 16px;
    background-size: 9px;
}
.list_container a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    padding: 12px 0;
    width: 100%;
 
}
.list_container a:hover{
    color: #000;
  
}
.list_container a span::before{
    content:'●';
    color: #e0f0f0;
    font-size: 12px;
    padding-right: 10px;
    flex-grow: 0;
   
}
.list_container a em{
    color: #999;
    flex-shrink: 0;
}

.list_container a span{
    padding-right: 20px;
    max-width: calc(100% - 80px);
  
}
.list_container a span::before{
    transition: all .7s;
}
.list_has_line{
    padding: 10px 0;
}
.list_has_line a{
    border-bottom: solid #f1f1f1 1px;
    padding: 16px 0;
    transition: all .7s;
}
.list_has_line a:hover{
    background:rgba(35, 94, 97, .1);
    padding-left: 10px;
    padding-right: 10px;
}

.list_has_line a:hover span::before{
    color: #235e61;
}


@media only screen and (max-width : 750px){
 
    body{
        min-width: initial;
    }
    .mobile_only{
        display: block;
       
    }
    .pc_only,.header .top_link{
        display: none;
    }
    .wrapper{
        width:100%;
        padding: 0 15px;
       
    }
    .header .wrapper{
        position: relative;
    }
    h3{
        font-size: 16px;
        line-height: 16px;
        padding-left: 10px;
    }
    .menu{
        height: 20px;
        width: 20px;
        background: url(../img/menu.png) no-repeat center top;
        background-size: 20px;
       position: absolute;
        right: 15px;
        transition: all .5;
    }
    .menu_close{
        background-position: center -35px;
    }

    .header{
        position: sticky;
        position: -webkit-sticky;
        top: 0;
        z-index: 999;
        background-image: none;
    }
    .header_main,.header{
        height: 55px;
    }
    .header .logo{
        height: 35px;
        width: auto;
    }

    .header_right{
        width: calc(100% - 50px);
        position: absolute;
        background:rgba(35, 94, 97, .9);
        right: 0;
        top: 0;
        height: 100vh;
        /* display: none; */
        transition: width .5s;
        width: 0;
        overflow-y: scroll;
      
     box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 1);
     justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    }

    .header_right.header_right_show{
        width: calc(100% - 50px);

    }
    .nav{
        display: block;
        flex-direction: column;
        width: 100%;
        height: auto;
        justify-content: flex-start;
    }
    .nav a{
        width: calc(100% - 40px);
        border-bottom: solid #ddd 1px;
        height: 50px;
        line-height: 50px;
        font-size: 15px;
    }
    .nav,.header_search{
        /* display: none; */
    }
    .nav li{
        width: 100%;
    }
    .nav li ul{
        position: relative;
        background:none;
        padding-left: 10px;
    }
    .nav li ul li a{
        font-size: 13px;
        color: #eee;
        border-color: #e0f0f0;
    }
    .nav .has_child{
        /* background: url(../img/arrow_down.png) no-repeat right center; */
        background-size: 14px;
    }

    .nav .has_child.selected{
        /* background-image: url(../img/arrow_up.png); */
    }
.icon_global{
    width: 30px;
    height: 19px;
    background: url(../img/ch.png) no-repeat left center;
    background-size: 30px;
    margin-right: 10px;
}
.mobile_logo{
    width: 90%;
}
    .mobile_search{
        width: 100%;
    }

    .mobile_search span{
        padding-left: 20px;
        font-size: 16px;
       line-height: 55px;
        display: block;
        position: sticky;
        position: -webkit-sticky;
        top: 0;
        background:rgba(35, 94, 97, .9);
    }

    .mobile_search span a{
        display: flex;
        align-items: center;
      color: #fff;
        
    }
    .mobile_search{
        position: sticky;
        position: -webkit-sticky;
        top: -70px;
    }
    .mobile_search input{
        border: solid #ddd 1px;
        height: 40px;
        width: calc(100% - 40px);
        margin-left: 20px;
        background:rgba(255, 255, 255, .2) url(../img/search_dark.png) no-repeat 10px center;
        background-size: 16px;
        padding: 10px;
        text-indent: 20px;
        border-radius: 10px;
        outline: none;
        color: #fff;
    }
    .header_right .mobile_link{
        /* display: flex; */
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        padding-top: 20px;
    }

    .mobile_link_left,.mobile_link_right{
        text-align: center;
        line-height: 30px;
        padding-bottom: 15px;
    }
    .mobile_link_left a,.mobile_link_right a{
        font-size: 14px;
        color: #fff;
        padding: 10px;
        line-height: 20px;
    }

    .mobile_link_right a{
        color: #ffbcbf;
    }
 

    .bread{
        padding-top: 15px;
    }
    .list_has_line a{
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .list_has_line a em{
        padding-left: 20px;
        padding-top: 10px;
    }
    .list_has_line a span{
        width: 100%;
        padding-right: 0;
        max-width: initial;
    }
    .header_btn_field{
        flex-direction: column;
        padding: 15px;
        width: 100%;
      
    }

    .header_btn_field a{
        margin-bottom: 15px;
        width: 100%;
    }

    .edu_pager_bar a{
        display: none;
    }
    .edu_pager_bar a.pager_btn{
        display: block;
    }
    .edu_pager_bar .pager_btn:last-child{
        border-right: none;
    }
    .edu_pager.wrapper{
        padding: 15px;
    }

    .footer .flex{
        flex-direction: column;
        text-align: center;
         
    }
    .footer p{
        line-height: 18px;
        font-size: 12px;
        padding: 5px;
    }
}

.p_goto a{display:inline!important;}
.p_no_d {
    border: 1px solid #235e61!important;
    background-color: #235e61!important;
}