



/**/


.tt-season-service {
    background: #EDEDED;
    border: 1px solid #666666;
    min-height: 190px;
    position: relative;
    overflow: hidden;
}
.tt-season-service .season-title,
.tt-season-service .season-des{
    position: absolute;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.tt-season-service .season-title{
    top: 0;
    opacity: 1;
}
.tt-season-service .season-des{
    padding: 15px 20px;
    top: 100%;
    opacity: 0;
    background-color: #fff;
}

.tt-season-service:hover .season-title{
    top: -100%;
    opacity: 0;
}
.tt-season-service:hover .season-des{
    top: 0;
    opacity: 1;
}