.pro-submenu{
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: 0vw 0vw 0.45vw rgba(0, 0, 0, 0.05);
}
.pro-submenu .zs-wp{
    display: flex;
    justify-content: center;
}
.pro-submenu a{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    min-width: 20%;
    height: 80px;
    line-height: 1.8;
    text-align: center;
    color: #FFF;
    padding: 0 25px;
    background-color: transparent;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
}
.pro-submenu a img{
    display: block;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
.pro-submenu a.cur{
    background-color: #0380c0;
    color: #FFF;
    font-weight: bold;
}
.pro-submenu a:hover{
    background-color: #0380c0;
    color: #FFF;
}
.project-list{
    display: block;
    width: 100%;
    padding: 10px 0 10px;
    overflow: hidden;
}
.project-list ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 -20px;
}
.project-list li{
    display: block;
    width: 33.333%;
    height: 380px;
    padding: 20px 20px;
    position: relative;
    overflow: hidden;
}
.project-list li .pro-item{
    display: block;
    width: 100%;
    height:100%;
    overflow: hidden;
    position: relative;
}
.project-list li img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project-list li .title{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0 0;
    line-height: 45px;
    font-size: 18px;
    color: #FFFFFF;
    z-index: 10;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
}
/*PC自适应*/
@media only screen and (min-width:1024px) and (max-width:1900px){


}

/*Mobile v1*/
@media only screen and (max-width:767px){
.project-list {
    padding: 0 0 0;
}
.project-list ul {
    margin: 0 -8px;
}
.project-list li {
    width: 100%;
    height: 220px;
    padding: 8px 8px;
}
.project-list li .title {
    line-height: 38px;
    font-size: 15px;
}
.pro-submenu {
    height: 45px;
    overflow: hidden;
    overflow-x: auto;
}
.pro-submenu a {
    font-size: 15px;
    min-width: auto;
    height: 45px;
    padding: 0 15px;
    white-space: nowrap;
}
.pro-submenu a img {
    display: block;
    width: 30px;
    height: 30px;
    margin-right: 6px;
}

}