﻿/* 内页轮播图样式 - 无缝版本 */
#InnerBanner {
    width: 100vw !important;
    height: 650px !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    overflow: hidden !important;
    background: #000 !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    line-height: 0 !important;
    /* 关键：确保与导航栏无缝连接 */
    margin-top: -1px !important;
    position: relative !important;
    top: -1px !important;
}

#InnerBanner .fullSlide {
    width: 100% !important;
    position: relative !important;
    height: 650px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    line-height: 0 !important;
}

#InnerBanner .fullSlide .bd {
    width: 100% !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 0 !important;
    overflow: hidden !important;
    background: #000 !important;
    height: 650px !important;
    padding: 0 !important;
    border: none !important;
    line-height: 0 !important;
}

#InnerBanner .fullSlide .bd ul {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    line-height: 0 !important;
}

#InnerBanner .fullSlide .bd li {
    width: 100% !important;
    height: 650px !important;
    overflow: hidden !important;
    text-align: center !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    /* 修改：使用cover保持比例 */
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    border: none !important;
    line-height: 0 !important;
}

#InnerBanner .fullSlide .bd li a {
    display: block !important;
    height: 650px !important;
    width: 100% !important;
    text-decoration: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    line-height: 0 !important;
}

#InnerBanner .fullSlide .bd li img {
    width: 100% !important;
    height: 100% !important;
    /* 关键修改：使用cover保持图片比例不变形 */
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    vertical-align: top !important;
    line-height: 0 !important;
}

/* 轮播图控制元素 */
#InnerBanner .fullSlide .hd {
    width: 100% !important;
    position: absolute !important;
    z-index: 1 !important;
    bottom: 0 !important;
    left: 0 !important;
    height: 30px !important;
    line-height: 30px !important;
    margin: 0 !important;
    padding: 0 !important;
}

#InnerBanner .fullSlide .hd ul {
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

#InnerBanner .fullSlide .hd ul li {
    cursor: pointer !important;
    display: inline-block !important;
    width: 22px !important;
    height: 7px !important;
    margin: 5px !important;
    overflow: hidden !important;
    background: #000 !important;
    filter: alpha(opacity=50) !important;
    opacity: 0.5 !important;
    line-height: 999px !important;
}

#InnerBanner .fullSlide .hd ul .on {
    background: #f00 !important;
}

/* 响应式设计 - 保持比例 (1920:650) */
@media screen and (max-width: 1600px) {
    #InnerBanner,
    #InnerBanner .fullSlide,
    #InnerBanner .fullSlide .bd,
    #InnerBanner .fullSlide .bd li,
    #InnerBanner .fullSlide .bd li a {
        height: 542px !important; /* 1600 × (650/1920) = 542px */
    }
}

@media screen and (max-width: 1366px) {
    #InnerBanner,
    #InnerBanner .fullSlide,
    #InnerBanner .fullSlide .bd,
    #InnerBanner .fullSlide .bd li,
    #InnerBanner .fullSlide .bd li a {
        height: 463px !important; /* 1366 × (650/1920) = 463px */
    }
}

@media screen and (max-width: 1200px) {
    #InnerBanner,
    #InnerBanner .fullSlide,
    #InnerBanner .fullSlide .bd,
    #InnerBanner .fullSlide .bd li,
    #InnerBanner .fullSlide .bd li a {
        height: 406px !important; /* 1200 × (650/1920) = 406px */
    }
}

@media screen and (max-width: 1024px) {
    #InnerBanner,
    #InnerBanner .fullSlide,
    #InnerBanner .fullSlide .bd,
    #InnerBanner .fullSlide .bd li,
    #InnerBanner .fullSlide .bd li a {
        height: 347px !important; /* 1024 × (650/1920) = 347px */
    }
}

@media screen and (max-width: 768px) {
    #InnerBanner,
    #InnerBanner .fullSlide,
    #InnerBanner .fullSlide .bd,
    #InnerBanner .fullSlide .bd li,
    #InnerBanner .fullSlide .bd li a {
        height: 260px !important; /* 768 × (650/1920) = 260px */
    }
}

@media screen and (max-width: 480px) {
    #InnerBanner,
    #InnerBanner .fullSlide,
    #InnerBanner .fullSlide .bd,
    #InnerBanner .fullSlide .bd li,
    #InnerBanner .fullSlide .bd li a {
        height: 163px !important; /* 480 × (650/1920) = 163px */
    }
}

/* 额外：针对超宽屏幕的优化 */
@media screen and (min-width: 1921px) {
    #InnerBanner,
    #InnerBanner .fullSlide,
    #InnerBanner .fullSlide .bd,
    #InnerBanner .fullSlide .bd li,
    #InnerBanner .fullSlide .bd li a {
        height: 650px !important; /* 保持原始高度 */
    }
    
    #InnerBanner .fullSlide .bd li img {
        /* 超宽屏幕时图片水平居中显示 */
        object-position: center center !important;
    }
}


#body .inner .left{
	border:1px solid #DDDDDD;
	width:240px; /* 增加宽度 */
	float:left;
}
#body .inner .right{
	width:824px; /* 调整宽度以保持总宽度 */
	float:right;
	border:1px solid #DDDDDD;
	padding-bottom:50px;
}
#body .inner .left .Sbox{
	width:240px; /* 同步增加宽度 */
	padding-bottom:10px;
	font-size:16px;
}

#body .inner .left .Sbox .topic{
	background:url("/images/jlschinared/topic_bg1.gif") repeat left top;
	font-size:16px;
	font-family:"Microsoft Yahei";
	margin:0;
	line-height:50px; /* 增加行高 */
	height:50px; /* 增加高度 */
	border-bottom:1px solid #DDDDDD;
	padding-left:10px;
	color:#FFFFFF;
	font-weight:bold;
	display:flex;
	align-items:center; /* 垂直居中 */
}
#body .inner .left .Sbox .blank ul {
	padding:0;
	margin:0;
}
#body .inner .left .Sbox .blank ul li{
	cursor:pointer;
	height:48px; /* 增加高度 */
	display:flex;
	align-items:center; /* 垂直居中 */
}
#body .inner .left .Sbox .blank .current a{
	background:#b6120f;
	border-bottom:1px solid #FFFFFF;
}	
#body .inner .left .Sbox .blank .current a{
	color:#FFFFFF;
}
#body .inner .left .Sbox .blank ul li a{
	display:flex;
	align-items:center; /* 垂直居中 */
	height:48px; /* 增加高度 */
	width:100%; /* 确保宽度填满 */
	padding-left:30px;
	border-bottom:1px dotted #DDDDDD;
	background:url("/images/jlschinared/link_bg2.gif") no-repeat 12px center; /* 垂直居中背景图标 */
}	
#body .inner .left .Sbox .blank ul li a:hover{
	background:#b6120f;
	border-bottom:1px solid #FFFFFF;
	color:#FFFFFF;
	text-decoration:none;
}

#body .inner .left .Sbox .list dl{
	padding:0px 10px;
	}
#body .inner .left .Sbox .list dl dt{
	font-family:Arial;
	color:#666666;
	line-height:42px; /* 进一步增加行高 */
	font-size:16px;} /* 进一步增大字体 */

#body .inner .left .Sbox .list dl dd{
	line-height:42px; /* 进一步增加行高 */
	border-bottom:1px dotted #DDDDDD;
	background:url("/images/title_icon1.jpg") no-repeat 0px 16px; /* 调整背景位置 */
	padding-left:10px;
	}
#body .inner .left .Sbox .txt{
	padding:10px;
	font-size:16px;} /* 进一步增大字体 */
}
	
#body .inner .right  .Position{
   	font-size:12px;
	line-height:33px;
	background:url("/images/jlschinared/box_bg5.jpg") repeat left top;
	}
#body .inner .right  .Position a{
	color:#666666;}
#body .inner .right  .Position span{
	padding-left:10px;
 	}



#body .inner .right .main{
    width:100%;
    float:left;
	padding:20px; /* 增加内边距 */
	font-size:16px;
	line-height:1.8; /* 优化行高 */
	min-height:400px; /* 设置最小高度 */
	display:flex;
	flex-direction:column;
	justify-content:flex-start; /* 内容顶部对齐 */
}

/*content*/
#body .inner .right .main .content .title h3{
	text-align:center;
	font-size:20px;
	font-weight:normal;
	font-family:"Microsoft Yahei";}
#body .inner .right .main .content .infos{
	font-size:16px;
	line-height:40px;
	color:#666666;
	text-align:center;}
#body .inner .right .main .content .maincontent{
	font-size:16px;}
#body .inner .right .main .content .maincontent p{
	padding:5px 0px;
	line-height:200%;
	}
#body .inner .right .main .content .download{
	background:url("/images/jlschinared/downicon.gif") no-repeat 15px 7px;
	padding-left:55px;
	border:1px solid #F5F5F5;
	line-height:40px;
	font-size:16px;
	font-family:Arial, Helvetica, sans-serif;
	margin:10px 0px;}

#body .inner .right .main .content .prenext{
	padding:10px 0px;
	margin-top:10px;}
#body .inner .right .main .content .prenext ul li{
	line-height:30px;
	background:url("/images/jlschinared/jiantou.gif") no-repeat 0px 1px;
	padding-left:15px;}				
				
#body .inner .right .main .ArticleList{
    width:100%;
	font-size:14px;}
#body .inner .right .main .ArticleList td{
    min-width:650px;
    line-height:35px;
	border-bottom:1px dashed #CCC;
	display:inline;
    }	
#body .inner .right .main .ArticleList .fw_t{
    font-size:14px;
	}
#body .inner .right .main .ArticleList .fw_s{
    width:10%;
   	font-size:14px;
	font-family:Arial, Helvetica, sans-serif;
	color:#666666;}

/* recruit */

#body .inner .right .main .RecruitList{
	}
#body .inner .right .main .RecruitList td{
	line-height:35px;
	border-bottom:1px dotted #CCC;
	font-size:12px;}	
#body .inner .right .main .RecruitList .Rtitle{
	background:#f5f5f5;
	color:#b6120f;
	font-size:14px;
	padding-left:10px;
	height:30px;
	line-height:30px;}
#body .inner .right .main .RecruitList .Rtitle span{
	text-align:right;
	font-size:12px;}

#body .inner .right .main .content .ProInfo .image{
	float:left;}	
	
#body .inner .right .main .content .ProInfo .column{
	float:right;
	width:500px;}
	
#body .inner .right .main .content .ProInfo .image img{
	width:270px;
	height:270px;
	}

#body .inner .right .main .content .ProInfo .image a{
	display:block;
	width:270px;
	height:270px;
	border:2px solid #F5F5F5;
	padding:2px;	
	}
#body .inner .right .main .content .ProInfo .image a:hover{
	border:2px solid #b6120f;}
#body .inner .right .main .content .ProInfo .column .title{
	background-color:#f5f5f5;
	padding:0px 10px;}
#body .inner .right .main .content .ProInfo .column .title h3{
	text-align:left;
	font-size:14px;
	line-height:25px;
	font-weight:bold;}
	
#body .inner .right .main .content .ProInfo .column .infos{
	text-align:left;}
#body .inner .right .main .content .ProInfo .column ul li{
	line-height:33px;
	height:33px;
	color:#333;
	font-weight:normal;}

#body .inner .right .main .content .ProInfo .column ul li span{
	width:100px;
	height:20px;
	font-weight:bold;
	padding:3px;
	color:#333;
	}					
#body .inner .right .main .content .ProInfo .column ul .MPrice{
	color:#666666;
	text-decoration:line-through;
	}
#body .inner .right .main .content .ProInfo .column ul .NPrice{
	color:#F00;
	font-weight:bold;}
#body .inner .right .main .content .ProInfo .column ul .NPrice .BuyCount{
	color:#060;}
	
#body .inner .right .main  .IntroTitle{
	font-size:14px;
	line-height:25px;
	border-left:3px solid #b6120f;
	margin:10px 0px;
	padding-left:10px;
	color:#b6120f;
	font-weight:bold;
	background-color:#e5e5e5;}

#body .inner .right .main .content .MorePro{
	}

#body .inner .right .main .content .MorePro  .albumblock{
	padding:10px 15px 30px 20px;
	width:165px;
	height:190px;
	float:left;}
#body .inner .right .main .content .MorePro  .albumblock .inner{
	width:165px;
	height:190px;
	margin:inherit;
	}

#body .inner .right .main .content .MorePro .albumblock .inner img{
 	}

#body .inner .right .main .content .MorePro  .albumblock .inner .albumtitle{
 	}
/* 强制显示完整标题，覆盖JS修改 */
.albumtitle a {
    all: initial !important;
    display: block !important;
    white-space: normal !important;
    overflow: visible !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    word-wrap: break-word !important;
}

.albumtitle a::after {
    content: attr(title) !important;
}
#body .inner .right .main .content .MorePro  .albumblock{
	padding:10px 15px 30px 20px;
	width:165px;
	height:220px; /* 增加30px高度 */
	float:left;
}

#body .inner .right .main .content .MorePro  .albumblock .inner{
	width:165px;
	height:220px; /* 增加30px高度 */
	margin:inherit;
	}

#body .inner .right .main .content .MorePro .albumblock .inner img{
 	/* 图片样式保持不变 */
	}

#body .inner .right .main .content .MorePro  .albumblock .inner .albumtitle{
	min-height: 80px; /* 增加标题区域最小高度 */
	height: auto; /* 改为自适应高度 */
	display: flex;
	align-items: center;
	justify-content: center;
	}	
	
#body .inner .right .main .content .CaseBlock li{
	width:330px;
	float:left;
	padding-left:10px;
	}
#body .inner .right .main .content .CaseBlock .Cimg a{
	display:block;
	border:1px solid #F5F5F5;
	padding:1px;}
#body .inner .right .main .content .CaseBlock .Cimg a:hover{
	border:1px solid #b6120f;}		
#body .inner .right .main .content .CaseBlock .case_ct{ height:30px; line-height:30px; color:#2586BE; background:#E5F4FC; font-weight:bold;}
#body .inner .right .main .content .CaseBlock .case_txt{ padding-left:10px;height:30px; line-height:30px;   text-align:left;font-size:12px;color:#666;}
#body .inner .right .main .content .CaseBlock .case_mc{ color:#C90;font-weight:bold;}
#body .inner .right .main .content .CaseBlock .case_mc a{color:#c90;}
#body .inner .right .main .content .CaseBlock .hycd_ct{ height:35px; line-height:35px;  color:#fff;  font-weight:bold; padding-left:40px;}
#body .inner .right .main .content .CaseBlock .hycd_ct a{ color:#fff;}
#body .inner .right .main .content .CaseBlock .hycd_ct a:hover{ color:#FFFACC}
#body .inner .right .main .content .CaseBlock .hycd_ct a:visited{ color:#fff}
#body .inner .right .main .content .CaseBlock .hycd_mc{ color:#ff6600;}
#body .inner .right .main .content .CaseBlock .ttp{ margin-top:10px; margin-bottom:10px;}	


/* sitemap */
#body .inner .right .main .SiteMap{
	padding:0px 10px;}
		
#body .inner .right .main .SiteMap ul li{
	font-weight:bold;
	line-height:25px;
	padding:10px 20px;
	border-bottom:1px dashed #CCCCCC;
	font-size:14px;
	background:url("/images/jlschinared/ico4.jpg") no-repeat left 18px;}


#body .inner .right .main .SiteMap ul li ul li{
	font-weight:normal;
	border-bottom:none;
	font-size:12px;
	background:none;
	padding:5px 0px;}
					



/* FeedBack */
 .FeedBack {
 }
 .FeedBack .Fleft{
	width:80px;
	float:left;
	}
 .FeedBack .Fleft .Ficon{
	padding:0px  12px;
	}
 .FeedBack .Fleft .Fname{
	text-align:left;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	padding-top:5px;
	color:#b6120f;
	font-weight:bold;}		
 .FeedBack .Fright{
   	float:left;
	width:500px;
	padding-bottom:10px;
		}
 .FeedBack .Fright .Fcontent .Ftime{
	text-align:right;
	font-family:Arial, Helvetica, sans-serif;
	color:#b6120f;
	padding:0px 20px 5px 20px;}	
 .FeedBack .Fright .Fcontent{
	width:500px;
	background:url("/images/jlschinared/PostBG.jpg") no-repeat left top;
	padding:10px 0px;
	}
 .FeedBack .Fright .Fcontent p{
	padding:0px 20px 5px 50px;}

 .FeedBack .Fright .Fcontent .Freply .FRtitle{
	margin-left:20px;
	line-height:20px;
	color:#FFFFFF;
	height:25px;
	background:url("/images/jlschinared/picon.gif") no-repeat 2px 0px;
	padding-left:20px;
	font-weight:bold;}
 .FeedBack .Fright .Fcontent .Freply p{
	color:#989E4D}	
 .FeedBack .Fright .Fline{
	float:right;
	width:472px;
	border-top:1px solid #EDEDEF;
	display:block;
	filter:progid:DXImageTransform.Microsoft.Shadow(Color=#999999, Strength=1, Direction=180);} 

 .FeedBack .IntroTitle{
	width:765px;
	margin:auto;
		}
.FeedBack .commentbox {
    margin: 0 auto; /* 水平居中 */
    padding-top: 5px;
    width: 600px; /* 设置固定宽度才能居中 */
    float: none; /* 取消浮动 */
}
 .FeedBack .commentbox #commentform td{
       height:40px;
       font-size:12px;
       display:table-row-group;
	 }
 .FeedBack .commentbox #commentform input{
       height:24px;
       line-height:24px;}
 .FeedBack .commentbox #commentform td span{
   	font-weight:bold;
	color:#900;}
 .FeedBack .commentbox #commentform .Cbutton{
	line-height:24px;
	background:#b6120f;
	border:none;
	color:#FFFFFF;
	font-size:14px;
	cursor:pointer;}	

#body .inner .right .main .FeedBack .commentlist dt{
	padding:5px 10px;
	background-color:#dededc;
	height:22px;
	line-height:22px;
	font-size:12px;}	
#body .inner .right .main .FeedBack .commentlist dd{
	padding:15px 0px 15px 0px;
	line-height:180%;
	font-size:14px;
	}	
#body .inner .right .main .FeedBack .commentlist dd  b{
	color:#458D3A;}

#body .inner .right .main .FeedBack .commentlist dd span{
	color:#A00000;}	
#body .inner .right .main .FeedBack .commentlist p{
	padding:0px;
	line-height:180%;
	margin:0px;}



.clicktimes{
	display:none;}
/*img list*/
.ImageList{
	padding:10px 0px;}
.ImageList .ImageBlockBG{
	float:left;
	padding:10px 10px 20px 10px;}
.content .ImageList .ImageBlockBG{
	padding:10px 10px 20px 15px;}
.ImageList .ImageBlock{
	padding:0px;  /*案例边框与边框的距离*/
	width:172px;   /*以下两项是案例方框的大小*/
	height:187px;
	overflow:hidden;
	border:1px solid #DDDDDD;
	cursor:pointer;}
.content .ImageList .ImageBlock{
	height:138px;
	float:left;
	padding:5px;}	
.ImageList .ImageBlock:hover{
	border:1px solid #b6120f;
	background-color:#F5F5F5;
}	
.ImageList .ImageBlock .ImageNote{
	padding:5px;
	line-height:25px;
	color:#FFFFFF;
	font-size:11px;}
.ImageList .ImageBlock p a{
	color:#FFFFFF;}		 
.ImageList .ImageBlock img{
	width:178px; /*方框里面图片的大小*/
	height:165px;
	border:1px solid #F5F5F5;}
.ImageList .ImageBlock img:hover{
	border:1px solid #DDDDDD;}
	
.ImageList .ImageBlock p{
	text-align:center;
	bottom:0px;
	background-color:#333;
	color:#FFFFFF;
	filter:alpha(opacity=80);
	-moz-opacity:0.8;
	opacity:0.8;
	height:20px;
	line-height:20px;}
.content .ImageList .ImageBlock p{
	color:#FFFFFF;}	
.ImageList .ImageBlock a{
	text-decoration:none;}
#body .prenext .blk_29 {	 PADDING:0px 0px; OVERFLOW: hidden;  ZOOM: 1; POSITION: relative;}
	
#body .prenext .blk_29 .LeftBotton {	BACKGROUND: url(/images/Arrow_l.jpg) no-repeat -1px 0px; LEFT: 0px; FLOAT: left; WIDTH: 35px; CURSOR: pointer; POSITION: absolute; TOP: 50px; HEIGHT: 114px}
#body .prenext .blk_29 .RightBotton {	RIGHT: 5px; BACKGROUND: url(/images/Arrow_r.jpg) no-repeat -0px 0px; FLOAT: right;right:0px; WIDTH: 35px; CURSOR: pointer; POSITION: absolute; TOP: 50px; HEIGHT: 114px}
#body .prenext .blk_29 .Cont {	MARGIN: 0px auto; OVERFLOW: hidden;  PADDING:15px 0 0 0px;float:left;height:180px;width:720px;POSITION: relative;left:30px;}
#body .prenext .blk_29 .box {	FLOAT: left; WIDTH: 240px; TEXT-ALIGN: center;}
#body .prenext .blk_29 .box IMG {	BORDER: #ccc 1px solid; PADDING: 3px; DISPLAY: block; BACKGROUND: #fff; PADDING-BOTTOM: 3px; MARGIN: 0px auto; width:160px;height:150px;}
#body .prenext .blk_29 .box A:hover IMG {	BORDER: #3092b9 1px solid;}
#body .prenext .blk_29 .box P {	WIDTH: 240px; LINE-HEIGHT: 20px;text-align:center;font-size:12px;color:#3092b9}

/* open div*/
#popupMask {
	display:none;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:9990;
	background-color:#000;
	-moz-opacity: 0.7;
	opacity:0.70;
	filter: alpha(opacity=70);
	font-size:12px;
}
#popupContainer {
	position: absolute;
	z-index: 9991;
	top: 0px;
	left: 0px;
	display:none;
	padding: 0px;
	}
#popupInner {
	border: 3px solid #b6120f;
	background-color: #FFFFFF;
	}
#popupFrame {
	margin: 0px;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 9;
}
#popupTitleBar {
	background:url("/images/box_bg1.jpg") repeat-x left top;
	color: #b6120f;
	font-weight: bold;
	height: 1.3em;
	padding: 5px;
	z-index: 9992;
	text-align:center;
}
#popupTitle {
	float:left;
	font-size: 1.1em;
}
#popupControls {
	float: right;
	cursor: pointer;
	cursor: hand;
}
#popupControls a span {
	display: block;
	height: 15px;
	width: 15px;
	text-indent: -9000px;
	background: url('/images/close.gif') no-repeat;
}

.VideoBox{
	padding:10px;}