a{
	color: #444;
}
.artic img{
	margin:5px 0;
}
.box{
    font-family: 'Fira Sans', sans-serif;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.box:before,
.box:after{
    content: '';
    background-color: rgba(255,255,255,0.7);
    height: 25%;
    width: 100%;
    opacity: 0;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    top: -100%;
    transition: all 0.3s;
}
.box:after{ top: 100%; }
.box:hover:before{
    transform: translateX(-50%) translateY(0);
    top: 0;
}
.box:hover:after{
    transform: translateX(-50%) translateY(0);
    top: auto;
    bottom: 0;
}
.box:hover:before,
.box:hover:after{
    height: 50%;
    opacity: 1;
    animation: animate 0.5s linear;
}
.box img{
    width: 100%;
    height: auto;
}
.box .box-content{
    width: 100%;
    opacity: 0;
    filter: blur(10px);
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 60%;
    left: 50%;
    z-index: 1;
    transition: all 0.4s ease 0.1s;
}
.box:hover .box-content{
    opacity: 1;
    filter: blur(0);
    top: 50%;
}
.box .title{
    color: #d1016f;
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}
.box .post{
    color: #444;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}
.box .icon{
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    bottom: 10px;
    z-index: 1;
    transition: all 0.3s ease 0.3s;
}
.box:hover .icon{ opacity: 1; }
.box .icon li{ display: inline-block; }
.box .icon li a{
    color: #fff;
    background-color: #d1016f;
    line-height: 25px;
    height: 30px;
    width: 30px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: block;
    transition: all 0.3s;
}
.box .icon li a:hover{
    color: #d1016f;
    background-color: #fff;
    border-color: #d1016f;
}
@keyframes animate{
    80%{ width: 90%; }
    85%{ width: 95%; }
    93%{ width: 85%; }
    100%{ width: 100%; }
}
@media only screen and (max-width:990px){
    .box{ margin-bottom: 30px; }
}
@media only screen and (max-width:479px){
    .box .title{ font-size: 20px; }
}

/********放大效果*********/
.boxbig{
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    position: relative;
}
.boxbig:before{
    content: '';
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1;
    transition: all 0.3s ease 0.1s;
}
.boxbig:hover:before{
    left: 15px;
    right: 15px;
    bottom: 15px;
    top: 15px;
    opacity: 1;
    animation:bounce-left 1s ease-in forwards;
}
.boxbig img{
    width: 100%;
    height: auto;
    transition: all 0.3s ease 0s;
}
.boxbig:hover img{ transform: scale(1.5); }

/*******************/
.cardnew {
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0);
    transform: translateX(-50%) translateY(-50%) translateZ(0);
    width: 330px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    -webkit-transition: box-shadow 0.5s;
    transition: box-shadow 0.5s;
}
.cardnew a {
    color: inherit;
    text-decoration: none;
}

.cardnew:hover {
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
}

/**
* DATE
**/
.card__date {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    padding-top: 10px;
    background-color: coral;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    font-weight: 700;
    line-height: 13px;
}
.card__date__day {
    font-size: 14px;
}
.card__date__month {
    text-transform: uppercase;
    font-size: 10px;
}

/**
* THUMB
**/
.card__thumb {
    height: 245px;
    overflow: hidden;
    background-color: #000;
    -webkit-transition: height 0.5s;
    transition: height 0.5s;
}
.card__thumb img {
    display: block;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, transform 0.5s;
    transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}
.cardnew:hover .card__thumb {
    height: 130px;
}

.cardnew:hover .card__thumb img {
    opacity: 0.6;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

/**
* BODY
**/
.card__body {
    position: relative;
    height: 185px;
    padding: 20px;
    -webkit-transition: height 0.5s;
    transition: height 0.5s;
}
.cardnew:hover .card__body {
    height: 300px;
}

.card__category {
    position: absolute;
    top: -25px;
    left: 0;
    height: 25px;
    padding: 0 15px;
    background-color: coral;
    color: #fff;
    text-transform: uppercase;
    font-size: 11px;
    line-height: 25px;
}

.card__title {
    margin: 0;
    padding: 0 0 10px 0;
    color: #000;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.card__subtitle {
    margin: 0;
    padding: 0 0 10px 0;
    font-size: 19px;
    color: coral;
}

.card__description {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 56px;
    margin: 0;
    padding: 0;
    color: #666C74;
    line-height: 27px;
    opacity: 0;
    -webkit-transform: translateY(45px);
    transform: translateY(45px);
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
    transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}
.cardnew:hover .card__description {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.card__footer {
    position: absolute;
    bottom: 12px;
    left: 20px;
    right: 20px;
    font-size: 11px;
    color: #A3A9A2;
}

.card__footer i + i {
    padding-left: 10px;
}