/* banner */
.pageBanner {
    width: 100%;
    height: 520px;
    position: relative;
    margin: auto;
}

.pageBanner .yy {
    position: absolute;
    background-color: rgba(0, 0, 0, .1);
    top: 0;
    left: 0;
    height: 520px;
    width: 100%;
    z-index: 2;
}

.pageBanner h1 {
    display: inline-block;
    font-size: 40px;
    font-weight: normal;
    color: #ffffff;
    text-align: center;
    padding-top: 0;
    width: 100%;
    margin-top: 230px;
    box-sizing: border-box;
    position: relative;
    z-index: 99999;
}

.pageBanner p {
    text-align: center;
    font-size: 30px;
    color: #fff;
    font-family: Novah;
    text-transform: uppercase;
    margin-top: 5px;
}
/* pageCase */
.pageCase {
    width: 100%;
    margin: 80px 0;
}
.pageCase ul {
    width: 100%;
    display: table;
    text-align: left;
    word-spacing: -1em;
}
.pageCase ul li {
    display: inline-block;
    vertical-align: top;
    width: 385px;
    margin: 0 15px 15px 0;
    background-color: #f7f7f7;
}
.pageCase ul li .img {
    width: 385px;
    height: 250px;
    overflow: hidden;
}
.pageCase ul li .img img {
    width: 100%;
    transition: all 0.6s ease;
}
.pageCase ul li:hover img{
    transform: scale(1.1);
}
.pageCase ul li .cont {
    padding: 20px;
    box-sizing: border-box;
}
.pageCase ul li .cont h2 {
    font-size: 16px;
    font-weight: normal;
    line-height: 16px;
    color: #333333;
    transition: all 0.6s ease;
}