a {
    text-decoration: none;
}

body {
	margin: 0px;
	max-width: 1920px;
    margin: 0 auto;
}
p{
    margin: 0px;
}
.display_left{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.display_right{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.display_center{
    display: flex;
    justify-content: center;
    align-items: center;
}
/* 超出隐藏 */
.hb_line_hide {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

/* 超出2行隐藏 */
.hb_two_line_hide {
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

/* 超出3行隐藏 */
.hb_three_line_hide {
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

/* 超出4行隐藏 */
.hb_four_line_hide {
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}

/* 超出5行隐藏 */
.hb_five_line_hide {
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
}

.displayFlexRow {
	display: flex; 
	flex-direction: row;
}

.displayFlexColumn {
	display: flex;
	flex-direction: column;
}

.max_width_1920 {
	max-width: 1920px;
}

.max_width_1540 {
	max-width: 1540px;
}

.left_margin_190 {
	margin-left: 190px;
}

.right_margin_190 {
	margin-right: 190px;
}

/* 全局 */
.global {
    background-color: rgb(255, 255, 255);
    margin: 0 auto;
	position: relative;
	overflow: hidden;
	width: 100%;
}

/* 全局 -- 头 */
.top {
	width: 100%;
    margin: 0 auto;
    display: flex;
    height: 70px;
	position: fixed;
	background-color: white;
	/*top: 0px;*/
	z-index: 5;
	align-items: center;
	/*left: 50%;*/
    /*transform: translate(-50%, 0px);*/

}

.top_logo {
    width: 143px;
    /*height: 48px;*/
    object-fit:contain;
}

.top_language {
    display: flex;
    align-items: center;
}

.top_middle_btns {
    align-items: center;
    justify-content: right;
}

.top_middle_btns_a {
	display: flex;
	align-items: center;
	height: 70px;
}

.top_middle_text_unselect {
    font-weight: 600;
    font-size: 16px;
    color: #221817; 
}

.top_middle_text_select {
    font-weight: 600;
    font-size: 16px;
    color: #7B3267; 
}

.top_language_icon {
    width: 20px;
    height: 20px;
}

.top_language_text {
    font-weight: 600;
    font-size: 14px;
    color: #7B3267;
}


/* 全局 -- 尾 */
.bottom {
	margin: 0 auto 60px;
	justify-content: space-between;
	padding-top: 60px;
}

.bottom_logo {
    width: 143px;
    height: 48px;
}

.bottom_sub {
	align-items: center;
}

.bottom_text1 {
	font-size: 18px;
	font-weight: 600;
	line-height: 36px;
	color: #999999;
	margin-bottom: 10px;
}

.bottom_text2 {
	font-size: 20px;
	font-weight: 600;
	line-height: normal;
	color: #221817;
	margin-bottom: 10px;
}

.bottom_text3 {
	font-size: 14px;
	font-weight: normal;
	line-height: 30px;
	color: #525659;
}

.bottom_text4 {
	font-size: 14px;
	font-weight: normal;
	line-height: 14px;
	color: #221817;
	margin-bottom: 10px;
}

.bottom_text5 {
	font-size: 16px;
	font-weight: normal;
	line-height: 30px;
	color: #221817;
}

.bottom_img {
	width: 24px;
	height: 24px;
	margin-right: 10px;
}

.copyright {
	margin: 0 auto;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	
	border-top: 1px solid #E5E6EB;
		
	font-size: 14px;
	font-weight: normal;
	color: #666666;
}

.margin_right_45 {
    margin-right: 45px;
}

.margin_right_60 {
    margin-right: 60px;
}

.margin_top_60 {
	margin-top: 60px;
}

.margin_left_80 {
	margin-left: 80px;
}

.margin_right_80 {
	margin-right: 80px;
}

.margin_right_123 {
	margin-right: 123px;
}

.flex1 {
    flex: 1;
}

.flex2 {
    flex: 2;
}

/* 下拉菜单 */
.dropdown {
	display: inline-block;
	height: 100%;
	display: flex;
	align-items: center;
}

.dropdown_content {
	position: absolute;
	background-color: white;
	width: 100%;
	height: 310px;
	top: 70px;
	left: 50%;
	transform: translate(-50%, 0);
	z-index: -6;
	opacity: 0;
	transition: ease 0.3s all;
	visibility: hidden;
	
	border-top: 1px solid #E5E5E5;
}

.dropdown:hover .dropdown_content {
	display: block;
	z-index: 1;
	opacity: 1;
	transition: ease 0.3s all;
	visibility: visible;
}

/* 下拉菜单公共 */
.dropdown_content_sub_title {
	justify-content: center;
	padding-right: 80px;
	
	border-right: 1px solid #E5E5E5;
}

.dropdown_content_sub_middle {
	/* display: block; */
	align-items: center;
}

.dropdown_content_text1 {
	font-size: 48px;
	font-weight: normal;
	line-height: 48px;
	color: #221817;
}

.dropdown_content_text2 {
	font-size: 20px;
	font-weight: normal;
	line-height: 48px;
	color: #221817;
}

.dropdown_content_text3 {
	font-size: 18px;
	font-weight: normal;
	line-height: 36px;
	color: #221817;
	margin-right: 60px;
	/*flex:1;*/
}
.dropdown_content_sub_middle a:nth-child(1){
    margin-left: 60px;
}

.dropdown_content_text3:hover {
	color: #7B3267;
	border-bottom: 1px solid #7B3267;
}

.dropdown_content_img {
	width: 480px;
	height: 100%;
}


/* 首页 */
/* index.html */
.index_banner_ouside {
	/* margin-top: 70px; */
	padding-top: 70px;
	position: relative;
}

.index_bg_pattern_left {
	position: absolute;
	width: 220px;
	height: 529px;
	bottom: 0%;
	transform: translate(0, 50%);
	left: 0px;
	z-index: 2;
}

.index_bg_pattern_right {
	position: absolute;
	width: 102px;
	height: 319px;
	top: 50px;
	left: auto;
	right: 0px;
	z-index: 2;
}

#indexBanner1 .swiper-button-prev {
	position: absolute;
	width: 24px;
	height: 24px;
	top: auto;
	left: 40%;
	transform: translate(-50%, 0);
	bottom: 40px;
	background-image: url('../images/index_banner_arrow_left.png');
	margin: 0px;
}
#indexBanner1 .swiper-wrapper{
    height:auto;
}

#indexBanner1 .swiper-button-prev::after {
	display: none;
}

#indexBanner1 .swiper-button-next {
	position: absolute;
	width: 24px;
	height: 24px;
	top: auto;
	left: 60%;
	transform: translate(-50%, 0);
	bottom: 40px;
	background-image: url('../images/index_banner_arrow_right.png');
	margin: 0px;
}

#indexBanner1 .swiper-button-next::after {
	display: none;
}

#indexBanner1 .swiper-scrollbar {
	position: absolute;
	bottom: 50px;
	width: 240px;
	height: 4px;
	left: 50%;
	transform: translate(-50%, 0);
	margin: 0%;
	background-color: rgba(125, 50, 103, 0.1);
}

#indexBanner1 .swiper-scrollbar-drag {
	background-color: #7B3267;
}

#indexBanner1 .swiper-container {
    width: 100%;
    height: 866px;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index_about {
	display: flex;
	padding-top: 200px;
}

.index_about_left {
	padding-left: 190px;
	padding-right: 100px;
}

.index_about_left_text1 {
	color: #7B3267;
	font-weight: 400;
	font-size: 20px;
}

.index_about_left_text2 {
	color: #221817;
	font-weight: 500;
	font-size: 48px;
}

.index_about_left_text3 {
	color: #666666;
	font-weight: 500;
	font-size: 14px;
	line-height: 30px;
	margin-top: 50px;
}

.index_about_left_block {
	display: flex;
	flex-direction: row;
	width: 100%;
	margin-top: 30px;
	height: 64px;
}

.index_about_left_block_sub1 {
	display: flex; 
	flex-direction: column;  
	margin-left: 10px;
}

.index_about_left_block_sub2 {
	display: flex; 
	flex-direction: row; 
	align-items: baseline;
}

.index_about_left_block img {
	width: 60px;
	height: 60px;
}

.index_about_left_block_text1 {
	font-weight: bold;
	font-size: 36px;
	color: #221817;
}

.index_about_left_block_text2 {
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: #7B3267;
}

.index_about_left_block_text3 {
	font-weight: 300;
	font-size: 16px;
	color: #221817;
}

.index_about_left_block_more {
	margin-top: 50px;
	width: 180px;
	height: 50px;
	align-items: center;
	justify-content: center;
	
	border-radius: 90px;
	border: 1px solid #7B3267;
	position: relative;
}

.index_about_left_block_more span {
	color: #7B3267;
	font-weight: 400;
	font-size: 18px;
	line-height: 36px;
	padding-left: 20px;
}

.index_about_left_block_more img {
	margin-left: 10px;
	width: 8px;
	height: 14px;
	padding-right: 20px;
}

.index_about_right {
	position: relative;
}

.index_about_right_bg {
	width: 960px;
	height: 690px;
}

.index_coreAdvantages {
	margin: 0 auto;
	align-items: center;
	padding-top: 140px;
}

.index_coreAdvantages_four {
	margin-top: 30px;
	justify-content: space-between;
}

.index_coreAdvantages_four_block {
	width: 23%;
	/* height: 620px; */
	box-shadow: 0px 0px 10px 2px rgba(32, 31, 69, 0.1);
}

.index_coreAdvantages_four_block_text1 {
	color: #7B3267;
	font-weight: normal;
	font-size: 32px;
	line-height: 40px;
	text-align: center;
	margin-top: 60px;
	padding-left: 20px;
	padding-right: 20px;
	height: 80px;
}

.index_coreAdvantages_four_block_text2 {
	color: #221817;
	font-weight: normal;
	font-size: 16px;
	line-height: 30px;
	text-align: center;
	margin-top: 20px;
	padding-left: 20px;
	padding-right: 20px;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; 
    overflow: hidden;
    height: 84px;
}

.index_coreAdvantages_four_block_detail {
	margin: 40px auto 0px;
	width: 104px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	
	border-radius: 90px;
	border: 1px solid #7B3267;
	position: relative;
}

.index_coreAdvantages_four_block_detail img {
	width: 8px;
	height: 14px;
}

.index_coreAdvantages_four_block_img {
	width: 100%;
	height: 200px;
	margin-top: 40px;
	display: block;
}

.index_products {
	margin: 0 auto 80px;
	align-items: center;
	padding-top: 140px;
}

.index_products_list_banner {
	width: 100%;
}

.index_products_list {
	/* width: 300px; */
	border-bottom: 1px solid #EEEEEE;
}

.index_products_list_sub {
	justify-content: space-between;
	align-items: center;
}

.index_products_list_sub_text {
	width: 100%;
	height: 66px;
	font-weight: 500;
	font-size: 16px;
	line-height: 32px;
	display: flex;
	align-items: center;
}

.index_products_list_text_unselect {
	color: #221817;
}

.index_products_list_text_select {
	color: #7B3267;
}

.index_products_list_img_unselect {
	background-image: url('../images/index_product_list_arrow_unselect.png');
	background-size: 100% 100%;
	width: 24px;
	height: 24px;
}

.index_products_list_img_select {
	background-image: url('../images/index_product_list_arrow_select.png');
	background-size: 100% 100%;
	width: 24px;
	height: 24px;
}

.index_products_banner {
	margin-left: 40px;
	width: 1390px;
	position: relative;
}

#indexBanner2 .swiper {
    width: 100%;
    height: 100%;
	overflow: hidden;
}

#indexBanner2 .swiper-slide {
	width: 620px;
	height: 840px;
}

#indexBanner2 .swiper-button-prev {
	position: absolute;
	width: 60px;
	height: 60px;
	top: auto;
	left: -160px;
	bottom: 0px;
	background-image: url('../images/index_product_banner_left.png');
	margin: 0px;
}

#indexBanner2 .swiper-button-prev::after {
	display: none;
}

#indexBanner2 .swiper-button-next {
	position: absolute;
	width: 60px;
	height: 60px;
	top: auto;
	left: -100px;
	bottom: 0px;
	background-image: url('../images/index_product_banner_right.png');
	margin: 0px;
}

#indexBanner2 .swiper-button-next::after {
	display: none;
}

.index_products_banner_img {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: -1;
}

.index_products_banner_text {
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	bottom: 154px;
	font-weight: bold;
	font-size: 36px;
	color: #221817;
}

.index_products_banner_button {
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	bottom: 80px;
	
	width: 188px;
	height: 50px;
	
	display: flex;
	justify-content: center;
	align-items: center;
	
	border-radius: 90px;
	border: 1px solid #7B3267;
}

.index_products_banner_button span {
	color: #7B3267;
	font-weight: 400;
	font-size: 16px;
	line-height: 36px;
	padding-left: 36px;
}

.index_products_banner_button img {
	margin-left: 10px;
	width: 8px;
	height: 14px;
	padding-right: 36px;
}

/* 首页产品列表 小屏展示 */
.index_products_list_small {
	margin: 0px 15px;
	overflow-x: scroll;
	display: none;
}

.index_products_list_small::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.index_products_list_small a {
	display: block;
	
}



/* 关于我们 */
/* about.html */
.about_top {
	position: relative;
	text-align: center;
}

.about_top_words {
    position: absolute;
    color: white;
    z-index: 2;
    top: 266px;
    left: 50%;
    max-width: 1540px;
    width: 100%;
    text-align: left;
    transform: translate(-50%,0%);
}

.about_top_words_text1 {
	font-family: PingFang SC;
	font-size: 16px;
	font-weight: 500;
	line-height: 16px;
	margin-bottom: 16px;
}

.about_top_words_text2 {
	font-family: PingFang SC;
	font-size: 36px;
	font-weight: 500;
	line-height: 36px;
}

.about_bg_img1 {
	width: 100%;
    object-fit: cover;
    max-height: 600px;
    max-width: 1920px;
    margin: 0 auto;
}

.about_bg_img2 {
	width: 100%;
	height: 580px;
}

.about_gsjj {
	margin: 0 auto 50px;
	padding-top: 120px;
}

.about_gsjj_text1 {
	font-family: Arial;
	font-size: 48px;
	font-weight: normal;
	line-height: 48px;
	color: #221817;
	
	margin-bottom: 10px;
}

.about_gsjj_text2 {
	font-family: Arial;
	font-size: 72px;
	font-weight: 300;
	line-height: 72px;
	color: #7B3267;
	
	margin-bottom: 10px;
}

.about_gsjj img {
	width: 437px;
	height: 219px;
}

.about_gsjj p {
	font-family: Arial;
	font-size: 16px;
	font-weight: 300;
	line-height: 36px;
}

.about_bg_pattern_right {
	position: absolute;
	width: 102px;
	height: 319px;
	top: -50px;
	left: auto;
	right: 0px;
	z-index: 2;
}

.about_bg_pattern_left {
	position: absolute;
	width: 165px;
	height: 391px;
	left: 0px;
	bottom: -530px;
	z-index: 3;
}

#aboutCjylBanner .swiper-slide {
	position: relative;
}

.about_banner {
	max-width: 1730px;
	padding-bottom: 120px;
	overflow: hidden;
	position: relative;
}

/* .about_banner_img {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: -1;
} */

.about_banner_mask {
	/* height: 520px; */
	height: 100%;
	align-items: flex-end;
	background-color: red;
}

.about_banner_mask_sub {
	width: 100%;
	height: 84px;
	background-color: rgba(123, 50, 103, 0.8);
	align-items: center;
	justify-content: space-between;
}

.about_banner_mask_sub_text1 {
	margin-left: 20px;
		
	font-family: PingFang SC;
	font-size: 24px;
	font-weight: 600;
	line-height: 36px;
	color: white;
}

.about_banner_mask_sub_text2 {
	margin-right: 20px;
		
	font-family: PingFang SC;
	font-size: 16px;
	font-weight: normal;
	line-height: 36px;
	color: white;
}

.about_banner_control {
	position: relative;
	height: 54px;
	align-items: flex-end;
}

.about_banner_control .swiper-button-prev {
	position: relative;
	width: 28px;
	height: 28px;
	margin-top: 0px;
	top: 0px;
	background-image: url('../images/about_banner_arrow_left.png');
	margin-left: 30px;
	margin-right: 30px;
}

.about_banner_control .swiper-button-prev::after {
	display: none;
}

.about_banner_control .swiper-button-next {
	position: relative;
	width: 28px;
	height: 28px;
	margin-top: 0px;
	top: 0px;
	background-image: url('../images/about_banner_arrow_right.png');
}

.about_banner_control .swiper-button-next::after {
	display: none;
}

.about_banner_control .swiper-scrollbar {
	position: relative;
	width: 240px;
	height: 4px;
	background-color: rgba(125, 50, 103, 0.1);
}

.about_banner_control .swiper-scrollbar-drag {
	background-color: #7B3267;
}

.about_tdjs_bg_pattern_right {
	position: absolute;
	width: 102px;
	height: 319px;
	left: auto;
	right: 0px;
	bottom: 150px;
	z-index: 2;
}

.about_qyzz_bg_pattern_right {
	position: absolute;
	width: 102px;
	height: 319px;
	left: auto;
	right: -190px;
	bottom: -20px;
	z-index: 2;
}

.about_hzhb_bg_pattern_right {
	position: absolute;
	width: 102px;
	height: 319px;
	left: auto;
	right: -190px;
	bottom: -100%;
	z-index: 2;
}

.about_qyzz_banner {
	margin: 0 auto 120px;
	position: relative;
}

.about_qyzz_banner .swiper-button-prev {
	position: absolute;
	width: 80px;
	height: 80px;
	top: 50%;
	left: 0px;
	transform: translate(-50%, -50%);
	background-image: url('../images/about_qyzz_arrow_left.png');
	z-index: 2;
	margin: 0px;
}

.about_qyzz_banner .swiper-button-prev::after {
	display: none;
}

.about_qyzz_banner .swiper-button-next {
	position: absolute;
	width: 80px;
	height: 80px;
	top: 50%;
	right: 0px;
	transform: translate(50%, -50%);
	background-image: url('../images/about_qyzz_arrow_right.png');
	z-index: 2;
	margin: 0px;
}

.about_qyzz_banner .swiper-button-next::after {
	display: none;
}

.about_hzhb {
	margin: 0 auto;
	position: relative;
	border-radius: 20px;
	margin-bottom: 60px;
	
	align-items: center;
	
	box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
}

.about_hzhb_shangbiao {
	flex-wrap: wrap;
	justify-content: flex-start;
    padding: 0px 20px;
}

.about_hzhb_shangbiao img{
	width: 120px;
	height: 120px;
}




/* 产品和服务 */
/* product.html */
.product {
	padding-top: 120px;
	margin: 0 auto;
}

.product_text1 {
	font-family: PingFang SC;
	font-size: 24px;
	font-weight: 600;
	line-height: 32px;
	color: #221817;
	
	height: 60px;
	
	border-bottom: 4px solid #7B3267;
}

.product_text2 {
	font-family: PingFang SC;
	font-size: 16px;
	font-weight: normal;
	line-height: 32px;
	
	border-bottom: 1px solid #EEEEEE;
}

.product_list {
	width: 100%;
}

.product_list_row {
	/* justify-content:space-between; */
	flex-wrap: wrap;
}

.product_list_item {
	justify-content:space-between;
	align-items: center;
	height: 66px;
	margin-right: 40px;
	width: 22%;
}

.product_list_row .product_list_item:nth-child(4n) {
	margin-right: 0px;
}

.product_list_item_text_color_unselect {
	color: #221817;
}

.product_list_item_text_color_select {
	color: #7B3267;
}

.product_list_item_img_unselect {	
	background-image: url('../images/product_arrow_unselect.png');
	background-size: 100% 100%;
	width: 24px;
	height: 24px;
}

.product_list_item_img_select {	
	background-image: url('../images/product_arrow_select.png');
	background-size: 100% 100%;
	width: 24px;
	height: 24px;
}

.product_series {
	padding-top: 60px;
	width: 100%;
	margin: 0 auto 30px;
}

.product_series_row {
	width: 100%;
	justify-content:space-between;
	flex-wrap: wrap;
}
.product_series_row_1{
    justify-content: flex-start;
}
.product_series_row_item {
	margin-right: 20px;
	width: 32%;
	height: 678px;
	position: relative;
	margin-bottom: 20px;
}

.product_series_row .product_series_row_item:nth-child(3n) {
	margin-right: 0px;
}

.product_series_row_item_img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product_series_row_item_mask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
	
	display: none;
}

.product_series_row_item:hover .product_series_row_item_mask {
	display: block;
}

.product_series_row_item_mask_sub {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.product_series_row_item_mask_sub img {
	width: 40px;
	height: 40px;
}

.product_pagination {
	margin: 0 auto 120px;
	justify-content: right;
	align-items: center;
	height: 52px;
}

.product_pagination_number {
	margin-left: 8px;
	width: 32px;
	height: 32px;
	line-height: 32px;
	text-align: center;
}

.product_pagination_word_left {
	margin-left: 8px;
	height: 32px;
	padding-left: 8px;
	padding-right: 8px;
	line-height: 32px;
}

.product_pagination_word_right {
	margin-right: 16px;
	height: 32px;
	padding-left: 8px;
	padding-right: 8px;
	line-height: 32px;
}

.product_pagination_number_unselect {
	font-family: PingFang SC;
	font-size: 14px;
	font-weight: normal;
	color: #221817;
}

.product_pagination_number_select {
	font-family: PingFang SC;
	font-size: 14px;
	font-weight: normal;
	color: #7B3267;
	
	border-radius: 6px;
	border: 1px solid #7B3267;
}

.product_pagination_pre_next_used {
	font-family: PingFang SC;
	font-size: 14px;
	font-weight: normal;
	color: #7B3267;
}

.product_pagination_pre_next_unused {
	font-family: PingFang SC;
	font-size: 14px;
	font-weight: normal;
	color: #C9CDD4;
	
	pointer-events: none;
}




/* 产品详情 */
/* product_detail.html */
.product_detail_location {
	margin: 90px auto 40px;
	justify-content: right;
	align-items: center;
	height: 32px;
}
.product_detail_location div:nth-last-child(1){
    display:none;
}

.product_detail_location img {
	width: 24px;
	height: 24px;
}

.product_detail_location a {
	font-family: PingFang SC;
	font-size: 14px;
	font-weight: normal;
	line-height: 32px;
	color: #221817;
}

.product_detail_location div {
	margin-left: 4px;
	margin-right: 4px;
}

.product_detail {
	margin: 0 auto 70px;
	justify-content: center;
	align-items: center;
}

.product_detail_main_img {
	max-width: 980px;
	width: 100%;
	margin-bottom: 60px;
}

.product_detail_title {
	font-family: PingFang SC;
	font-size: 18px;
	font-weight: normal;
	line-height: 18px;
	color: #221817;
	
	margin-bottom: 20px;
}

.product_detail_category {
	font-family: PingFang SC;
	font-size: 14px;
	font-weight: normal;
	line-height: 32px;
	color: #221817;
	
	padding: 0 16px;
	
	border-radius: 16px;
	border: 1px solid #221817;
	
	margin-bottom: 20px;
}

.product_detail_richtext {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.product_detail_richtext img {
	max-width: 100%;
}

.product_detail_about {
	margin: 0 auto 120px;
}

.product_detail_about_title {
	font-family: PingFang SC;
	font-size: 20px;
	font-weight: 600;
	line-height: 32px;
	color: #221817;
	
	height: 54px;
	
	border-bottom: 1px solid #EEEEEE;
	
	margin-bottom: 60px;
}

.product_detail_about_list {
	width: 100%;
	justify-content: flex-start;
}

.product_detail_about_list_item {
	width: 23%;
	margin-right: 20px;
}

.product_detail_about_list_item img {
	width: 100%;
	height: 100%;
    object-fit: cover;
}

.product_detail_about_list .product_detail_about_list_item:nth-child(4n) {
	margin-right: 0;
}
.pro_data_1 div{
    display: none;
}
.pro_data_1 div:nth-last-child(1){
    display: block;
}



#aboutCjylBanner .swiper-wrapper{
    height: auto;
}
.about_banner .swiper-wrapper{
    height: auto;
}
.about_qyzz_banner .swiper-wrapper{
    height: auto;
}
/* 通用页面 */
/* general_page.html */
.general_page_top {
	position: relative;
}

.general_page_bg_img1 {
	width: 100%;
	height: 100%;
}

.general_page_words {
	position: absolute;
	color: white;
	z-index: 2;
	top: 266px;
	left: 186px;
	/* transform: translate(10%, -50%); */
}

.general_page_words_text1 {
	font-family: PingFang SC;
	font-size: 16px;
	font-weight: 500;
	line-height: 16px;
	margin-bottom: 16px;
}

.general_page_words_text2 {
	font-family: PingFang SC;
	font-size: 36px;
	font-weight: 500;
	line-height: 36px;
}

.general_page {
	margin: 0 auto 50px;
	padding-top: 120px;
}

.general_page_content {
	position: relative;
	width: 100%;
	min-height: 200px;
	margin: 0 auto;
	z-index: 1;
}

.general_page_bg_pattern_left {
	position: absolute;
	width: 165px;
	height: 391px;
	left: 0px;
	bottom: -530px;
	z-index: 0;
}

.general_page_bg_pattern_right {
	position: absolute;
	width: 102px;
	height: 319px;
	left: auto;
	right: -190px;
	bottom: 220px;
	z-index: 2;
}


/* 联系我们 */
/* contactUs.html */
.contact_information {
	margin: 120px auto 60px;
	
	border-bottom: 1px solid #D8D8D8;
	
	align-items: center;
}

.contact_information_text {
	font-family: PingFang SC;
	font-size: 48px;
	font-weight: normal;
	line-height: 48px;
	color: #221817;
	
	margin-bottom: 60px;
}

.contact_information_three {
	width: 100%;
	justify-content:space-between;
	margin-bottom: 60px;
}

.contact_information_three a {
	width: 33.3%;
	padding-right: 80px;
}

.contact_information_three a img {
	width: 120px;
	height: 120px;
	margin-right: 20px;
}

.contact_information_three_text1 {
	font-family: PingFang SC;
	font-size: 24px;
	font-weight: 600;
	line-height: 24px;
	color: #221817;
	margin-bottom: 12px;
}

.contact_information_three_text2 {
	font-family: PingFang SC;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	color: #999999;
}

.contact_map {
	margin: 0 auto 60px;
}

.contact_map img {
	width: 100%;
}

.contact_leaveword {
	margin: 0 auto 70px;
}

.contact_leaveword_text1 {
	font-family: PingFang SC;
	font-size: 36px;
	font-weight: normal;
	line-height: 60px;
	color: #221817;
	
	margin-bottom: 32px;
}

.contact_leaveword_text2 {
	font-family: PingFang SC;
	font-size: 18px;
	font-weight: normal;
	line-height: 18px;
	color: #221817;
	
	margin-bottom: 12px;
}

/* .contact_leaveword_sub2 {
	width: 100%;
	height: 50px;
	border-radius: 6px;
	border: 1px solid #E5E6EB;
	overflow: hidden;
	margin-bottom: 32px;
} */

.contact_leaveword_input {
	height: 22px;
	border: 1px solid #E5E6EB;
	border-radius: 6px;
	padding: 14px 20px;
	margin-bottom: 32px;
	
	font-family: PingFang SC;
	font-size: 18px;
	font-weight: normal;
	line-height: 22px;
}

.contact_leaveword_input::placeholder {
	font-family: PingFang SC;
	font-size: 18px;
	font-weight: normal;
	line-height: 22px;
	color: rgba(0, 0, 0, 0.25);
}

.contact_leaveword textarea {
	min-height: 112px;
	border: 1px solid #E5E6EB;
	border-radius: 6px;
	padding: 12px;
	margin-bottom: 32px;
	
	font-family: PingFang SC;
	font-size: 18px;
	font-weight: normal;
	line-height: 22px;
}

.contact_leaveword textarea::placeholder {
	font-family: PingFang SC;
	font-size: 18px;
	font-weight: normal;
	line-height: 22px;
	color: rgba(0, 0, 0, 0.25);
}

.contact_leaveword_input2 {
	font-family: PingFang SC;
	font-size: 18px;
	font-weight: normal;
	line-height: 22px;
	border: none;
	margin-right: 20px;
}

.contact_leaveword_sub {
	justify-content:space-between;
}

.contact_leaveword_sub_sub {
	align-items: center; 
}

.contact_leaveword_sub_sub img {
	width: 150px;
	height: 50px;
}

.contact_leaveword_sub_sub_sub {
	align-items: center;
	border-radius: 6px;
	border: 1px solid #E5E6EB;
	
	width: 400px;
	height: 50px;
	
	margin-right: 10px;
}

.contact_leaveword_sub_sub_sub span {
	font-family: PingFang SC;
	font-size: 18px;
	font-weight: normal;
	line-height: 22px;
	color: #221817;
	padding: 0 20px;
}

.contact_leaveword_sub_sub2 {
	align-items: center;
}

.contact_leaveword_sub_sub2_btn1 {
	width: 72px;
	height: 50px;
		
	background: #7B3267;
	border-radius: 8px;
	border: none;
	
	margin-right: 10px;
}

.contact_leaveword_sub_sub2_btn1_text {
	font-family: PingFang SC;
	font-size: 16px;
	font-weight: normal;
	line-height: 24px;
	color: #FFFFFF;
}

.contact_leaveword_sub_sub2_btn2 {
	width: 72px;
	height: 50px;
		
	background: #FFFFFF;
	border-radius: 8px;
	border: 1px solid rgba(0, 0, 0, 0.15);
}

.contact_leaveword_sub_sub2_btn2_text {
	font-family: PingFang SC;
	font-size: 16px;
	font-weight: normal;
	line-height: 24px;
	color: rgba(0, 0, 0, 0.88);
}




/* 侧边栏 （300 - 767展示） */
.sidebar_top {
	width: 100%;
	margin: 0 auto;
	display: none;
	height: 70px;
	position: fixed;
	background-color: white;
	top: 0px;
	z-index: 5;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.sidebar_top_logog {

}

.sidebar_top_btn {
	width: 24px;
	height: 24px;
	margin-right: 15px;
}

.sidebar {
	display: none;
	position: fixed;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 11;
	width: 100vw;
	height: 100vh;
	
	transition: transform 0.3s ease-in-out;
	transform: translateX(100%);
}

.sidebar_close {
	width: 48px;
	height: 48px;
}

.sidebar_menu {
	width: 80%;
	height: 100%;
	background-color: white;
	margin-left: 20%;
}

.sidebar_menu_text {
	font-weight: 500;
	font-size: 24px;
	line-height: 48px;
	color: #221817;
	text-align: center;
	
	border-bottom: 1px solid #EEEEEE;
}

.sidebar_menu_sub {
	margin: 15px 15px 0px;
	border-bottom: 1px solid #EEEEEE;
	padding-bottom: 10px;
}

.sidebar_menu_sub_text {
	font-weight: 400;
	font-size: 18px;
	line-height: 24px;
	color: #221817;
}

.sidebar_menu_sub_sub {
	margin: 15px 15px 10px;
}

.sidebar_menu_sub_sub_text {
	font-weight: 400;
	font-size: 14px;
	line-height: 30px;
	color: #221817;
}
.y_page ul{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
}
.y_page ul li a{
    margin-right: 6px;
    min-width: 30px;
    width: auto;
    padding: 0px 10px;
    height: 30px;
    font-size: 16px;
    line-height: 30px;
    box-sizing: border-box;
    display: block;
    color: #3f3f3f;
    border: 1px solid #b5b5b5;
    text-align: center;
    border-radius: 5px;
}
.y_page ul li span{
    margin-right: 6px;
    min-width: 30px;
    width: auto;
    padding: 0px 10px;
    height: 30px;
    font-size: 16px;
    line-height: 30px;
    box-sizing: border-box;
    display: block;
    color: #3f3f3f;
    border: 1px solid #b5b5b5;
    text-align: center;
    border-radius: 5px;
}
.y_page ul li::marker{
    font-size: 0;
}
.y_page ul .active a{
    background: #c7000b;
    border: 1px solid #c7000b;
    color: #fff;
}

.head_8{
    position: relative;
    height: 100%;
    align-items: center;
    cursor: pointer;
}
.head_10{
    width: 20px;
    height: 20px;
}
.head_10 img{
    width: 100%;
    object-fit: contain;
}
.head_11{
    margin-left: 5px;
}
.head_12{
    position: absolute;
    background: #fff;
    box-shadow: 0 0 10px 1px #eee;
    padding: 0px 10px;
    left: 50%;
    top: 100%;
    width: 80px;
    transition: ease 0.6s all;
    transform: translate(-50%,0%) scale(0);
}
.head_12_1{
    height: 30px;
}
.head_13{
    width: 20px;
    margin-right: 5px;
}
.head_13 img{
    width: 100%;
    object-fit: contain;
}
.head_14{

}
.head_15{
    width: 36px;
    height: 36px;
    margin-left: 40px;
}
.head_15 img{
    width: 100%;
    object-fit: contain;
}
.head_8:hover .head_12{
    transition: ease 0.6s all;
    transform: translate(-50%,0%) scale(1);
}

.xg_1{
    padding-left:190px;
}


/* 响应式设置 */
@media (max-width: 1660px) {
	.max_width_1920 {
		max-width: 1660px;
	}
	
	.max_width_1540 {
		max-width: 1380px;
	}
	
	.left_margin_190 {
		margin-left: 140px;
	}
	
	.right_margin_190 {
		margin-right: 140px;
	}
	
	.margin_right_80 {
	    margin-right: 60px;
	}
	
	.margin_right_123 {
		margin-right: 103px;
	}
	
	.index_products_banner {
		margin-left: 30px;
		width: 1000px;
	}
	
	.product_series_row_item {
		height: 608px;
	}
}

@media (max-width: 1440px) {
	.max_width_1920 {
		max-width: 1440px;
	}
	
	.max_width_1540 {
		max-width: 1200px;
	}
	
	.left_margin_190 {
		margin-left: 120px;
	}
	
	.right_margin_190 {
		margin-right: 120px;
	}
	
	.index_about_left {
		padding-left: 120px;
		padding-right: 60px;
	}
	
	.index_about_right_bg {
		width: 720px;
		height: 518px;
	}
	
	.margin_right_80 {
	    margin-right: 40px;
	}
	
	.margin_right_123 {
		margin-right: 83px;
	}
	
	.bottom_text1 {
		font-size: 16px;
		line-height: 32px;
	}
	
	.bottom_text2 {
		font-size: 18px;
	}
	
	.index_coreAdvantages_four_block_img {
		height: 138px;
	}
	
	.about_bg_pattern_left {
		width: 115px;
		height: 272px;
	}
	
	.about_qyzz_bg_pattern_right {
		width: 80px;
		height: 250px;
		right: -120px;
	}
	
	.about_tdjs_bg_pattern_right {
		width: 80px;
		height: 250px;
	}
	
	.about_hzhb_bg_pattern_right {
		width: 80px;
		height: 250px;
		right: -120px;
	}
	
	.general_page_bg_pattern_left {
		width: 115px;
		height: 272px;
	}
	
	.product_series_row_item {
		height: 528px;
	}
}

@media (max-width: 1200px) {
	.max_width_1920 {
		max-width: 1200px;
	}
	
	.max_width_1540 {
		max-width: 1000px;
	}
	
	.left_margin_190 {
		margin-left: 100px;
	}
	
	.right_margin_190 {
		margin-right: 100px;
	}
	
	.index_about_left {
		padding-left: 100px;
		padding-right: 60px;
	}
	
	.index_about_right_bg {
		width: 550px;
		height: 396px;
	}
	
	.margin_right_80 {
	    margin-right: 20px;
	}
	
	.margin_right_123 {
		margin-right: 43px;
	}
	
	.bottom_text1 {
		font-size: 16px;
		line-height: 32px;
	}
	
	.bottom_text2 {
		font-size: 18px;
	}
	
	.index_coreAdvantages_four_block_img {
		height: 130px;
	}
	
	.about_bg_pattern_left {
		width: 85px;
		height: 201px;
	}
	
	.about_qyzz_bg_pattern_right {
		width: 80px;
		height: 250px;
		right: -120px;
	}
	
	.about_tdjs_bg_pattern_right {
		width: 80px;
		height: 250px;
	}
	
	.about_hzhb_bg_pattern_right {
		width: 80px;
		height: 250px;
		right: -120px;
	}
	
	.general_page_bg_pattern_left {
		width: 85px;
		height: 201px;
	}
	
	.index_about_left_block img {
		width: 40px;
		height: 40px;
	}
	
	.index_about_left_block_text1 {
		font-weight: bold;
		font-size: 28px;
	}
	
	.index_about_left_block_text2 {
		font-size: 14px;
		line-height: 18px;
	}
	
	.index_about_left_block_text3 {
		font-size: 14px;
	}
	
	.margin_right_60 {
	    margin-right: 30px;
	}
	
	#indexBanner2 .swiper-slide {
		height: 531px;
	}
	
	.index_products_banner {
		margin-left: 30px;
		width: 800px;
	}
	
	#indexBanner2 .swiper-button-prev {
		left: 0px;
	}
	
	#indexBanner2 .swiper-button-next {
		left: 80px;
	}
	
	.contact_information_three a {
		width: 33.3%;
		padding-right: 40px;
	}
	
	.contact_information_three a img {
		width: 80px;
		height: 80px;
		margin-right: 10px;
	}
	
	.product_series_row_item {
		height: 440px;
	}
}

@media (max-width: 780px) {
	.max_width_1920 {
		max-width: 780px;
	}
	
	.max_width_1540 {
		max-width: 760px;
	}
	
	.left_margin_190 {
		margin-left: 20px;
	}
	
	.right_margin_190 {
		margin-right: 20px;
	}
	
	.index_about_left {
		padding-left: 20px;
		padding-right: 20px;
		align-items: center;
	}
	
	.index_about_right_bg {
		width: 100%;
		height: auto;
	}
	
	.margin_right_80 {
	    margin-right: 20px;
	}
	
	.margin_right_123 {
		margin-right: 0px;
	}
	
	.bottom_text1 {
		font-size: 16px;
		line-height: 32px;
	}
	
	.bottom_text2 {
		font-size: 18px;
	}
	
	.index_coreAdvantages {
		padding-top: 60px;
	}
	
	.index_coreAdvantages_four_block_img {
		margin-top: 20px;
		height: 99px;
	}
	
	.about_bg_pattern_left {
		width: 85px;
		height: 201px;
		z-index: 0;
	}
	
	.about_qyzz_bg_pattern_right {
		width: 80px;
		height: 250px;
		right: -120px;
	}
	
	.about_tdjs_bg_pattern_right {
		width: 80px;
		height: 250px;
	}
	
	.about_hzhb_bg_pattern_right {
		width: 80px;
		height: 250px;
		right: -120px;
	}
	
	.general_page_bg_pattern_left {
		width: 85px;
		height: 201px;
	}
	
	.index_about_left_block img {
		width: 40px;
		height: 40px;
	}
	
	.index_about_left_block_text1 {
		font-weight: bold;
		font-size: 28px;
	}
	
	.index_about_left_block_text2 {
		font-size: 14px;
		line-height: 18px;
	}
	
	.index_about_left_block_text3 {
		font-size: 14px;
	}
	
	.margin_right_60 {
	    margin-right: 15px;
	}
	
	#indexBanner2 .swiper-slide {
		height: 531px;
	}
	
	.index_products_banner {
		margin-left: 30px;
		width: 550px;
	}
	
	#indexBanner2 .swiper-button-prev {
		left: 0px;
	}
	
	#indexBanner2 .swiper-button-next {
		left: 80px;
	}
	
	.index_bg_pattern_left {
		width: 100px;
		height: 240px;
	}
	
	#indexBanner1 .swiper-button-prev {
		left: 30%;
		bottom: 20px;
	}
	
	#indexBanner1 .swiper-button-next {
		left: 70%;
		bottom: 20px;
	}
	
	#indexBanner1 .swiper-scrollbar {
		bottom: 30px;
	}
	
	.index_about {
		flex-direction: column;
		padding-top: 60px;
	}
	
	.index_about_left_block {
		margin-right: 30px;
		width: 170px;
	}
	
	.index_about_left_block:nth-child(2n) {
		margin-right: 0px;
	}
	
	.index_about_left_block_more {
		margin-top: 30px;
		margin-bottom: 30px;
	}
	
	.index_coreAdvantages_four_block_text1 {
		font-size: 18px;
		line-height: 30px;
		margin-top: 30px;
		height: 60px;
	}
	
	.index_coreAdvantages_four_block_text2 {
		font-size: 13px;
		line-height: 25px;
		height: 100px;
	}
	
	.index_coreAdvantages_four_block_detail {
		margin: 20px auto 0px;
	}
	
	.index_products {
		margin: 0 auto 40px;
		padding-top: 60px;
	}
	
	.margin_top_60 {
		margin-top: 30px;
	}
	
	.index_products_banner_text {
		bottom: 154px;
		font-size: 24px;
	}
	
	.bottom {
		flex-wrap: wrap;
	}
	
	.bottom_address {
		margin-top: 20px;
		align-items: center;
	}
	
	.about_top_words {
		top: 150px;
		left: 50px;
	}
	
	.about_gsjj {
		margin: 0 auto 30px;
		padding-top: 60px;
	}
	
	.about_gsjj img {
		width: 219px;
		height: 110px;
	}
	
	.about_gsjj_text1 {
		font-size: 36px;
		line-height: 36px;
	}
	
	.about_gsjj_text2 {
		font-size: 60px;
		line-height: 60px;
	}
	
	.margin_right_45 {
	    margin-right: 25px;
	}
	
	.about_qyzz_banner {
		margin: 0 auto 60px;
	}
	
	.contact_information {
		margin: 60px auto 30px;
	}
	
	.contact_information_three {
		flex-direction: column;
		align-items: center;
		margin-bottom: 30px;
	}
	
	.contact_information_three a {
		width: 80%;
		padding-right: 0px;
		margin-bottom: 20px;
	}
	
	.contact_information_three a img {
		width: 80px;
		height: 80px;
		margin-right: 15px;
	}
	
	.product_list_item {
		justify-content:space-between;
		align-items: center;
		height: 66px;
		margin-right: 20px;
		width: 23%;
	}
	
	.product {
		padding-top: 60px;
	}
	
	.product_pagination {
		margin: 0 auto 60px;
	}
	
	.product_series_row_item {
		width: 31.5%;
		height: 330px;
	}
	
	.product_detail_location {
		margin: 45px auto 20px;
		justify-content: right;
		align-items: center;
		height: 32px;
	}
	
	.product_detail {
		margin: 0 auto 45px;
	}
	
	.product_detail_about {
		margin: 0 auto 60px;
	}
	
	.general_page_bg_img1 {
		height: 352px;
	}
	
	.general_page_words {
		top: 150px;
		left: 50px;
	}
}

@media only screen and (min-width: 300px) and (max-width: 767px) {
	.max_width_1920 {
		max-width: 767px;
	}
	
	.max_width_1540 {
		max-width: 737px;
	}
	
	.left_margin_190 {
		margin-left: 15px;
	}
	
	.right_margin_190 {
		margin-right: 15px;
	}
	
	.top {
		display: none;
	}
	
	.index_about_left {
		padding-left: 15px;
		padding-right: 15px;
		align-items: center;
	}
	
	.index_about_right_bg {
		width: 100%;
		height: auto;
	}
	
	.margin_right_80 {
	    margin-right: 15px;
	}
	
	.margin_right_123 {
		margin-right: 0px;
	}
	
	.bottom_text1 {
		font-size: 16px;
		line-height: 32px;
	}
	
	.bottom_text2 {
		font-size: 18px;
	}
	
	.index_coreAdvantages {
		padding-top: 20px;
	}
	
	.index_coreAdvantages_four_block_img {
		margin-top: 20px;
		/*height: 100%;*/
        height: auto;
        object-fit: contain;
	}
	
	.about_bg_pattern_left {
		display: none;
	}
	
	.about_qyzz_bg_pattern_right {
		width: 80px;
		height: 250px;
		right: -120px;
	}
	
	.about_tdjs_bg_pattern_right {
		width: 80px;
		height: 250px;
	}
	
	.about_hzhb_bg_pattern_right {
		display: none;
	}
	
	.general_page_bg_pattern_left {
		width: 85px;
		height: 201px;
	}
	
	.index_about_left_block img {
		width: 40px;
		height: 40px;
	}
	
	.index_about_left_block_text1 {
		font-weight: bold;
		font-size: 28px;
	}
	
	.index_about_left_block_text2 {
		font-size: 14px;
		line-height: 18px;
	}
	
	.index_about_left_block_text3 {
		font-size: 14px;
	}
	
	.margin_right_60 {
	    margin-right: 15px;
	}
	
	#indexBanner2 .swiper-slide {
		height: 531px;
	}
	
	.index_products_banner {
		margin-left: 0px;
		width: 100%;
	}
	
	#indexBanner2 .swiper-button-prev {
		display: none;
	}
	
	#indexBanner2 .swiper-button-next {
		display: none;
	}
	
	.index_bg_pattern_left {
		width: 100px;
		height: 240px;
		display: none;
	}
	
	#indexBanner1 .swiper-button-prev {
		left: 30%;
		bottom: 20px;
	}
	
	#indexBanner1 .swiper-button-next {
		left: 70%;
		bottom: 20px;
	}
	
	#indexBanner1 .swiper-scrollbar {
		bottom: 30px;
	}
	
	.index_about {
		flex-direction: column;
		padding-top: 20px;
	}
	
	.index_about_left_block {
		margin-right: 15px;
	}
	
	.index_about_left_block:nth-child(2n) {
		margin-right: 0px;
	}
	
	.index_about_left_block_more {
		margin-top: 30px;
		margin-bottom: 30px;
	}
	
	.index_coreAdvantages_four_block {
		width: auto;
		margin: 0px 15px 15px;
	}
	
	.index_coreAdvantages_four_block_text1 {
		font-size: 18px;
		line-height: 30px;
		margin-top: 15px;
		height: 30px;
	}
	
	.index_coreAdvantages_four_block_text2 {
		font-size: 13px;
		line-height: 25px;
		height: auto;
	}
	
	.index_coreAdvantages_four_block_detail {
		margin: 15px auto 0px;
		width: 84px;
        height: 30px;
	}
	
	.index_products {
		margin: 0 auto 20px;
		padding-top: 20px;
	}
	
	.margin_top_60 {
		margin-top: 20px;
	}
	
	.index_products_banner_text {
		bottom: 154px;
		font-size: 24px;
	}
	
	.bottom {
		display: none;
	}
	
	.bottom_address {
		margin-top: 20px;
		align-items: center;
	}
	
	.about_top {
		margin-top: 70px;
	}
	
	.about_top_words {
		top: 20%;
		left: 10%;
	}
	
	.about_top_words_text2 {
		font-size: 24px;
		font-weight: 500;
		line-height: 24px;
	}
	
	.about_gsjj {
		margin: 0 auto 30px;
		padding-top: 20px;
		flex-direction: column;
		align-items: center;
	}
	
	.about_gsjj img {
		width: 219px;
		height: 110px;
		margin-bottom: 15px;
	}
	
	.about_gsjj p {
		margin: 0px 15px;
	}
	
	.about_gsjj_text1 {
		font-size: 36px;
		line-height: 36px;
		text-align: center;
	}
	
	.about_gsjj_text2 {
		font-size: 60px;
		line-height: 60px;
		text-align: center;
	}
	
	.margin_right_45 {
	    margin-right: 25px;
	}
	
	.about_qyzz_banner {
		margin: 0 15px 30px;
	}
	
	.contact_information {
		margin: 60px auto 30px;
	}
	
	.contact_information_three {
		flex-direction: column;
		align-items: center;
		margin-bottom: 30px;
	}
	
	.contact_information_three a {
		width: 80%;
		padding-right: 0px;
		margin-bottom: 20px;
	}
	
	.contact_information_three a img {
		width: 80px;
		height: 80px;
		margin-right: 15px;
	}
	
	.product_list_row {
		margin: 0px 15px;
	}
	
	.product_list_item {
		height: 44px;
		margin-right: 15px;
		width: 30%;
	}
	
	.product_list_row .product_list_item:nth-child(4n) {
		margin-right: 15px;
	}
	
	.product_list_row .product_list_item:nth-child(3n) {
		margin-right: 0px;
	}
	
	.product_text2 {
		font-size: 13px;
		font-weight: normal;
		line-height: 26px;
		
		border-bottom: 1px solid #EEEEEE;
	}
	
	.product {
		padding-top: 20px;
	}
	
	.product_pagination {
		margin: 0 auto 30px;
	}
	
	.product_detail_location {
		margin: 20px 15px;
		justify-content: right;
		align-items: center;
		height: 32px;
	}
	
	.product_detail {
		margin: 0 auto 25px;
	}
	
	.product_detail_about {
		margin: 0 15px 20px;
	}
	
	.general_page_bg_img1 {
		height: 352px;
	}
	
	.general_page_words {
		top: 150px;
		left: 50px;
	}
	
	.sidebar_top {
		display: flex;
	}
	
	.sidebar {
		display: flex;
	}
	
	.index_about_left_text3 {
		margin-top: 20px;
	}
	
	.index_bg_pattern_right {
		display: none;
	}
	
	.index_coreAdvantages_four {
		margin-top: 20px;
		flex-direction: column;
	}
	
	.index_products_list_all {
		display: none;
	}
	
	.index_products_list_banner {
		flex-direction: column;
	}
	
	.index_products_list_sub_text {
		width: auto;
		line-height: 66px;
		margin-right: 15px;
	}
	
	.index_products_list_sub_text:nth-child(10n) {
		margin-right: 0px;
	}
	
	.index_products_list_small {
		margin: 0px 15px;
		overflow-x: scroll;
		display: -webkit-box;
	}
	
	.about_bg_img2 {
		height: 100%;
	}
	
	.about_bg_pattern_right {
		display: none;
	}
	
	.about_banner {
		padding-bottom: 60px;
		margin-left: 0px;
	}
	
	.about_banner_control .swiper-scrollbar {
		left: 15px;
	}
	
	..about_banner_mask {
		display: none;
	}
	
	.about_qyzz_banner .swiper-button-prev {
		display: none;
	}
	
	.about_qyzz_banner .swiper-button-next {
		display: none;
	}
	
	.about_hzhb {
		margin: 0 15px;
		margin-bottom: 30px;
	}
	
	.about_hzhb_shangbiao img{
		width: 100px;
		height: 100px;
	}
	
	.product_text1 {
		padding-left: 15px;
	}
	
	.product_series {
		padding-top: 30px;
	}
	
	.product_series_row {
		width: auto;
		margin: 0px 15px;
	}
	
	.product_series_row_item {
		width: 47%;
		height: 240px;
		/* height: 100%; */
	}
	
	.product_series_row .product_series_row_item:nth-child(3n) {
		margin-right: 15px;
	}
	
	.product_series_row .product_series_row_item:nth-child(2n) {
		margin-right: 0px;
	}
	
	.product_detail_main_img {
		max-width: 767px;
		width: 100%;
		margin-bottom: 30px;
	}
	
	.product_detail_title {
		margin: 0px 15px 20px;
	}
	
	.product_detail_richtext {
		width: auto;
		margin: 0px 15px;
	}
	
	.product_detail_about_title {
		margin-bottom: 30px;
	}
	
	.contact_leaveword {
		margin: 0 auto 60px;
	}
	
	.contact_leaveword_text1 {
		margin: 0px 15px 32px;
	}
	
	.contact_leaveword_text2 {
		margin: 0px 15px 12px;
	}
	
	.contact_leaveword_input {
		margin: 0px 15px 32px;
	}
	
	.contact_leaveword textarea {
		margin: 0px 15px 32px;
	}
	
	.contact_leaveword_sub {
		flex-direction: column;
		margin: 0px 15px;
	}
	
	.contact_leaveword_sub_sub {
		/* margin: 0px 15px 15px; */
		margin-bottom: 15px;
		flex-direction: column;
	}
	
	.contact_leaveword_sub_sub2 {
		justify-content: center;
	}
	
	.contact_leaveword_sub_sub_sub {
		width: 100%;
		margin-right: 0px;
		margin-bottom: 10px;
		/* height: 50px;
		align-items: center; */
	}
	
	.contact_leaveword_sub_sub_sub span {
		font-size: 14px;
		line-height: 18px;
		padding: 0 10px;
		width: 62px;
	}
	
	.copyright {
		font-size: 12px;
	}
	
	.general_page {
		margin: 0 auto 20px;
		padding-top: 30px;
	}
	
	.general_page_bg_pattern_left {
		display: none;
	}
	.xg_1{
	    padding-left: 0px;
	}
	.swiper-slide img{
	    height: auto;
	}
	.index_products_banner_button{
	    bottom: 20px;
        width: 188px;
        height: 40px;
	}
	.index_products_banner_text{
	   bottom: 84px;
	}
	.y_xg_img{
	   width: 143px;
        height: 100%;
        margin-left: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    	.y_xg_img img{
	    width: 143px;
	    object-fit: contain;
	}
	.about_top_words{
	    top: 50%;
        left: 50%;
        width: 100%;
        text-align: center;
        transform: translate(-50%,-50%);
	}
	.general_page_content {
	    padding: 10px;
	}
	.product_series_row .product_series_row_item:nth-child(3n){
	   margin-right: 20px;
	}
	.product_series_row .product_series_row_item:nth-child(2n){
	   margin-right: 0px;
	}
	.product_detail_about_list {
	    flex-wrap:wrap;
	}
	.product_detail_about_list_item{
	   width: 49%;
        margin-right: 2%;
        height: 240px;
        margin-bottom: 10px;
	}
	.product_detail_about_list .product_detail_about_list_item:nth-child(2n){
		 margin-right: 0%;    
	}
	.sidebar_menu{
	   height: 100vh;
        overflow: scroll;
	}
	.sidebar{
	    top:0px;
	}
    .index_about_left_text2{
        font-size: 30px;
    }
    .about_gsjj_text2{
        font-size: 34px;
        line-height: 34px;
    }
    .contact_information_text{
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 20px
    }
    .index_products_banner_text{
        font-size: 20px;
    }
    .index_about_left_block_text1{
        font-size: 20px;
    }
    .index_about_left_text3 p span{
        font-size: 14px !important;
    }
	}

}