.sec1{
    padding: 9.1% 0 9.375%;
}
.sec1 .list-box{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 4.92%;
}
.sec1 .list-box::after{
    content: "";
    width: 29.5%;
    display: block;
}
.sec1 .list-box li{
    width: 29.5%;
    background-color: #fafafa;
    margin-bottom: 4.1%;
    transform: translateY(20vh);
    opacity: 0;
    transition-duration: 0.75s,0.75s;
    transition-property: transform,opacity;
}
.sec1 .list-box li.actived{
    transform: translateY(0);
    opacity: 1;
}
.sec1 .list-box .img-box{
    display: block;
    overflow: hidden;
}
.sec1 .list-box .img-box img{
    transition: transform 0.75s;
}
.sec1 .list-box .text-box{
    padding: 0 1.875em 1.875em;
    position: relative;
}
.sec1 .list-box .text-box h3{
    font-size: 0.75em;
    width: 7em;
    height: 7em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    background: linear-gradient( 90deg, rgb(176,41,37) 0%, rgb(252,51,41) 100%);
    margin-top: -3.5em;
    margin-bottom: 2em;
}
.sec1 .list-box .text-box h3 b{
    font-size: 2.4em;
}
.sec1 .list-box .text-box h4{
    font-size: 0.875em;
    margin-bottom: 0.7em;
}
.sec1 .list-box .text-box h4 .icon{
    width: auto;
    height: 0.86em;
    margin-right: 0.5em;
    vertical-align: baseline;
}
.sec1 .list-box .text-box h5{
    font-size: 1.125em;
    line-height: 1.666;
    overflow: hidden;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.sec1 .list-box .text-box h5 a{
   transition: color 0.5s;
}
.sec1 .list-box .text-box .line{
    border-bottom: 1px solid rgba(146,146,146,0.2);
    margin: 1.125em 0 1em;
}
.sec1 .list-box .text-box .more{
    font-size: 0.875em;
    color: var(--theme-color);
}
.sec1 .list-box .text-box .more::after{
    font-family:revicons;
    content: "\e81e";
    margin-left: 0.7em;
    transition: transform 0.5s;
    display: inline-block;
}
@media only screen and (min-width:1025px){
    .sec1 .list-box .img-box:hover img{
        transform: scale(1.1);
    }
    .sec1 .list-box .text-box h5 a:hover{
        color: var(--theme-color);
    }
    .sec1 .list-box .text-box .more:hover::after{
        transform: translateX(100%);
    }
    .sec1 .list-box li:nth-child(3n-1){
        transition-delay: 0.25s,0.25s;
    }
    .sec1 .list-box li:nth-child(3n){
        transition-delay: 0.5s,0.5s;
    }
}
@media only screen and (max-width:1024px){
    .sec1{
        padding: 15% 0;
    }
    .sec1 .list-box{
        display: block;
    }
    .sec1 .list-box::after{
        display: none;
    }
    .sec1 .list-box li{
        width: 100%;
        margin-bottom: 10%;
    }
    .sec1 .list-box .img-box{
        display: block;
        overflow: hidden;
    }
}