.product_details{
    width: 1200px;
    margin: 80px 360px 0px;
}
.product_left{
    width: 377px;
	height: 283px;
    border-radius: 12px;
    margin-bottom: 100px;
    overflow: hidden;
}
.product_left>img{
    max-width: 100%;
}
.product_right{
    width: 773px;
}
.product_right_title{
    width: 100%;
    padding: 28px 56px;
    background-color: #f2f2f2;
}
.product_right_title>span{
    display: inline-block;
    width: 100%;
	font-size: 24px;
	font-weight: 700;
	color: #333333;
    position: relative;
}
.product_right_title>span:before{
    content: '';
    display: block;
    width: 6px;
	height: 48px;
	background-color: #3eb134;
	border-radius: 0px 4px 4px 0px;
    position: absolute;
    top: -6px;
    left: -56px;
}

.product_details_type{
    width: 100%;
    margin-top: 45px;
   
}
.product_details_type_title{
    width: 100%;
    border-bottom: 1px solid #f2f2f2;
}
.product_details_type_title>span{
    display: block;
    width: 160px;
	height: 46px;
    text-align: center;
    line-height: 46px;
    font-size: 20px;
	color: #ffffff;
	background-image: linear-gradient(-90deg, 
		#008be9 0%, 
		#00a8ff 100%);
	border-radius: 0px 16px 0px 16px;
    position: relative;
    bottom: -1px;

}
.product_details_type_title>span:before{
    content: '';
    display: block;
    width: 10px;
    height: 1px;
    background-color: #ffffff;
    position: absolute;
    bottom: 0px;
    left: 0px;
}
.product_text{
    margin-top: 30px;
	width: 100%;
	font-size: 16px;
	color: #666666;
    line-height: 28px;
}

@media (max-width:768px){
    .product_details{
        width: 92%;
        margin: 30px 4% 0px;
    }
    .product_left{
        width: 100%;
        height: auto;
        margin-bottom: 40px;
    }
    .product_right{
        width: 100%;
    }
    .product_right_title{
        padding: 16px;
    }
    .product_right_title>span{
        font-size: 18px;
    }
    .product_right_title>span:before{
        top: -3px;
        left: -16px;
        height: 30px;
    }
    .product_details_type{
        margin-top: 24px;
    }
    .product_details_type_title>span {
        width: 100px;
        height: 30px;
        line-height: 30px;
        font-size: 16px;
        color: #ffffff;
        border-radius: 0px 8px 0px 8px;
        position: static; 
    }
    .public_details_pages{
        margin: 30px 0px 50px;
        padding: 0px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        overflow: hidden;
    }
    .public_details_pages_left,.public_details_pages_right {
        width: 60px;
        font-size: 14px;
    }
    .public_details_pages_left>img{
        width: 8px;
        height: 10px;
        margin-right: 5px;
    }
    .public_details_pages_right>img{
        width: 8px;
        height: 10px;
        margin-left: 5px;
    }
    .public_details_pages_middle{
        width: 80px;
        margin: 0px;
        font-size: 14px;
        
    }
    .public_details_pages_middle>img{
        margin-right: 5px;
        width: 12px;
        height: 12px;
        position: relative;
        top: -2px;
    }
    .public_details_pages_middle>span{
        position: static;
    }
}