/* 尺寸基于窗口view尺寸计算 默认宽度1920px 
1vh = 1% * 视口高度。 1vw = 1% * 视窗宽度 
即使 1vw = 19.2px 
*/
:root{
	--font_family: "Source Han Sans", "SimHei", "Source Han Serif","PingFang SC"

	--fs-h1: 3.125vw; /* 60px */
	--fs-h2: 2.39583vw; /* 45px */
	--fs-h3: 1.5625vw; /* 30px */
	--fs-h4: 1.0416vw; /* 20px */

	--fs-normal: 0.9375vw; /* 18px */


}


.text-indent2{
    text-indent: 2em;
}

body{
    background-color: white;
    width: 100vw;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
}
#zlxz{
	padding-top: 80px;
}
.AllPartTitle{
    font-size:2.39583vw;
    color: #27322A;
    font-weight: bold;
	
}

.AllPartTitleTip{
    font-size:1.0416vw;
    color: #C9062C;
    text-decoration: none;
}

.textAlignLeft{
    text-align: left;
}

/* 所有part padding默认设置 */
.paddingBody{ 
    padding-top:5.9375vw;
    padding-left: 10.9375vw;
    padding-right: 10.9375vw;
}
.marginBody{ 
    margin-top: 10.9375vw;
    margin-left: 10.9375vw;
    margin-right: 10.9375vw;
}
.paddLRBody{
    padding-left: 10.9375vw;
    padding-right: 10.9375vw;
}
.indexNewspaddingBody{ 
    padding-top: 4.0104vw;
    padding-left: 10.9375vw;
    padding-right: 10.9375vw;
}
.marginTop{
    padding-top: 10.9375vw;
}
.flex-row {
    display: flex;
    flex-direction: row;
}
.flex{
    display: flex;
}
.justify-center{
    justify-content: center;
}
.align-center{
    align-items: center;
};
.justify-between{
    justify-content: space-between;
}
.relative {
    position: relative;
}
.absolute{
    position: absolute;
}
.flex-col {
    display: flex;
    flex-direction: column;
}
.justify-start {
    justify-content: flex-start;
}
.items-center {
    align-items: center;
}
.mouseDefault{
    cursor: default;
}
.mousePointer{
    cursor: pointer;
}
.textNoline{
    text-decoration: none;
}
.position-relative{
    position: relative;
}
.position-absolute{
    position: absolute;
}

/* 白色无框按钮查看更多 */
.capsule-btn-no-boder{
    position: absolute;
    height: 3.2201vw;
    width: 8.875vw;
    background: transparent !important; /* 强制背景透明 */;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    cursor: pointer;
    overflow: hidden;
    left: 0.8541vw;
    bottom: 0.6041vw;
}

.no-boder-red-arrow-circle {
    width: 1.5625vw;
    height: 1.5625vw;
    border: 1px solid #C9062C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    position: relative;
    z-index: 2;
    margin-left: 1.0416vw;
}
.no-boder-red-arrow {
    width: 0.4166vw;
    height: 0.4166vw;
    border-right: 2px solid #C9062C;
    border-top: 2px solid #C9062C;
    transform: rotate(45deg);
    margin-top: -2px;
    transition: transform 0.3s;
    z-index: 5;
}

/* 白色查看更多按钮 */
.capsule-btn {
    width: 11.875vw;
    height: 3.2201vw;
    border: 1px solid white;
    border-radius: 3.2201vw; /* 高度的一半实现胶囊形状 */
    background: transparent !important; /* 强制背景透明 */;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.302vw;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s; /* 添加边框颜色过渡 */
	transition: all 0.4s;
}

.capsule-btn:hover {
    background-color: #C9062C !important; /* 背景变为红色 */
    border: 1px solid #C9062C;
}
/* 新增背景层容器 */
.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 31px;
    background: #C9062C;
    opacity: 0;
    z-index: 1;
}
  
.text {
    color: white;
    font-family: Arial, sans-serif;
    font-size: 0.9375vw;
    transition: transform 0.3s;
    position: relative; /* 确保文字层级 */
    z-index: 2;
    text-decoration: none;
    padding-right: 3.6458vw;
}

.arrow-circle {
    width: 1.5625vw;
    height: 1.5625vw;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    position: relative;
    z-index: 2;
}
  
.arrow {
    width: 0.4166vw;
    height: 0.4166vw;
    border-right: 1px solid white;
    border-top: 1px solid white;
    transform: rotate(45deg);
    margin-top: -1px;
    transition: transform 0.3s;
}
  
/* 颜色渐变层 */
.capsule-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #C9062C;
    opacity: 0;
    transition: opacity 0.4s;
}

/* 红色查看更多按钮 */
.red-capsule-btn {
    width: 11.875vw;
    height: 3.2201vw;
    border: 1px solid #C9062C;
    border-radius: 3.2201vw; /* 高度的一半实现胶囊形状 */
    background: transparent !important; /* 强制背景透明 */;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.302vw;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s; /* 添加边框颜色过渡 */
	transition: all 0.4s;
}

/* 新增背景层容器 */
.red-color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 31px;
    background: #C9062C;
    opacity: 0;
    z-index: 1;
}

.red-text {
    color: #C9062C;
    font-family: Arial, sans-serif;
    font-size: 0.9375vw;
    transition: transform 0.3s;
    position: relative; /* 确保文字层级 */
    z-index: 2;
    text-decoration: none;
}



.red-arrow-circle {
    width: 1.5625vw;
    height: 1.5625vw;
    border: 1px solid #C9062C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    position: relative;
    z-index: 2;
}


  
.red-arrow {
    width: 0.4166vw;
    height: 0.4166vw;
    border-right: 1px solid #C9062C;
    border-top: 1px solid #C9062C;
    transform: rotate(45deg);
    margin-top: -1px;
    transition: transform 0.3s;
}

.icon-xie{
    background: url('../images/product_img/questionNoSelIcon.png') center/cover;
    width:1.1979vw;height:1.1979vw;
}

.red-capsule-btn:hover {
    background-color: #C9062C !important; /* 背景变为红色 */
}

.red-capsule-btn:hover .red-text {
    color: white !important; /* 文字变为白色 */
}

.red-capsule-btn:hover .red-arrow {
    border-color: white !important; /* 图标边框变为白色 */
}

.red-capsule-btn:hover .red-arrow-circle {
    border-color: white !important; /* 图标外圈边框变为白色 */
}
.red-capsule-btn:hover .icon-xie{
    background: url('../images/product_img/questionIcon.png') center/cover;
    width:1.1979vw;height:1.1979vw;
}


  
/* 颜色渐变层 */
.red-capsule-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #C9062C;
    opacity: 0;
    transition: opacity 0.4s;
}

/*分页 begin*/
.pagination li {margin:0 5px;font-size:14px;border:none;border-radius:4px;}
.pagination li a {border-radius:4px;color:#2d292a;background:#fff;padding:12px  16px;}
/* .pagination li i {font-weight:bold;font-size:18px;padding:0 3px} */
.pagination li.active a,.pagination li a:hover {background:#cd0e32;color:#fff; }
/*分页 end*/
a {
  text-decoration: none;
  color: #bbb;
}


 /* 鼠标悬停时显示二级菜单 */


/* 保持下拉菜单项的悬停效果 */
.navbar .dropdown-menu .dropdown-item:hover {
    background-color: #f8f9fa; /* 可以根据需要修改背景颜色 */
}

/* 使下拉菜单相对于父级 nav-item 定位 */
.navbar-nav .nav-item {
    padding-top: 1.09375vw;
    padding-bottom: 1.09375vw;
    
}


/* 使下拉菜单相对于父级 nav-item 定位 */
.navbar-nav .nav-item.dropdown {
            position: relative;
}
    
/* 水平居中下拉菜单 */
.navbar-nav .dropdown-menu {
            left: 50%;
            transform: translateX(-50%);
            top: 100%; /* 确保出现在一级菜单下方 */
            white-space: nowrap;
           /* min-width: max-content;*/
}
 @media (max-width: 992px) {
    .navbar-nav .dropdown-menu {
        left: 0;
        transform: none;
        width: 100%;
    }
}
/* 响应式下拉菜单项 */
.dropdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.5rem 1rem;
    height: auto;
    min-height: 2.3958vw;
    white-space: normal;
}

/* 在小屏幕上调整字体大小和内边距 */
@media (max-width: 768px) {
    .dropdown-item {
        font-size: 0.875rem; /* 更小字体适合移动端 */
        padding: 0.4rem 0.8rem;
    }

    .dropdown-menu {
        min-width: 100%;
        width: 100%;
    }

}

/* 大屏优化 */
@media screen and (min-width: 992px) {
    .dropdown-item {
        flex-direction: row;
        justify-content: flex-start;
		font-size: 0.9375vw;
    }
}





/* 鼠标悬停时放大图片 */
.fiveLine-hover-effect {
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.fiveLine-hover-effect:hover {
    transform: scale(1.1); /* 放大到 1.1 倍 */
    z-index: 1; /* 确保在其他元素之上 */
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.capsule-btn:hover {
    background-color: #C9062C; /* 背景色变为 #C9062C */
    color: white; /* 字体颜色变为白色 */
}

@media (max-width: 768px){
 
.row-cols-1>* {
        flex: 0 0 auto;
        width: 30%;
    }

.p_text{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.5625vw;
}

}

@media  screen and (max-width:992px){
    .fixed-top{
        position: fixed !important;
        background: white;
        top: 0 !important;
        padding: 8px 0;
    }
    .phone_navbar{
        flex-direction: row !important;
        justify-content: space-between !important;
        /* padding-right: 30px; */

    }
    #swiper1{
        margin-top: 4rem !important;
		
    }
	
   
    /* .phone_nav{
        display: none !important;
    } */
    .custom-navbar {
        width:100% !important;

    }
    .nav-item {
		padding:0 !important;
		margin: 0 !important;
		padding-left: 24px !important;
		padding-right: 24px !important;
		min-height: 52px !important;
    }
    .navbar-collapse{
        /* display: none !important; */
        /* margin-top: 20px !important; */
        position: fixed !important;
        top: 4rem !important;
        left: 0 !important;
        width: 100% !important;
		padding-bottom: 50px;

    }
    .nav-link {
        font-size: 14px !important;
        border-bottom: 0.5px solid #5555;
		margin: 0 !important;
		justify-content: flex-start;
		margin: 0 !important;
		padding: 0 !important;
		display: flex !important;
		align-items: center !important;
		width: 100% !important;
		height: 52px !important;
    }
	.navbar-brand_phone{
		display: block !important;
	}
	.navbar-brand{
		display: none !important;
		/* position: absolute !important;
		top: -40px !important;
		left: 0px !important; */
	}
	.navbar-nav {
	    padding-left: 12px !important;
	    padding-right: 12px !important;
	}
	.navbar-nav .nav-link.active, .navbar-nav .show>.nav-link {
	    margin: initial !important;
	    padding: initial !important;
	    display: flex;
	    align-items: center;
	    height: 100%;
	    width: 100%;
	}
    .nav-link.active::after, .nav-link:hover::after {
        content: '' !important;
        position: absolute !important;
        bottom: initial !important;
        left: 76% !important;
        transform: none !important;
        width: 16px !important;
        background-repeat: no-repeat !important;
        height: 16px !important;
        
    }
	.c_list_btn{
		display: block !important;
		height: 52px;
		width: auto !important;
	}
	

    .p_text{
        font-size: 14px;
    }
	.navbar-nav .dropdown-menu {
		width: 100%;
		/* display: flex; */
		flex-direction: column;
		border: none !important;
		margin: 0 !important;
		padding: 0 !important;
	}
	.navbar-nav .dropdown-menu li{
		width: 100%;
		min-height: 52px !important;
	}
	.navbar-nav .dropdown-menu li .dropdown-item{
		/* display: flex; */
		justify-content: center !important;
		align-items: self-start !important;
		height: 52px !important;
		text-align: initial !important;
		border-bottom: 1px solid #e5e5e5 !important;
	}
	
	.nav-container {
	
	    width: 100% !important;
	    left: 0 !important;
	    position: absolute;
	    z-index: 9;
	    bottom: 5.520vw;
	}
	.nav-links {
		padding: 0 24px !important;
		overflow: hidden !important;
		flex-wrap: wrap !important;
	}
	.nav-links li{
		margin-bottom: 10px !important;
	}
	.nav-links a {
	    font-size: 14px !important;
	}
	
	
	.red-capsule-btn {
	    width: auto !important;
	    height: 34px !important;
		gap: 0 1rem;
		display: inline-flex;
	    border-radius: 100px !important;
		padding: 0 3.302vw !important;
	}
	.red-arrow-circle {
	    width: 20px !important;
	    height: 20px !important;
	}
	.red-arrow {
	    width: 6px !important;
	    height: 6px !important;
	}
	.pagination{
		width: 100vw !important;
		display: flex !important;
		justify-content: center !important;
		flex-wrap: wrap !important; 
	}
	.pagination li {
	    margin-bottom: 36px !important;
	}
	.paddingBody {
	    padding-top: 5.9375vw;
	    padding-left: 14px !important;
	    padding-right: 14px !important;
	}
	.paddingBody .row>*{
		width: 50% !important;
	}
	 #zlxz .row>* {
		width: 100% !important;
	}
	.icon-xie {
		width: 16px !important;
	    height: 16px !important;
	}
	.product-content {
	    padding: 12px !important;
	}
	.product-content .timetext{
			     font-size: 10px !important;
	}
	.card-title{
		height: auto !important;
		line-height: 1.7 !important;
		font-size: 16px !important;
	}
	.custom-search {
	    width: 40% !important;
	}
	.custom-search-btn img{
		width: 20px !important;
		height: 20px !important;
	}
	.form-control{
		padding: 4px 10px !important;
		font-size: 12px !important;
	}
	
	.paddLRBody{
		padding-left: 14px !important;
		padding-right: 14px !important;
	}
	.paddLRBody .projectAll a{
		width: 100% !important;
	}
	.bgBox {
	    width: 100% !important;
	    height: auto !important;
		align-items: flex-start !important;
	}
	.text_head {
	    font-size: 16px !important;
	    line-height: 2 !important;
	}
	.text_content {
	    font-size: 12px !important;
	    line-height: 1.5 !important;
	}
	
	.paddLRBody .row>*{
		width: 50% !important;
	}
	.vedio-box {
	    width: 100% !important;
	    height: 260px !important;
	    background-size: cover !important;
	    background-position: top !important;
	}
	.product-card {
		width: 100% !important;
		height: auto !important;
		box-shadow: 4px 4px 8px #e5e5e5 !important;
	}
}




@media  screen and (max-width:768px){
	.paddLRBody .text-center .nf1 img{
		max-width: 100% !important;
	}
	.mousePointer>.mousePointer{
		width: 50% !important;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.fiveLine-hover-effect {
	    flex-direction: column !important;
	}
	.fiveLine-hover-effect a img {
	        width: 100% !important;
	        object-fit: cover !important;
	}
	.phone_hide{
		display: none !important;
	}
	.phone_show{
		display: block !important;
	}
	#swiper1{
		height: 200px !important;
	}
	.swiper_text{
		font-size: 16px !important;
	}
	.swiper_head{
		font-size: 6.5vw !important;
	}
	.paddLRBody {
		width: 100% !important;
	    padding-left: 14px !important;
	    padding-right: 14px !important;
	}
	.AllPartTitle {
		font-size: 20px !important;
	}
	.AllPartTitleTip {
	    font-size: 12px !important;
	}
	.clearfix .img_ar{
		width: 100% !important;
		height: auto !important; 
	}
	.accorNoClick{
		height:auto !important;
	}
	.accorNoClick ul{
		flex-direction: column !important;
	}
	.accorNoClick ul li{
		width: 100%;
	}
	.w-accor li {
		width: 100% !important;
	}
	.w-accor3 li .left_ar .h3change {
	    font-size: 16px !important;
	    width: auto !important;
	}
	.tipscolor {
	    font-size: 12px !important;
	    top: 32% !important;
	}
	.hand-title-text {
	    font-size: 18px !important;
	}
	.hand-title-tip-text {
	    font-size: 14px !important;
	    margin-top: -0.5vw !important;
		display: -webkit-box ;
	  -webkit-line-clamp: 3 !important; /* 限制显示行数 */
	  -webkit-box-orient: vertical !important;
	  overflow: hidden !important;
	}
	.hand-body-title-text {
	    font-size: 12px !important;
	    line-height: 1 !important;
	    margin-top: 2vw !important;
	}
	.w-accor3 li .right_ar .dec_ar {
		scale: 0.9 !important;

	}
	.w-accor3 li .left_ar .h3origin {
	    font-size: 20px !important;
	}
	.news_text {
	    font-size: 12px !important;
	}
	.sencond-narbar-list-item {
	    margin-left: 20px !important;
	    font-size: 12px !important;
	    width: auto !important;
	}
	.sencond-narbar-list {
	    width: auto !important;
	}
	.indexNewspaddingBody {
	    padding-left: 14px !important;
	    padding-right: 14px !important;
	}
	.indexNewspaddingBody>.newsListShow>.col{
		width: 100% !important;
	}  
	/* .product-card {
	    width: 100% !important;
	    height: 410px !important;
		box-shadow: 4px 4px 8px #e5e5e5 !important;
	} */
	.product-image {
	    width: 100% !important;
	    height: 250px !important;
	    object-fit: cover;
	}
	.product-content .time-text {
	    font-size: 12px !important;
	}
	.product-content .card-title {
	    font-size: 18px !important;
	}
	.product-content .card-text {
	    font-size: 12px !important;
		margin-top: 12px !important;
		height: auto !important;
		line-height: 1.5 !important;
	}
	.red-text {
		font-size: 12px !important;
	}
	.no-boder-red-arrow-circle {
	    width: 20px !important;
	    height: 20px !important;

	    margin-left: 1.0416vw;
	}
	.no-boder-red-arrow {
	    width: 7px !important;
	    height: 7px !important;
	    margin-top: 0px !important;
	}
	.capsule-btn-no-boder {
	    height: 40px !important;
	    width: 30% !important;
	    left: 12px !important;
	    bottom: 10px !important;
	}
	.paddLRBody .row>* {
	        width: 100% !important;
	}
	#sysfzx .paddLRBody{
		flex-direction: column !important;
	}
	#sysfzx .paddLRBody .box{
		    flex-direction: column !important;
		    height: auto !important;
		    padding: 20px 0 !important;
		    margin: 20px 0 !important;
			width: 100% !important;
	}
	#sysfzx .paddLRBody div .box .partonetitle-two{
		    font-size: 16px !important;
	}
	#sysfzx .paddLRBody div .box .partonetitle{
		    font-size: 12px !important;
	}
	#sysfzx .paddLRBody div .box .partonetext{
			font-size: 12px !important;
			width: 100% !important;
			line-height: 1.7 !important;
			height: auto !important;
			padding:0 12px !important;
	}
	#sysfzx .paddLRBody div .box img{
		    width: 100% !important;
		    height: 100% !important;
	}
	.paddingBody .row>*{
		width: 100% !important;
	}
	/* .paddLRBody_left{
		width: 100% !important;
	} */
}

@media  screen and (max-width:500px){
	.w-accor3 li .right_ar .dec_ar {
		scale: 0.9 !important;
		height: 80% !important;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		width: 90% !important;
		top: 60% !important;
	}
	.capsule-btn {
	    width: 150px !important;
	    height: 46px !important;
	    border-radius: 23px !important;
	  
	}
	.capsule-btn .text {
	    font-size: 16px;
	}
	.capsule-btn .arrow-circle {
	    width: 20px !important;
	    height: 20px !important;
	    border-radius: 50% !important;
	}
	.capsule-btn .arrow-circle .arrow {
	    width: 8px !important;
	    height: 8px !important;
	}
}
	


@media (prefers-color-scheme: dark) { /* 暗黑模式 强白*/
	body {
		background: #fff;
	}
  }