/*筛选功能*/
.screen {
    margin-top:1% !important;
    margin-bottom:1% !important;
    background: #fff;
}
.screen-box {
	margin: 2% 0;
	*border: 1px solid #f5f5f5;
	border-bottom: none;
}
.screen-box  .screen-class {
	display: table;
	width: 100%;
	margin-bottom: 10px;
	border-bottom: 1px solid rgb(245, 245, 245);
}
.screen-box  .screen-class .tit {
	width: 100px;
	padding: 5px 10px;
	overflow: hidden;
	width: 5%;
	max-width: 60px;
	float: left;
	background: #fff;
	font-size: 16px;
	color: #333;
}
.screen-box  .screen-class .class-box {
	float: left;
    width: 95%;
}
.screen-box  .screen-class .class-box li {
	display:block;
	float:left;
	padding: 5px 20px;
	overflow: hidden;
	font-size: 16px;
	color: #999;
	position: relative;
}
.screen-box  .screen-class .class-box li a {
	font-size: 16px;
	color: #999;
	cursor: pointer;
}
.screen-box  .screen-class .class-box li a b {
    color: #004386;
}


.clearall {
    width: 100%;
    padding:0 0 0 10px;
}
.clearall a {
    font-size: 14px;
    color:#999;
}


@media screen and (max-width:1024px) {
.screen {
    margin-top:1% !important;
    margin-bottom:1% !important;
    padding:0  !important;
    background: #fff;
}
.screen-box {
	display: flex;
	margin: 2% 0;
	padding: 0 2%;
    position: relative;
}
.screen-box  .screen-class {
	display: table;
	width: 100%;
	margin-bottom: 10px;
	padding: 0 0 10px 0;
	border-bottom: 1px solid rgb(245, 245, 245);
}
.screen-box  .screen-class .tit {
    position:relative;
    margin: 0 5px;
	padding: 5px 0px;
	width: 100%;
	max-width: 100%;
	font-size: 14px;
}
.screen-box  .screen-class .tit:after {
    content: "";
    position: absolute;
    right: 20%;
    top: 50%;
    transform: translate(-0%, -50%);
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid #2d2926;
}
.screen-box  .screen-class .tit:hover:after {
    border-top: 4px solid #004386;
}
.screen-box  .screen-class .class-box {
    width: 100%;
    position: absolute;
    display: none;
    left: 0;
    top: 30px;
    z-index: 2;
}
.screen-box  .screen-class:hover .class-box {
    display: block;
    min-height: 800px;
}
.screen-box  .screen-class:hover .class-box::after {
    display: block;
    content: "";
    width: 100%;
    height: 500px;
    background: rgb(0,0,0,0.2);
    z-index: 1;
    
}
.screen-box  .screen-class .class-box ul {
	padding: 30px 2%;
	background: #fff;
	overflow: hidden;
}
.screen-box  .screen-class .class-box li {
	padding: 4px 8px;
	font-size: 14px;
}
.screen-box  .screen-class .class-box li a {
	font-size: 16px;
	color: #999;
}
.screen-box  .screen-class .class-box li a i {
    width: 14px;
    height: 14px;
}
.screen-box  .screen-class .class-box li a span {
    padding:0 0 0 5px;
}
}
/*筛选功能 end*/

/*工程列表*/
.word-list {
    padding:3% 0;
}

.word-list ul {
}

.word-list ul li {
    float: left;
    width: 23%;
    margin: 1%;
}

.word-list ul li .photo {
    width: 100%;
    height: 0;
    padding-top: 145%;
    overflow: hidden;
    position: relative;
}
.word-list ul li .photo .pic {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
}


.word-list ul li .photo .pic img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: all 0.6s ease;
}

.word-list ul li .word {
    padding:5%;
    transition: all 0.5s;
}
.word-list ul li .word h3 {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
}
.word-list ul li .word p {
    font-size: 14px;
    color: #999999;
    padding: 12px 0 30px;
}

.word-list ul li:hover .word{ 
    background: #004386;
    
}
.word-list ul li:hover .word h3 {
    font-size: 16px;
    color: #fff;
}

/*HOVER*/

.word-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;
}

.word-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;
}

.word-list ul li:hover .pic img {
    opacity: 0.8;
    filter: alpha(opacity=80);
    transform: scale(1.1);
}

.word-list ul li:hover .pic::after {
    width: 94%;
}

.word-list ul li:hover .pic::before {
    height: 94%;
}
@media screen and (max-width:1024px){
.word-list {
}

.word-list ul {
}

.word-list ul li {
    width: 48%;
    margin: 1%;
}

.word-list ul li .pic {
    width: 100%;

}

.word-list ul li .word {
    padding: 8% 0 7%;
}
.word-list ul li .word h3 {
    font-size: 14px;
}

.word-list ul li:hover .word{ 
    padding: 8% 5% 7%;
}
.word-list ul li:hover .word h3 {
    color: #fff;
}
.word-list ul li:hover .word p {
    color: #999;
}
}



