/*products页面样式*/

/*大图样式开始*/
.outerbox{
    margin-top: 20px;
    overflow: hidden;
}
.fixed-size{
    position: relative;
}
.fixed-size div img{
    width: 100%;
    height: 100%;
}
.zoom{
    max-height: 48.5%;   /*兼容样式*/
    -webkit-animation-name:Move1;
    -moz-animation-name:Move1;
    animation-name: Move1;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration:1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode:both;
    -moz-animation-fill-mode: both;
    animation-fill-mode: both;
}
@-webkit-keyframes Move1{
    from{
        -webkit-transform:scale(1.1);
    }to{
         -webkit-transform:scale(1);
     }
}
@-moz-keyframes Move1{
    from{
        -moz-transform:scale(1.1);
    }to{
         -moz-transform:scale(1);
     }
}
@-o-keyframes Move1{
    from{
        -o-transform:scale(1.1);
    }to{
         -o-transform:scale(1);
     }
}
@keyframes Move1 {
    from{
        transform: scale(1.1);
    }to{
         transform: scale(1);
     }
}

/*大图样式结束*/
/*产品区样式开始*/
.SPE_top_fill {
	margin: auto;
	padding-top: 10px;
	width: 80%;
}
.thumbnail:hover{
    border: 1px solid red;
}
.my_detail_size a:hover{
    color: rebeccapurple;
    outline: none;
    text-decoration: none;
}
.icon_color{
    padding: 0 10px 0 10px;
    color: red;
}
/*产品区样式结束*/
@media (min-width: 992px) and (max-width: 1200px) {
    .zoom {
        max-height:30%;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .zoom {
        max-height:25%;
    }
}
@media (max-width: 768px) {
    .zoom {
        max-height:18%;
    }
}