/*最小宽度1600px*/
@media screen and (min-width: 1200px) {
    .product_details {
        margin-top: 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .product_details .details_box {
        display: flex;
        justify-content: space-around;
        border-bottom: 1px solid #ccc;
    }
    .details_box .Specifications {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
		width: 50%;
    }
    .Specifications h1 {
        font-size: 36px;
        font-weight: bold;
        line-height: 1;
    }
    .Specifications em {
        margin: 40px 0;
    }
    .Specifications .specs {
        width: 100%;
        display: flex;
        flex-direction: column;
		line-height:2;
		padding-top:20px;
    }
    .specs .specs_box {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        height: 140px;
        background-color: #f6f6f6;
    }

    .Specifications .connection {
        background-color: #69b52f;
        height: 60px;
        width: 400px;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .Specifications .connection{
        color: #fff;
        font-size: 20px;
    }
    .specs_top{
        width: 50%;
        line-height: 70px;
        text-align: center;
    }
    .details_img{
        width: 350px;
        height: 400px;
    }
    .product_details .detail_displays{
        height: 600px;
        padding-top: 60px;
        background-color: #f2f2f2;
    }
}
@media screen and (max-width: 1200px) {
    .product_details{
        margin-top: 1.6rem;
        margin-bottom: 0.2rem;
        padding: 0 0.1rem;
    }
    .product_details .details_box{
        height: auto;
        width: 100%;
        flex-direction: column;
    }
    .details_box .Specifications{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-around;
        height: 5rem;
    }
    .Specifications h1{
        font-size: 0.6rem;
        font-weight: bolder;
    }
    .Specifications .specs{
        width: 100%;
    }
    .specs .specs_box{
        width: 100%;
        background-color: #f6f6f6;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }
    .specs_box .specs_top{
        width: 50%;
        line-height: 1rem;
        text-align: center;
    }
    .specs .connection{
        background-color: #69b52f;
        height: 0.8rem;
        line-height: 0.8rem;
        text-align: center;
        font-weight: bold;
        font-size: 0.34rem;
        color: #fff;
    }
    .details_box .details_img{
        margin-top: 0.12rem;
        width: 100%;
    }
    .details_img img{
        width: 100%;
    }
}
