/*滚动条效果*/
/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
width:7px;
height:6px;
}
/*定义滚动条轨道*/
::-webkit-scrollbar-track {
background-color:white;
-webkit-border-radius: 0em;
-moz-border-radius: 0em;
border-radius: 0em;
}
/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
background-color: #ff676c;
background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.4) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.4) 50%,rgba(255,255,255,.4) 75%,transparent 75%,transparent);
-webkit-border-radius: 2em;
-moz-border-radius: 2em;
border-radius: 2em;
cursor: pointer;
} header.bg-light.lter.wrapper-md{
text-align: center;
} .post_title_wrapper{
justify-content: center;
} .text-muted.post-item-foot-icon.text-ellipsis.list-inline {
text-align: center;
} .btn-pay {
animation: star 0.5s ease-in-out infinite alternate;
}
@keyframes star{
from {
transform: scale(1);
}
to {
transform: scale(1.1);
}
} .item-thumb {
cursor: pointer;
transition: all .6s;
}
.item-thumb:hover {
transform: scale(1.05);
} .blog-post .panel:not(article){transition:all .3s}
.blog-post .panel:not(article):hover{transform:translateY(-10px)} .index-post-title a:hover {color:#ff676c;}