<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.works-hd {
    width: 95%;
    margin-left: 2.5%;
    min-height: 500px;
    display: block;
    clear: both;
}

.works-type-hd {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 84px;
    line-height: 84px;
}

.works-type-item {
    width: calc(70%);
    display: flex;
    justify-content: flex-end;
    height: 50px;
    line-height: 50px;
}

.works-type-item div {
    margin-left: 40px;
    color: #808080;
    font-size: calc(3.5px * 4);
    cursor: pointer;
}

.works-type-item div:hover {
    color: #000;
    text-decoration-line: underline;
}

.works-type-item div.selected {
    color: #000;
    text-decoration-line: underline;
}

.works-list-hd {
    width: 100%;
}

.works-list-hds{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    /*display: grid;*/
    /*grid-template-columns: repeat(3,auto);*/
    /*grid-template-rows: 1fr 2fr 3fr;*/
}

.works-list-box {
    width: calc(100% / 3);
    /*height: calc((100%  / 3) * (678 / 815));*/
    display: block;
    /*float: left;*/
    position: relative;
    /*height: 400px;*/
    transition: all .3s ease;
    cursor: pointer;
    text-decoration: none;
    color: #FFF;
    overflow: hidden;
}

.works-list-item {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
    overflow: hidden;
    /*float: left;*/
}

.works-list-content-hd {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, .3);
    left: 0;
    top: 0;
    opacity: 0;
    transition: all .3s ease;
}

.video-icon{
    position: absolute;
    width:60px !important;
    height: 60px !important;
    left:50%;
    top:50%;
    margin-left: -30px;
    margin-top: -30px;
    opacity: .5;
}

.works-list-content-box {
    position: absolute;
    width: 90%;
    height: 90%;
    padding: 5%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
}

.works-list-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all .5s;
}

.works-list-box:hover .works-list-content-hd {
    opacity: 1;
}

.works-list-box:hover img {
    transform: scale(1.1);
}

.custom-list-name {
    font-size: 16px;
}

.works-list-title {
    font-size: 24px;
}

.works-list-service-desc {
    font-size: 12px;
    line-height: 1.2rem;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.works-detail-custom-hd {
    position: relative;
    width: 88%;
    margin-left: 6%;
    padding: 94px 0px;
    margin-top: 168px;
    min-height: 500px;
}

.works-detail-custom-box {
    width: 76%;
    margin-left: 12%;
    display: flex;
    justify-content: space-between;
}

.works-detail-title{
    font-size:24px;
    text-align: right;
}

.works-detail-custom-intro-box {
    width: 60%;
    margin-left: 50px;
    min-height: 500px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    line-height: 1.8em;
    font-size: 16px;
    text-align: justify;
}

.works-detail-custom-intro-box div:nth-child(2) {
    font-size: 12px;
}

.pre-works-arrow:hover {
    animation: leftTranslate 1s .1s ease-in-out infinite;
}

.next-works-arrow:hover {
    animation: rightTranslate 1s .1s ease-in-out infinite;
}

@-webkit-keyframes leftTranslate {
    from {
        transform: translateX(0px)
    }
    50% {
        transform: translateX(-10px)
    }
    to {
        transform: translateX(0px)
    }
}

@-webkit-keyframes rightTranslate {
    from {
        transform: translateX(0px)
    }
    50% {
        transform: translateX(10px)
    }
    to {
        transform: translateX(0px)
    }
}

.close-icon:hover {
    animation: closeAnimation .7s .1s ease-in-out forwards;
}

@-webkit-keyframes closeAnimation {
    to {
        transform: rotate(360deg)
    }
}

.works-arrow-group-hd {
    width: 88%;
    margin-left: 6%;
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
}

.works-arrow-group-hd div{
    width:33.3333%;
    text-align: center;
}

.works-arrow-group-hd img{
    width:auto;
}

@media screen and (max-width: 750px) {
    .works-list-box {
        width: calc(100%) !important;
        overflow: hidden;
        float: left;
        position: relative;
        display: block;
        transition: all .3s ease;
        cursor: pointer;
        text-decoration: none;
        color: #FFF;
    }

    .works-arrow-group-hd img{
        width:50%;
    }

    .works-arrow-group-hd .close-icon{
        width:auto;
    }

    .works-arrow-group-hd .close-icon img{
        width:50% !important;
    }

    .works-type-item {
        min-height: 30px;
        width: 100%;
        justify-content: flex-start;
        flex-direction: row !important;
        flex-wrap: wrap;
        margin-bottom: 40px;
        line-height: 22px;
    }
}

@media screen and (max-width: 1000px) {
    .works-type-hd &gt; div:nth-child(1) {
        display: none;
    }

    .works-type-item {
        min-height: 30px;
        justify-content: flex-start;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .works-type-item div {
        margin-left: 0;
        margin-right: 20px;
    }

    .works-list-box {
        width: calc(100% / 2);
        overflow: hidden;
        float: left;
        position: relative;
        display: block;
        transition: all .3s ease;
        cursor: pointer;
        text-decoration: none;
        color: #FFF;
    }

    .works-detail-custom-box {
        width: 88% !important;
        display: block !important;
        margin-left: 6% !important;
    }

    .works-detail-custom-box &gt; div:nth-child(1) {
        margin-bottom: 30px;
    }

    .works-detail-custom-intro-box {
        width: 100% !important;
        margin-left: 0;
    }

    .works-detail-title{
        font-size:24px;
        text-align: left;
    }
}

@media screen and (max-width: 1440px) {

    .works-arrow-group-hd img{
        width:34%;
    }

    .works-arrow-group-hd .close-icon img{
        width:70%;
    }

    .works-arrow-group-hd .close-icon{
        width:auto;
    }
}</pre></body></html>