/* 通用样式 */
*{
    margin: 0;
    padding: 0;
}
html, body {
    width: 100%;margin: 0;padding: 0;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
}
img {
    vertical-align: top;
}
input {
    outline: none;
}




/* 尾部 */
.footer {
    height: 383px;
    overflow: hidden;
    background-color: #333333;
}
.foot-conter {
    width: 1200PX;
    margin: 0 auto;
    height: 376px;
    color: #d0d0d0;
}
.foot-conter .ww {
    display: flex;
    justify-content: space-between;
    align-items: center;   
    margin-top: 70px;
    padding-bottom: 35px;
    border-bottom: 1px solid #8c8c8c;
}
.foot-conter .ww .dinav p{
    margin-bottom: 20px;
}
.foot-conter .ww .dinav .p1{
    margin-left: -50px;
    font-size: 23px;
}

.foot-conter .ww .dinav p span{
    cursor: pointer;
    transition: all 0.4s ease-out;
    display: inline-block;
}
.foot-conter .ww .dinav p span:hover {
    transform: scale(1.1) translateZ(0);
}

.foot-conter .ww .di3 p{
    margin-bottom: 20px;
}
.foot-conter .ww .di3 .p1{
    margin-left: -50px;
    font-size: 23px;
}
.foot-conter .ww .di4 {
    text-align: center;
}
.foot-conter .ww .di4 img{
    border: 8px solid #fff;
    border-radius: 20px;
    margin-bottom: 10px;
}
.foot-conter .ss {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}



.foot-last {
    height: 10px;
    background-color: #2eb872;
}



/* 适应1200-1400的屏幕 */
@media screen and (min-width:1200px) and (max-width:1400px) {
    .foot-conter {
        width: 1200PX;
        margin: 0 auto;
    }
}



/* 手机端 */

/* 底部站位 */
.kong {
    height: 54px;
    display: none;
}
.wap_footer {
    width: 100%;
    height: 50px;
    background: #12166d;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10000;
    padding:2px 0;
    display: none;
}

.wap_footer a {
    display: block;
    padding-top: 2px;
    width: 25%;
    height: 45px;
    float: left;
    background: url(../images/public/footer.png) right center repeat-y;
    overflow: hidden;
}

.wap_footer a:last-child {
	background-image: none;
}

.wap_footer a img {
    display: block;
    height: 18px;
    margin: 0 auto;
        margin-top: 4px;
}

.wap_footer a p {
    text-align: center;
    font-size: 12px;
    color: #fff;
    line-height: 28px;
}

/* 出现底部导航 */
@media screen and (max-width: 550px) {
    .footer {
        display: none;
    }
    .wap_footer {
        display: block;
    }
    .kong {
        display: block;
    }

}

