﻿@charset "utf-8";
/* CSS Document */
#product{
	padding-bottom:50px;
	}
#productshow{
	padding-bottom:50px;
	}
.product-list {
    margin-top:50px;
}
.product-list li a {
    display: block;
    text-align: center;
    color: #333;
    padding: 10px;
    font-size: 18px;
    line-height: 36px;
    text-decoration: none;
}
.product-list li a:hover{
	color:rgb(11,82,186);
	}
.product-list .active a{
	color:rgb(11,82,186);
	}	
.product-content > div{
	margin-top:20px;
	}
.product-content-title p{
	font-size:16px;
	line-height:32px;
	background-color:#ddd;
	}
.product-content div a{
	display:block;
	transition:box-shadow 0.5s;
	-moz-transition:box-shadow 0.5s; /* Firefox 4 */
	-webkit-transition:box-shadow 0.5s; /* Safari and Chrome */
	-o-transition:box-shadow 0.5s;/* Opera */
	}
.product-content div:hover p{
	background-color:rgb(11,82,186);
	color:#fff;
	transition:background-color 1s linear;
	-moz-transition:background-color 1s linear; /* Firefox 4 */
	-webkit-transition:background-color 1s linear; /* Safari and Chrome */
	-o-transition:background-color 1s linear; /* Opera */
	}
.product-content div:hover a{
	box-shadow:10px 10px 10px #999;
	}
.productshow-content h4{
	margin:20px 0;
	font-size:24px;
	line-height:48px;
	}
.productshow-content table{
	margin:auto;
}
.productshow-content p{
	font-size:16px;
	line-height:32px;
	}
    .productshow-content p img {
    max-width:100%;
    }
.product-photo {
    height:200px;
    overflow:hidden;
}
    .product-photo img {
        display: block;
        max-width: 100%;
        height: auto;
    }