/*public*/

a:link{
    color:#333;
    text-decoration: none; 
}
a:visited{
    color:#333;
    text-decoration: none;   
}
a:hover{
    color:#23c0bb;
    text-decoration: none;   
    transition: all 0.5s;
}




/*消息提示*/
.message{
    height: auto;
    width: 100%;
    padding: 10px 0;
    color: #fff;
    display: none;
    text-align: center;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;

    
}

.message img{
    width: 16px;
    width: 16px;
    margin-right: 10px;
    vertical-align: middle;
    margin-bottom: 3px;
}
.message1{
    background-color: rgba(255, 46, 46, 0.8);
}
.message2{
    background-color: rgba(130, 220, 255, 0.8); 
}



/*分页*/
/* 覆盖默认分页样式 */
/*分页样式修改*/
.c_foot {
    padding: 30px 0 10px 0;
    text-align: center;
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.pagination {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.pagination li {
    list-style: none;
}

.pagination li a {
    background-color: rgb(212, 250, 255);
    font-size: 14px;
    margin-right: 10px;
    cursor: pointer;
    display: inline;
    padding: 4px 9px;
    border-radius: 2px;
    color: #333;
    text-decoration: none;
}
.pagination li a:hover{
    background-color: rgb(72, 243, 255);
    color: #333;
}

.pagination .active span {
    background-color: rgb(72, 243, 255);
    display: inline;
    margin-right: 10px;
    font-size: 14px;
    padding: 4px 9px;
    border-radius: 2px;
    color: #fff;

}

.pagination .disabled span {
    background-color: rgb(238, 250, 255);
    display: inline;
    margin-right: 10px;
    font-size: 14px;
    padding: 4px 9px;
    border-radius: 2px;

}




.input1{
    width: 200px;
    height: 30px;

}
.input1{
    width: 200px;
    height: 30px;
    outline: none;
    border: 1px solid #96ffed;
    padding: 0 10px;
}

.textarea1{
    width: 800px;
    height: 60px;
    outline: none;
    border: 1px solid #96ffed;
    padding:1%;
}

.input_submit{
    width: 220px;
    height: 32px;
    border: 0;
    background-color: #42dcd7;
    color: #fff;
}
.input_submit:hover{
    background-color: #23c0bb;
    cursor: pointer;
    transition: 0.5s all;
}


/*index*/
body {
    margin: 0;
    padding: 0;
    background: url("/static/index/images/default_bg.webp") no-repeat;
    background-size: cover;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.top{
    height: 100px;
    width: 90%;
    padding: 0 5%;
    background-color:rgba(255, 255, 255, 0.6);
    
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    box-shadow: 0px 0px 0px 0px #e8e8e8;
    
}
.logo{
    display: flex;
    flex-direction: row;
    align-items:center;
    justify-content:start;
    width: 25%;
}


.menu{
    width: 65%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
}
.menu li{
    list-style: none;
    margin-right: 8%;
    height:80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}
.menu li a{
    height:35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    letter-spacing: 2px;
    padding: 0 20px;
    border-radius: 6px;
}
.menu a:link{
    color: #333;
    text-decoration: none;
}

.menu a:visited{
    color: #333;
    text-decoration: none;
}
.menu a:hover{
    color: #333;
    text-decoration: none;
    transition: 1s all;
    background-color: rgba(228, 228, 228, 0.5);
}
.active_class{
    background-color: rgba(255, 255, 255, 0.5);
}

.search{
    width: 12%;
    height: 34px;
    display: flex;
    flex-direction: row;
    justify-content: end;
    position: relative;
}
.search_box{
    
    width: 150px;
    padding-right: 20px;
    height: 34px;
    border-radius: 17px;
    border: 0px;
    text-align: center;
    outline: none;
    background-color: rgba(255, 255, 255, 0.8);



}
/* .search_box:focus{
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    transition: 1.5s all;
} */



 .search button{
    position: absolute;
    top:9px;
    right: 13px;
    height: 30px;
    width: 30px;
    border: 0;
    background:url("/static/index/images/search.png") no-repeat;
    cursor: pointer;
 }

.footer{
    font-size: 14px;
    color:#333;
    text-align: center;
    margin-top: 60px;
    font-size: 13px;
    padding-bottom: 70px;
}

.footer a{
    padding: 0 10px;
    
}


/*index页面*/
.main{
    width: 70%;
    height: auto;
    background-color:rgba(255, 255, 255, 0.7);
    margin-top: 4%;
    border-radius: 10px;
    padding: 4% 4% 2% 4%;
}
.main_1{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.main_2{
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;

}
.mingyan_fengexian{
    width: 98%;
    margin-left: 2%;
    border-top: 1px solid #ccc;
    padding-top: 20px;
}
.mingyan_content{
    text-align: center;
    font-size: 13px;
    color: #666;
    height: 50px;
    line-height: 50px;
}
.main_left{
    
    width: 45%;
}
.main_right{
    background-color: rgb(53, 92, 92);
    height: 200px;
    width: 45%;
}
.item_title{
    height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 15px;
}
.item_title img{
    margin-right: 12px;
}
.item_article{
    margin-top: 30px;
}
.item_row{
    height: 45px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
}
.item_row_title{
    padding-left: 5%;
    color: #3c3c3c;
    font-size: 16px;
}
.item_row_author{
    font-size: 13px;
    color: #666;
}


/*class页面*/

.class{
    height: 100%;
    width: 72%;
    padding: 6% 6% 4% 6%;
    background-color: rgba(255, 255, 255, 0.7);
    margin-top: 3%;
    border-radius: 10px;
}
.c_top{
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
}
.c_top_a{}
.c_top_a img{
    height: 50px;
    width: 100px;
}
.c_top_b{
    color: #3c3c3c;
}
.c_middle{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.c_m_left{
    width: 100%;
    padding: 2% 0;
}
/* .c_m_left_row a:link{
    color: #333;
    text-decoration: none;
}
.c_m_left_row a:visited{
    color: #333;
    text-decoration: none;
}
.c_m_left_row a:hover{
    color: #3bc1ff;
    text-decoration: none;
} */
.c_m_left_row{
    width: 44%;
    padding: 0 3%;
    height: 45px;
    float: left;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    
}
.c_m_fenge1{
    width: 10%;
    height: 400px;
    border-right: 1px solid #d7d7d7;
}
.c_m_fenge2{
    width: 10%;
}

.c_m_left_row_a{
    font-size: 16px;
    color: #3c3c3c;
}
.c_m_left_row_b{
    font-size: 13px;
    color: #666;
}

/*article*/
.airticle{
    width: 60%;
    padding: 4% 6%;
    height: auto;
    background-color: rgba(255, 255, 255, 0.9);
    margin-top: 4%;
    border-radius: 10px;
}

.ar_a{
    height: 50px;
    border-bottom: 1px solid #ccc;
    color: #3c3c3c;
    line-height: 50px;
}
.ar_a a:link{
    text-decoration: none;
    color: #333;
}
.ar_a a:visited{
    text-decoration: none;
    color: #333;
}
.ar_a a:hover{
    text-decoration: none;
    color: #3bc1ff;
}
.ar_a a{
    margin-right: 15px;
}
.ar_b{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:end;
}
.ar_b_item{
    height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 50px;
    color: #666;
}
.ar_b_item img{
    margin-right: 7px;
}
.ar_c{
    font-size: 28px;
    height: 80px;
    line-height: 80px;
    color: #3c3c3c;
    text-align: center;
}
.ar_d{
    font-size: 16px;
    height: 20px;
    line-height: 20px;
    color: #3c3c3c;
    text-align: center;
}
.ar_e{
    margin-top: 50px;
    font-size: 18px;
    line-height: 33px;
    color: #3c3c3c;
    letter-spacing: 1px;
}
.ar_e p{
    text-indent:38px;
}
.ar_f{
    margin-top: 50px;
}
.ar_f_title{
    height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    border-bottom: 1px solid #ccc;
}
.ar_f_title_left img{
    margin-right: 8px;
}
.ar_f_title_right{
    font-size: 14px;
}
.ar_f_content{
    color: #3c3c3c;
}
.ar_f_content_row{
    padding: 2%;
    background-color: rgba(234, 248, 253, 0.8);
    border-radius: 5px;
    margin-top: 10px;
}
.ar_f_content_row_text{
   
    font-size: 14px;
    
}
.ar_f_content_row_author{
    
    font-size: 12px;
    text-align: right;
    color: #666;
}

.pinglun{
    padding: 2% 0;
    display: none;
}
.pinglun_nicheng{
}
.pinglun_text{
    margin-top: 10px;
}
.pinglun_input{
    margin-top: 10px;
}
#wypl{
    cursor: pointer;
}
.pinglun_message{
    font-size: 14px;
    color: red;
}

/*search页面*/
.search_content{
    margin-top: 3%;
    width: 70%;
    padding: 4% 5%;
    background-color: rgba(255, 255, 255, 0.8);
}
.search_content_title{
    height: 30px;
    border-bottom:1px solid #ccc ;
    font-weight: bold;
}
.search_content_box{
    margin-top: 15px;
    
}
#search_title{
    font-size: 16px;
}
.search_content_box_row{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 35px;
    font-size: 14px;
}
.search_content_box_row_author{
    font-size: 14px;
    color: #3c3c3c;
}

/* .search_content_box_row a:link{
    text-decoration: none;
    color: #333;
}
.search_content_box_row a:visited{
    text-decoration: none;
    color: #333;
}
.search_content_box_row a:hover{
    text-decoration: none;
    color: #3bc1ff;
} */
