@charset "utf-8";

footer {
    width: 100%;
    height: auto;
    float: left;
}

.region-footer {
    width: 100%;
    height: auto;
    display: block;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #333;
}

.footer-copyright {
    text-align: center;
    font-size: 14px;
    color: #eee;
    line-height: 1.6;
}



@media all and (max-width: 767px) {

    .region-footer {
        width: 100%;
        padding: 24px 16px;
    }
    
    
}

/* Tablets Portrait 的样式*/
@media all and (min-width:768px) and (max-width: 820px) and (orientation: portrait) {

    .region-footer {
        padding: 32px 24px;
    }
    
    
}

/* Tablets Landscape 的样式 */
@media all and (min-device-width: 820px) and (max-device-width: 1180px) and (orientation: landscape) {

    .region-footer {
        padding: 32px 24px;
    }
    
}