﻿#view *{
    font-family:'Microsoft YaHei';
}
.row{
    margin:0;
}
.left-menu{
    margin-top:0px;
}
.content-main {
    width: 850px;
    background: #fff;
    min-height: 200px;
    padding: 15px;
}
.content-title {
    text-align: center;
    font-size: 38px;
    font-family: Microsoft YaHei, Microsoft YaHei-Bold;
    font-weight: 700;
    text-align: start;
    color: #362316;
}
.content-info {
    font-size: 12px;
    font-family: MicrosoftYaHei;
    font-weight: normal;
    color: #707070;
    text-align: start;
    margin-bottom: 48px;
    margin-top: 10px;
    overflow: hidden;
}
.content-type-title{
    text-align: center;
    margin: 20px auto 40px;
}
.content-type-title>.name{
    font-size: 30px;
    color: #292929;
    line-height:initial;
}
.content-type-title>.en_name{
    color: #999999;
    font-size:14px;
}

    .content-info a:link, .content-info a:visited {
        color: #808080;
    }

    .content-info a:hover {
        color: #ff0000;
    }

.content-view {
    width: 100%;
    line-height: 2;
    font-size: 16px;
    font-family: Microsoft YaHei, Microsoft YaHei-Regular;
    font-weight: 400;
    text-align: left;
    color: #362316;
    /* margin-bottom:50px;
    margin-top:20px; */
}

.content-img {
    /* display: block; */
    margin: 130px 30px 0 0;
    /* max-width: 100%; */
    width: 340px;
    /* height: 190px; */
}
#list {
    overflow: hidden;
    margin-bottom:50px;
}
#list>div{
    margin-bottom:15px;
}
#list .left{
    vertical-align: middle;
    display: table-cell;
    overflow: hidden;
    padding:2%;
}
#list .left .img{
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    overflow: hidden;
    transition:all 0.6s;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}
#list .right{
   vertical-align: middle;
    display: table-cell;
    padding:2%;
    box-sizing:border-box;
}
#list .right .title{
    padding-bottom: 10px;
    color: #3a3a3a;
    font-size: 16px;
    font-weight: bold;
    transition: .6s;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    position:relative;
}
#list .right .title::after{
    content:"";
    width:50px;
    height:2px;
    background:#cbcbcb;
    position:absolute;
    bottom:0;
    left:0;
    transition: .6s;
}
#list>div:hover .right .title{
    color:#1388f8
}
#list>div:hover .left{
    border-radius:8px;
}
#list>div:hover .left .img{
   transform:scale(1.2);
}
#list .right .text{
    font-size: 14px;
    color: #7b7b7b;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-top:15px;
    margin-bottom:0;
    line-height:1.8;
}

.product-detail {
    display: flex;
    align-items: start;
    margin-top: 56px;
    margin-bottom: 142px;
}
.content-txt {
    padding-left: 30px;
    box-sizing: border-box;
    border-left: 1px solid #ececec;
}


/*屏幕小于或等于600px*/
@media screen and (max-width: 600px) {
    .product-detail {
        flex-direction: column;
    }

    .content-img {
        margin: 0;
        width: 340px;
    }

    .content-txt {
        padding-left: 0px;
        border-left: none;
    }
}