/* 大于1200px */
@media (min-width: 1200px) {
   
}

/* 小于1200px */
@media (max-width: 1200px) {
    .youshi-list p {
        padding: 0 29px;
    }
}

/* 小于768px 平板样式 */
@media (max-width:768px) {
    #toolbar {
        display: none;
    }

    .product .productList .content-img{
        height: 490px;
    }
    .product .productList .content-img img{
        width: auto;
        max-width: 100%;
        max-height: 100%;
    }
}

/* 小于425px 手机样式 */
@media (max-width: 425px) {
    .footMenu {
        display: block;
    }

    header {
        background: #2d3355;
        padding: 0;
        position: fixed;
        z-index: 99;
    }

    header .container {
        border-bottom: 1px solid #fff;
    }

    header .logo {
        padding: 10px;
    }

    header .header-left .text {
        display: none;
    }

    .navbar-toggle .icon-bar {
        background-color: #fff;
    }

    header .navbar-collapse ul li {
        display: block;
        width: 100%;
        text-align: center;
        margin: 0;
        line-height: 40px;
    }

    header .navbar-collapse ul li a {
        font-size: 14px;
    }

    header .header-right {
        padding: 0;
    }

    .index-banner,
    .mini-banner {
        padding-top: 60px;
    }

    .index-product,
    .index-youshi,
    .index-youshi2,
    .index-about,
    .index-news,
    footer {
        padding: 20px 0;
    }

    .index-youshi .row .youshi-left {
        width: 100%;
    }

    .youshi-list {
        width: 100%;
        margin: 0 0 2px;
    }

    .youshi-list:nth-child(odd) {
        margin: 0 0 2px;
    }

    .youshi-list p {
        height: auto;
    }

    .index-youshi .row .youshi-right {
        width: 100%;
    }

    .index-youshi2 .youshi2-text {
        padding: 0;
        margin-bottom: 20px;
    }

    .index-youshi2 .youshi2-img.a {
        display: none;
    }

    .index-youshi2 .youshi2-img.b {
        display: block;
    }

    .index-youshi2 .youshi2-img img {
        width: 100%;
        margin-bottom: 20px;
    }

    footer {
        padding-bottom: 80px;
    }

    footer .footer-left {
        display: none;
    }

    footer .footer-right .bottom {
        height: 0;
        overflow: hidden;
        padding: 0;
    }
}