@CHARSET "UTF-8";
/* home-news */
.home-news{ 
	overflow:hidden; 
	width:100%; 
	background:#fff; 
	padding:50px 0;
}
.home-news .home-news-top{ 
	border-bottom:2px solid #ddd; 
	height:50px; 
	line-height:50px;
}
.home-news .home-news-top .home-news-title {
    padding: 0 5px 0 5px;
	font-size: 24px;
	color: #0168B7;
	font-weight: bold;
	border-bottom: 2px solid #0168B7;
	float: left;
	height: 50px;
	margin-bottom: 0; 
	
}
.home-news .home-news-top .home-news-title a{
	color: #0168B7;
}
.home-news .home-news-top .home-news-ico {
    font-size: 18px;
    color: #b1b1b1;
    font-weight: bold;
    float: left;
    margin-left: 30px;
    height: 50px;
    margin-bottom: 0;
}
/* 列表容器隔离（两个列表分开） */
.news-container {
	max-width: 100%;
}
.news-container h3 {
	font-size: 18px;
	color: #333;
}
/* 列表1专属样式 */
.home-news-1 ul { padding:0px;}
.home-news-1 ul li{ list-style-type:none;}
.home-news-1 .item-1 {
	width: 100%;
	max-width: 100%;
	cursor: pointer;
}
.home-news-1 .trigger-1 {
	color: #333;
	font-size: 16px;
	cursor: pointer;
	transition: color 0.3s ease;
	display: inline-block;
	margin:2px 0;
}
.home-news-1 .trigger-1:hover {
	color: #004999;
	text-decoration: underline;
}
.home-news-1 .content-1 {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, opacity 0.3s ease;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-top: 8px;
}
.home-news-1 .content-1.show {
	max-height: 120px;
	opacity: 1;
}
.home-news-1 .content-1 .img-box {
	flex: 0 0 30%;
	min-width: 150px;
}
.home-news-1 .content-1 .img-box img{ 
	width:200px;
	height:138px;
	object-fit: cover;
	border-radius: 4px;
}
.home-news-1 .content-1 .text-box {
	flex: 0 0 65%;
	min-width: 200px;
}
.home-news-1 .content-1 h5 {
	font-size: 18px;
	color: #333;
	font-weight: normal;
	margin-top:0px;
}
.home-news-1 .content-1 p {
	font-size: 14px;
	color: #666;
	line-height: 1.8;
	margin: 0;
}
/* 列表2专属样式（类名后缀2，完全独立） */
.home-news-2 ul { padding:0px;}
.home-news-2 ul li{ list-style-type:none;}
.home-news-2 .item-2 {
	width: 100%;
	max-width: 100%;
	cursor: pointer;
}
.home-news-2 .trigger-2 {
	color: #333;
	font-size: 16px;
	cursor: pointer;
	transition: color 0.3s ease;
	display: inline-block;
	margin:2px 0;
}
.home-news-2 .trigger-2:hover {
	color: #0066cc; /* 列表2 hover颜色区分 */
	text-decoration: underline;
}
.home-news-2 .content-2 {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, opacity 0.3s ease;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-top: 8px;
}
.home-news-2 .content-2.show {
	max-height: 120px;
	opacity: 1;
}
.home-news-2 .content-2 .img-box {
	flex: 0 0 30%;
	min-width: 150px;
}
.home-news-2 .content-2 .img-box img{ 
	width:200px;
	height:138px;
	object-fit: cover;
	border-radius: 4px;
}
.home-news-2 .content-2 .text-box {
	flex: 0 0 65%;
	min-width: 200px;
}
.home-news-2 .content-2 h5 {
	font-size: 18px;
	color: #333;
	font-weight: normal;
	margin-top:0px;
}
.home-news-2 .content-2 p {
	font-size: 14px;
	color: #666;
	line-height: 1.8;
	margin: 0;
}
/* 通用响应式适配 */
@media (max-width: 768px) {
	.trigger-1, .trigger-2 { 
		font-size: 15px; 
		padding: 6px 0;
	}
	.content-1, .content-2 {
		flex-direction: column;
		gap: 15px;
	}
	.content-1 .img-box, .content-1 .text-box,
	.content-2 .img-box, .content-2 .text-box {
		flex: 0 0 100%;
		min-width: auto;
	}
	.content-1 h5, .content-2 h5 { font-size: 16px; }
	.content-1 p, .content-2 p { font-size: 13px; }
	.content-1 .img-box img, .content-2 .img-box img {
		width: 100%;
		height: auto;
		max-height: 150px;
	}
}
/* 通用链接样式 */
.news-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

/* 教学服务 home-jxfw */
.home-jxfw{ 
	overflow:hidden; 
	width:100%; 
	background:#f2f2f2; 
	padding:50px 0;
}

.home-jxfw ul{ 
	padding:0px;
}
.home-jxfw ul li{
	list-style-type:none;
	text-align:center;

	
}
.home-jxfw .col{
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	background:#fff;
	min-height:250px;
	border-radius:5px;
	padding:30px;
}
.home-jxfw .col img{ 
	border-radius:5px;
}
.home-jxfw ul li a{
	color:#333;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	background:#fff;
}
.home-jxfw ul li a:hover span{
	color:#333;
	font-weight:bold;
}
.home-jxfw ul li img{
	width:100%;
}
.home-jxfw .text span{
	font-size:16px;
	line-height:40px;
}
.home-jxfw .text p{
	font-size:14px;
}

/* home-title */
.home-title .en {
	font-size: 44px;
	text-align: center;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	text-transform: uppercase;
	line-height: 44px;
	color: #999;
	font-weight: bold;
}
.home-title .en span{ 
	color:#0168B7;
}
.home-title .ch span:before{
	left:-50%;
}
.home-title .ch{
	text-align:center;
	font-size:16px;
	margin-top:15px;
}
.home-title .ch span:after,.home-title .ch span:before{
	content:"";
	height:1px;
	width:50%;
	background:#999;
	top:50%;
	position:absolute;
	
}
.home-title .ch span {
	font-size: 18px;
	position: relative;
	display: inline-block;
	padding: 0 20px;
	color: #999;
}
.home-title .ch span:after {
	right: -50%;
}
.home-title .ch span .round.rl {
	left: 0;
}
.home-title .ch span .round.rr {
	right: 0;
}


.home-title .ch span .round {
    position: absolute;
    _border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -mz-border-radius: 50%;
    width: 1px;
    height: 8px;
    top: 50%;
    margin-top: -4px;
    background-color: #999;
    -webkit-transform: rotate(324deg);
}


.home-title h4{ 
	text-align:center; 
	margin:30px 0;
	font-size:24px;
	font-weight:400;
}


/* 培训项目 home-pxxm */
.home-pxxm{ 
	overflow:hidden; 
	width:100%; 
	background:#fff; 
	padding:50px 0;
}



/* 通用滚动模块样式 - 所有模块共用基础样式 */
.scroll-module {
	width: 100%;
	_background: #212121;
	padding: 10px 0;
	position: relative;
	_margin: 30px 0;
}
.scroll-module h3 {
	color: #fff;
	text-align: center;
	margin-bottom: 20px;
	font-size: 24px;
}
.scroll-outer {
	width: calc(100% - 80px);
	max-width: 1280px;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}
.scroll-list {
	display: flex;
	position: relative;
	left: 0;
	transition: left 0.3s ease;
	padding: 0;
	margin: 0;
}

/* 通用卡片样式 - 移动端2个/PC端4个适配 */
.scroll-item {
	list-style: none;
	width: calc((100% - 30px) / 2); /* 移动端2个卡片基础宽度 */
	max-width: 280px;
	min-height: 280px;
	padding: 15px 0px;
	color: #6C6E85;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 7.5px;
	transition: background 0.3s;
	flex-shrink: 0; /* 禁止收缩 */
	background: #fff;
	border-radius: 5px;
	_box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}
.scroll-item:hover {
	background: #fff;
	border-radius: 5px;
}
.scroll-item a{
	color:#333;
}
.scroll-item a:hover{
	color:#0168B7;
}

/* 通用头像/图片样式 */
.scroll-avatar {
	width: 100%;
	height: auto;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.scroll-avatar img {
	width: 80%;
	min-height: 190px;
	_border: 4px solid #343851;
	_border-radius: 50%;
	z-index: 1;
	border-radius: 5px;
}

.scroll-avatar::after {
	content: "";
	position: absolute;
	inset: 0;
	_background: url(https://www.inhand.com.cn/images/proBor2.png) no-repeat center/contain;
	_transition: transform 0.5s;
}
.scroll-item:hover .scroll-avatar::after {
	transform: rotate(-62deg);
}

/* 产品模块特殊样式 - 图片改为方形 */
._product-module ._scroll-avatar img {
	border-radius: 8px;
	width: 160px;
	height: 120px;
	border: none;
}




.product-module .scroll-avatar::after {
	background: none;
}

/* 通用文字样式 */
.item-name {
	font-size: clamp(16px, 4vw, 20px);
	line-height: 50px;
	text-align: center;
	_border-bottom: 1px solid #6C6E85;
	width: 100%;
	margin: 8px 0;
}
.item-desc {
	font-size: clamp(14px, 3vw, 16px);
	text-align: center;
	width: 90%;
	margin:0px auto;
	line-height: 30px;
	flex: 1;
}

/* 通用控制按钮 */
.ctrl-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 35px;
	height: 35px;
	cursor: pointer;
	z-index: 10;
	opacity: 0.8;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}
.prev-btn { left: 10px; }
.next-btn { right: 10px; }
.ctrl-btn:hover {
	opacity: 1;
	background: rgba(255,255,255,0.2);
}
.ctrl-btn img { 
	width: 500%; 
	filter: invert(0.5); 
	
}


/* PC端适配 - 显示4个卡片 */
@media (min-width: 768px) {
	.scroll-module { padding: 40px 0; }
	.scroll-outer { 
		width: calc(100% - 100px); 
		max-width: 1280px; 
	}
	.scroll-item { 
		width: calc((100% - 45px) / 4); /* PC端4个卡片基础宽度 */
		max-width: 290px;
		margin: 0 7.5px; 
		min-height: 340px; 
	}
	.ctrl-btn { width: 40px; height: 40px; }
	.prev-btn { left: -20px; }
	.next-btn { right: -20px; }
}


/* 典型案例 home-dxal */
.home-dxal{ 
	overflow:hidden; 
	width:100%; 
	background:#f2f2f2; 
	padding:50px 0;
}

/* 关于我们 home-about */
.home-about{ 
	overflow:hidden; 
	width:100%; 
	background:#fff; 
	padding:50px 0;
}

/* 友情链接 links */
.home-links{
	background:#777;
	padding:20px 0;
}
.home-links span{
	color:#fff;
	font-size:16px;
	line-height:40px;
}

