.w{
    width: 1200px;
    margin: 0 auto;
}
/* 主体样式 */
.product_main{
    margin-top: 20px;
    height: 550px;
}
.img_group{
    float: left;
    width: 500px;
    height: 550px;
}
.img_group .main_img{
    margin: 0 auto;
    width: 470px;
    height: 470px;
}
.img_group .main_img img{
    width: 100%;
    height: 100%;
}
.img_group .img_list{
    position: relative;
    margin: 0 auto;
    width: 470px;
    height: 80px;
}
.img_list ul{
    margin-top: 10px;
    position: absolute;
    width: auto;
}
.img_list ul li{
    float: left;
    margin-right: 10px;
    width: 70px;
    height: 70px;
}
.img_list ul li:nth-child(6n){
    margin-right:0;
}
.img_list ul li img{
    border-radius: 10px;
    width: 70px;
    height: 70px;
}
.product_des{
    float: left;
    width: 650px;
    height: 540px;
    padding: 10px 20px 0 30px;
}
.product_des h1{
    margin-bottom: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    /* 设置盒子为弹性显示 */
    display: -webkit-box;
    /* 限制在一个块元素显示的文本的行数 */
    -webkit-line-clamp: 2;
    /* 设置或检索伸缩盒对象的子元素的排列方式 */
    -webkit-box-orient: vertical;
    color: #0068b6;
}
.product_des p{
    border-top: 2px solid #ddd;
    padding-top: 15px;
    font-size:16px;
    line-height: 26px;
    color: rgb(59, 59, 59);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 16;
    -webkit-box-orient: vertical;
}
/* 修改标题颜色 */
.content .header p.title{
    color: #0068b6;
}
/* 所有表格居中展示 */
table{
    margin: 0 auto;
}