.banner-about {
	height: 70vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #0b1a3a 0%, #0f2a55 100%);
	background-image: url(../images/about_bg.jpg);
	background-size: cover;
	background-position: center center;
	color: white;
}

.banner-about-content {
	max-width: 700px;
	z-index: 2;
}

.banner-about h1 {
	font-size: clamp(2.5rem, 8vw, 4.2rem);
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 1.2rem;
	background: linear-gradient(to right, white, #00a8ff);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.banner-about p {
	font-size: clamp(1rem, 4vw, 1.3rem);
	opacity: 0.9;
	line-height: 1.6;
	max-width: 600px;
	margin-top: 40px;
}



/* Section with offset text */
.section {
	padding: 120px 10%;
	position: relative;
}

.section-title {
	font-size: 2.1rem;
	font-weight: 700;
	color: #0266bb;
	margin-bottom: 2.5rem;
	position: relative;
	text-align: center;
}

.content-block .section-title {
	text-align: left;
}

.section-title span {
	position: relative;
}

.section-title span::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 40px;
	height: 4px;
	background: #ff6b35;
	border-radius: 2px;
}

.content-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 100px;
	align-items: center;
}

.text-block {
	font-size: 1.05rem;
	color: #2d3748;
}

.text-block p {
	margin-bottom: 1.2rem;
}

.image-block {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
	height: 420px;
	background: #e2e8f0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #4a5568;
	font-style: italic;
}

/* Network section – staggered layout */
.network-section {
	padding: 120px 10% !important;
	background-image: url(../images/about_img1.jpg);
	background-size: cover;
	background-position: center center;
}

.network-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
	margin-top: 40px;
}

.net-item {
	flex: 1;
	min-width: 250px;
	padding: 70px 45px;
	background: rgba(231, 244, 251, 0.8);
	border-radius: 14px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
}

.net-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 30px rgba(0, 80, 180, 0.15);
}

.net-item h4 {
	font-size: 24px;
	margin-bottom: 20px;
	color: #0266bb;
	text-align: center;
}

.net-item p {
	margin-top: 20px;
	color: #666;
	font-size: 16px;
}

.net-item h4 em {
	display: block;
	font-size: 40px;
	padding-bottom: 10px;
}

.clients-strip {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
	margin-top: 50px;
	opacity: 0.85;
}

.client-name {
	font-weight: 600;
	font-size: 1.1rem;
	padding: 8px 20px;
	box-shadow: #eee 0px 0px 20px;
	color: #0266bb;
}

/* Final CTA – full width with gradient */
.cta-section {
	background: linear-gradient(135deg, #0266bb 0%, #007bff 100%);
	background-image: url(../images/about_img2.jpg);
	background-size: cover;
	background-position: center center;
	color: white;
	padding: 100px 10%;
	text-align: center;
}

.cta-section h2 {
	font-size: 2.4rem;
	margin-bottom: 20px;
	font-weight: 800;
}

.cta-section p {
	max-width: 900px;
	margin: 0 auto 30px;
	font-size: 1.15rem;
	opacity: 0.95;
}

.highlight-orange {
	color: #b28303;
}


.main-page {
	padding: 110px 10%;
}


.banner-node {
	background: #f3f3f3;
	height: 60vh;
	display: flex;
	align-items: center;
	background-position: center center;
	background-size: cover;
}



.banner-node h2 {
	padding-bottom: 20px;
	letter-spacing: 10px;
	font-size: clamp(2.5rem, 8vw, 4.2rem);
	/* 自适应字体大小 */
	font-weight: 700;
	line-height: 1.1;
	background: linear-gradient(to right, white, #00a8ff);
	/* 渐变背景 */
	-webkit-background-clip: text;
	/* 兼容Safari和Chrome */
	background-clip: text;
	color: #fff;
	/* 文本透明，仅显示渐变 */
}


.banner-node .txt {
	width: 80%;
	margin-left: 10%;
	padding-top: 70px;
	text-align: center;
}

.location {
	background: rgba(0, 0, 0, 0.2);
	display: inline-block;
	border-radius: 20px;
	padding: 5px 20px;
}


.banner-node .location a,
.banner-proshow .location a {
	display: inline-block;
	color: #ddd;
	position: relative;
	margin-right: 5px;
	padding-right: 17px;
}

.banner-node .location a:after,
.banner-proshow .location a:after {
	font-family: "iconfont" !important;
	position: absolute;
	right: 0px;
	top: 0px;
	font-size: 16px;
	content: "\eb8a";
}

.banner-node .location a:last-child,
.banner-proshow .location a:last-child {
	margin: 0px;
	padding: 0px;
}

.banner-node .location a:last-child:after,
.banner-proshow .location a:last-child:after {
	display: none;
}

.banner-node .location a:hover,
.banner-proshow .location a:hover {
	color: #fff;
}

.tree {
	border-bottom: 1px solid #ddd;
	background-color: #eee;
}

.tree .wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: center;
}

.tree a {
	display: block;
	padding: 20px 0px;
	font-size: 18px;
	position: relative;
	margin: 0px 10px;
}

.tree a.active {
	color: #0266bb;
	font-weight: bold;
}

.tree a.active::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 3px;
	background: #0266bb;
}

.culture {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: space-between;
	align-items: center;
	text-align: center;

}

.cul-item {
	width: calc(50% - 20px);
	background: #f3f3f3;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.cul-item-img {
	width: 50%;
}

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

.cul-item-txt {
	width: 50%;
}

.cul-item h4 {
	font-size: 24px;
	margin-bottom: 20px;
}

.cul-item p {
	color: #666;
	font-size: 16px;
}


.timeline {
	position: relative;
	padding-left: 30px;
	border-left: 2px solid #ddd;
	margin: 0px 20%;
}

.event {
	margin-bottom: 30px;
	position: relative;
}

.event::before {
	content: '';
	position: absolute;
	left: -38px;
	top: 5px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background-color: #0266bb;
	border: 2px solid #fff;
	box-shadow: 0 0 0 2px #0266bb;
}

.date {
	font-weight: bold;
	color: #0266bb;
	font-size: 16px;
	margin-bottom: 5px;
}

.summary {
	background: #fff;
	padding: 18px;
	border-radius: 6px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}


/*韩国专线*/

.service-card {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 40px;
}

.service-card .card {
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	width: calc(33.3% - 20px);
	min-width: 300px;
	transition: transform 0.3s ease;
}

.service-card .card:hover {
	transform: translateY(-5px);
}

.service-card .card-img {
	height: 180px;
	background-color: #eee;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: #888;
}

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

.service-card .card-content {
	padding: 20px;
}

.service-card .card h2 {
	color: #0266bb;
	margin-bottom: 12px;
	font-size: 1.4rem;
}

.service-card .card p {
	color: #555;
}

@media (max-width: 768px) {
	.service-card .card {
		width: 100%;
	}
}



.service-card1 {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 40px;
	justify-content: space-between;
}

.service-card1 .card {
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	width: calc(50% - 20px);
	min-width: 300px;
	transition: transform 0.3s ease;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:30px;
    align-items: center;
}

.service-card1 .card:hover {
	transform: translateY(-5px);
}

.service-card1 .card-img {
	height: 260px;
	background-color: #eee;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: #888;
	width: 50%;
}

.service-card1 .card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-card1 .card-content {
	width: calc(50% - 70px);
	padding: 0px 20px;
}

.service-card1 .card h2 {
	color: #0266bb;
	margin-bottom: 12px;
	font-size: 1.4rem;
}

.service-card1 .card p {
	color: #555;
}

@media (max-width: 768px) {
	.service-card1 .card {
		width: 100%;
	}
}






.text-cards{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 40px;
	justify-content: space-between;
}

.text-cards .card {
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	width: calc(50% - 20px);
	min-width: 300px;
	transition: transform 0.3s ease;
	border-top: 5px solid #0266bb;
	
}

.text-cards .card:hover {
	transform: translateY(-5px);
}

.text-cards .card h2 {
	color: #0266bb;
	padding-top: 20px;
	font-size: 1.4rem;
	text-align: center;
}

.text-cards .card p {
	color: #555;
	padding: 40px;
}

@media (max-width: 768px) {
	.text-cards .card {
		width: 100%;
	}
}




.contact {
	padding: 100px 0px;
}

.contact-top{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: space-between;
	margin-bottom: 60px;
}
.contact-map{
	width: 55%;
	background: #edf2fd;
	border-radius: 10px;
}
.contact-map img{
	width: 100%;
	height: auto;
	border-radius: 10px;
}



.contact-small {
	font-size: 24px;
	line-height: 1.6;
	font-weight: 700;
	padding-top: 20px;
	text-transform: uppercase
}

.contact-other {
	color: #666;
	padding-top: 20px;
}

.contact-bg {
	margin-top: 70px;
}

.contact-infos {
	width: 42%;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content:space-between;
	text-align: center;
}
.contact-item{
	width: calc(50% - 55px);
	border: 1px solid #eee;
	padding: 20px;
	position: relative;
	transition: transform 0.3s ease;
    display: flex;
	border-top: 2px solid #0266bb;
}

.contact-item:hover {
	transform: translateY(-5px);
}
.contact-item h4{
	font-size:16px;
	color: #0266bb;
	text-align: left;
	padding-bottom: 15px;
}
.contact-item h4 i{
	padding-right: 10px;
}
.contact-item p{
	text-align: left;
}

.contact-ico i{
	display: block;
	height: 50px;
	width: 50px;
	line-height: 50px;
	font-size: 14px;
	color: #fff;
	border-radius: 50%;
	background-color: #0266bb;
	text-align: center;
}
.contact-infos span{
	display: block;
	padding-top: 30px;
}

.contact-msg {
	padding: 40px 60px;
	border: 1px solid #eee;
	background-color: #f3f3f3;
	transition: transform 0.3s ease;
}

.contact-msg:hover {
	transform: translateY(-5px);
}


.contact-list {
	text-align: center;
	padding-bottom: 40px;
}

.contact-tit {
	font-size: 36px;
	font-weight: bold;
	line-height: 1.4;
}

.contact-form {
	margin-top: 40px;
}

.msg-rows{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
}

.msg-row {
	width: 100%;
	margin-top: 30px;
	position: relative;
}
.msg-rows .msg-row{
	width: calc(33.3% - 20px);
}

.msg-row .txt {
	border-bottom: 1px solid #666;
	height: 20px;
	padding: 5px 0px;
	line-height: 20px;
	width: 100%;
	background: none;
}

.msg-row .txt::placeholder {
	color: #000;
	font-size: 14px;
}

.msg-row .text::placeholder {
	color: #000;
	font-size: 14px;
}

.msg-row .text {
	width: 100%;
	border-bottom: 1px solid #666;
	height: 50px;
	line-height: 20px;
	padding: 15px 0px;
	background: none;
}

.msg-txt-wrong {
	position: absolute;
	top: -10px;
	left: 0px;
	color: red;
}

.msg-code {
	margin-top: 30px;
	position: relative;
	display: flex;
	align-items:end;
	gap: 10px;
}

.msg-code .txt {
	border-bottom: 1px solid #666;
	background: none;
	height: 20px;
	padding: 5px 0px;
	line-height: 20px;
}

.msg-btn {
	margin-top: 60px;
	text-align: center;
}
.msg-btn .more{
	width: 160px;
}



/* 新闻 */
.news{
	background: #f3f3f3;
	padding:100px 0px;
}
.news-list{
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}
.news-info{
	background: none;
	width: calc(33.3% - 30px);
}
.news-info a{
	display: block;
	border: 8px solid #fff;
	border-radius: 5px;
	background-color: #fff;
	transition: transform 0.3s ease;
}

.news-info a:hover {
	transform: translateY(-5px);
}
.news-img{
	height: 240px;
	width: 100%;
	overflow: hidden;
}
.news-img img{
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.news-para{
	padding:20px;
}
.news-para h4{
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 20px;
}
.news-para p{
	line-height: 20px;
	height: 40px;
	overflow: hidden;
	color: #666;
}
.news-para span{
	display: block;
	padding-top: 20px;
}

.news-show{
	margin: 100px 15%;
	padding: 100px 100px;
    box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.1);
	border-radius: 20px;
}

.news-show-tit {}

.news-show-tit h2 {
	font-weight: bold;
	font-size: 34px;
	line-height: 1.6em;
	padding-bottom: 20px;
}

.news-show-tit span {
	display: block;
	color: #0266bb;
}

.news-show-share {
	color: #999;
	font-size: 16px;
	position: relative;
	border-bottom: 1px solid #ddd;
	padding: 20px 20%;
	display: flex;
}

.news-show-share a {
	color: #999;
	margin-left: 15px;
}

.news-show-share a:hover {
	color: #0266bb;
}

.show-share-list {
	display: flex;
	gap: 10px;
	margin-top: 50px;
}

.show-share-list a {
	display: block;
	width: 38px;
	height: 38px;
	line-height: 38px;
	background-color: #0266bb;
	color: #fff;
	text-align: center;
	transition: 0.3s all;
	-webkit-transition: 0.3s all;
	-o-transition: 0.3s all;
	-moz-transition: 0.3s all;
	-ms-transition: 0.3s all;
	border-radius: 50%;
}
.show-share-list a i{

	font-size: 14px;
}

.show-share-list a:hover {
	background-color: #0053c3;
}

.news-show-tags {
	color: #999;
	padding-top: 20px;
}

.news-show-tags a {
	color: #999;
	margin-left: 5px;
}

.news-show-tags i,
.news-show-tags span {
	padding-right: 10px;
}

.news-show-tags a:hover {
	color: #0266bb;
}

.news-show-info {
	color: #0266bb;
	font-size: 16px;
}

.news-show-info span {
	padding: 0px 8px;
}

.news-show-info span:first-child {
	padding-left: 0px;
}

.news-show-con {
	padding-top: 60px;
}

.news-show-con img {
	max-width: 100%;
}

.news-show-other {
	margin: 60px 0px 0px 0px;
	display: flex;
	gap: 10px;
}

.news-show-other div{
	border: 1px solid #eee;
	border-radius: 5px;
}

.news-show-other a {
	color: #666;
	display: inline-block;
}

.news-show-other a:hover {
	color: #0266bb;
}

.news-show-back,
.news-show-prev,
.news-show-next {
	width: calc(33.3% - 40px);
	padding: 0px 20px;
}

.news-show-back {
	text-align: center;
	display: flex;
	align-items: center;
    justify-content: center;
}

.news-show-prev a,
.news-show-next a {
	display: block;
	padding: 20px 0px;
	line-height: 24px;
}

.news-show-prev a i {
	margin-right: 20px;
	color: #fff;
}

.news-show-next a i {
	margin-left: 20px;
	color: #fff
}

.news-show-prev a i,
.news-show-next a i {
	font-size: 20px;
}

.news-show-back a {
	text-align: center;
}





.pagination {
	margin-top: 60px;
}

.pagination-list {
	padding: 40px 0px 50px 0px;
}

.pagination a {
	display: inline-block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	overflow: hidden;
	margin-right: 3px;
	text-align: center;
	border: 1px solid #ddd;
	position: relative;
}

.pagination a.active {
	background: #0266bb;
	border: 1px solid #0266bb;
	color: #fff;
}

.pagination a.active:hover {
	background: #0266bb;
	border: 1px solid #0266bb;
	color: #fff;
}

.pagination a:hover {
	background: #eee;
}

.pagination a.p_prev:after {
	content: "\eb95";
	font-size: 22px;
	font-family: "iconfont" !important;
}

.pagination a.p_next:after {
	content: "\eb8a";
	font-size: 22px;
	font-family: "iconfont" !important;
}

.pagination a.p_home:after {
	content: "\e6c5";
	font-size: 18px;
	font-family: "iconfont" !important;
}

.pagination a.p_last:after {
	content: "\e6c4";
	font-size: 18px;
	font-family: "iconfont" !important;
}



@media only screen and (max-width: 1600px) {
	.section {
		padding: 120px 5%;
	}

	.clients-strip {
		justify-content: flex-start;
		gap: 30px;
	}
	.client-name img{
		width: 120px;
		height: auto;
		display: block;
	}

	.net-item{
		padding:40px 35px;
	}
	.net-item h4{
		font-size: 20px;
	}
	.text-block{
		font-size: 14px;
	}

	.foot-infos{
		width: 30%;
	}
	.foot-contact{
		width: 50%;
	}
}
@media only screen and (max-width: 1200px) {
	.page5-foot{
		height: 180px;
	}
	.foot-infos{
		width: 90%;
		margin:0 10%;
	}
	.foot-contact{
		width: 80%;
		justify-content: flex-start;
		margin:0 10%;
		padding-top: 30px;
	}
}
@media only screen and (max-width: 1200px) {
	.page1-txt h1 {
        font-size: 70px;
    }
	.i-about-infos h2,.i-news-tit h4,.i-ys-tit{
		font-size: 30px;
	}
	.specialline-infos h4{
		font-size: 24px;
	}
	.page5-foot{
		height: 180px;
	}
	.foot-infos{
		width: 90%;
		margin:0 10%;
	}
	.foot-contact{
		width: 80%;
		justify-content: flex-start;
		margin:0 10%;
		padding-top: 30px;
	}

}

@media only screen and (max-width: 450px) {
	.logo{
		margin-left: 0px;
	}
	.wrap{
		margin: 0 5%;
	}
	.page1-txt h1 {
        font-size: 30px;
    }
	.page1-txt h4{
		font-size: 16px;
		padding:0 5%;
	}
	.swiper-button-next2,.swiper-button-prev2{
		display: none;
	}
	.page1-box{
		display: block;
		width: 90%;
		left: 5%;
		bottom: 20px;
	}
	.box-search,.box-login{
		width: 100%;
	}
	.box-login{
		margin-top: 20px;
	}

	.i-about{
		align-content: center;
	}
	.i-about-infos{
		width: 100%;
	}
	.i-about-video{
		width: calc(100% - 20px);
		margin-top: 30px;
	}
	.i-about-infos h2, .i-news-tit h4, .i-ys-tit{
		font-size: 24px;
	}
	.i-about-video,.i-video-bg,.i-about-video video{
		height: 280px;
	}
	.i-about .more a{
		width: auto;
		padding: 10px;
	}

	.specialline{
		width: 90%;
	}
	.specialline-infos p{
		width: 100%;
	}
	.specialline-list-item{
		padding: 15px;
		text-align: center;
	}
	.specialline-list-item .item-img img{
		height: 28px;
	}

	.i-news-tit{
		display: block;
	}
	.i-news-more{
		margin:0px;
	}
	.i-news-list{
		padding-top: 40px;
	}
	.i-ys-tit{
		padding-bottom: 40px;
	}

	.banner-about{
		height: 50vh;
	}
	.banner-about h1 {
		font-size: clamp(1.5rem, 7vw, 3.2rem);
	}
	.content-block{
		display: block;
	}
	.section{
		padding: 60px 5%;
	}
	.cta-section h2{
		font-size: 2rem;
	}
	.cta-section p{
		font-size: 1rem;
	}

	

    .banner-node{
		height: 30vh;
	}
	.tree{
		display: none;
	}
	.main-page{
		padding: 60px 5%;
	}
	.cul-item{
		width: calc(100% - 20px);
	}
	.culture{
		gap:20px;
	}
	.service-card1 .card-img{
		width: 100%;
		height: 185px;
	}
	.service-card1 .card-content{
		width: calc(100% - 70px);
	}

	.news-info {
		background: none;
		width: calc(100% - 30px);
	}

	.news-show {
		margin: 40px 5%;
		padding: 0px;
		box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
		border-radius: 0px;
	}
	.news-show-con{
		padding-top: 30px;
	}
	.news-show-other{
		flex-wrap: wrap;
	}
	.news-show-back{
		display: none;
	}
	.news-show-back, .news-show-prev, .news-show-next {
		width: calc(100% - 40px);
		padding: 0px 10px;
	}
	.news-show-other div{
		border: none;
	}
	.news-show-prev a, .news-show-next a{
		padding: 5px 0px;
	}

	.contact{
		padding: 60px 0px;
	}
	.contact-map{
		width: 100%;
	}
	.contact-infos{
		width: 100%;
	}
	.contact-item {
		width: calc(100% - 55px);
	}
	.contact-msg{
		padding: 30px;
	}
	.contact-form{
		margin-top: 0px;
	}
	.msg-rows{
		gap:0px;
	}
	.msg-rows .msg-row {
		width: calc(100% - 20px);
	}
}