﻿.content {
    width: 1200px;
    margin: 0 auto;
    height: auto;
    margin-top: 10px;
    margin-bottom:10px;
}

    .content .contentLeft {
        width: 200px;
        height: auto;
        float: left;
    }

        .content .contentLeft .menu {
            width: 100%;
        }

            .content .contentLeft .menu li {
                width: 100%;
                line-height: 42px;
                border-bottom: 1px solid dashed;
            }

                .content .contentLeft .menu li a {
                    display: block;
                    width: 100%;
                    font-size: 14px;
                }

                .content .contentLeft .menu .select a, .content .contentLeft .menu li:hover a {
                    color: #01a2ec;
                }

    .content .contentRight {
        width: 980px;
        height: auto;
        float: right;
    }

        .content .contentRight .productList {
            width: 100%;
            height: auto;
            position: relative;
            padding-bottom: 80px;
        }

            .content .contentRight .productList .product {
                display: block;
                width: calc((100% / 3) - 40px );
                height: auto;
                margin: 0 20px;
                margin-bottom:20px;
                box-sizing:border-box;  
                border:1px solid #eee;
                float: left;
                padding:7px;
            }

                .content .contentRight .productList .product .img {
                    width: 100%;
                    height: 270px;
                    overflow: hidden;
                    position: relative;
                }

                    .content .contentRight .productList .product .img img {
                        max-width: 100%;
                        max-height: 100%;
                        position: absolute;
                        top: 0px;
                        bottom: 0px;
                        left: 0px;
                        right: 0px;
                        margin: auto!important;
                        transition: 0.5s ease;
                    }

                .content .contentRight .productList .product .name {
                    line-height: 26px;
                    font-size: 16px;
                    color: #232323;
                    margin-top: 10px;
                }

                .content .contentRight .productList .product .type {
                    line-height: 26px;
                    font-size: 14px;
                    color: rgb(147, 147, 147);
                }

                .content .contentRight .productList .product:hover .img img {
                    transform: scale(1.1,1.1);
                }

.address {
    width: auto;
    font-weight: 100;
    padding-right: 20px;
}
