*{
	padding: 0;
	margin: 0;
}
html,body,a {
	font-family: "Josefin Sans","Microsoft YaHei";
}
a,a:hover,a:link{
    text-decoration: none;
}

/*美化滚动条*/
::-webkit-scrollbar{
    width: 7px;
    height: 7px;
    background-color: #F5F5F5;
  }

  /*定义滚动条轨道 内阴影+圆角*/
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
  }

  /*定义滑块 内阴影+圆角*/
  ::-webkit-scrollbar-thumb{
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
    background-color: #c8c8c8;
  }
 .mt-70{
    padding: 30px;
 }
header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 10px 0;
	
	background-color: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;
	-webkit-box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;
	color: rgba(255, 255, 255, 0.45);
	z-index: 999999;
} 
.logo{
	color: #46a4f8; 
	text-shadow: 1px 1px rgb(0 0 0 / 20%), 0.25rem 0.25rem hsl(0deg 0% 100% / 30%), 0.5rem 0.5rem 0.5rem rgb(0 0 0 / 10%);
	font-size: 1.2em;
 }
.logo img{
	height: 30px;
}
.header-nav{
	text-align: right;
	height: 30px;
	line-height: 30px;
	
} 
.header-nav a{
	padding: 15px;
	color: #717578;
}
.header-nav a:hover{
	text-decoration: none;
}
.header-nav-left{
	position: fixed;
	left: 0;
	top: 0;
	width: 200px;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;
	-webkit-box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;
	color: rgba(255, 255, 255, 0.45);
	z-index: 2;
	padding-top: 65px;
	display: none;
	overflow: hidden;
}
.header-nav-left a{
	display: block;
	padding: 10px;
	color: #717c85;
	border-bottom: 1px solid #ced8e1;
	width: 200px;
}
/* 手机导航按钮 */
.wapBtn{
	text-align: right;
	display: none;
}
.wapBtn .menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: inline-block;
  padding: 0;
}
.wapBtn .line {
  fill: none;
  stroke: black;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.wapBtn .line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.wapBtn .line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
.wapBtn .line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.wapBtn .opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.wapBtn .opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.wapBtn .opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}


.body-wrap{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
}
.body-content{
	align-items: center;
	display: flex;
	justify-content: center;
	height: auto;
	margin-top: 13%;
}

/* .container {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.container__header,
.container__footer {
	flex-shrink: 0;
}

.container__main {
	flex-grow: 1;
} */


/* 模块 */
.box {
 position: relative;
 height: 300px;
 display: flex;
 justify-content: center;
 align-items: center;
 transition: 0.5s;
 z-index: 1;
}

.box::before {
 content: ' ';
 position: absolute;
 top: 0;
 left: 50px;
 width: 50%;
 height: 100%;
 text-decoration: none;
 background: #fff;
 border-radius: 8px;
 transform: skewX(15deg);
 transition: 0.5s;
}

.box::after {
 content: '';
 position: absolute;
 top: 0;
 left: 50;
 width: 50%;
 height: 100%;
 background: #fff;
 border-radius: 8px;
 transform: skewX(15deg);
 transition: 0.5s;
 filter: blur(30px);
}

.box:hover:before,
.box:hover:after {
 transform: skewX(0deg) scaleX(1.3);
}

.box:before,
.box:after {
 /* background: linear-gradient(315deg, #ffbc00, #ff0058) */
 background: linear-gradient(315deg, #cdd7e0, #108eff)
}

.box span {
 display: block;
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 z-index: 5;
 pointer-events: none;
}

.box span::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 0;
 height: 0;
 border-radius: 8px;
 background: rgba(255, 255, 255, 0.1);
 backdrop-filter: blur(10px);
 opacity: 0;
 transition: 0.1s;
 animation: animate 2s ease-in-out infinite;
 box-shadow: 0 5px 15px rgba(0,0,0,0.08)
}

.box>span::before {
 top: -40px;
 left: 40px;
 width: 50px;
 height: 50px;
 opacity: 1;
}

.box>span::after {
 content: '';
 position: absolute;
 bottom: 0;
 right: 0;
 width: 100%;
 height: 100%;
 border-radius: 8px;
 background: rgba(255, 255, 255, 0.1);
 backdrop-filter: blur(10px);
 opacity: 0;
 transition: 0.5s;
 box-shadow: 0 5px 15px rgba(0,0,0,0.08);
 animation-delay: -1s;
}

.box>span:after {
 bottom: -40px;
 right: 40px;
 width: 50px;
 height: 50px;
 opacity: 1;
}

.box .content {
 position: relative;
 width: 366px;
 height: 264px;
 padding: 20px 40px;
 background: rgba(255, 255, 255, 0.05);
 backdrop-filter: blur(10px);
 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 border-radius: 8px;
 z-index: 1;
 transform: 0.5s;
 color: #fff;
 /*display: flex;*/
 justify-content: center;
 align-items: center;
}

.box .content h2 {
 font-size: 16px;
 color: #fff;
 margin-bottom: 10px;
 text-align: center;
}
.headportrait{
    text-align: center;
    margin-top: 25px;
}
.headportrait img{
	width: 80px;
	height: 80px;
	/*margin-right: 20px;*/
	border-radius: 10px;
	box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;
	-webkit-box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;
	border: 2px solid #FFF;
}


/* 按钮 */
.btnSta{
	position: absolute;
	right: 10px;
	bottom: 50px;
	z-index: 99;
	height: 24px;
	height: 35px;
	width: 35px;
	border-radius: 50%;
	text-align: center;
	line-height: 48px;
	
	background-color: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(16.5px);
	-webkit-backdrop-filter: blur(16.5px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;
	-webkit-box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;
	-webkit-border-radius: 11px;
	color: rgb(255, 255, 255);
}
.btnSta a{
	color: #FFF;
}

.btnSta a:hover{
	color: #FFF;
	text-decoration: none;
}
.newest{
    position: absolute;
    left: 0;
    bottom: -30px;
    height: 30px;
    line-height: 35px;
}
.newest a{
    color: #fc892e;
}
.recentUp ul li{
    list-style: none;
    width: 100%;
    overflow:hidden;

    white-space: nowrap;

    text-overflow: ellipsis;

    -o-text-overflow:ellipsis;
    
    /*background-color: rgba(255, 255, 255, 0.1);*/
    /*backdrop-filter: blur(5px);*/
    /*-webkit-backdrop-filter: blur(5px);*/
    /*border: 0.991304px solid rgba(255, 255, 255, 0.18);*/
    /*box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;*/
    /*-webkit-box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;*/
    /*color: rgba(255, 255, 255, 0.3);*/
    
    display: inline-block;

    color: #768695;
}
.recentUp{
    border-left: 1px solid rgb(255 255 255 / 24%);
    
}
.recentUp ul li a{
    height: 25px;
    line-height: 25px;
    
    font-size: 14px;
    color: #768695;
    padding-left: 5px;
    
    width: 100%;
    display: inline-block;

    overflow:hidden;

    white-space: nowrap;

    text-overflow: ellipsis;

    -o-text-overflow:ellipsis;
    
    
}
.recentUp ul li a:hover{
    color: #FFF;
}
.index-a-title{
    font-size: 18px;
}
.post-banner{
    margin-top: 70px;
    width: 100%;
    height: 260px;
    position: relative;
    background: url('../images/bg1.jpg');
    border-radius: 6px;
    overflow: hidden;
}
.post-banner-yingyong{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
    -webkit-box-orient: vertical;
    font-size: 6em;
    color: #fff;
    text-shadow: 1px 1px rgb(0 0 0 / 20%), 0.25rem 0.25rem hsl(0deg 0% 100% / 30%), 0.5rem 0.5rem 0.5rem rgb(0 0 0 / 10%);
    -webkit-mask: linear-gradient(#000 30%,rgba(0,0,0,.7) 70%) 0 0/100% 1.3em;
    mask: linear-gradient(#000 30%,rgba(0,0,0,.7) 70%) 0 0/100% 1.3em;
    line-height: 1.3em;
    
    width: 120px;
    height: 120px;

    border-radius: 50%;
    position: absolute;
    right: 20px;
}
.post-banner-title{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
    -webkit-box-orient: vertical;
    font-size: 3em;
    color: #fff;
    text-shadow: 1px 1px rgb(0 0 0 / 20%), 0.25rem 0.25rem hsl(0deg 0% 100% / 30%), 0.5rem 0.5rem 0.5rem rgb(0 0 0 / 10%);
    -webkit-mask: linear-gradient(#000 30%,rgba(0,0,0,.7) 70%) 0 0/100% 1.3em;
    mask: linear-gradient(#000 30%,rgba(0,0,0,.7) 70%) 0 0/100% 1.3em;
    line-height: 1.3em;
    text-align: center;
    line-height: 260px;
}
.post-banner-z{
    width: 100%;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(11.5px);
    -webkit-backdrop-filter: blur(11.5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;
    -webkit-box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;
    color: #768695;
    border-radius: 5px;
}
.post-list{
    margin-top: 20px;
}
.post_mon{
    position: relative;
}
.post_mon>div{
    position: relative;
}
.post_mon div h3{
    font-size: 12px;
    padding: 10px 15px;
    color: #FFF;
    display: inline-block;
    border-radius: 3px;
    margin: 0;
        font-weight: 600;
    text-shadow: 0 6px 25px #36abff;
    
    background-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(11.5px);
    -webkit-backdrop-filter: blur(11.5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;
    -webkit-box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;
    color: #768695;
}
.post_mon div ul{
    width: 100%;
    position: relative;
    padding: 10px 0;
    border-left: 4px solid #b8c2cd;
    /*margin-left: 35px;*/
    margin-bottom: 0;
}
.post_mon_left{
    padding-left: 35px;
}
.post_mon div ul li{
    list-style: none;
    position: relative;
    padding-left: 15px;
    margin-bottom: 20px;
    
}
.post_mon div ul li>p{
    position: absolute;
    left: -40px;
    top: 3px;
    display: inline-block;
    font-size: 12px;
}
.post_mon div ul li>a{
    position: relative;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(11.5px);
    -webkit-backdrop-filter: blur(11.5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;
    -webkit-box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;
    color: rgb(255, 255, 255);
    padding: 3px 5px;
}
.post_mon div ul li>a:before{
    position: absolute;
    left: -6px;
    top: 5px;
    content: " ";
    
    width: 0;
    height: 0;
    border-right: 5px solid rgba(255, 255, 255, 0.55);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    
}
.post_mon div ul li>a>p{
    margin: 0;
    padding: 0 10px;
    color: #768695;
    font-size: 14px;
}
.post_mon div ul li>a>p:hover{
    text-shadow: 0 10px 18px #36abff;
}
.post_mon_col1{
    width: 12px;
    height: 12px;
    background: #09F;
    border-radius: 50%;
    border: 2px solid #FFF;
    position: absolute;
    left: -8px;
    top: 6px;
}

.sk-list{
    padding-top: 70px;
}
.sk-list-title{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 2em;
    color: #fff;
    text-shadow: 1px 1px rgb(0 0 0 / 20%), 0.25rem 0.25rem hsl(0deg 0% 100% / 30%), 0.5rem 0.5rem 0.5rem rgb(0 0 0 / 10%);
    -webkit-mask: linear-gradient(#000 30%,rgba(0,0,0,.7) 70%) 0 0/100% 1.3em;
    mask: linear-gradient(#000 30%,rgba(0,0,0,.7) 70%) 0 0/100% 1.3em;
    line-height: 1.3em;
    position: relative;
    text-align: center;
    
   
    padding: 15px;
    
    
}
.sk-list-title>b{
    position: relative;
}
.sk-list-title>b>span{
    position: absolute;
    top: -10px;
    right: -25px;
    font-size: 0.5em;
    color: #09F;
    text-shadow: 0.1326rem 0.1326rem 0.1875rem rgb(0 125 255 / 50%), -1px -1px 1px hsl(0deg 0% 100% / 80%);

}
.sk-list-title-san{
    position: absolute;
    left: 15px;
    top: 0;
    text-shadow: 0.1326rem 0.1326rem 0.1875rem rgb(0 125 255 / 50%), -1px -1px 1px hsl(0deg 0% 100% / 80%);
}
.sk-list-block{
    width: 100%;
    height: auto;
    padding:2px;
    margin-top: 10px;
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10.5px);
    -webkit-backdrop-filter: blur(10.5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;
    -webkit-box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;
    border-radius: 3px;
    -webkit-border-radius: 3px;

}
.sk-list-block-title{
    color: #5a6f87;
    text-shadow: 0.1326rem 0.1326rem 0.1875rem rgb(250 251 255), -1px -1px 1px hsl(0deg 0% 100% / 80%);
    margin-top: 15px;
    
    overflow: hidden;text-overflow:ellipsis;white-space: nowrap;
}
.sk-list-block-bg{
    position: relative;
    height: 200px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
}
.sk-list-block-text{
    position: relative;
    height: 200px;
    line-height: 200px;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 2em;
    color: #fff;
    text-shadow: 1px 1px rgb(0 0 0 / 20%), 0.25rem 0.25rem hsl(0deg 0% 100% / 30%), 0.5rem 0.5rem 0.5rem rgb(0 0 0 / 10%);
    text-align: center;
    background:#93acc3;
    overflow: hidden;
}
.sk-list-block-info{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    line-height: 30px;
    color: #eaedf1;
    padding-left: 5px;
}
.post-breadcrumb,.post-breadcrumb a{
    margin-top: 70px;
    color: #73869a;
    text-shadow: 0.125rem 0.125rem 0.25rem rgb(0 0 0 / 30%);
    margin-bottom: 10px;
}
.post-content{
    padding: 20px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(#ccd7e3, #d4dde5 0.625rem, #cfd9e2 calc(100% - 1rem), #ccd7e3);
    border: 1px solid #d2dfe9;
    margin-bottom: 20px;
}
.post-content-title-w{
    border-bottom:1px solid #c4ced7;
    margin-bottom: 20px;
}
.post-content-title-w>h4{
    font-size: 1.875rem;
    line-height: 2.25rem;
}
.post-content-w hr{
        border-top: 1px solid #c2cdd7;
}
.post-content-w img{
    max-width: 100%;
}
.post-content-w ul,.post-content-w ol{
    padding-left: 20px;
}
.post-content-w table {font-family: verdana,arial,sans-serif;font-size:11px;color:#333333;border-width: 1px;border-color: #c7c7c7;border-collapse: collapse;margin:20px 0;}

.post-content-w table th {border-width: 1px;padding: 8px;border-style: solid;border-color: #c7c7c7;background-color: #dedede;}

.post-content-w table td {border-width: 1px;padding: 8px;border-style: solid;border-color: #c7c7c7;background-color: #ffffff;}


/*文章评论*/
.t-my-pl{
    margin-bottom: 70px;
    background: linear-gradient(#ccd7e3, #d4dde5 0.625rem, #cfd9e2 calc(100% - 1rem), #ccd7e3);
    border: 1px solid #d2dfe9;
}
.t-article-comment{
    border-top: 1px solid #c8d3df;
    padding-top: 30px;
    margin-top: 30px;
}

.t-comment-textarea{
    min-width: 100%;
    outline: none;
    border: none;
    background: #edf1f5;
    border-radius: 5px;
    padding: 10px 15px;
    padding-bottom: 60px;
    margin-bottom: 10px;
}
.t-comment-user .col-xs-6 input{
    width: 100%;
    height: 35px;
    border-radius: 3px;
    padding-left: 15px;
    outline: none;
    border: none;
    background: #edf1f5;
    color: #5d5d5d;
}

.t-comment-btn input{
    width: 100%;
    height: 35px;
    border-radius: 3px;
    outline: none;
    border: none;
    background: #276fff;
    color: #FFF;
}


.t-comment-title{
    border-left:3px solid #f12348;
    margin: 15px 0;
    padding-left: 20px;
}

.t-comment-list{
    
}
.t-comment-list-bolck{
    
}
.t-comment-user-img{
    width: 45px;
    height: 45px;
    background: #FFF;
    background-position: center!important;
    background-size: cover!important;
    border-radius: 5px;
    border: 1px solid #edf1f5;
    display: inline-block;
}
.t-comment-user-name{
    display: inline-block;
}
.t-comment-user-name h5{
    font-weight: bold;
    margin: 5px 0 10px 0;
}
.t-comment-user-name p{
    margin: 0;
    color: #8c8c8c;
    font-size: 10px;
}
.t-comment-content{
    margin-top: 10px;
    background: #f8f8f8;
    border-radius: 5px;
    padding: 15px;
    position: relative;
}
.t-comment-content:after{
    content: " ";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 10px solid #f8f8f8;
    position: absolute;
    left: 20px;
    top: -6px;
}
.t-comment-reply{
    margin: 10px 0;
    cursor: pointer;
}

.t-comment-list>div{
    padding: 0;
}
.t-comment-content p{
    display: inline-block;
    margin: 0;
}
.t-comment-content img{
    width: 30px;
    height: 30px;
    margin: 0 5px;
}

.t-shop-article{
    margin-bottom: 20px;
}
.t-comment-yi{
    border-bottom:1px solid #c8d3df; 
    padding: 10px 0;
}
.t-comment-list-a>ol>div>div{
    padding-left: 45px;
}
#cancel-comment-reply-link {
    display: inline !important;
}

/*文章评论响应*/
@media screen and (max-width: 769px) {
    .t-comment-user .row{
        margin: 0;
    }
    .t-comment-btn{
        padding: 0;
        margin-top: 50px;
    }
    .t-comment-btn input{
        width: 100%;
    }
}

.re_img img{
    width: 30px;
    height: 30px;
}
.re_face{
    margin: 10px 0;
}
.comments-title{font-size:16px;line-height:1;position:relative;text-align:center;font-weight:600;margin-bottom:0;margin-top: 20px;font-family:PingFang SC,Hiragino Sans GB,Microsoft YaHei,STHeiti,WenQuanYi Micro Hei,Helvetica,Arial,sans-serif;margin-bottom:15px;}
.comments-title:before{
    display: block;
    content: '';
    border-top: 3px solid #e7e7e7;
    position: relative;
    top: 25px;
    z-index: 1;
    width: 30px;
    left: 0;
    right: 0;
    margin: auto;
}
.comments-title span{display:inline-block;padding:0 30px;background:#fff;position:relative;z-index:2;}
.t-a-pages{
    margin: 10px 0;
    width: 100%;
    height: 50px;
    background: #FFF;
    line-height: 50px;
    text-align: center;
}
.page-navigator li{
    display: inline-block;

}
.page-navigator li a{
    padding: 5px 10px;;
    background: #6d8199;
    margin: 0 10px;
    color: #FFFFFF;
    border-radius: 3px;
    line-height: 15px;
}
.page-navigator li a{
    color: #FFF;
}

/*改*/
.t-my-pl{
    padding: 15px 20px;
}
.t-my-pl li{
    list-style-type: none;
}
.t-comment-textarea{
    background: #aac2d7;
}
.t-comment-content{
    background: #aac2d7;
}
.t-comment-content:after{
    border-bottom: 10px solid #aac2d7;
}
.t-my-pl a{
    color: #727272;
}
.t-comment-textarea{
    max-width: 100%;
}
.comment-list,.t-comment-list-bolck{
    padding: 0;
}
.t-comment-content a{color: #1940ff;}
/*文章评论区结束*/

.post-list-type-links{
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 0.991304px solid rgba(255, 255, 255, 0.18);
    box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;
    -webkit-box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    padding: 10px 15px;
    display: flex;
    cursor: pointer;
}
.post-list-type-links:hover{
    box-shadow: 0 5px 5px rgb(215 221 230 / 50%), 1px 0 0 #d8e0ea inset, -1px 0 0 #d8e0ea inset, 0 -1px 0 #d8e0ea inset, 0 0 0 2px rgb(255 255 255 / 75%) inset;
}

.post-list-type-links img{
    width: 50px;
    height: 50px;
    border: 2px solid #FFF;
    border-radius: 50%;
}
.post-list-type-links-txt{
    margin-left: 10px;
    width: calc(100% - 60px);
}

.post-list-type-links-txt h3,.post-list-type-links-txt p{
    margin: 0;
}
.post-list-type-links-txt p{
    width: 100%;
    overflow: hidden;text-overflow:ellipsis;white-space: nowrap;
    color: #8492A6;
    text-shadow: 0 1px #fff;
}
.post-list-type-links-txt h3{
    font-size: 18px;
    font-weight: 600;
    margin: 5px 0;
    color:#636e7e;
    text-shadow: 0 1px #fff;
}


footer{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 10px 0;
    text-align: center;
	
	background-color: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;
	-webkit-box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;
	color: rgba(255, 255, 255, 0.45);
	z-index: 999999;
}
footer p{
	text-align: center;
	color: #a5a5a5;
}
footer p a{
	color: #56abf6;
}
footer p a:hover{
	text-decoration: none;
	color: #56abf6;
}
@media screen and (max-width: 760px) {
    .body-content{
		margin-top: 60%;
	}
	.header-nav{
		display: none;
	}

	.wapBtn{
		display: block;
	}
	.post-banner-yingyong{
	    font-size:4em;
	    width: 65px;
	    height: 65px;
	}
	.post-banner{
	    height: 200px;
	}
	.post-banner-title{
	    line-height: 200px;
	}
	.recentUp{
	    display: none;
	}
}
@media screen and (max-width: 376px) {
    .body-content{
		margin-top: 50%;
	}
}
@media screen and (max-width: 321px) {
    .box .content{
        width: 90%;
    }
}
@media screen and (max-width: 415px) {
    .body-content{
		margin-top: 50%;
	}
    .box .content{
        width: 100%;
    }
}
@media screen and (min-width: 760px) {
	.header-nav-left{
		display: none!important;
	}
	.box .content{
	    width: 700px;
	}
}
