.padd{
	padding: 100px 0;
}
.text-align_center{
	text-align: center;
}
.nyban{position: relative;overflow: hidden;}
.nyban .new_txt{
    position: absolute;
    top: 36%;
    left: 50%;
    color: #fff;
    text-align: center;
    width: 80%;
    font-size: 38px;
    font-weight: bold;
    transform: translateX(-50%);
    max-width: 1300px;
}
.nyban .imgg img{
	display: block;
	width: 100%;
}

.nynav{
	background: #fff;
	text-align: center;
	box-shadow: 0 4px 10px rgba(0,0,0,.1);
	position: sticky;
	top: 80px;
	transition: all 0.3s;
	z-index: 9;
}
.nynav .item{
	display: inline-block;
	height: 80px;
	line-height: 80px;
	color:#333;
	font-size: 18px;
	padding: 0 50px;
	position: relative;
}
.nynav .item:hover,
.nynav .item.active{
	color:#244DA7;
}
.nynav .item.active::after{
	position: absolute;
	content: '';
	bottom: 0;
	width: 70%;
	height: 2px;
	background: #244DA7;
	left: 50%;
	transform: translateX(-50%);
}
.nynav .item:not(:last-child)::before{
	position: absolute;
	content: '';
	height: 35%;
	top: 50%;
	right: 0;
	background: #eee;
	width: 2px;
	transform: translateY(-50%);
}
.nycont{
	color:#333;
	line-height: 1.8;
}
.nycont img{
	display: block;
	max-width: 100%;
	height: auto;
	margin: auto;
}



.timeline {
	position: relative;
	margin: 0 auto;
	max-width: 1200px;
}

/* 中间的时间轴线 */
.timeline::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 50%;
	width: 4px;
	background: #E7EBF6;
	transform: translateX(-50%);
	border-radius: 10px;
}

.timeline-item {
	position: relative;
	margin-bottom: 70px;
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s ease;
}

.timeline-item.active {
	opacity: 1;
	transform: translateY(0);
}

/* 圆圈指示器 */
.timeline-item::before {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	background: #fff;
	border: 2px solid #244DA7;
	border-radius: 50%;
	top: 0;
	left: calc(50% - 15px);
	/* transform: translateX(-50%); */
	z-index: 10;
}
.timeline-item::after {
	content: '';
	position: absolute;
	width: 12px;
	height: 12px;
	background: #244DA7;
	border-radius: 50%;
	top: 6px;
	left: calc(50% - 9px);
	/* transform: translateX(-50%); */
	z-index: 10;
}
.timeline-item:hover::before{
	border-color: #4AB74A;
}
.timeline-item:hover::after{
	background: #4AB74A;
}


.timeline-content {
	position: relative;
	width: calc(50% - 60px);
}

/* 右侧内容 */
.timeline-item:nth-child(odd) .timeline-content {
	left: calc(50% + 60px);
	text-align: left;
}

/* 左侧内容 */
.timeline-item:nth-child(even) .timeline-content {
	right: 0;
	text-align: right;
}

.timeline-item .year {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #244DA7;
	display: flex;
	align-items: center;
	line-height: 1;
}
.timeline-content:hover .year{
	color: #4AB74A;
}
.timeline-item:nth-child(odd) .year {
	justify-content:flex-start;
}

.timeline-item:nth-child(even) .year {
	justify-content: flex-end ;
}


.timeline-item .event {
	font-size: 16px;
	line-height: 1.8;
	padding: 15px;
}


/* 动画效果 */
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(-20px); }
	to { opacity: 1; transform: translateY(0); }
}

/* 响应式设计 */
@media (max-width: 768px) {
	.timeline::before {
		left: 30px;
	}
	
	.timeline-content {
		width: calc(100% - 90px);
		margin-left: 60px;
		text-align: left !important;
	}
	
	.timeline-item::before {
		left: 18px;
	}
	
	.timeline-item:nth-child(odd) .timeline-content{
		left: 0;
	}
	
	.timeline-item:nth-child(even) .timeline-content {
		left: 0;
	}
	.timeline-item::after{
		transform: none;
		left: 24px;
	}
	.timeline-item:nth-child(even) .year{
		justify-content: flex-start;
	}
	.timeline-item .event{
		padding: 0;
	}

}


.culture-item{
	padding: 50px 0;
	width: calc(50% - 40px);
	align-items: center;
	border-bottom: 3px solid #F5F6FB;
}
.culture-title{
	color:#244DA7;
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 10px;
}
.culture-cont{
	font-size: 18px;
	color:#333;
}
.culture-item .icon{
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #244DA7;
	margin:0 80px;
}
.culture-item .icon img{
	width: 60%;
}


.ryzz{
	gap: 40px;
}
.ryzz-item{
	width: calc((100% - 120px) / 4);
	cursor: pointer;
	display: block;
}
.ryzz-thumb{
	position: relative;
	padding-bottom: 120%;
	background: #f8f8fa;
	border: 1px solid #e7e7e7;
	box-sizing: border-box;
	margin-bottom: 10px;
}
.ryzz-thumb .img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
}
.ryzz-hover{
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(36,77,167,.8);
	top: 0;
	left: 0;
	opacity: 0;
	transition: all 0.5s;
}
.ryzz-hover svg{
	width: 40px;
	height: 40px;
}
.ryzz-item:hover .ryzz-hover{
	opacity: 1;
	border-color: rgba(36,77,167,.8);
}
.ryzz-title{
	text-align: center;
	font-size: 16px;
	color:#333;
} 
.ryzz-item:hover .ryzz-title{
	color: #244DA7;
}

/* 荣誉资质预览模态框 */
.preview-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.preview-modal.active {
	opacity: 1;
	visibility: visible;
}

.preview-modal .modal-content {
	position: relative;
	width: 90%;
	max-width:1200px;
	height: 100vh;
	text-align: center;
}

.preview-modal .modal-img {
	max-width: 100%;
	max-height: 80%;
	box-shadow: 0 10px 50px rgba(0,0,0,0.3);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.preview-modal .modal-title {
	color: white;
	font-size: 1.8rem;
	margin-top: 20px;
	font-weight: 500;
	text-shadow: 0 2px 4px rgba(0,0,0,0.5);
	position: absolute;
	bottom: 20px;
	width: 100%;
}

.preview-modal .modal-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 60px;
	height: 60px;
	background: rgba(255,255,255,0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255,255,255,0.1);
}

.preview-modal .modal-nav:hover {
	background: rgba(255,255,255,0.25);
	transform: translateY(-50%) scale(1.05);
}

.preview-modal .modal-nav svg {
	width: 30px;
	height: 30px;
	fill: white;
}

.preview-modal .prev-btn {
	left: -80px;
}

.preview-modal .next-btn {
	right: -80px;
}

.preview-modal .close-btn {
	position: absolute;
	top: 50px;
	right: -80px;
	width: 40px;
	height: 40px;
	cursor: pointer;
}

.preview-modal .close-btn::before, 
.preview-modal .close-btn::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	background: white;
}

.preview-modal .close-btn::before {
	transform: rotate(45deg);
}

.preview-modal .close-btn::after {
	transform: rotate(-45deg);
}

.preview-modal .counter {
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255,255,255,0.7);
	font-size: 1.1rem;
}

@media (max-width: 992px) {
	.preview-modal .prev-btn {
		left: 10px;
	}
	
	.preview-modal .next-btn {
		right: 10px;
	}
	
	.preview-modal .close-btn {
		right: 10px;
	}


	.preview-modal .modal-title {
		font-size: 1.4rem;
	}
}

@media (max-width: 768px) {
	
	.preview-modal .prev-btn {
		left: 5px;
	}
	
	.preview-modal .next-btn {
		right: 5px;
	}
	.preview-modal .close-btn {
		right: 5px;
	}
}

@media (max-width: 576px) {
	.preview-modal .modal-title {
		font-size: 1.2rem;
	}
	
	.preview-modal .counter {
		bottom: -40px;
		font-size: 1rem;
	}
}



.nymbx{
	background: #f5f5f5;
	height: 60px;
	font-size: 14px;
	color:#666;
}
.nymbx span{
	padding: 0 5px;
}
.nymbx span:last-child{
	display: none;
}
.nymbx .center{
	padding-left: 30px;
	box-sizing: border-box;
	background: url(../images/mbxicon.png) no-repeat center left / auto 20px;
}
.nymbx a{
	color:#666;
}
.nymbx a:nth-last-child(2){
	color:#000;
}
.nymbx a:hover{
	color:#244DA7;
}

.nymbx2{
	height: 98px;
	font-size: 16px;
	color:#666;
}
.nymbx2 span{
	padding: 0 5px;
}
.nymbx2 span:last-child{
	display: none;
}
.nymbx2 .center{
	padding-left: 30px;
	box-sizing: border-box;
	max-width: 1300px;
	background: url(../images/mbxicon2.png) no-repeat center left / auto 20px;
}
.nymbx2 a{
	color:#666;
}
.nymbx2 a:nth-last-child(2){
	color:#000;
}
.nymbx2 a:hover{
	color:#244DA7;
}

.biggest-tt{
	font-size: 38px;
	color:#333;
	margin-bottom: 30px;
	text-align: center;
	font-weight: bold;
}
.cases-lm-info{
	font-size: 18px;
	color:#666;
	line-height: 1.8;
}
.case-nynav{
	margin: 60px 0;
	background: #fff;
	transition: transform 0.2s ease-out;
  	will-change: transform;
	width: 100%;
}
.case-nynav.case-nynav-fixed{
	position: fixed;
	top: 80px;
	z-index: 9;
	margin: 0;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	transform: translateZ(0);
}
.case-nynav.case-nynav-fixed .center{
	border-top: none;
	border-bottom: none;
}
.case-nynav .center{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	width: 100%;
	border-top: 1px solid #244DA7;
	border-bottom: 1px solid #244DA7;
	padding: 24px 0;
	justify-content: space-around;
}
.case-nynav .item{
	display: inline-block;
	font-size: 18px;
	color: #244DA7;
	transition: all 0.5s;
	padding: 10px 15px;
	font-weight: bold;
}
.case-nynav .item:hover,
.case-nynav .item.active{
	color:#fff;
	background: #244DA7;
}

.cases .list{
	gap:40px;
}
.case-item{
	width: calc((100% - 80px) / 3);
	box-sizing: border-box;
	border: 1px solid #eee;
	transition: all 0.5s;
	background: #fff;
}
.case-thumb{
	position: relative;
	padding-bottom: 66.66%;
	background: #f8f8fa;
	box-sizing: border-box;
	margin-bottom: 10px;
	overflow: hidden;
}
/* 宽高比1.7:1 */
.case-thumb.changePb-171{
	padding-bottom: 58.82%;
}
.case-thumb .img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s;
}
.case-title{
	width: 90%;
	margin: 20px auto;
	word-wrap: break-word;
white-space: normal;;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	font-size: 16px;
	color:#333;
}
.case-item:hover .case-thumb .img{
	transform: scale(1.1);
}

.case-item:hover .case-title{
	color:#fff;
}
.case-item:hover{
	background: #244DA7;
	box-shadow: 4px 4px 15px rgba(0,0,0,.2);
}

.case-relate .biggest-tt{
	text-align: left;
}
.case-relate {
	background: #F4F4F4;
}

.case-detail .title{
	color:#333;
	font-size: 38px;
	font-weight: bold;
}
.case-detail .lm{
	font-size: 18px;
	color:#666;
	border-bottom: 1px solid #d8d8d8;
	padding: 18px 0;
}
.case-detail .cont{
	margin: 40px 0;
	font-size: 18px;
	line-height: 2;
	color:#333;
}
.case-detail .images{
	gap:40px;
	margin-bottom: 50px;
}
.case-detail .img{
	position: relative;
	padding-bottom: 22%;
	background: #f8f8fa;
	box-sizing: border-box;
	overflow: hidden;
	width: calc((100% - 80px) / 3);
}
.case-detail .img img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s;
}
.case-detail .img:hover img{
	width: 110%;
	height: 110%;
}
.chosse .biggest-tt,
.fwlc .biggest-tt,
.hxyw .biggest-tt{
	margin-bottom: 10px;
}
.hxyw .case-nynav .center{
	border-top: none;
	padding: 0;
}
.cases.hxyw .list{
	gap: 40px;
}
.hxyw .case-item{
	width: calc((100% - 80px) / 3);
}
.hxyw .case-title{
	color:#244DA7;
	font-weight: bold;
}
.hxyw .case-nynav .item{
	padding: 12px 20px;
}

.fwlc{
	background: #F4F4F4;
}
.fwlc .list{
	/*gap:100px;*/
	row-gap: 50px;
    column-gap: 40px;
	margin-top: 30px;
}
.fwlc .list .item{
	width: calc((100% - 200px) / 6);
}
.fwlc .list .item .thumb{
	position: relative;
	padding-bottom: 100%;
	box-sizing: border-box;
	margin-bottom: 10px;
	overflow: hidden;
}
.fwlc .list .item img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s;
}
.fwlc .list .t{
	font-size: 16px;
	color:#333;
	margin-top: 10px;
	text-align: center;
}

.biggest-tt span{
	color: #4AB74A;
}

.hxyw-relate .biggest-tt{
	text-align: left;
	font-size: 24px;
}
.hxyw-relate .case-title{
	color:#244DA7;
	font-weight: bold;
}

.hxyw-detail-top .left{
	width: 42%;
	margin-right: 60px;
}

.hxyw-detail-top .title{
	font-size: 32px;
	font-weight: bold;
	margin: 20px 0;
	color:#244DA7;
}
.hxyw-detail-top .desc{
	font-size: 16px;
	color:#666;
	line-height: 1.8;
}
.hxyw-detail-top .infos{
	margin: 20px 0 50px;
	border-top: 1px solid #E3E7F2;
	font-size: 16px;
	color:#333;
}
.hxyw-detail-top .infos .info{
	border-bottom: 1px solid #E3E7F2;
	padding: 15px 0;
}
.hxyw-detail-top .infos .v{
	color:#666;
}
.hxyw-detail-top .infos .t{
	min-width: 140px;
}
.hxyw-detail-top .infos .v a:hover{
	/* color: #244DA7; */
}
.hxyw-detail-top .btn{
	border-radius: 2em;
	padding: 15px 40px;
	color:#fff;
	transition: all 0.5s;
	font-size: 18px;
	background: #244DA7;
	margin-right: 24px;
}
.hxyw-detail-top .btn:last-child{
	background: #4AB74A;
	margin-right: 0;
}

.hxyw-detail-top .btn:hover{
	transform: scale(1.05);
	box-shadow: 4px 4px 10px rgba(0,0,0,.2);
}
.gallery-swiper{
	border: 1px solid #d8d8d8;
	position: relative;
	box-sizing: border-box;
}
.gallery-swiper .thumb{
	position: relative;
	padding-bottom: 66.67%;
	box-sizing: border-box;
	overflow: hidden;
}
.gallery-swiper .thumb .img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.gallery-swiper .thumb .view{
	position: absolute;
	bottom: 0;
	right: 0;
	background: #d4d4d4;
	cursor: pointer;
	width: 30px;
	height: 30px;
}
.gallery-swiper .thumb .view img{
	height: 22px;
}

.gallery-swiper .thumb .view:hover{
	background: #244DA7;
}
.thumbs-swiper {
	margin-top: 10px;
	column-gap: 15px;
}
.thumbs-swiper .thumb{
	position: relative;
	padding-bottom: 100%;
	box-sizing: border-box;
	overflow: hidden;
	border: 2px solid #d8d8d8;
	cursor: pointer;
}
.thumbs-swiper .thumb img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.thumbs-swiper .swiper-slide-thumb-active .thumb{
	border: 2px solid #244DA7;
}
.thumbs-swiper .swiper-button-prev, 
.thumbs-swiper .swiper-button-next{
	position: static;
	width: 30px;
	color:#000;
	margin-top: 0;
}
.thumbs-swiper .swiper-button-prev:after, 
.thumbs-swiper .swiper-button-next:after{
	font-size: 25px;
}



.hxyw-xq-tt{
	font-size: 24px;
	font-weight: bold;
	color:#333;
	border-bottom: 1px solid #d8d8d8;
	margin-bottom: 20px;
	padding-bottom: 20px;
}
.hxyw-xq{
	line-height: 1.8;
	color:#333;
	font-size: 18px;
}
.message-block{
	height: 80px;
	width: 100%;
}
.yw-message{
	padding: 30px;
	box-sizing: border-box;
	background: #F2F2F2;
}
.message-tt{
	font-size: 24px;
	font-weight: bold;
	color:#333;
	margin-bottom: 20px;
}
.form-message{
	row-gap: 20px;
	column-gap: 30px;
}
.form-message .item.type1{
	width: calc((100% - 30px) / 2);
}
.form-message .item.type2{
	width: 100%;
}
.form-message .item .box{
	background: #fff;
	padding: 10px;
	border: 1px solid #ddd;
}
.form-message .item .box .flex1{
	width: 100%;
	font-size: 16px;
}
.form-message .item .box textarea{
	height: 130px;
	outline: none;
	font-size: 16px;
}
.form-message .item .t{
	font-size: 18px;
	color:#333;
	min-width: 115px;
	margin-right: 25px;
	text-align: right;
}
.form-message .item .t span{
	color:#f00;
}
.form-message .submit{
	border-radius: 2em;
	font-size: 18px;
	color:#fff;
	background: #244DA7;
	padding: 12px 60px;
	margin-top: 30px;
	cursor: pointer;
	transition: all 0.5s;
}
.form-message .submit:hover{
	background: #4AB74A;
}
.form-message .radios{
	column-gap: 24px;
	font-size: 18px;
	color:#333;
}
.form-message .radios .op{
	column-gap: 5px;
}


/* 为什么选择国冶机电 */
.choose {
	display: flex;
	gap: 15px;
	padding: 15px;
	margin-top: 50px;
}

.choose .block {
	flex: 1;
	min-width: 0;
	height: 440px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	transition: all 0.6s;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* 默认选中第一个区块 */
.choose .block.selected {
	flex: 2;
}

.choose .block:hover {
	flex: 2;
}

.choose .caption {
	position: absolute;
	bottom: 50px;
	left: 30px;
	font-size: 32px;
	font-weight: bold;
	transition: all 0.5s ease;
	z-index: 2;
	padding-left: 15px;
	box-sizing: border-box;
	border-left: 8px solid #4AB74A;
	color:#fff;
	line-height: 1;
}

.choose .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(36,77,167,.75);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	padding: 30px 40px 60px;
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 1;
	box-sizing: border-box;
}

.choose .overlay-content {
	transition: all 0.5s ease;
	text-align: left;
	width: 100%;
	opacity: 0;
}

.choose .block.selected .overlay,
.choose .block:hover .overlay {
	opacity: 1;
}

.choose .block.selected .overlay-content,
.choose .block:hover .overlay-content {
	opacity: 1;
}

.choose .block.selected .caption,
.choose .block:hover .caption {
	opacity: 0;
}

.choose .overlay h3 {
	font-size: 32px;
	margin-bottom: 15px;
	color: #fff;
}

.choose .overlay p {
	line-height: 1.7;
	font-size: 18px;
	max-width: 100%;
	color:#fff;
}

@media (max-width: 920px) {
	.choose {
		flex-wrap: wrap;
		padding: 0;
		margin-top: 30px;
	}
	
	.choose .block {
		flex: 1 0 calc(50% - 15px);
		height: 300px;
	}
	
	.choose .block.selected {
		flex: 1 0 calc(50% - 15px);
	}
	.choose .caption{
		font-size: 24px;
	}
	.choose .overlay p{
		font-size: 14px;
	}

	.choose .overlay h3{
		font-size: 22px;
	}
	.choose .overlay{
		padding:30px 30px 30px;
	}
}

@media (max-width: 600px) {
	.choose .block {
		flex: 1 0 100%;
		height: 250px;
	}
	
	.choose .block.selected {
		flex: 1 0 100%;
	}

}


.list_xw{
	max-width: 1300px;
	column-gap: 30px;
	margin-bottom: 30px;
	align-items: flex-start;
}
.xw_right{
	width: 29%;
	row-gap: 20px;
}
.xw_left{
	background: #fff;
	padding: 20px;
	box-sizing: border-box;
	border-radius: 10px;
}
.xw_left .navs{
	border-bottom: 1px solid #dfdfdf;
}
.xw_left .navs .item{
	display: inline-block;
	padding: 10px 24px 20px;
	font-size: 18px;
	color:#333;
	border-bottom: 1px solid transparent;
}
.xw_left .navs .item.active{
	color:#244DA7;
	border-bottom: 1px solid #244DA7;
}
.xw_left .navs .item:hover{
	color:#244DA7;
}
.xwitem{
	padding: 30px 0;
	column-gap: 30px;
}
.xwitem .thumb{
	width: 29%;
}
.xwitem .thumb .image-container{
	position: relative;
	padding-bottom: 66.66%;
	overflow: hidden;
	display: block;
	width: 100%;
}

.xwitem .thumb img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s;
}
.xwitem:hover .thumb img{
	width: 110%;
	height: 110%;
}
.xwitem .tt{
	font-size: 20px;
	color:#333;
	margin-bottom: 12px;
	line-height: 1.5;
	word-wrap: break-word;
white-space: normal;;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.xwitem .desc{
	font-size: 15px;
	color:#999;
	word-wrap: break-word;
white-space: normal;;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	line-height: 1.6;
}
.xwitem .bominfo{
	column-gap: 20px;
	font-size: 15px;
	color:#999;
}
.xwitem .bominfo svg{
	width: 20px;
	height: 20px;
	margin-right: 6px;
}
.xwitem .tags{
	column-gap: 12px;
	row-gap: 10px;
	margin-bottom: 12px;
}
.xwitem .tag{
	border-radius: 4px;
	font-size: 14px;
	transition: all 0.5s;
	color:#999;
	border: 1px solid #eee;
	padding: 4px 12px;
}
.xwitem .tag:hover{
	border-color: #244DA7;
	color: #244DA7;
}
.xwitem:hover .tt{
	color: #244DA7;
}
.xw_right .part{
	box-sizing: border-box;
	padding: 20px;
	border-radius: 10px;
	background: #fff;
}
.xw_right .part .btitle{
	font-size: 20px;
	column-gap: 10px;
	color:#333;
	margin-bottom: 15px;
}
.xw_right .part .btitle svg{
	width: 24px;
	height: 24px;
}
.djdzs,.cnxh{
	column-gap: 10px;
	row-gap: 10px;
}
.djdzs a,.cnxh a{
	border: 1px solid #eee;
	font-size: 14px;
	color:#666;
	transition: all 0.5s;
	border-radius: 4px;
	padding: 4px 10px;
}
.djdzs a:hover,.cnxh a:hover{
	border-color: #244DA7;
	color: #fff;
	background: #244DA7;
}
.cnxh a{
	border-radius: 2em;
}
.xw_right .hot-topic .item{
	column-gap: 12px;
}
.xw_right .hot-topic .item:not(:last-child){
	margin-bottom: 15px;
}
.xw_right .hot-topic .item .num{
	width: 20px;
	height: 20px;
	border-radius: 4px;
	color:#fff;
	background: #CBCBCD;
	text-align: center;
	line-height: 20px;
}
.xw_right .hot-topic .item:nth-child(-n + 3) .num{
	background: #F1585D;
}
.xw_right .hot-topic .item .t{
	font-size: 16px;
	color:#666;
	word-wrap: break-word;
white-space: normal;;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
.xw_right .hot-topic .item:hover .t{
	color: #244DA7;
}

.tjxm_swiper{
	position: relative;
	padding-bottom: 30px;
	height: 330px;
}
.tjxm_swiper .swiper{
	width: 100%;
	height: 100%;
}
.tjxm_swiper .item{
	display: block;
}
.tjxm_swiper .item .thumb{
	position: relative;
	width: 100%;
	padding-bottom: 66.66%;
	overflow: hidden;
	display: block;
	border-radius: 10px;
	margin-bottom: 10px;
}
.tjxm_swiper .thumb img{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s;
}
.tjxm_swiper .item:hover .thumb img{
	transform: scale(1.1);
}
.tjxm_swiper .t{
	font-size: 15px;
	color:#666;
	word-wrap: break-word;
white-space: normal;;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.tjxm_swiper .item:hover .t{
	color: #244DA7;
}
.tjxm_swiper .swiper-slide {
    height: calc((100% - 20px) / 2);
}
.tjxm_swiper .swiper-pagination{
	text-align: center;
	width: 100%;
	bottom: 0;
}
.tjxm_swiper .swiper-pagination .swiper-pagination-bullet {
	background: #BEBEBE;
	color:#fff ;
	opacity: 1;
}
.tjxm_swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
	border-radius: 2em;
	background: #47B850;
}


.xw_left .part{
	background: #fff;
	padding: 20px;
	box-sizing: border-box;
	border-radius: 10px;
}
.xw-xq-title{
	text-align: center;
	font-size: 24px;
	color: #333;
	margin: 30px 0 15px;
	font-weight: bold;
}
.xq-info{
	column-gap: 20px;
	font-size: 14px;
	color:#888;
	border-bottom: 1px solid #eee;
	padding-bottom: 25px;
}
.xq-info svg{
	width: 20px;
	height: 20px;
	margin-right: 5px;
}
.xq-cont{
	line-height: 1.8;
	color:#666;
	font-size: 16px;
	margin: 30px 0;
}
.xq-cont img{
	display: block;
	margin: auto;
	max-width: 100%;
	height: auto;
}
.xq-bom .xq-bom-t{
	font-size: 15px;
	color:#333;
	margin-right: 10px;
	min-width: 50px;
	line-height: 29px;
}
.xq-bom .tags{
	column-gap: 12px;
	row-gap: 10px;
}
.xq-bom .tag{
	border-radius: 4px;
	font-size: 14px;
	transition: all 0.5s;
	color:#666;
	border: 1px solid #eee;
	padding: 4px 12px;
}
.xq-bom .tag:hover{
	border-color: #244DA7;
	color: #244DA7;
}
.lxgcs{
	border-radius: 2em;
	transition: all 0.5s;
	background: #244DA7;
	color:#fff;
	font-size: 15px;
	padding: 10px 20px;
}
.lxgcs:hover{
	background: #47B850;
}
.xq-share{
	margin-top: 15px;
}
.xq-bqsm{
	background: #f7f7f7;
	font-size: 14px;
	color:#999;
	line-height: 1.5;
	margin-top: 25px;
	padding:10px 20px;
}
.fenye{
	column-gap: 20px;	
}
.fenye .part{
	width: calc((100% - 20px) / 2);
	font-size: 14px;
}
.fenye .part a{
	color:#666;
}
.fenye .part:hover a{
	color: #244DA7;
}

.xq-relate-tab{
	padding: 10px;
}
.xq-relate-tab .tab-nav{
	border-bottom: 1px solid #eee;
	margin-bottom: 30px;
}
.xq-relate-tab .tab-nav-item{
	padding:0 20px 15px;
	font-size: 18px;
	color:#333;
	border-bottom: 2px solid transparent;
	cursor: pointer;
}
.xq-relate-tab .tab-nav-item.current{
	border-color: #244DA7;
	color: #244DA7;
}
.xq-relate-tab .tab-con-item{
	display: none;
}
.xq-relate-tab .list .item{
	display: block;
	word-wrap: break-word;
white-space: normal;;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	font-size: 16px;
	color:#666;
	transition: all 0.3s;
	position: relative;
	padding-left: 25px;
	margin-top: 20px;
}
.xq-relate-tab .list .item::before{
	width: 10px;
	height: 10px;
	position: absolute;
	content: '';
	border-radius: 50%;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: #d3d3d3;
	transition: all 0.3s;
}
.xq-relate-tab .tab-nav-item:hover,
.xq-relate-tab .list .item:hover{
	color: #244DA7;
}
.xq-relate-tab .list .item:hover::before{
	background: #244DA7;
}


/* 全部标签 */
.list_bq{
	max-width: 1300px;
}
.list_bq .no-data{
	margin-bottom: 50px;
	margin-top: 50px;
	text-align: center;
}
.list_bq .part{
	background: #fff;
	padding: 24px;
	margin-bottom: 24px;
}
.bq_top_top{
	margin-bottom: 20px;
}
.bq_top_top .t{
	font-size: 18px;
	color:#333;
	margin-right: 50px;
}
.bq_top_top .tips{
	font-size: 14px;
	color:#ccc;
}
.bq_top_bom .t{
	font-size: 16px;
	color:#333;
	margin-right: 30px;
}
.bq_top_bom .item{
	font-size: 16px;
	color:#333;
	margin-right: 25px;
	transition: all 0.3s;
}
.bq_top_bom .item:hover,
.bq_top_bom .item.active{
	color: #244DA7;
}

.flbt {
	color: #244DA7;
	font-size: 18px;
	margin-bottom: 15px;
}
.tagslist{
	gap: 15px;
	overflow: hidden;
	transition: height 0.4s ease;
}
.tagslist.collapsed {
	max-height: 130px;
}
.tagslist .tag{
	font-size: 14px;
	border-radius: 2em;
	transition: all 0.3s;
	border: 1px solid #eee;
	color:#333;
	padding: 6px 20px;
}
.tagslist .tag:hover{
	color:#fff;
	background: #244DA7;
	border-color: #244DA7;
}
.list_bq .toggle{
	position: relative;
	margin-top: 25px;
}
.list_bq .toggle::before{
	position: absolute;
	content: '';
	width: 100%;
	height: 1px;
	background: #eee;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.list_bq .toggle .t{
	padding: 0 20px;
	background: #fff;
	z-index: 1;
	font-size: 14px;
	color:#888;
	cursor: pointer;
	column-gap: 12px;
}
.list_bq .toggle .t:hover{
	color:#244DA7;
}
.list_bq .toggle svg{
	width: 15px;
	height: 15px;
	fill:#ccc;
	transition: transform 0.3s ease;
}
.list_bq .toggle .t:hover svg{
	fill:#244DA7;
}
.list_bq .toggle.expanded svg{
	transform: rotate(180deg);
}

.bq-intro{
	font-size: 16px;
	line-height: 1.6;
	color:#666;
}
.bq-xq-t{
	font-size: 22px;
	color:#333;
	margin-right: 50px;
}

.bq-relate-part{
	margin-top: 50px;
}
.bq-relate-title{
	font-size: 25px;
	margin-bottom: 30px;
	color:#333;
}
.bq-relate-title b{
	color: #244DA7;
}

.bq-telate-list{
	gap:25px
}
.bq-telate-item {
	width: calc((100% - 75px) / 4);
	background: #fff;
	border-radius: 4px;
	overflow: hidden;
	transition: all 0.3s;
}
.bq-telate-item:hover{
	box-shadow: 4px 4px 15px rgba(0,0,0,.1);
}
.bq-telate-item .thumb{
	display: block;
	position: relative;
	width: 100%;
	padding-bottom: 66.66%;
	overflow: hidden;
}
.bq-telate-item .thumb img{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s;
}
.bq-telate-item .item:hover .thumb img{
	transform: scale(1.1);
}
.bq-telate-item .title{
	font-size: 16px;
	color:#333;
	word-wrap: break-word;
white-space: normal;;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	margin-bottom: 15px;
	margin-top: 15px;
	padding: 0 10px;
}
.bq-telate-item .tags{
	column-gap: 12px;
    row-gap: 10px;
    margin-bottom: 12px;
	padding: 0 10px;
}
.bq-telate-item .tag{
	border-radius: 4px;
	font-size: 14px;
	transition: all 0.5s;
	color:#999;
	border: 1px solid #eee;
	padding: 4px 12px;
}
.bq-telate-item .tag:hover{
	border-color: #244DA7;
	color: #244DA7;
}
.bq-telate-item:hover .title{
	color: #244DA7;
}
.bq-telate-item .bominfo{
	column-gap: 20px;
	font-size: 13px;
	color:#ddd;
	padding: 0 10px;
	margin-bottom: 20px;
}
.bq-telate-item .bominfo svg{
	width: 18px;
	height: 18px;
	margin-right: 6px;
	fill: #ddd;
}
.bq-relate-toggle{
	border-radius: 4px;
	background: #fff;
	font-size: 14px;
	color: #888;
	column-gap: 12px;
	height: 55px;
	margin: 25px 0;
	transition: all 0.3s;
	cursor: pointer;
}
.bq-relate-toggle svg{
	width: 15px;
    height: 15px;
    fill: #ccc;
    transition: transform 0.3s ease;
}
.bq-relate-toggle:hover{
	color: #fff;
	background: #244DA7;
}
.bq-relate-toggle:hover svg{
    fill: #fff;
}
.bq-relate-part .flbt{
	color:#333;
}
.bq-relate-part .tagslist{
	gap: 10px;
}
.bq-relate-part .tagslist:not(:last-child){
	margin-bottom: 30px;
}
.bq-relate-part .tagslist .tag{
	padding: 6px 12px;
	color:#666;
}
.bq-relate-part .tagslist .tag:hover{
	color:#fff;
}

.share-icons{
	column-gap: 15px;
}
.share-icons .icon{
	width: 20px;
	height: 20px;
	fill: #C2C2C2;
	transition: all 0.3s;
}
.share-icons .icon:hover{
	fill:#244DA7;
}
.gywd .xw-xq-title,
.gybk_detail .xw-xq-title{
	text-align: left;
	margin-right: 30px;
}
.gybk_detail .xq-share{
	column-gap: 10px;
}
.bk-xq-bq {
	border-bottom: 1px solid #eee;
    padding: 0 0 25px;
}
.bk-xq-bq .tags{
	column-gap: 12px;
    row-gap: 10px;
}
.bk-xq-bq .tag{
	border-radius: 4px;
    font-size: 14px;
    transition: all 0.5s;
    color: #fff;
    padding: 4px 12px;
}
.rmct{
	column-gap: 10px;
    row-gap: 10px;
}
.rmct .cttag{
	border-radius: 4px;
    font-size: 14px;
    transition: all 0.5s;
    color: #fff;
    padding: 4px 12px;
}
.rmct .cttag:hover{
	opacity: .8;
}
.bk-relate-title{
	font-size: 20px;
	margin-bottom: 30px;
	color:#333;
	position: relative;
	border-bottom: 1px solid #eee;
	padding-bottom: 25px;
}
.bk-relate-title b{
	color: #244DA7;
}
.bk-relate-title::before{
	position: absolute;
	content: '';
	width: 10%;
	height: 2px;
	background: #244DA7;
	bottom: 0;
	left: 0;
}

.bkxq-relate-list{
	gap: 15px;
}
.bkxq-relate-list .item{
	width: calc((100% - 60px) / 3);
	border-radius: 4px;
	position: relative;
	height: 20vh;
    overflow: hidden;
}
.bkxq-relate-list .item .bg{
	position: absolute;
	height: 100%;
	width: 100%;
	transition: all 0.3s;
}
.bkxq-relate-list .item:hover .bg{
	transform: scale(1.1);
}
.bkxq-relate-list .item .bom-text{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 20px 10px 10px;
	box-sizing: border-box;
	background: linear-gradient(to bottom, transparent,rgba(0,0,0,.8));
}
.bkxq-relate-list .bom-text .tt{
	font-size: 16px;
	color:#fff;
	word-wrap: break-word;
white-space: normal;;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	margin-bottom: 15px;
}
.bkxq-relate-list .bom-text .tags{
	column-gap: 8px;
}
.bkxq-relate-list .bom-text .tag{
	border-radius: 4px;
	border: 1px solid #fff;
	font-size: 11px;
	color:#fff;
	padding: 3px 5px;
}
.bkxq-relate-list .info{
	color:#fff;
	font-size: 10px;
}
.bkxq-relate-list .info:first-child{
	margin-right: 8px;
}
.bkxq-relate-list .info svg{
	width: 14px;
	height: 14px;
	fill:#fff;
	margin-right: 4px;
}

 /* 动画效果 */
@keyframes tagPartFadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}
.tagpart {
	animation: fadeIn 0.5s ease forwards;
}

.gywd .xw_right{
	width: 21%;
}
.wd_big_title{
	color:#244DA7;
	font-size: 24px;
	padding-left: 20px;
	border-left: 8px solid #244DA7;
	line-height: 1;
	margin-bottom: 25px;
	font-weight: bold;
}
.wd_navs{
	column-gap: 12px;
	row-gap: 12px;
}
.wd_navs .item{
	border-radius: 4px;
	border:1px solid #eee;
	font-size: 16px;
	color:#666;
	transition: all 0.3s;
	padding: 6px 12px;
}
.wd_navs .item:hover,
.wd_navs .item.active{
	background: #244DA7;
	color:#fff;
	border-color: #244DA7;
}
.wditem{
	display: block;	
}
.wditem .tt{
	position: relative;
	font-size: 16px;
	color:#333;
}
.wditem:hover .tt{
	color: #244DA7;
}
.wditem .desc{
	font-size: 16px;
	color:#999;
	margin-top: 15px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}
.wditem .wdicon{
	border-radius: 4px;
	color:#fff;
	font-size: 15px;
	width: 26px;
	height: 26px;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
}
.wditem .tt .wdicon{
	background: #FF4F2D;
}
.wditem .desc .wdicon{
	background: #47B850;
}
.wditem .text{
	word-wrap: break-word;
white-space: normal;;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	line-height: 26px;
	margin-left: 15px;
}
.wditem .bominfo{
	color:#aaa;
	font-size: 14px;
	margin-top: 20px;
}
.wditem .bominfo svg{
	width: 20px;
	height: 20px;
	margin-right: 5px;
}


.gywd .tjxm_swiper .swiper-slide{
	height: calc((100% - 36px) / 4) ;
}
.gywd .tjxm_swiper .item{
	display: flex;
	align-items: center;
}
.gywd .tjxm_swiper .item .thumb{
	padding-bottom: 0;
	width: 48%;
	margin-right: 15px;
	margin-bottom: 0;
	border-radius: 4px;
}
.gywd .tjxm_swiper .item .thumb .image-container{
	padding-bottom: 66.66%;
	width: 100%;
	position: relative;
}

.gywd .tjxm_swiper .item .t{
	flex: 1;
}

.gywd .nyrmht .item .num{
	display: none;
}
.gywd .nyrmht .item .t{
	position: relative;
	padding-left: 10px;
}
.gywd .nyrmht .item .t::before{
	position: absolute;
	content: '';
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #999;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.gywd .nyrmht .item .t:hover::before{
	background: #244DA7;
}
.gywd .bk-xq-bq .t{
	line-height: 27px;
}
.gywd .bk-xq-bq .tag{
	background: #F5FAFE;
	color:#7298C5;
}
.gywd .xq-bqsm{
	padding-left: 0;
	padding-right: 0;
	background: none;
	font-size: 14px;
	color:#aaa;
	padding-top: 20px;
	border-top: 1px solid #eee;
}
.rgjjfa{
	color:#fff;
	font-size: 16px;
	padding: 10px 20px;
	border-radius: 2em;
	background: #244DA7;
	transition: all 0.3s;
	margin-top: 20px;
}
.rgjjfa:hover{
	background: #47B850;
}
.wd-sm-title{
	font-size: 16px;
	color:#999;
	margin-bottom: 30px;
	margin-top: 20px;
}
.wd-answer{
	background: linear-gradient(to bottom , #F7F8FC , transparent);
	padding: 24px 30px;
	border-radius: 10px;
}
.wd-answer .num{
	font-size: 18px;
	color:#333;
}
.wd-answer .icon{
	border-radius: 4px;
	color:#fff;
	font-size: 16px;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	background: #47B850;
	margin: 20px 0 40px;
}

.gywdpd_top{
	background: #fff;
	padding-bottom: 40px;
	margin-bottom: 25px;
}
.gywdpd_top .center{
	max-width: 1300px;
}
.gywdpd_top .btitle{
	font-size: 30px;
	font-weight: bold;
	color: #244DA7;
	min-width: 21%;
	margin-right: 20px;
}
.wd-search{
	border-radius: 6px;
	border: 1px solid #244DA7;
	margin-right: 20px;
	width: 50%;
	padding-left: 10px;
	overflow: hidden;
	flex: 1;
}
.wd-search .submit{
	background: #244DA7;
	color:#fff;
	font-size: 18px;
	padding: 8px 40px;
	border: none;
	cursor: pointer;
}
.wd-search input{
	border: none;
	outline: none;
	width: 100%;
}
.gywdpd_top .sst{
	font-size: 14px;
	color:#333;
	line-height: 26px;
}
.gywdpd_top .tags{
	gap: 8px;
}
.gywdpd_top .tag{
	border-radius: 4px;
	font-size: 12px;
	transition: all 0.5s;
	color:#999;
	border: 1px solid #eee;
	padding: 4px 8px;
}
.gywdpd_top .tag:hover{
	background: #244DA7;
	border-color: #244DA7;
	color:#fff;
}
.gywdpd_top .more{
	color: #47B850;
	font-size: 14px;
	display: none;
}
.wd_left .part,
.wd_mid .part{
	box-sizing: border-box;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
	width: 100%;
}
.wd_left{
	width: 21%;
	row-gap: 20px;
}
.wd_left .wd_big_title{
	font-size: 18px;
}
.wd_left .wd_navs{
	gap:8px;
}
.wd_left .wd_navs .item{
	font-size: 14px;
	padding: 4px 8px;
}

.gywdpd_main.list_xw{
	column-gap: 20px;
}

.wd-tab-con .wd-tab-item{
	display: none;
}

.wd-tab-nav{
	background: #fff;
}
.wd-tab-nav .tab-item{
	padding:20px 30px;
	font-size: 18px;
	color:#333;
	border-bottom: 2px solid transparent;
	cursor: pointer;
}
.wd-tab-nav .tab-item.current{
	border-color: #244DA7;
	color: #244DA7;
}
.wd-tab-nav .tab-item:hover{
	color: #244DA7;
}
.wd_mid{
	row-gap: 20px;
	width: calc(58% - 40px);
}
.wd-tab-con .part{
	margin-bottom: 20px;
}

.wd_mid_swiper{
	position: relative;
	width: 50%;
}
.wd_mid_swiper .item{
	position: relative;
	overflow: hidden;
}
.wd_mid_swiper .item .thumb{
	position: relative;
	padding-bottom: 66.66%;
	overflow: hidden;
}
.wd_mid_swiper .item .thumb img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s;
}
.wd_mid_swiper .item .t{
	position: absolute;
	left: 10px;
	font-size: 14px;
	color:#fff;
	box-sizing: border-box;
	width: 80%;
	line-height: 40px;
	bottom: 0;
	z-index: 1;
	transform: translateY(100%);
    opacity: 0;
    transition: transform 0.7s, opacity 0.7s ease;
}
.wd_mid_swiper .item:hover img{
	transform: scale(1.1);
}

/* 激活状态的文字动画效果 - 从下往上显示 */
.wd_mid_swiper .swiper-slide.swiper-slide-active .t {
	transform: translateY(0);
	opacity: 1;
}

/* 离开状态的文字动画效果 - 从上往下隐藏 */
.wd_mid_swiper .swiper-slide.swiper-slide-next .t,
.wd_mid_swiper .swiper-slide.swiper-slide-prev .t {
	transform: translateY(100%);
	opacity: 0;
}

.wd_mid_swiper .item::after{
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50px;
	background: linear-gradient(to bottom , transparent , rgba(0,0,0,.5));
}
.wd_mid_swiper .item .t p{
	word-wrap: break-word;
white-space: normal;;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	width: 100%;
}
.wd_mid_swiper .swiper-pagination{
    position: absolute;
    width: auto;
    color: #fff;
    bottom: 10px;
    right: 10px;
    width: 40px;
    transform: none;
    left: auto;
}
.wd_mid_top .list{
	padding: 10px 0 0 20px;
}
.wd_mid_top .list .item .t{
	word-wrap: break-word;
white-space: normal;;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	font-size: 16px;
	color:#666;
}
.wd_mid_top .list .item:nth-child(1) .t{
	color:#333;
}
.wd_mid_top .list .item:hover .t{
	color: #244DA7;
}
.wd_mid_top .list .item .icon{
	background: #47B850;
    color: #fff;
    font-size: 13px;
    border-radius: 4px;
    line-height: 25px;
    height: 25px;
    padding: 0px 6px;
    margin-right: 10px;
}
.wd_mid_top .list .item .dot{
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ccc;
	margin-right: 8px;
}
.wd_mid_top .list .item:hover .dot{
	background: #244DA7;
}
.wd_mid_top .list .item:not(:last-child){
	margin-bottom: 20px;
}

.bkphb,
.gybkpd_zxct{
	max-width: 1300px;
	margin-bottom: 50px;
}
.gybkpd_zxct .title{
	color: #244DA7;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 25px;
}
.gybkpd_zxct .djjz{
	border-radius: 2em;
	padding: 10px 40px;
	color:#fff;
	background: #244DA7;
	font-size: 16px;
	margin-top: 38px;
	transition: all 0.3s;
}
.gybkpd_zxct .djjz:hover{
	background: #47B850;
}
.gybkpd_zxct .list{
	gap:25px;
}
.gybkpd_zxct .list .case-item{
	background: #fff;
}
.gybkpd_zxct .list .case-title{
	text-align: center;
}
.gybkpd_zxct .list .case-item:hover .case-title{
	color: #244DA7;
}

.bkphb{
	background: #fff;
	box-sizing: border-box;
	padding: 30px;
	column-gap: 50px;
	row-gap: 25px;
}
.bkphb-item{
	width: calc((100% - 150px) / 4);
}
.bkphb .top{
	margin-bottom: 30px;
}
.bkphb .top h2{
	position: relative;
	font-size: 20px;
	color: #244DA7;
}
.bkphb .top h2::before{
	bottom: -15px;
	position: absolute;
	content: '';
	width: 74px;
	height: 5px;
	background: #244DA7;
	left: 0;
}
.bkphb .top .more{
	font-size: 14px;
	color:#999;
}
.bkphb .top .more:hover{
	color: #244DA7;
}
.bkphb .thead {
	justify-content: space-between;
	padding: 20px 0;
	border-bottom: 1px solid #eee;
	column-gap: 12px;
}
.bkphb .thead .text{
	text-align: center;
	font-size: 16px;
	color:#bbb;
}
.tdlist .td .text:nth-child(1),
.bkphb .thead .text:nth-child(1){
	width: 50px;
}
.bkphb .thead .text:nth-child(2){
	flex: 1;
}
.tdlist .td .rd,
.bkphb .thead .text:nth-child(3){
	width: 70px;
}
.bkphb .tdlist .td{
	justify-content: space-between;
	padding: 20px 0 20px 0;
	column-gap: 12px;
	height: 60px;
	align-items: center;
	box-sizing: border-box;
}
.bkphb .tdlist .td:not(:last-child){
	border-bottom: 1px solid #eee;
}
.tdlist .td .num{
	background: #BABABA;
	font-size: 14px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
	color:#fff;
	border-radius: 2px;
}
.tdlist .td:nth-child(1) .num{
	background: #244DA7;
}
.tdlist .td:nth-child(2) .num{
	background: #3B66C2;
}
.tdlist .td:nth-child(3) .num{
	background: #4673D8;
}
.tdlist .td .rd{
	font-size: 14px;
	color: #244DA7;
	text-align: center;
}
.tdlist .td .text:nth-child(2){
	word-wrap: break-word;
white-space: normal;;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	font-size: 15px;
	color:#333;
	flex: 1;
    text-align: center;
}
.tdlist .no-data{
	text-align: center;
	margin-top: 20px;
}
.wd-no-data{
	text-align: center;
	margin-top: 50px;
	display: flex;
	row-gap: 20px;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.wd-no-data svg{
	width: 250px;
	height: 250px;
}

.gybk_top{
	column-gap: 30px;
	max-width: 1300px;
	margin-bottom: 30px;
}
.gybk_top_swiper{
	width: 58%;
	border-radius: 8px;
	overflow: hidden;
}
.gybk_top_right{
	width: calc(42% - 30px);
	border-radius: 8px;
	background: #557BD0;
	color:#fff;
	box-sizing: border-box;
	padding: 25px;
	position: relative;
}
.gybk_top_right::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
	pointer-events: none;
	animation: rotateBg 60s linear infinite;
}
@keyframes rotateBg {
	from { transform: rotate(0); }
	to { transform: rotate(360deg); }
}

.gybk_top_right .title{
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 12px;
}
.gybk_top_right .title svg{
	fill: #fff;
	width: 30px;
	height: 30px;
	margin-right: 5px;
}
.gybk_top_right .wordle{
	background: #244DA7;
	border-radius: 8px;
	padding: 20px;
	height: 390px;
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
	box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}
/* 球形词云容器 */
.gybk_top_right .wordle .sphere-container {
	position: absolute;
	top: 0;
	left: -5%;
	width: 100%;
	height: 100%;
	perspective: 1200px;
}

/* 词条样式 */
.gybk_top_right .wordle .tag {
	position: absolute;
	top: 50%;
	left: 50%;
	color: white;
	font-weight: bold;
	text-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
	transform-origin: center;
	transform-style: preserve-3d;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	cursor: default;
	white-space: nowrap;
	z-index: 1;
	text-align: center;
	user-select: none;
	pointer-events: auto;
	opacity: 0.9;
	will-change: transform, font-size, opacity;
	cursor: pointer;
}
.gybk_top_right .wordle .tag:hover {
	font-size: 22px !important;
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
	z-index: 100;
}



.gybk_top_swiper .swiper-slide{
	padding-bottom: 66.66%;
	position: relative;
}
.gybk_top_swiper .swiper-slide .pic{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
}
.gybk_top_swiper .swiper-pagination{
	text-align: right;
	width: 100%;
	bottom: 15px;
    right: 0;
	padding-right: 20px;
    box-sizing: border-box;
}
.gybk_top_swiper .swiper-pagination .swiper-pagination-bullet {
	background: rgba(255,255,255,.6);
	color:#fff ;
	opacity: 1;
	width: 12px;
	height: 12px;
	margin: 0 6px;
}
.gybk_top_swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
	background: #47B850;
}



.page_search{
	max-width: 1300px;
}
.page_search .tab-nav{
	background: #fff;
	font-size: 20px;
	color:#333;
	border-radius: 10px;
	padding: 28px 20px;
}
.page_search .tab-nav .tab-nav-item{
	cursor: pointer;
}
.page_search .tab-nav .tab-nav-item:hover,
.page_search .tab-nav .tab-nav-item.current{
	color: #47B850;
	font-weight: bold;
}
.page_search .tab-nav .tab-nav-item:not(:last-child){
	margin-right: 40px;
}
.page_search .ss-fl-title {
	margin: 35px 0;
	font-size: 24px;
	color:#333;
}
.page_search .ss-fl-title b{
	color: #244DA7;
}
.page_search .ss-fl-title .tips{
	color:#999;
	font-size: 14px;
	margin-left: 20px;
}
.page_search .ss-fl-title .more{
	color:#999;
	font-size: 14px;
}
.page_search .tab-con-item{
	display: none;
}

.ss-bklist{
	gap: 25px;
}
.ss-bklist .case-title {
    text-align: center;
}
.page_search .ss-fl-title .more:hover,
.ss-bklist .case-item:hover .case-title {
    color: #244DA7;
}
.ss-bklist .case-item {
    background: #fff;
}
.ss-fl-list,
.ss-fl-all-list{
	background: #fff;
	font-size: 20px;
	color:#333;
	border-radius: 10px;
	padding: 34px 28px;
	box-sizing: border-box;
	column-gap: 50px;
}
.ss-fl-all-list .thumb{
	width: 26%;
	padding-bottom: 16%;
	position: relative;
	overflow: hidden;
	display: block;
}
.ss-fl-all-list .thumb img{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 0;
	left: 0;
}
.ss-wzlist{
	column-gap: 10%;
	row-gap: 5px;
	align-items: center;
}
.ss-wzlist .item{
	width: 45%;
	font-size: 16px;
	color:#666;
	display: block;
	line-height: 1;
}
.ss-wzlist .item .t{
	word-wrap: break-word;
white-space: normal;;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
.ss-wzlist .item:hover{
	color: #244DA7;
}
.page_search_fl,
.page_search_all{
	margin-bottom: 50px;
}

.ss-gywd{
	row-gap: 20px;
}
.ss-gywd .item{
	word-wrap: break-word;
white-space: normal;;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    font-size: 16px;
    color: #666;
    transition: all 0.3s;
    position: relative;
    padding-left: 25px;
	width: 45%;
}
.ss-gywd .item::before{
	width: 10px;
	height: 10px;
	position: absolute;
	content: '';
	border-radius: 50%;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: #d3d3d3;
	transition: all 0.3s;
}
.ss-gywd .item:hover::before{
	background: #244DA7;
}
.ss-gywd .item:hover{
	color: #244DA7;
}
.ss-fl-list .xwitem .thumb{
	width: 25%;
	padding-bottom: 16%;
}


.not_found{
	min-height: 70vh;
	width: 100%;
	padding-bottom: 10vh;
}
.not_found .img{
	max-width: 100%;
}
.not_found .text{
	color:#333;
	font-size: 30px;
	margin-top: 30px;
	font-weight: bold;
}
.not_found .text a{
	color: #47B850;
}


.contact-top{
	border: 10px solid #EDEDED;
	box-sizing: border-box;
	margin: 80px auto;
}
.contact-top-img{
	width: 45%;
}
.contact-top-l{
	flex: 1;
	padding: 0 8%;
}
.contact-top-l .tt{
	color:#333;
	font-size: 28px;
	font-weight: bold;
}
.contact-top-l .tt::after{
	content: '';
	width: 55px;
	height: 4px;
	background: #47B850;
	margin: 20px 0 20px;
	display: block;
}
.contact-top-l .cont{
	font-size: 16px;
	color:#666;
	line-height: 1.6;
}

.contact-tt{
	font-size: 32px;
	font-weight: bold;
	color: #244DA7;
	margin-bottom: 50px;
	text-align: center;
}
.contact-lxfs{
	background: #F6F6F6;
}
.contact-item{
	padding: 20px 1% 0;
	width: 25%;
	text-align: center;
	box-sizing: border-box;
}
.contact-item:not(:last-child){
	border-right: 1px solid #e2e2e2;
}
.contact-item .icon{
	width: 50px;
	height: 50px;
	fill: #244DA7;
	margin-bottom: 20px;
}
.contact-item .t1{
	font-size: 16px;
	margin-bottom: 10px;
	color:#666;
}
.contact-item .t2{
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 10px;
	color:#333;
}
.contact-item .t3{
	font-size: 14px;
	color:#999;
}
.contact-item .v1{
	font-size: 18px;
	margin-bottom: 10px;
	color:#333;
	margin-top: 20px;
}
.contact-item .ewm{
	width: 100px;
	margin: auto;
}
.contact-map{
	height: 500px;
}


.wzdt-title{
	border-bottom: 1px solid #eee;
	margin-bottom: 30px;
}
.wzdt-title a{
	display: inline-block;
	background: #244DA7;
	color:#fff;
	font-size: 22px;
	line-height: 46px;
	height: 46px;
	padding: 0 30px;
}
.wzdt-link {
	column-gap: 20px;
	row-gap: 12px;
	margin-bottom: 50px;
}
.wzdt-link a{
	border: 1px solid #eee;
	border-radius: 4px;
	font-size: 16px;
	color:#333;
	padding: 8px 30px;
}
.wzdt-link a:hover{
	background: #244DA7;
	color:#fff;
	border-color: #244DA7;
}

.wzdt-top a{
	font-size: 14px;
	color:#999;
	line-height: 1;
}
.wzdt-top a:nth-child(1){
	margin-right: 10px;
	padding-right: 10px;
	border-right: 1px solid #ddd;
}

.nymbx-mobile{
	background: #f5f5f5;
    height: 50px;
    font-size: 13px;
    color: #666;
}
.nymbx-mobile a{
    position: relative;
    height: 30px;
    line-height: 30px;
    padding: 0 12px;
    margin-top: 10px;
	background: #fff;
}
.nymbx-mobile a:not(:last-child){
	background:#fff url(../images/mbx-mobile-icon.png) no-repeat center right / auto 100%;
	padding-right: 30px;
}
.nymbx-mobile a:last-child{
	flex: 1;
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    white-space: normal;
}
.social-share .social-share-icon{
	border: none !important;
	width: auto !important;
	height: auto !important;
	color: #BDBDBD !important;
}
.social-share .icon-wechat .help{
	display: none !important;
}
.social-share .icon-qq{
	color: #BDBDBD !important;
}
.social-share .icon-qq:hover{
	color: #56b6e7 !important;
	background: none !important;
}
.social-share .icon-wechat:hover{
	color: #7bc549 !important;
	background: none !important;
}
.social-share .icon-qzone:hover{
	color: #FDBE3D !important;
	background: none !important;
}
.social-share .icon-weibo:hover{
	color: #ff763b !important;
	background: none !important;
}


@media ( max-width:1440px ) {



}
@media ( max-width:920px ) {
	.padd{
		padding: 50px 0;
	}
	.listryzz li{
		width:calc((100% - 20px) / 2);
		margin:0 20px 20px 0;
	}
	.listryzz li:nth-child(2n){
		margin-right:0;
	}


	.cp_detail .thumb{
		width: 100%;
		margin-bottom: 20px;
		margin-right: 0;
		padding-bottom: 60%;
	}
	.nyban{
		height: 180px;
	}
	.nyban .imgg img{
		object-fit: cover;
        position: absolute;
		left: 50%;
        transform: translate(-50%, -50%);
        top: 50%;
        height: 100%;
	}
	.nyban .new_txt{
		width: 90%;
		font-size: 28px;
	}

	.nynav{
		overflow-x: scroll;
   	 	white-space: nowrap;
		top: 60px;
	}
	.nynav .item{
		height: 60px;
		line-height: 60px;
		font-size: 16px;
		padding: 0 20px;
	}
	.footer .right{
		padding: 20px 0;
	}

	.culture-item{
		width: 100%;
		padding: 30px 0;
	}
	.culture-item .icon{
		margin: 0 30px 0 20px;
	}
	.culture-item:first-child{
		padding-top: 0;
	}

	.gywdpd_top .btitle,
	.contact-tt,
	.biggest-tt{
		font-size: 28px;
	}
	.culture-title{
		font-size: 24px;
	}
	.bq-relate-title{
		font-size: 22px;
	}
	.hxyw-detail-top .title,
	.contact-item .t2,
	.contact-top-l .tt,
	.case-detail .title,
	.xw-xq-title {
		font-size: 20px;
	}
	.page_search .ss-fl-title,
	.page_search .tab-nav,
	.hxyw-relate .biggest-tt,
	.message-tt,
	.hxyw-xq-tt,
	.xw_right .part .btitle{
		font-size: 18px;
	}
	
	.form-message .item .t,
	.form-message .submit,
	.hxyw-detail-top .btn,
	.xwitem .tt,
	.xw_left .navs .item,
	.case-detail .lm,
	.case-detail .cont,
	.cases-lm-info,
	.case-nynav .item{
		font-size: 16px;
	}
	.culture-cont{
		font-size: 15px;
	}
	.ss-wzlist .item,
	.ss-gywd .item,
	.wd_navs .item,
	.form-message .radios,
	.hxyw-detail-top .infos,
	.contact-top-l .cont,
	.xw_right .hot-topic .item .t,
	.xq-relate-tab .list .item,
	.case-title{
		font-size: 14px;
	}
	.bq-telate-item .tag,
	.xq-bqsm{
		font-size: 12px;
	}
	.gybkpd_zxct .list,
	.fwlc .list,
	.cases.hxyw .list,
	.ryzz{
		gap:20px;
	}
	.fwlc .list .item,
	.ryzz-item{
		width: calc(50% - 10px);
	}

	.preview-modal .modal-nav{
		background: rgba(0, 0, 0, 0.4);
		width: 50px;
		height: 50px;
	}
	.preview-modal .modal-nav:hover {
		background: rgba(0, 0, 0, 0.4);
	}

	.case-nynav{
		margin: 30px auto;
	}
	.case-nynav.case-nynav-fixed{
		margin-top: 0;
		top: 60px;
	}
	.case-nynav .center{
		display: block;
		white-space: nowrap;
		overflow-x: scroll;
		padding: 0 0;
	}
	.cases .list {
		gap: 20px;
	}
	.case-item{
		width: calc((100% - 20px) / 2);
	}

	.hxyw .case-nynav .item{
		padding: 8px 18px;
	}
	.hxyw .case-item{
		width: calc((100% - 20px) / 2);
	}
	.case-title{
		margin: 15px auto;
	}

	.fwlc .list{
		margin-top: 30px;
	}

	.nymbx2 .center,
	.nymbx{
		display: none;
	}
	.bq-telate-list,
	.case-detail .images{
		gap:20px;
	}
	.case-detail .img{
		width: calc((100% - 20px) / 2);
		padding-bottom: 34%;
	}

	.nymbx2{
		display: none;
	}

	.bkphb-item,
	.gybk_top_right,
	.gybk_top_swiper,
	.contact-item,
	.contact-top-l,
	.contact-top-img,
	.xq-bom-top,
	.xw_left,
	.xw_right{
		width: 100%;
	}

	.tjxm_swiper{
		height: auto;
	}

	.xw_left .navs{
		white-space: nowrap;
		overflow-x: scroll;
	}

	.xwitem {
		column-gap: 15px;
	}

	.list_xw{
		row-gap: 20px;
	}
	.xwitem .thumb{
		width: 36%;
	}

	.xw-xq-title{
		margin-top: 0;
	}
	.lxgcs{
		margin-top: 15px;
	}
	
	.gybk_top_right .wordle,
	.list_bq .part,
	.xw_right .part,
	.xw_left .part{
		padding: 15px;
	}

	.xq-relate-tab .tab-nav-item{
		font-size: 16px;
		padding-left: 12px;
		padding-right: 12px;
	}
	.xq-relate-tab .list .item{
		margin-top: 12px;
	}
	.xq-relate-tab .tab-nav{
		margin-bottom: 20px;
	}
	.wd_navs,
	.xq-bom .tags {
		gap:8px;
	}

	.contact-top-l{
		padding: 20px;
	}

	.contact-item{
		border-bottom: 1px solid #e2e2e2;
		border-right: none !important;
		padding: 20px 0;
	}
	.contact-item:last-child{
		border-bottom: none;
		padding-bottom: 0;
	}
	.contact-item:first-child{
		padding-top: 0;
	}

	.contact-map{
		height: 250px;
	}

	.contact-top{
		margin: 40px auto;
	}
	.hxyw-detail-top .left{
		margin-right: 0;
		margin-bottom: 20px;
		width: 100%;
	}
	.hxyw-detail-top .infos{
		margin-bottom: 30px;
	}
	.hxyw-detail-top .btn{
		width: calc((100% - 24px) / 2);
		padding: 12px 0;
		text-align: center;
	}

	.yw-message{
		padding: 20px;
	}
	.form-message .item.type2,
	.form-message .item.type1{
		width: 100%;
		display: block;
	}
	.form-message .item .t{
		width: 100%;
		text-align: left;
		margin-bottom: 10px;
	}
	.form-message .submit{
		margin: 0 auto;
		display: block;
	}
	.form-message .item .box{
		padding: 6px 10px;
	}
	
	.tagslist{
		gap:10px;
	}
	.tagslist .tag{
		padding: 6px 15px;
	}
	.tagslist.collapsed{
		height: 120px;
	}

	.bq-telate-item{
		width: calc((100% - 20px) / 2);
	}

	.bq-telate-item .tags{
		gap:5px;
	}
	.bq-telate-item .tag:not(:first-child){
		display: none;
	}
	.gybk_top{
		row-gap: 20px;
	}
	
	.bkxq-relate-list .item{
		width: 100%;
	}
	.gywdpd_top .btitle,
	.wd-search,
	.gybk_detail .xq-share{
		width: 100%;
		margin-bottom: 10px;
		margin-right: 0;
	}
	.ss-gywd .item,
	.ss-fl-all-list .thumb,
	.ss-fl-title-t,
	.wd_mid_swiper,
	.wd_left,
	.gywd .xw_right{
		width: 100%;
	}
	.wd-search .submit{
		padding: 8px 20px;
	}

	.wd-tab-nav .tab-item{
		font-size: 16px;
		padding: 15px 30px;
	}

	.page_search .tab-nav{
		display: block;
		padding: 20px 20px;
		white-space: nowrap;
		overflow-x: scroll;
	}
	.page_search .tab-nav .tab-nav-item{
		display: inline-block;
		font-size: 16px;
	}
	.page_search .tab-nav .tab-nav-item:not(:last-child){
		margin-right: 25px;
	}
	
	.ss-fl-title-t{
		margin-bottom: 10px;
	}

	.page_search .ss-fl-title .tips{
		margin-left: 0;
	}

	.ss-fl-list, 
	.ss-fl-all-list{
		padding: 20px;
	}

	.ss-fl-all-list .thumb{
		padding-bottom: 60%;
		margin-bottom: 15px;
	}
	.ss-wzlist{
		row-gap: 12px;
		column-gap: 5%;
	}
	.ss-gywd{
		row-gap: 12px;
	}

	.ss-fl-list .xwitem .thumb{
		padding-bottom: 0;
		height: 11vh;
		width: 36%;
	}

	.ss-fl-list .xwitem{
		padding: 15px 0;
	}
	.page_search .ss-fl-title{
		margin: 25px 0;
	}

	.xq-bom-top{
		flex: auto;
	}

	.wd-answer{
		padding: 20px 12px;
	}
	.wd-answer .icon{
		margin-bottom: 20px;
	}
	.xq-cont{
		margin-top: 0;
		margin-bottom: 0;
	}
	.gywdpd_top_bom{
		justify-content: flex-start !important;
	}
	.gybk_top_right{
		display: none;
	}
	.case-detail .title{
		margin-top: 20px;
	}
	.gywdpd_top{
		padding-top: 20px;
	}
}



