<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*å·¥ç¨‹åˆ—è¡¨*/
.case-list {
    padding:3% 0 0 0;
}

.case-list ul {
     padding:2% 0;
    overflow: hidden;
}

.case-list ul li {
    float: left;
    width: 31.33%;
    margin: 1%;
}

.case-list ul li .photo {
    width: 100%;
    height: 0;
    padding-top: 67.15%;
    overflow: hidden;
    position: relative;
}
.case-list ul li .photo .pic {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
}


.case-list ul li .photo .pic img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: all 0.6s ease;
}

.case-list ul li .word {
    padding:5%;
    transition: all 0.5s;
}
.case-list ul li .word h3 {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
}
.case-list ul li .word p {
    font-size: 14px;
    color: #999999;
    padding: 12px 0 30px;
}

.case-list ul li:hover .word{ 
    background: #004386;
    
}
.case-list ul li:hover .word h3 {
    font-size: 16px;
    color: #fff;
}

/*HOVER*/

.case-list ul li .pic::after {
    content: '';
    width: 0;
    height: 90%;
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
    transition: all 0.6s ease;
}

.case-list ul li .pic::before {
    content: '';
    width: 90%;
    height: 0;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
    transition: all 0.6s ease;
}

.case-list ul li:hover .pic img {
    opacity: 0.8;
    filter: alpha(opacity=80);
    transform: scale(1.1);
}

.case-list ul li:hover .pic::after {
    width: 94%;
}

.case-list ul li:hover .pic::before {
    height: 94%;
}
@media screen and (max-width:1024px){
.case-list {
}

.case-list ul {
}

.case-list ul li {
    width: 48%;
    margin: 1%;
}

.case-list ul li .pic {
    width: 100%;

}

.case-list ul li .word {
    padding: 8% 0 7%;
}
.case-list ul li .word h3 {
    font-size: 14px;
}

.case-list ul li:hover .word{ 
    padding: 8% 5% 7%;
}
.case-list ul li:hover .word h3 {
    color: #fff;
}
.case-list ul li:hover .word p {
    color: #999;
}
}



</pre></body></html>