.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}
.product-column{
    max-width: 1500px;
	width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
     /*transform: scale(0.8);*/
}
.info-row{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
}
.info-title{
    text-align: center;
    font-size: 36px;
    
    font-weight: bold;
    color: #545454;
    line-height: 34px;
}
.info-line{
    width: 33px;
    height: 2px;
    background: #F15921;
    margin-top:  15px;
    margin-bottom: 17px;
}
.info-desc{
    font-size: 16px;
    
    font-weight: 400;
    color: #666666;
    line-height: 16px;
}
.product-card-row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 74px;
    width: 100%;
}
.product-card-col{
    width: 334px; 
    padding-top: 18px;
    padding-bottom: 19px;
    border: 2px solid #EEEEEE;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 44px;
}
.product-card-icon{
    /*width: 132px;*/
    /*height: 151px;*/
    margin-top: 19px;
    margin-bottom: 31px;
}
.product-card-desc{
    font-size: 16px;
    
    font-weight: 400;
    color: #333333;
    line-height: 16px;
}
.product-card-tag{
    margin-top: 19px;
    width: 23px;
    height: 23px;
    border: 1px solid #F15921;

    transform: rotate(45deg);
}
.product-card-tag-text{
    width: 100%;
    height: 100%;
    font-size: 18px;
    font-family: Microsoft YaHei;
    font-weight: Regular;
    color: #F15921;
    line-height: 18px;
    text-align: center;
    transform: rotate(-45deg);
}
.product-card-col:hover{
    border: 2px solid #F15921;
}
.product-card-col:hover .product-card-tag{
    background-color: #F15921;
    transform: rotate(90deg);
    -ms-transform: rotate(90deg); /* IE 9 */
    -moz-transform: rotate(90deg); /* Firefox */
    -webkit-transform: rotate(90deg); /* Safari 和 Chrome */
    -o-transform: rotate(90deg); /* Opera */
}
.product-card-col:hover .product-card-tag .product-card-tag-text{
    color: #fff;
    transform: rotate(-90deg);
    -ms-transform: rotate(-90deg); /* IE 9 */
    -moz-transform: rotate(-90deg); /* Firefox */
    -webkit-transform: rotate(-90deg); /* Safari 和 Chrome */
    -o-transform: rotate(-90deg); /* Opera */
}

.type-row{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 41px;
}
.type-text{
    width: auto;
    border: 1px solid #DDDDDD;
    border-radius: 5px;
    font-size: 18px;
    
    font-weight: 400;
    color: #333333;
    text-align: center;
    line-height: 24px;
    margin-right: 13px;
    padding: 15px 15px 16px 15px;
    
}
.active-type{
    color: #fff;
    background-color: #F15921;
}
.active-type a{color:#fff;}
.page-row{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 78px;
}
.page-last{
    font-size: 18px;
    
    font-weight: 400;
    color: #333333;
    line-height: 24px;
    padding: 15px 13px 14px 12px;
    border: 1px solid #DDDDDD;
    border-radius: 10px;
    margin-right: 26px;
    margin-left: 26px;
    opacity: 0.8;
}
.page-num{
    font-size: 16px;
    
    font-weight: 400;
    color: #333333;
    line-height: 17px;
    padding: 17px 13px;
    border: 1px solid #DDDDDD;
    border-radius: 10px;
    margin-right: 14px;
    margin-left: 14px;
}
.page-next{
    font-size: 18px;
    
    font-weight: 400;
    color: #333333;
    line-height: 24px;
    padding: 15px 13px 14px 12px;
    border: 1px solid #DDDDDD;
    border-radius: 10px;
    margin-right: 26px;
    margin-left: 26px;
    opacity: 0.8;
}
.page-active{
    color: #ffffff;
    background-color: #F15921;
}