<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body{
    background-color: #f5f5f5;
}
.banner{
    background-color: #033f47;
    min-height: 660px;
}
.case-list-con{
     margin-top: -500px;
     padding-bottom: 5rem;
}
.case-list-con .case-list{
    max-width: 1400px;
    margin: 0 auto;
    color: #fff;
}
.case-list-con .case-list .h1-detail{
    display: flex;
    align-items: center;
    gap: 3.75rem;
    margin-bottom: 3rem;
}
.case-list-con .case-list .h1-detail h1{
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 3.75rem;
    margin: 0;
}
.case-list-con .case-list .h1-detail .line{
    position: relative;
}
.case-list-con .case-list .h1-detail .line:before{
    content: "";
    width: 4px;
    height: 49px;
    background-color: #bbd877;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.case-list-con .case-list .h1-detail .line:after{
    content: "";
    width: 2px;
    height: 49px;
    background-color: #bbd877;
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
}
.case-list-con .case-list&gt;ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
}
.case-list-con .case-list ul li{
    background-color: #ffffff;
    border-radius: 10px;
}
.case-list-con .case-list ul li a{
    display: flex;
    background: url(../img/transparent-bg.png) no-repeat center right;
    
}
.case-list-con .case-list ul li a img{
    max-width: 34%;
    border-radius: 10px;
}
.case-list-con .case-list ul li a .right-con{
    padding: 2.5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.case-list-con .case-list ul li a .right-con h3{
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: #033f47;
    font-size: 1.5rem;
}
.case-list-con .case-list ul li a .right-con ul{
    margin: 2rem 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 4.6875vw;
    color: #033f47;
}
.case-list-con .case-list ul li a .right-con ul li{
    display: flex;
    align-items: center;
    gap: 10px;
}
.case-list-con .case-list ul li a .right-con ul li:before{
    content: "";
    background: url(../img/green-arrow.png) no-repeat;
    width: 14px;
    height: 12px;
    display: block;
}
.case-list-con .case-list ul li a .right-con ul li span{
    flex: 1;
}
.case-list-con .case-list ul li a .right-con p{
    margin-bottom: 2rem;
    line-height: 2;
    color: #4c4c4c;
     overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.case-list-con .case-list ul li a .right-con div{
    width: 150px;
    height: 64px;
    background-color: #bbd877;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.case-list-con .case-list ul li a .right-con div:after{
    content: "";
    width: 26px;
    height: 64px;
    background-color: #adc86e;
    clip-path: polygon(0 100% ,0 100%,100% 100%,100% 0);
    position: absolute;
    right: 0;
    bottom: 0;
}
@media (max-width:1400px){
    .case-list-con{
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width:1080px){
    .case-list-con .case-list .h1-detail{
        flex-wrap: wrap;
        gap: 2rem;
    }
    .case-list-con .case-list .h1-detail h1{
        font-size: 3rem;
    }
    .case-list-con .case-list ul li a .right-con ul{
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width:768px){
    .case-list-con .case-list .h1-detail .line{
        display: none;
    }
    .case-list-con .case-list ul li a{
        flex-wrap: wrap;
    }
    .case-list-con .case-list ul li a img{
        max-width: 100%;
    }
    .case-list-con .case-list .h1-detail h1{
        font-size: 2rem;
    }
}</pre></body></html>