.products-container{
    width: 90%;
    margin: 0 auto;
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 30px;
}
div.products-title{
    width: 100%;
    text-align: center;
    font-size: 28px;
    color: black;
    margin-top: 30px;
}
div.products-en_title{
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: grey;
    margin-top: 10px;
}
div.products-class{
    width: 100%;
    overflow: hidden;
    margin: 20px auto;
    text-align: center;
}
div.products-class ul{
    display: inline-block;
}

div.products-class ul>li{
    float: left;
    margin-right: 30px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}
div.products-class ul>li a{
    color: black;
    border: 1px solid white;
    padding: 5px 10px;
    border-radius: 2px;
}
div.products-class ul>li a.selected{
    color: #2a6496;
    border: 1px solid #2a6496;
    padding: 5px 10px;
    border-radius: 2px;
    pointer-events: none;
}
div.products-class ul>li a:hover{
    border: 1px solid #2a6496;
    color: #2a6496;
    border-radius: 2px;
}
div.products-fgx{
    width: 100%;
    height: 1px;
    background: #eee;
    margin-top: 20px;
    margin-bottom: 30px;
}

div.products-list{
    width: 85%;
    margin: 0 auto;
    overflow: auto;
    box-sizing: border-box;
}
div.products-list ul>li.li-normal{
    float: left;
    width: 32%;
    height: 300px;
    margin-right: 2%;
    box-sizing: border-box;
    border: 1.5px solid #eee;
    margin-bottom: 20px;
    border-radius: 3px;
    padding: 3px;
}
div.products-list ul>li.li-last{
    float: left;
    width: 32%;
    height: 300px;
    margin-right: 0;
    box-sizing: border-box;
    border: 1.5px solid #eee;
    margin-bottom: 20px;
    border-radius: 3px;
    padding: 3px;
}
div.products-list ul>li div.item-banner{
    width: 100%;
    height: 220px;
    box-sizing: border-box;
    overflow: hidden;
}
div.products-list ul>li img{
    width: 100%;
    height: 100%;
    border-radius: 3px;
    transition: all 1s;
}
div.products-list ul>li img:hover{
     cursor: crosshair;
    /*放大倍数*/
    /*transform: scale(1.5);*/
}
div.products-list ul>li div.item-title{
    width: 100%;
    text-align: center;
    margin-top: 15px;
    color: #2a6496;
    font-size: 16px;
}
div.products-list ul>li div.item-title:hover{
    color: black;
}
div.products-list ul>li div.item-subtitle{
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: grey;
    margin-top: 5px;
}



