.infoContent {
    width:1200px;
    margin:0 auto;
    overflow: hidden;
}

.searchBox {
    margin: 30px 0 20px;
    float: right;
}

.searchInput {
    width:270px;
    height:38px;
    border: 1px solid #e8e8e8;
    padding:0 16px 0 16px;
}

.searchInfoBtn {
    width: 58px;
    height: 38px;
    background-color: #2c3e50;
    border:0;
    color:#fff;
    font-size: 20px;
    position: relative;
    top:3px;
    cursor: pointer;
    margin:0 0 0 10px;
}

.highLight{
    color: #b71c22;
}

.pageTitle{
    font-size: 16px;
    color:#26211e;
    margin-bottom: 15px;
    position: relative;
    padding-left: 10px;
    font-weight: 600;
    display: none;
}

.pageTitle:before{
    content:"";
    width: 4px;
    height: 1em;
    background-color: #b71c22;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    position: absolute;
    left:0;
    top:3px;
}

.proList>li {
    width:590px;
    height: 278px;
    border:1px solid #eee;
    background-color: #fff;
    margin:0 0 20px 0;
    transition: box-shadow .1s;
    -webkit-transition: box-shadow .1s;
    -moz-transition: box-shadow .1s;
}

.proList>li:nth-of-type(odd) {
    float:left;
}

.proList>li:nth-of-type(even) {
    float:right;
}

.proList>li:hover {
    box-shadow: 0 0 6px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 6px rgba(0, 0, 0, .1);
}

.proList>li>a{
    display: block;
    padding: 30px;
    width: 100%;
    height: 100%;
}

.picBox {
    width:148px;
    height: 216px;
    float:left;
    margin:0 30px 0 0;
    background-color: #eee;
    overflow: hidden;
}

.proInfo {
    width:350px;
    float:left;
}

.proName {
    font-size: 22px;
    font-weight: normal;
    color:#333;
}

.proName>span.proTitle {
    font-size: 14px;
    color: #b71c22;
    margin: 0 0 0 14px;
}

.proName+hr {
    border:0;
    background-color: #eee;
    height: 1px;
    margin:20px 0;
}

.proBrief {
    color: #666;
    line-height: 1.8em;
    max-height: 150px;
    overflow: hidden;
}

.getMore {
    width: 108px;
    height: 40px;
    background-color: #fff;
    text-align: center;
    line-height: 40px;
    display: block;
    margin:30px auto 50px;
}

.getMore>i {
    font-style: unset;
}

.getMore>span {
    font-size: 12px;
    margin:0 0 0 2px;
}

.getMore:hover {
    color:#b71c22;
}

.getMore:hover>i {
    text-decoration: underline;
}

.getMore:hover>span {
    text-decoration: none;
}

@media screen and (max-width: 1200px) {
    .infoContent{
        width: 100%;
        padding:0 20px;
    }
    
    .proList{
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .proList>li{
        width: 49%;
        height: auto;
    }
    
    .proList>li>a{
        padding:20px;
        display: flex;
        display: -webkit-flex;
    }
    
    .picBox{
        min-width: 148px;
        margin:0 15px 0 0;
    }
    
    .proInfo{
        flex-grow: 1;
    }
    
    .proName+hr{
        margin: 10px 0;
    }
}

@media screen and (max-width: 720px) {
    .searchBox{
        float:none;
        display: flex;
        display: -webkit-flex;
    }
    
    .searchInput{
        flex-grow: 1;
    }
    
    .searchInput:focus{
        border-color: #b71c22;
    }
    
    .searchInfoBtn{
        width: 65px;
        background-color: #b71c22;
        margin:0 0 0 16px;
        top:0;
    }
    
    .pageTitle{
        display: block;
    }
    
    .proList{
        display: block;
    }
    
    .proList>li{
        width: 100%;
    }
    
    .proList>li>a{
        padding: 0;
    }
    
    .picBox{
        min-width: 120px;
        width: 120px;
        height: 160px;
        display: flex;
        display: -webkit-flex;
        align-items: center;
        justify-content: center;
        margin:0;
    }
    
    .picBox>img{
        height: 100% !important;
        width: auto !important;
        margin: 0 !important;
    }
    
    .proName{
        font-size: 18px;
        color: #26211e;
    }
    
    .proInfo{
        padding:10px 15px;
    }
    
    .proName+hr{
        display: none;
    }
    
    .proBrief{
        color: #927b6a;
        line-height: 1.7em;
        max-height: 110px;
        margin-top: 5px;
    }
    
    .getMore{
        margin:0 auto 30px;
    }
}

