/* 大于1200px */
@media (min-width: 1200px) {}

/* 小于1200px */
@media (max-width: 1200px) {
    .header .title {
        padding: 3px 15px;
    }

}

/* 小于768px 平板样式 */
@media (max-width:768px) {
    .header .title {
        color: black;
    }

    ul.nav {
        width: 100%;
        height: 0px;
        margin: 0;
        position: fixed;
        top: 0;
        left: 0;
        background: #fff;
        transition: all 1s;
        z-index: 9;
        border-bottom: 2px solid #1468d6;
        overflow: hidden;
    }

    ul.nav li {
        float: none;
        text-align: center;
        width: 100% !important;
        display: inline-block;
    }

    ul.nav li a {
        line-height: 1;
        padding: 0 15px !important;
    }
    ul.nav.c li a{
        border-right: 0;
    }
    ul.nav.c li:hover,
    ul.nav.c li.active,
    ul.nav.c li:focus {
        border: 0;
        background: #f39602;
        color: #fff !important;
    }
    ul.nav ul{
        position: absolute;
        display: block;
        background: transparent;
        margin-top:0;
        transition: all 0.3s;
        overflow: hidden;
        background: black;
    }
    ul.nav ul li {
        border-bottom: 0;
    }
    .navbtn {
        display: block;
    }

    .banner {
        background-image: url(../images/banner/2.jpg);
    }
    .mini-banner{
        height: 200px;
    }
    .advantage .content.a>div{
        padding: 0 10px;
    }
    .advantage .content.a p,
    .advantage .content.b p {
        margin: 0 1em 20px;
    }

    .advantage .content.b>div>div {
        margin-bottom: 20px;
    }

    .location {
        display: none;
    }

}

/* 小于425px 手机样式 */
@media (max-width: 425px) {

    .index .container {
        padding: 3em 0;
    }

    .logo {
        padding: 0;
    }
    .logo img{
        width: 100%;
        position: relative;
        right: 30px;
    }
    .logo span {
        padding-right: 0;
    }

    .logo span h1 {
        font-size: 20px;
        line-height: 50px;
    }

    .logo span p {
        display: none;
    }

    .phone.a {
        display: none;
    }

    .heading-section{
        margin-bottom: 30px;
    }
    .heading-section p {
        font-size: 50px;
        margin-bottom: -30px;
    }

    .heading-section h3 {
        font-size: 34px;
    }

    .message .col-sm-6 {
        width: 100%;
        float: left;
    }

    .message .col-sm-6 .col-sm-12 input,
    .message .col-sm-6.fr .col-sm-12 textarea {
        width: 60%;
    }

    .message .col-sm-12.btn {
        width: 100%;
        padding: 0;
    }

    .footer br {
        display: block;
    }

    .footMenu {
        display: block;
    }

    #toolbar {
        display: none;
    }
    .product .productList.a p{
        display: none;
    }
    .product .productList.d .content-img{
        height: 240px;
    }
    .product .productList.d .content-img img{
        width: auto;
        height: 100%;
    }
    .product .productList.d .content-img .box{
        padding: 0;
        width: 80%;
    }
    .product .productList.d h2{
        font-size: 18px;
        line-height: 40px;
    }
    .product .productList.d a{
        font-size: 16px;
        padding: 3px 20px;
    }

    .product .productList .content-img{
        height: auto;
    }

    .tabControl{
        margin-bottom: 20px;
    }
    .footer{
        height: 0;
        padding: 0;
        overflow: hidden;
        margin-top: 65px;
    }
}