
#header .d_header{
    position: relative;
	margin-bottom: 0rem;
}
#header .d_header_img{
    width: 100%;
    height: 250px;
	
}
#header .d_header_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#header .d_header_filter{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
#header .d_header_filter::before {
    display: block;
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
    background: -webkit-linear-gradient(bottom,#f8f8fe,rgba(255,255,255,0) 100%);
}
#header .d_header_frame{
    position: absolute;
    width: 100%;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.6rem 1.4rem;
}
#header .d_header_box{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#header .d_header_avatar{
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
}
#header .d_header_avatar img{
    width: 100%;
    height: 100%;
}
#header .d_header_census{
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(4,minmax(0,1fr));
    text-align: center;
}
#header .d_header_census_box{
    padding: 0 5px;
    border-right:1px solid #101010 ;
}
#header .d_header_census_box:last-child{
    border-right:0;
}
#header .d_header_nb{
    font-size: 12px;
}
#header .d_header_bt{
    font-size: 13px;
    margin-top: 10px;
}
#d_search_bar{
    margin-top: 10px;
}
#d_search_bar .submit{
    display: none;
}
#d_search_bar .d_search_input {
    width: 100%;
    border-radius: 10px;
    padding: 0 1.4rem;
    border: 1px solid #101010;
    outline: none;
    height: 35px;
    text-align: center;
    background-color:transparent;
}
#header .d_header_qm{
    margin-top: 20px;
    font-size: 14px;

}

.d_meun_list{
    padding: .5rem 1.2rem;
    margin-top: 0px;
    margin-left: 15px;
    margin-right: 15px;
	border-radius: 7px;
	box-shadow: 0px 0px 20px -5px rgb(158 158 158 / 22%);
}
.d_meun_ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.d_meun_li{
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    margin-right: 10px;
    padding: 0 2px;
    position: relative;
}
.d_meun_li.current:before {
    content: '';
    height: 3px;
    left: 1px;
    right: 1px;
    border-radius: 100px;
    position: absolute;
    opacity: 0.9;
    bottom: 0;
    transform: translate(0%,-50%);
    background-color: var(--dark-green);
}
.d_index_pic{
    padding: 1rem 1rem 0rem 1rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2,minmax(0,1fr));
}
.d_index_right,.d_index_left_sm{
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}
.d_index_right_img,.d_index_left_img{
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 80%;
    overflow: hidden;
}
.d_index_right_img img,.d_index_left_img img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    border-radius: 6px;
}
.d_index_right_name{
    position: absolute;
    left: 0px;
    width: 100%;
    bottom: 0;
    padding: 1rem;
    font-weight: 500;
    color: #FFF;
}
.d_index_left_box{
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(1,minmax(0,1fr));
}
.d_index_left_img{
    padding-top: 37.9%;
}

.d_index_right_img::after,.d_index_left_img::after {
    background-image: -o-linear-gradient(left,transparent,rgba(255,255,255,.2));
    background-image: -webkit-gradient(linear,left top,right top,from(transparent),to(rgba(255,255,255,.2)));
    background-image: linear-gradient(to right,transparent,rgba(255,255,255,.2));
    content: "";
    position: absolute;
    display: block;
    width: 50%;
    height: 100%;
    top: 0;
    left: -75%;
    z-index: 2;
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
    pointer-events: none;
}

.d_index_right:hover .d_index_right_img:after,.d_index_left_sm:hover .d_index_left_img:after{
    -webkit-animation: shine .85s;
    animation: shine .85s;
}

@media print,screen and (max-width:580px) {
    #header .d_header_avatar{
        width: 60px;
        height: 60px;
    }
    #header .d_header_stat{
        padding-left: 50px;
    }
    #header .d_header_bt {
        font-size: 12px;
        margin-top: 5px;
    }
    #d_search_bar {
        margin-top: 5px;
    }
    #d_search_bar .d_search_input{
        height: 30px;
    }
    #header .d_header_qm{
        margin-top: 10px;
    }
    .d_meun_li{
        font-size: 13px;
    }
    .d_index_pic{
        grid-template-columns: repeat(1,minmax(0,1fr));
    }
    .d_index_right_img,.d_index_left_img{
        padding-top: 33.3333%;
    }
}

.dark .d_meun_list{
    box-shadow: 0 1px 3px rgb(0 0 0 / 5%);
}
.dark #header .d_header_filter::before{
    background: -webkit-linear-gradient(bottom,#191919,rgba(255,255,255,0) 70%);
}
.dark #header .d_header_box{
    color: #FFF;
}
.dark #d_search_bar .d_search_input,.dark #header .d_header_census_box{
    border-color: #FFF;
}

.prvenext {
	padding: 1.5rem 0;
}

.prvenext ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0 1.25rem;
}

.prvenext ul li {
	position: relative;
}

.prvenext ul li:before {
	content: '';
	left: 1px;
	right: 1px;
	height: 22%;
	background-color: var(--dark-green);
	opacity: .5;
	position: absolute;
	top: 80%;
	transform: translate(0%,-50%);
}
.post .post_eof {
	text-align: center;
	font-size: .9rem;
	line-height: 1em;
	margin: 0.8em auto;
	font-weight: 100;
	font-family: Microsoft Yahei,sans-serif;
}

.post .post_eof:before {
	content: '————';
	margin-right: 20px;
}

.post .post_eof:after {
	content: '————';
	margin-left: 20px;
}
