.category-title,
.product-title {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #1F1F1F;
    line-height: 1.4;
    margin-bottom: 10px;
}
.category-title span,
.product-title {
    background: #7ECDD6;
    padding: 5px 15px;
}
.category-title span {
    min-width: 400px;
    max-width: 100%;
    display: inline-block;
}
.product-list {
    margin: 0 -8px;
}
.product-list li {
    width: 25%;
    padding: 0 8px 30px;
}
.product-list li a {
    border: 1px solid #ccc;
    padding: 7px 7px 0;
    text-align: center;
}
.product-list .pic {
    border: 1px solid #ccc;
    overflow: hidden;
}
.product-list .pic img {
    width: 100%;
    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;
}
.product-list a:hover .pic img {
    -webkit-transform: scale(1.15);
       -moz-transform: scale(1.15);
        -ms-transform: scale(1.15);
         -o-transform: scale(1.15);
            transform: scale(1.15);
}
.product-list .name {
    display: block;
    font-size: 15px;
    line-height: 1.3;
    margin: 10px 0;
    color: #444;
    height: 38px;
    overflow: hidden;
}
.product-list .more {
    display: block;
    margin: 0 -7px;
    background: #4FA9B2;
    color: #fff;
    line-height: 32px;
}
.product-list a:hover .more {
    background: #F97B00;
}
.product-list .more:after {
    content: "";
    background: url(../images/_icon/more_arrow.png) no-repeat;
    width: 21px;
    height: 17px;
    display: inline-block;
    vertical-align: middle;
    margin: -2px 0 0 8px;
}

.product-pic {
    margin-bottom: 42px;
}
.product-info {
    border: 1px solid #ccc;
    margin-bottom: 30px;
}
.product-info .title {
    background-color: #F5F5F5;
    border-bottom: 1px solid #ccc;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    color: #1F1F1F;
    padding: 5px;
}
.product-info .editor {
    padding: 30px 40px 50px;
}
.product-info .table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    line-height: 1.3;
    word-wrap: break-word;
}
.product-info .table thead {
    background: #666;
    color: #fff;
}
.product-info .table th {
    text-align: left;
}
.product-info .table th,
.product-info .table td {
    padding: 10px 25px;
    border: 1px solid #aaa;
    height: 36px;
}
.product-info .table tr:nth-child(2n) {
    background-color: #F5F5F5;
}

@media screen and (max-width: 1200px) {
    .product-list li {
        width: 33.33%;
    }
}
@media screen and (max-width: 767px) {
    .category-title span {
        min-width: 0;
        display: block;
    }
    .product-list li {
        width: 50%;
    }
    .product-info {
        border: 0;
    }
    .product-info .title {
        border: 1px solid #ccc;
        margin-bottom: 25px;
    }
    .product-info .editor {
        padding: 0;
    }
    .product-info .table {
        word-break: break-all;
    }
    .product-info .table th,
    .product-info .table td {
        padding: 10px 15px;
    }
}
@media screen and (max-width: 479px) {
    .product-list li {
        float: none;
        width: auto;
    }
    .product-list .name {
        height: auto;
    }
}