@import url(./layout.css);

/* ==========================================================================
   common part
========================================================================== */
.pic {
    overflow: hidden;
    position: relative;
    height: auto;
    cursor: pointer;
}

.bgimg {
    width: 100%;
}

.upimg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all .5s;
}

.pic:hover .upimg {
    transform: scale(1.05);
}

/* 没有放大效果 */
.upimg2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/* 居中对齐 */
.upimg3 {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: 100%;
    max-height: 100%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transition: all .5s;
}

.pic:hover .upimg3 {
    transform: translate(-50%, -50%) scale(1.05);
    -webkit-transform: translate(-50%, -50%) scale(1.05);
}

.container img {
    max-width: 100%;
}



/* ==========================================================================
   part01
========================================================================== */





/* ==========================================================================
   footer
   ========================================================================== */
footer {
    position: relative;
    font-size: .16rem;
    padding: .8rem 0 0 0;
    color: #fff;
    background-color: #1060A0;
}

footer a {
    color: #fff;
}

footer a:hover {
    text-decoration: underline;
    color: #fff;
}

.footer-nav {
    text-align: justify;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    padding-bottom: .5rem;
}

.fn-col {
    display: inline-block;
    zoom: 1;
    vertical-align: top;
}

.footer-nav:after {
    content: "";
    width: 100%;
    display: inline-block;
    font-size: 0;
    line-height: 0;
}

.fn-col h3 {
    margin-bottom: .2rem;
    font-size: .18rem;
}

.fn-col li {
    line-height: .3rem;
    font-size: .14rem;
}

.fn-contact {
    overflow: hidden;
    color: #fff;
}

.fc_list {
    margin-top: .3rem;
}

.fc_list h6 {
    font-size: .14rem;
    line-height: 2;
}

.foothd {
    height: .72rem;
    line-height: .72rem;
    text-transform: Uppercase;
    color: #fff;
    text-align: center;
    font-size: .14rem;
}

.space {
    display: inline-block;
    width: .45rem;
}


@media only screen and (max-width: 768px) {
    footer {
        padding: 0;
    }

    .foothd {
        height: auto;
        padding: 10px 0;
    }

    .footer_main {
        display: none;
    }
}

@media only screen and (max-width: 500px) {
    .space {
        width: 0;
    }

    .space:nth-child(1),
    .space:nth-child(4) {
        display: block;
    }

    .foothd {
        font-size: 12px;
        line-height: 1.5;
    }
}