/**
 * @file
 * Styles are organized using the SMACSS technique. @see http://smacss.com/book/
 *
 * When you turn on CSS aggregation at admin/config/development/performance, all
 * of these @include files will be combined into a single file.
 */

/* HTML element (SMACSS base) rules */
@import "normalize.css";

/* Layout rules */
@import "layouts/responsive.css";

/* Component (SMACSS module) rules */
@import "components/misc.css";
/* Optionally, add your own components here. */
@import "print.css";

/* SMACSS theme rules */
/* @import "theme-A.css"; */
/* @import "theme-B.css"; */
*{
    margin:0;
	padding:0;
}
body{
    color:#828282;
	font-family: "Microsoft Yahei","Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size:14px;
}  
ul,li{
	list-style:none;
	margin:0;
	padding:0;
}
dl,
dt,
dd{
	margin:0;
}
img{
	border:none;
	display:block;
}
a{
	color:#575757;
	text-decoration: none;
}   
a:hover{
	color: #83b330;
}
p{
	line-height:24px;
	margin:0;
}
.floatleft{
	float:left;
}
.floatright{
	float:right;
}
.clear{
	clear:both;
}
table{
	margin:0 !important;
}

.green{
	color:#83b330;
	margin-right:5px;
} 
h1,
h2{
	font-family: "Microsoft Yahei","Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size:18px;
	font-weight:normal;
	margin:0;
} 
.block{
	margin:0;
}
.padd10{
	padding:10px;
}
.paddtb20{
	padding:20px 0;
}
/********************header begin********************/
#header{
	padding:5px 0;
} 
#logo{
	margin:30px 0 0 10px;
}
::selection{
	background: #79be0b;
	color:#fff;
}
#name-and-slogan{
	float:right;
	margin-right:10px;
}
.citywebbtn{
	background:#d4d4d4 url(../images/sjbg.png) no-repeat 77px center; 
	background-color:#79be0b;
	color:#fff;
	height:30px;
	line-height:28px;
	width:93px;
} 
.citywebbtn span{
	cursor:pointer;
}
.citywebbtn:hover{
	background-color:#79be0b;
}
.btn_btn{
	padding:0 0 0 11px;
}
.weixin, 
.sina{
	height:30px;
	margin-left:2px;
	text-indent:-9999px;
	width:30px;
	transition: all .2s linear;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-ms-transition: all .2s linear;
	-o-transition: all .2s linear;
}
.weixin{
	background:#d4d4d4 url(../images/weixinbg.png) no-repeat center center;
	background-color:#79be0b;
}
.sina{
	background:#d4d4d4 url(../images/sinabg.png) no-repeat center center;
	background-color:#79be0b;
}
.weixin:hover, 
.sina:hover{
	background-color:#79be0b;
}
.weixin a,
.sina a{
	display:block;
}
.fzlist{
	background:#D4D4D4;
	background-color:#79be0b;
	display:none;
	position:relative;
	z-index:9999;
} 
.fzlist a{
	border-top:solid 1px #fff;
	color:#fff;
	display:block;
	padding:0 0 0 11px;
	transition: all .2s linear;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-ms-transition: all .2s linear;
	-o-transition: all .2s linear;
}
.fzlist a:hover{
	background:#73AD16;
} 
/*****导航?begin****/
ul.nice-menu a{
	border-width: 0 0 0 1px;
	border:none;
	color: #1e1e1e;
	display: block;
	font-size: 12px;
	margin: 0;
	padding: 9px 14px 8px;
	text-transform: uppercase;
}  
ul.nice-menu li{
	background:#fff;
	border-color:#ebebeb;
}
ul.nice-menu li a:hover{
	background:#79be0b;
	color:#fff;
} 
ul.nice-menu ul{
	border-color:#ebebeb;
	top:34px;
}
ul.nice-menu-down{
	border-right: 1px solid #ebebeb;
} 
ul.nice-menu-down li.menuparent{
	background:#fff;
}
ul.nice-menu-down li li.menuparent{
	background-color: #fff;
}
ul.nice-menu-down li li.menuparent:hover{
	background-color: #79be0b;
}
ul.nice-menu>li{
	background:#fff;
	border-right:none;
}  
ul.nice-menu-down li.menuparent:hover{
	background:#79be0b;
} 
#block-nice-menus-1{
	float:right;
	height:35px;
	margin:-47px 10px 0 0;
}
/**************头部动画效果***************/
.stickynav-active1 .fix_box{
 			position: ;
 		}
 		.stickynav-active1 .header__logo-image{
 			animation-name:mymove;
 			animation-duration:0.3s;
 			-webkit-animation-name:mymove;
 			-webkit-animation-duration:0.3s;
 			width:80px;
 		}
 		.stickynav-active1 #logo {
		    margin: 5px 0px 5px 5px;
		}
		.stickynav-active1 #block-nice-menus-1 {
			animation-name:navmove;
		    margin: -38px 165px 0px 0px;
		    animation-duration:0.3s;
		    -webkit-animation-name:navmove;
		    -webkit-animation-duration:0.3s;
		}
		.stickynav-active1 #navigation {
		    padding: 0px 0px 0px;
		}
		.stickynav-active1 .tel{
			font-size: 12px;
		}
		.stickynav-active1 .citywebbtn {
		    background-position: 57px center;
		    width: 73px;
		}		
 		@keyframes mymove
		{
		from {width:112px;}
		to {width:80px;}
		}
		@keyframes navmove
		{
		from {margin: -47px 10px 0 0;}
		to {margin: -38px 165px 0px 0px;}
		}
		@-webkit-keyframes mymove
		{
		from {width:112px;}
		to {width:80px;}
		}
		@-webkit-keyframes navmove
		{
		from {margin: -47px 10px 0 0;}
		to {margin: -38px 165px 0px 0px;}
		}
/**************幻灯片**************/
#block-md-slider-1{
	clear:both;
}
.md-layer-1-0-5 a, 
.md-layer-1-0-4 a, 
.md-layer-1-1-1 a, 
.md-layer-1-1-2 a, 
.md-layer-1-1-3 a, 
.md-layer-1-2-1 a, 
.md-layer-1-2-2 a , 
.md-layer-1-2-3 a{
	font-family:"微软雅黑";
	font-size:20px;
	line-height:1.2em;
}
.md-layer-1-3-1 a, 
.md-layer-1-3-2 a, 
.md-layer-1-3-3 a{
	font-size:20px !important;
	line-height:1.2em;
}
.md-mainimg{
	display:none;
}
.md-object img{
	height:auto !important;
	width:auto !important;
}
.md-slide-wrap{
	line-height:1.2em;
	margin-bottom:20px;
}
.md-arrow-left, 
.md-arrow-right{
	background:#5a5a5a url(../images/md-arrow.png) no-repeat 0 0;
	border-radius: 20px;
	-webkit-transition: all .25s linear;
	-moz-transition: all .25s linear;
	-ms-transition: all .25s linear;
	-o-transition: all .25s linear;
}
.md-arrow-left:hover, 
.md-arrow-right:hover{
	background-color:#6bc30d;
}
.md-arrow-right{
	background-position:-40px 0;
} 
#navigation {
	clear:both;
	height: auto !important;
	_padding:20px 0 0;
	padding:15px 0 0; 
	position:static !important;
	width: 100%;
}
#main-menu li{
	font-family: "Microsoft Yahei","Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size:16px;
}
.header, 
#page, 
.region-bottom, 
.header_bread{
	margin:0 auto;
	max-width:960px;
}  
.header_bread{
	width:960px;
}
.aia_artitle, 
.box_bread{
	background:#f8f8f8;
}  
.aia_artitle h1.page__title, 
.breadcrumb{
	background:url(../images/pagetitlehbg.png) no-repeat center right;
	border:none;
	height:85px;
	line-height:85px;
	margin:10px auto;
	padding:0;
	width:940px;
}   
.breadcrumb{
	height:40px;
	line-height:24px;
	padding:45px 0 0;
} 
.left_box{
	float:left;
	margin-left:10px;
	width:62%;
}
.right_box{
	float:right;
	margin-right:10px;
	width:32%;
} 
.slideshow_box{
	background:#f8f8f8;
}
.stickynav-active1{
	background:#fff;
	box-shadow: 0 2px 3px rgba(0,0,0,.2);
	-webkit-box-shadow: 0 2px 3px rgba(0,0,0,.2);
	-moz-box-shadow: 0 2px 3px rgba(0,0,0,.2); 
	max-width:100%;
	padding:25px 0;
	position:fixed;
	top:0;
	width:100%;
	z-index:9000;
}  

.fix_box{
	margin:0 auto;
	width:960px;
}
/**************首页 四大区块 begin**************/
#block-views-fontfourclock-block{
	margin-top:20px;
	min-height:240px;
} 
#block-views-fontfourclock-block h2{
	margin:40px 0;
	text-align:center;
}
.view-fontfourclock  .views-row .field-content{
	border:solid 1px #ebebeb;
	float:left;
	height:208px; 
	margin:0 10px;
	overflow:hidden;
	position: relative;
	padding: 0 25px 20px;
	text-align: center;
	width:168px;

}
.view-fontfourclock .views-row  .four_icon{
	background:url(../images/icons.png) no-repeat left top;
}
.four_icon{
	display:block;
	height:45px;
	margin:0 auto;
	width:45px;
}
.view-fontfourclock .views-row-2 .four_icon{
	background-position:-45px 0;
} 
.view-fontfourclock .views-row-3 .four_icon{
	background:url(../images/icon_video.png) no-repeat left center;
} 
.view-fontfourclock .views-row-4 .four_icon{
	background-position:-90px 0;
} 
a.four_icon_a{
	display:block;
	margin:0 auto;
	padding:20px 0;
	text-align:center;
} 

.bg_green{
	background: #79BE0B;
	background-repeat: repeat;
	background-attachment: fixed;
	bottom: 0;
	height:0;
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	width: 100%;
	-webkit-transition: all .25s linear;
	-moz-transition: all .25s linear;
	-ms-transition: all .25s linear;
	-o-transition: all .25s linear;
	transition: all .25s linear;
} 
.view-fontfourclock  .views-row .field-content:hover  .bg_green{
	height:100%;
	opacity: 1.0;
}
.view-fontfourclock  .views-row .field-content:hover  .four_icon{
	background-position-y:-45px;
}
.view-fontfourclock  .views-row-3 .field-content:hover  .four_icon{
	background:url(../images/icon_video_hover.png) no-repeat left center;
}
.view-fontfourclock  .views-row .field-content:hover .fontfour, 
.view-fontfourclock  .views-row .field-content:hover .fontfour a {
	color:#fff;
}
.fontfour{
	position: relative;
	z-index: 2;
}
.h_title{
	display:block;
	font-size:18px;
	font-weight:bold;
	margin-bottom:20px;
	text-align:center;
} 
.h_content{
	font-size:12px;
}
/*******************首页 滚动四大区块*************************/
#block-views-fontscoll-block{
	clear:both;
} 
#block-views-fontscoll-block h2{
	color:#575757;
	font-size: 20px;
	font-weight: bold;
	margin:0 10px 10px 10px;
	padding-top:30px;
}  
.jcarousel-skin-default .jcarousel-container-horizontal, 
.jcarousel-skin-default .jcarousel-clip-horizontal{
	padding:0;
	width:100%;
}
.jcarousel-skin-default .jcarousel-item{
	border:none;
	border-bottom:solid 1px #ebebeb;
	height:210px;
	margin:0 10px;
}
.four_scolltitle{
	display:block;
	line-height:12px;
}
.jcarousel-skin-default .jcarousel-container-horizontal{
	height:211px;
}

.jcarousel-skin-default .jcarousel-prev-horizontal, 
.jcarousel-skin-default .jcarousel-next-horizontal{
	background:#373737 url(../images/small-button.png) no-repeat left top;
	height:21px;
	left:initial;
	right:33px;
	top:-35px;
	width:21px;
	-webkit-transition: all .25s linear;
	-moz-transition: all .25s linear;
	-ms-transition: all .25s linear;
	-o-transition: all .25s linear;
}  
.jcarousel-skin-default .jcarousel-prev-horizontal{
	left:100%;
	margin-left:-60px;
}  
.jcarousel-skin-default .jcarousel-next-horizontal{
	background-position: -21px 0;
	position: absolute;
	right:10px;
	top: -35px;
}
.jcarousel-skin-default .jcarousel-prev-horizontal:hover{
	background-color:#6bc30d;
	background-position: 0 0;
}
.jcarousel-skin-default .jcarousel-next-horizontal:hover{
	background-color:#6bc30d;
	background-position: -21px 0;
}

ul.jcarousel li{
	-webkit-transition: background-color .2s ease,border .2s ease,color .2s ease,opacity .2s ease-in-out;
	-moz-transition: background-color .2s ease,border .2s ease,color .2s ease,opacity .2s ease-in-out;
	-ms-transition: background-color .2s ease,border .2s ease,color .2s ease,opacity .2s ease-in-out;
	-o-transition: background-color .2s ease,border .2s ease,color .2s ease,opacity .2s ease-in-out;
	transition: background-color .2s ease,border .2s ease,color .2s ease,opacity .2s ease-in-out;
}  
ul.jcarousel li:hover{
	background: #f9f9f9;
	border-bottom:solid 1px #79be0b;
}
ul.jcarousel li img{
	-webkit-filter: grayscale(50%);
	filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=0.5);
	opacity: 0.8;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;-ms-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
}
ul.jcarousel li:hover img{
	filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=0);
	opacity: 1.0;
	-webkit-filter: grayscale(0%);
} 
/******************左右两边区域 *********************/
.left_box .quicktabs-tabs li{
	background: #fafafa;
	border:solid 1px #ebebeb;
	border-bottom:none;
	display:block;
	float:left;
	height: 33px;
	line-height:33px;
	margin-right:-1px;
	padding:0;
}
.left_box .quicktabs-tabs li.active{
	border-top-color:#79be0b;
}     
.left_box .quicktabs-tabs li a{
	display:block;
	padding:0 16px;
}
.left_box .quicktabs-tabs li.active a{
	background:#fff;
	padding-bottom:17px;
}
#quicktabs-fontfivetab, 
#block-views-aiagg-block{
	margin-top:40px;
	*margin-top:0;
	*padding-top:40px;
} 
#quicktabs-container-fontfivetab{
	border:solid 1px #ebebeb;
	clear:both;
	font-size:12px;
	padding: 15px 20px;
	*padding: 7px 20px;
}   
#block-views-aiagg-block h2{
	line-height:33px;
	color: #83b330;
} 

.front_aiagg .views-row-1{
	border:solid 1px #ebebeb;
	padding:14px 20px 15px;
}
.front_aiagg.views-row-1 p{
	display:inline;
	line-height:22px;
}
.front_aiagg .views-row-1 a{
	color:#83b330;
	font-size:12px;
} 
.front_aiagg .views-row-1 a:hover{
	text-decoration:underline;
}
.aiagg_icon{
	background:url(../images/quote-arrow.png) no-repeat;
	color: #79be0b;
	display:block;
	height:30px;
	line-height:30px;
	margin-top:20px;
	position:absolute;
	padding-left:50px;
	
}    
.fouradv{
	border-top: solid 2px #ebebeb;
	padding-top: 30px;
}

.aiaggcon p{
    color: #3D3C3C;
	font-size:12px;
    font-weight: bold;
}

.tab_tab .content{
	display:none;
}
.tab_tab>h1{
	border: 1px solid #999;
	border-radius: 4px;
	line-height: 40px;
	margin:25px 0; 
	text-align:center;
}

/*******************************bottom begin*********************************/
.bootom_box{
	background: #373737;
	color: #969696;
	font-size:12px;
	margin-top:40px;
	padding: 35px 0 15px;
}
.bootom_box a{
	color: #969696;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-ms-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
} 
#quicktabs-flink .quicktabs-tabs li{
	background: #fff;
	border: solid 1px #ebebeb;
	border-bottom: none;
	display: block;
	float: left;
	height: 33px;
	line-height: 33px;
	margin-right: -1px;
	padding: 0;
	padding-bottom: 17px;background: #fafafa;
}
#quicktabs-flink .quicktabs-tabs li.active {
	border-top-color: #79be0b;
}
#quicktabs-flink .quicktabs-tabs li.active a {
	background: #fff;
	padding-bottom: 17px;
}
#quicktabs-flink .quicktabs-tabs li a{
	display: block;
	padding: 0 16px;
}
#quicktabs-container-flink{
	border: solid 1px #ebebeb;
	clear:both;
	padding: 10px 7px;
}  
#block-block-36 img{
	display: inline-block;
}  

#block-views-footlist1-block-1 .views-row a:hover{
	background-position:5px 2px;
	color: #79be0b;
}
#block-views-footlist1-block-1 .view-display-id-block_1 a{
	background:url(../images/arrow-light.png) no-repeat left 4px;
	padding-left:15px;
}
#block-views-footlist1-block-1 .view-display-id-block_1 a:hover{
	background-position:5px 4px;
	color: #79be0b;
}  
.bootom_box h2{
	color: #ebebeb;
	font-size:16px;
}
.region-bottom{
	text-align:center;
} 
.region-bottom .footer_column{
	float:left;
	padding:0 1%;
	padding-bottom:20px;
	text-align:left;
	width:23%;
} 
.column_forth{
	position:relative;
} 
.column_forth .view-id-footlist1{
	position: absolute;
	top:32px;
}   

#block-block-11{
	border-top:solid 1px #4a4a4a;
	clear:both;
	padding:20px 0 0;
}  
#block-block-38 p a{
	background-color: #676767;
	color:#d4d4d4;
	display: inline-block;
	font-size:12px;
	margin-right: 2px;
	margin-bottom: 3px;
	padding:1px 8px; 
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#block-block-38 p a:hover{
	background: #c2c2c2;
	color: #383838;
} 
.list_links li{
	float:left;background:#555;
	margin:0 2px 0 0;
	margin-bottom:2px;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-ms-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
	
}  
.list_links li a{
	background:url(../images/social-icons.png) no-repeat left center;
	display:block;
	height:31px;
	width:31px;
}
.list_links li.sec_icon a{
	background-position:-31px 0;
}  
.list_links li.thir_icon a{
	background-position:-62px 0;
}
.list_links li.for_icon a{
	background-position:-93px 0;
}
.list_links li.fiv_icon a{
	background-position:-124px 0;
}
.list_links li.six_icon a{
	background-position:-155px 0;
}
.list_links li:hover{
	background:#47c0d8;
}
.list_links li.sec_icon:hover{
	background:#49699f;
}
.list_links li.thir_icon:hover{
	background:#e65992;
}
.list_links li.for_icon:hover{
	background:#568799;
}
.list_links li.fiv_icon:hover{
	background:#b72d24;
}
.list_links li.six_icon:hover{
	background:#fe9900;
}

#block-views-fontscoll-block-1 .view-fontscoll .views-row{
	float: left; 
	margin-bottom: 8px;
	margin-right: 5px;
}   
#block-views-footlist1-block-1 .views-row{
    border-bottom:solid 1px #464545;
	margin:0 0 5px;
	margin:0 0 13px;
	padding-bottom:5px;
	padding-bottom:13px;
} 

#block-views-footlist1-block-1 .views-row span.field-content{
	display:block;
	height:16px;
	line-height:16px;
	overflow:hidden;
}
#block-views-footlist1-block-2 .views-row{
	display: block;
	height: 50px;
	width: 50px;
}
#block-views-footlist1-block-2 .views-row img{
	height:50px !important;
	width:50px !important;
}
#block-views-footlist1-block-2 .views-row img{
	width:65px;height:65px;
}
.foot_greenbor{
	box-shadow: inset 0 0 0 0 transparent;
	content: "";
	height: 50px;
	left: 0;
	position: absolute;
	top: 0;
	width: 50px;
	z-index: 2;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-ms-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
	-webkit-box-shadow: inset 0 0 0 0 transparent;
	-moz-box-shadow: inset 0 0 0 0 transparent;
}
#block-views-fontscoll-block-1 .views-field{position: relative;height:50px;width:50px;}
#block-views-fontscoll-block-1 .views-row a:after{position: absolute;
z-index: 2;
top: 0;
left: 0;
width: 100%;
height: 100%;
content: "";
-webkit-transition: all .2s linear;
-moz-transition: all .2s linear;
-ms-transition: all .2s linear;
-o-transition: all .2s linear;
transition: all .2s linear;
-webkit-box-shadow: inset 0 0 0 0 transparent;
-moz-box-shadow: inset 0 0 0 0 transparent;
box-shadow: inset 0 0 0 0 transparent;}
#block-views-fontscoll-block-1 .views-row:hover a:after{
-webkit-box-shadow: inset 0 0 0 3px #79be0b;
-moz-box-shadow: inset 0 0 0 3px #79be0b;
box-shadow: inset 0 0 0 3px #79be0b;} 
#main{padding-top:30px !important;}
/******************************footer*******************************/
#footer{padding:0 10px;}
.scoial_link{margin-top:15px;}
/******************************内页样式 begin*******************************/
.sidebars{padding-right:10px;}
.breadcrumb{width:940px;margin:0 auto;}
 .region-sidebar-second{padding-right:0;}  
h1.page__title{color: #b2b2b2; font-weight:bold;font-size: 28px;line-height: 1.25;margin: 0 10px 20px;padding:0 0 30px;border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #ebebeb;font-family: "Microsoft Yahei","Helvetica Neue",Helvetica,Arial,sans-serif;}
.submitted {color:#fff;height:27px;line-height:27px;border-top:solid 1px #ebebeb;border-bottom:solid 1px #ebebeb;}
.submitted .username, .submitted time{color:#828282;padding-left:25px;background:url(../images/userbg.png) no-repeat left center;} 
.submitted time{background:url(../images/daybg.png) no-repeat left center;}
.node-readmore a{background:#383637;color:#fff;font-size:12px;display:block;width:84px;height:30px;line-height:30px;text-align:center;-webkit-transition: all .2s linear;
-moz-transition: all .2s linear;
-ms-transition: all .2s linear;
-o-transition: all .2s linear;
transition: all .2s linear;}
.node-readmore a:hover{background:#79BE0B;}
.inline .statistics_counter{display:none;} 
.inline li{padding:0;} 
#content  .views-row{border-bottom:solid 2px #ebebeb;padding-bottom:15px;margin:0 0 30px 0;} 
article.node .field {padding:0 10px;}

#content>article.node{padding-top:14px;} 
article.node p{margin:0 0 25px;line-height:25px;}  
article.node img{display:block;margin:20px auto;}
/********************联系我们 begin***************/
.nei_right_tab .views-field-body{display:none;padding:0 15px 15px 0;height:auto;}
.nei_right_tab .views-row-1 .views-field-body{/**display:block;**/}   
.nei_right_tab .views-field-title{line-height:45px;border-top:solid 1px #ebebeb;padding:0 0 0 35px;font-size:12px;cursor:pointer;background:url(../images/nei_righttab_bg.png) no-repeat left center;}
.nei_right_tab .views-field-body{font-size:12px;}
.nei_right_tab  .active {background:url(../images/nei_righttab_bg1.png) no-repeat left center;}  
/**********************?????????*********************/
.menu__item.is-leaf {list-style-image:none;list-style-type:none;font-size:12px;border-top:solid 1px #e8e8e8;} 
#block-menu-menu-tags .menu__item.is-leaf a{color:#828282;background:url(../images/arrow-light.png) no-repeat left 4px;padding-left:15px;-webkit-transition: all .2s linear;-moz-transition: all .2s linear;-ms-transition: all .2s linear;-o-transition: all .2s linear;transition: all .2s linear;}
#block-menu-menu-tags .menu__item.is-leaf:hover  a{color: #79be0b;background-position:5px 4px;} 
table.sticky-enabled{width:100%;}
/************?????**************/
.menu__item.is-collapsed{list-style:none;background:none;}
#block-menu-menu-quickmenu , #block-block-12, #block-views-right-tab-block, #block-views-formzl-block{margin-bottom:15px;}
#block-menu-menu-quickmenu  .menu li{background: url(../images/arrow-light.png) no-repeat 3px center;
padding-left: 15px;}


/**************************关于我们  begin*******************************/
#block-menu-menu-aboutaia h2{color: #757575;font-weight: bold;font-size: 30px;line-height: 1.25;margin: 15px 0 10px;padding: 0 0 10px;border-bottom: solid 1px #ebebeb;font-family: "Microsoft Yahei","Helvetica Neue",Helvetica,Arial,sans-serif;}
.project_page{/*padding:10px;*/} 
.current_postiton{position:absolute;margin-top:74px;height:30px;width:70px;z-index:2;}  
#block-menu-menu-aboutaia .menu{padding:0 0 60px 0;border-bottom:6px solid #bebebe;}
#block-menu-menu-aboutaia .menu li{float:left;border:none;width:170px;font-size:14px;padding-left:25px;}
#block-menu-menu-aboutaia .menu li.active-trail{background:url(../images/triangle.png) no-repeat left center;}
#block-menu-menu-aboutaia .menu li a{color:#b2b2b2;}
#block-menu-menu-aboutaia .menu li a.active, #block-menu-menu-aboutaia .menu li a:hover{color:#83b330;}
.title_page{color:#b2b2b2;font-size:30px;border-left:solid 5px #78b61e;line-height:1.5em;padding-left:40px;font-weight:bold;}
.paddtab{padding:50px 0 20px;}
/**************AIA在全球 begin******************/
.aia_atworldleft{width:639px;}
.aia_atworldright{width:281px;padding:10px;background:#ebebeb;} 
.aboutall{background:#9cc958;color:#fff;margin:20px 19px 0 0;padding:20px;}  
.aboutall dt{float:left;} 
.aboutall dt h2{font-size:30px;font-weight:bold;margin-right:20px;width:125px;}  
.aia_atworldright p{font-size:12px;line-height:22px;} 
.worldpic{margin: 37px 0 0 0;}
/**************战略合作伙伴 begin******************/
.aia_partners p, .aia_atchina p, .aia_cdc p{font-size:12px;line-height:21px;margin:0 0 10px;}   
.aia_partnersleft{width:540px;margin-top:12px;margin-left:10px;}  
.partnerspic{margin:20px 0 0;}
.partnerspic1{margin:15px 0;} 
.title_sub1{margin-top:10px;}
.sub_partnersleft{width:290px;} 
.sub_partnersright{width:210px;margin:12px 19px 0 0;}   
.title_sub{font-size:14px;color:#78b61e;line-height:18px;font-weight:bold;margin:20px 0 5px 0;}  
.aia_partners .sub_parspecial, .aia_subcdcright .sub_parspecial{text-align:right;border-right:2px #78b61e solid;margin:10px 0 0 0;padding:0 10px 0 0;color:#b2b2b2;}
.line{height:1px;line-height:1px;background:#ebebeb;margin:23px 0 5px;} 
.aia_partnersright{width:372px;margin-right:10px;} 
/**************学员荣誉 begin******************/
.aia_stuhonor, .aia_atchina, .aia_cdc{font-size:12px;} 
.aia_stuhonorleft{width:540px;margin:0 0 0 10px;}
.aia_stuhonnortxt{padding-right:10px;}
.aia_stuhonorright{width:370px;margin:5px 10px 0 0;}
.aia_stuhonorleft li{float:left;width:167px;margin-right:13px;}
.aia_stuhonorleft li h2{font-size:18px;font-weight:bold;color:#000;height:21px;line-height:21px;border-left:solid 3px #78b61e;padding-left:7px;margin:10px 0;} 
.aia_stuhonorleft li  span{display:block;font-weight:bold;}
.aia_stulist ul{margin-left:-30px;} 
.aia_stulist li{width:199px;height:370px;float:left;margin:40px 0 0 40px;border-bottom:solid 1px #ebebeb;padding-bottom:15px;-webkit-transition: all .25s linear;
-moz-transition: all .25s linear;
-ms-transition: all .25s linear;
-o-transition: all .25s linear;
transition: all .25s linear;}   
.aia_stulist .height2{height:400px;}
.aia_stulist li:hover{border-bottom:solid 1px #78b61e;}
.aia_stulist li img{-webkit-filter: grayscale(50%);filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=0.5);opacity: 0.8;-webkit-transition: all .2s linear;-moz-transition: all .2s linear;-ms-transition: all .2s linear;-o-transition: all .2s linear;transition: all .2s linear;}
.aia_stulist li:hover img{-webkit-filter: grayscale(0%);filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=0);opacity: 1.0;}
.aia_stulist li p{line-height:20px;}
.aia_stulist li h2{color:#383838;font-size:14px;font-weight:bold;margin:10px 0 0;} 
.aia_stulist li span{display:block;line-height:15px;color:#b2b2b2;margin:8px 0;} 
/**************aia在中国 begin******************/
.aia_atchinaleft{width:370px;}
.aia_atchinaleft img{margin:25px 0 0;}
.aia_atchinamidd{ width:295px;margin:8px 0 0 35px;}
.aia_atchinaright{width:210px;margin:8px 0 0 10px;} 
/**************职业发展中心 begin******************/
.aia_cdcleft{width:530px;}
.aia_cdctop p{background:url(../images/aia_cdcpic1.png) no-repeat left top;padding:5px 0 0 40px;margin:15px 0 0;color:#c8c8c8;}
.aia_cdctop p span{text-align:right;display:block;}
.aia_subcdcleft{width:290px;}
.aia_subcdcright{width:220px;margin:18px 0 0;}
.martop25{margin-top:45px;}
.aia_cdcright .title_sub{margin:0;} 
.aia_cdcright{width:380px;}
/**************AIA师资力量 begin******************/
.aia_teacherstop{margin:20px 0 0;font-size:12px;}
.aia_teacherslist ul{margin-left:-38px;*position: relative;*width:960px;} 
.aia_teacherslist li{width:199px;height:386px;float:left;border-bottom: solid #ebebeb 1px;padding-bottom:15px;margin:40px 0 0 44px;*margin:40px 0 0 40px;}
.aia_teacherslist li h2{font-size:14px;line-height:16px;color:#b2b2b2;margin:10px 0;}
.aia_teacherslist li h2 span{display:block;}
.aia_teacherslist li >p{line-height:16px;font-size:12px;} 
.aia_teacherslist li img{-webkit-filter: grayscale(50%);filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=0.5);opacity: 0.8;}
.aia_teacherslist li:hover  img{-webkit-filter: grayscale(0%);filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=0);opacity: 1.0;-webkit-transition: all .2s linear;-moz-transition: all .2s linear;-ms-transition: all .2s linear;-o-transition: all .2s linear;transition: all .2s linear;}
.aia_teacherslist li:hover{border-color:#78b61e;}
.aia_teacherslist li:hover  h2{color:#757575;}
.aia_teacherslist li:hover  h2 span{color:#78b61e;}
/***********************AIA *****************************/
.aia_subabout {padding:0 0 0 10px;} 
.aia_subabout li{float:left;margin:13px 0 0 0;margin-left:10px;position:relative;height:163px;overflow:hidden;} 
.aia_subabout li.first{height:340px;}
.aia_subabout li:hover .text_bg{bottom:0;background:#6CBE42;}
.aia_subabout li:hover  a{color:#fff;}
.text_txt{position:absolute;width:100%;height:162px;top:0;color:#434343;z-index:3;font-size:16px;font-weight:bold;line-height:20px;} 
.text_txt a{display:block;padding:114px 0 0 10px;height:49px;color:#434343;-webkit-transition: all 200ms ease-in;
-moz-transition: all 200ms ease-in;
-o-transition: all 200ms ease-in;
transition: all 200ms ease-in;}  
.text_txt a:hover{color:#0f480f;}
.first .text_txt{height:340px;font-size:22px;line-height:26px;}
.first .text_txt span{font-size:30px;}
.first .text_txt a{padding:263px 0 0 20px;height:75px;}
.text_txt span{font-size:22px;display:block;} 
.text_bg{-webkit-transition: all 200ms ease-in;
-moz-transition: all 200ms ease-in;
-o-transition: all 200ms ease-in;
transition: all 200ms ease-in; position:absolute;bottom:-64%;background:#fff;display:block;filter:alpha(opacity=60);  -moz-opacity:0.6;  -khtml-opacity: 0.6;  opacity: 0.6;  height:100%;width:100%;z-index:2;}
.first .text_bg{height:100%;bottom:-70%;}
.aia_subabout li.first{margin-left:0;}
/******************************内页 begin********************************/
.nei_sqpxjg{margin: 30px 0 0;}
.nei_sqpxjg h2{color:#5A5757;}
.nei_sqpxjg h2 span{color: #A09A9A;margin: 0 0 0 10px;}
.nei_sqpxjg p img{display:inline;margin-top: 10px;
filter: Alpha(opacity=70);
-moz-opacity: .7;
opacity: 0.7;}
.nei_sqpxjg p img:hover{filter: Alpha(opacity=100);
-moz-opacity: 1.0;
opacity: 1.0;}
/************************jwplayer begin************************/
article.node img.jwlogo, .jwlogo{display:none;} 
.front_video{
width:460px;background:#fff;padding:50px 60px;
position: fixed;
top: -370px;
left: 50%;
margin-left: -290px;
z-index:9999;
} 
.back_layer{
display:none;
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 2157px;
opacity: 0.8;
z-index: 9998;
background:#000; 
}
.btn_close{width:28px;height:25px;position:absolute;margin-top:-300px;margin-left:470px;background:#79be0b;color:#fff;font-size:18px;cursor:pointer;}  
/*****************************右侧导航*****************************/
.right_menu{position:fixed;right:5px;bottom:20%;z-index:9999;}
/*****************************???????? begin***************************************/
#webform-component-last-url, #webform-component-current-url, #webform-component-currenturl, #webform-component-lasturl{display:none;}
.webform-client-form >div>div>label{float:right;margin:0;} 
#block-views-formzl-block #edit-submitted-name, #block-views-formzl-block #edit-submitted-tel, #block-views-formzl-block #edit-submitted-email{width:180px;height:30px;border:none;background:#ebebeb;padding-left:30px;}
#block-views-formzl-block #edit-submitted-name{background:#ebebeb url(../images/namebg.png) no-repeat 10px center;}
#block-views-formzl-block #edit-submitted-tel{background:#ebebeb url(../images/telbg.png) no-repeat 10px center;}
#block-views-formzl-block #edit-submitted-email{background:#ebebeb url(../images/emailbg.png) no-repeat 10px center;}


.webform-container-inline .form-item-submitted-sex{width:78px;height:27px;background:#ebebeb;display:inline-block !important;padding:3px 0 0 10px;} 
.form-item {margin:9px 0;}
.form-submit{background:#373737;border:none;color:#fff;padding:5px 20px;}
/***********************************联系我们 在线报名***********************************/
.node-222>.field-name-body{width:378px;font-size:12px;float:left;}
.node-222>.webform-client-form{width:530px;float:left;margin-left:12px;}
.aia_tabtitle li{
float:left;
background: #fafafa;
height: 33px;
line-height: 33px;
border: solid 1px #ebebeb;
margin-right: -1px;
display: block;
border-bottom: none;
cursor:pointer;
}
article.node .signbottom img{margin:30px auto;}
.aia_tabtitle li a{display:block;padding: 0 18px;} 
.aia_tabtitle li.active{border-top:solid 1px #79be0b;} 
.aia_tabtitle li.active a{padding-bottom:17px;background:#fff;}
.aia_ftaddress{display:none;border:solid 1px #ebebeb;padding:20px;line-height:18px;}
.aia_ftaddress.active{display:block;}
.color_weight{font-size:12px;font-weight:bold;color:#79be0b;}  
.botbor1{border-bottom:solid 1px #ebebeb;padding-bottom:15px;margin-bottom:10px;} 
#edit-submitted-name, #edit-submitted-tel, #edit-submitted-email, #edit-submitted-company, #edit-submitted-work, #edit-submitted-location, .form-textarea{width:380px;border:none;background:#ebebeb;height:30px;padding-left:30px;}
.form-textarea{height:160px;}
#webform-component-ask label{display:none;}
.node-222 .webform-container-inline .form-item-submitted-sex{width:178px;}
.node-222 .webform-client-form >div>div>label{margin-right:80px;}

.node-222 .webform-client-form >div>#webform-component-name>label, .node-222 .webform-client-form >div>#webform-component-tel>label, .node-222 .webform-client-form >div>#webform-component-email>label{margin-right:96px;}  
.node-222 .webform-client-form >div>#webform-component-sex>label{margin-right:106px;}

#edit-submitted-course{width:380px;height:30px;border:none;background: #ebebeb;} 
#edit-submitted-name{background:#ebebeb url(../images/namebg.png) no-repeat 10px center;}  
#edit-submitted-tel{background: #ebebeb url(../images/telbg.png) no-repeat 10px center;}
#edit-submitted-email{background: #ebebeb url(../images/emailbg.png) no-repeat 10px center;}
#edit-submitted-company{background: #ebebeb url(../images/comnamebg.png) no-repeat 10px center;}
#edit-submitted-work{background: #ebebeb url(../images/careerbg.png) no-repeat 10px center;}
#edit-submitted-location{background: #ebebeb url(../images/citybg.png) no-repeat 10px center;}
#edit-submitted-ask{background: #ebebeb url(../images/askbg.png) no-repeat 10px 10px;resize:none;}
.node-222 .webform-client-form  #edit-submit{padding:8px 40px;}
/********************上下篇begin*****************/
ul.flippy{background:#f8f8f8;padding:10px;max-width:100%;}
ul.flippy li{display:block;padding:0 10px;}
/********************内页右侧begin*****************/
.nei_right_nav ul{margin-left:-4px;}
.nei_right_nav li{float:left;font-size:14px;position: relative;margin:0 0 5px 4px;overflow:hidden;}
.nei_right_nav li.first_nav{height:222px;}
.nei_right_nav li.four_nav{height:142px;} 
.nei_right_nav li a{color:#525252;position: absolute;bottom:0;z-index:3;display:block;width:100%;line-height:34px;text-align:center;-webkit-transition: all 200ms ease-in;
-moz-transition: all 200ms ease-in;
-o-transition: all 200ms ease-in;
transition: all 200ms ease-in;}
.bg_box{position: absolute;background:#fff;filter: alpha(opacity=60);-moz-opacity: 0.6;-khtml-opacity: 0.6;opacity: 0.6;height:34px;bottom:0;width:100%;z-index:2;
-webkit-transition: all 200ms ease-in;
-moz-transition: all 200ms ease-in;
-o-transition: all 200ms ease-in;
transition: all 200ms ease-in;
bottom: -62%;
height: 100%;
} 
.nei_right_nav li.first_nav .bg_box{bottom:-85%;}
.nei_right_nav li.four_nav .bg_box{bottom:-75%;}
.nei_right_nav li:hover  .bg_box{bottom:0;background:#6CBE42;}
.nei_right_nav li:hover a{color:#fff;}

.nei_right_nav .first_nav a{padding-top:188px;}
.nei_right_nav .second_nav a{padding-top:50px;}
.nei_right_nav .third_nav a{padding-top:49px;}
.nei_right_nav .four_nav a{padding-top:108px;}
.nei_right_nav .five_nav a{padding-top:57px;}
.nei_right_nav .five_nav{margin-top:-97px;}
#mobile{display:none;}


/***************************************招生简章 begin_ 第一版*************************************/
.contain_box{background:#61964b;padding:40px 0;} 
.zsjz_banner{width:960px;margin:0 auto;}
.contain_box1{height:164px;background:#3a5234;}
.contain_box2{bacground:#fff;}
.aia_what{position:absolute;width:1013px;margin-left:-73px;}
.zsjz_zs{margin:30px auto 0;position:relative;z-index:10;width:960px;}
.zsjz_zs img{float:left;margin-left:30px;}
.zsjz_zs .nomargin{margin:0;}
.contain_box3{margin-top:-73px;background:#afd38d;padding:0 0 54px;}
.contain_box3{padding-top:103px;}
.contain_box4{background:#fafafa;padding-bottom:40px;}
.contain_box5{background:url(../images1/zsjz_mobilepic1.png) no-repeat center center;height:378px;margin-bottom:20px;} 
.contain_box6{background:#3a5234;padding:40px 0;}
.mobile_pic2{margin:-20px 0 0-50px;position:absolute;}
.mobile_pic3{position:absolute;margin:90px 0 0 350px;}
.mobile_pic4{position:absolute;margin:35px 0 0 760px;}
.zsjz_listen{margin-top:90px;padding-bottom:20px;}
/***************************************招生简? end_第一版***********************************/


/***************************************招生简章 begin_第二版*************************************/
.z_auto{margin:0 auto;width:960px;}
.s_zsjz_banner{background:#61964b;padding:20px 0 40px;}
.z_banner{background:url(../images1/topbarbg.png) no-repeat center center;height:400px;width:100%;} 
.z_tel{width:251px;margin:310px 0 0 44px;}
.z_scrollpic{width:665px;margin-top:310px;}
.s_zsjz_whataia{background:#3a5234;}
.z_aiatitle{background:url(../images1/z_aia1.jpg) no-repeat left center;height:164px;}
.z_aiatitle h1{font-size:48px;color:#fff;font-weight:bold;line-height:164px;padding-left:195px;} 
.z_aiatitle{width:456px;}
.z_aiatext{width:476px;border-left:solid 2px #fff;padding:10px 0 10px 26px;margin-top:12px;}
.z_aiatext h2{color:#fff;font-size:14px;margin-bottom:15px;}
.z_aiatext li{color:#fff;font-size:14px;background:url(../images1/z_aialibg.jpg) no-repeat left center;padding:0 0 0 15px;}
.z_positon1{position:absolute;z-index:2;margin:-40px 0 0 330px;}
.z_zshjl li{float:left;margin-left:33px;margin-top:46px;}
.z_zshjl .z_zsfirst{margin-left:0;}
.s_zsjz_studystyle{background:#51985f;margin:44px 0 0 ;}
.z_teacher{background:#fafafa;padding:40px 0 40px;}
.z_teacher h2{text-align:center;font-size:30px;color:#62964b;font-weight:bold;margin-bottom:40px;}

.z_teacherslit li{width:200px;float:left;text-align:center; moz-box-shadow: 1px 1px 3px rgba(0,0,0,.3);
-webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
padding: 10px;
border-radius: 5px;
height: 470px;
margin-left:70px;
border:solid #ddd 1px; 
}
.z_teacherslit li img{margin:0 auto 20px;}
.z_teacherslit li h2{font-family: "微软雅黑"; font-size: 14px;color: #747474;line-height: 16px;margin: 0;} 

.z_appstudy{background: url(../images1/zsjz_mobilepic1.png) no-repeat center center;height: 378px;}

.z_coursestk{margin-top:30px;}
.z_coursestk h2, .z_latestcouse h2{font-size:30px;color:#80bb51;font-weight:bold;} 
.z_coursestk li{width:300px;float:left;margin-left:20px;}
.z_coursestk .nomargin{margin-left:0;}
.s_zsjz_cdc{background:#61964b;margin-top:50px;padding:15px 0 35px;}
.s_zsjz_cdc dt{float:right;margin-top:115px;}
.s_zsjz_cdc dt h2 a{color:#fff;font-size:33px;margin-top:10px;} 
.s_zsjz_cdc dd{color:#fff;width:500px;}
.s_zsjz_cdc dd h2{background:url(../images1/z_cdcbg.jpg) no-repeat left center;margin-bottom:10px;height:146px;font-size:50px;font-weight:bold;line-height:146px;padding-left:190px;}

.s_zsjz_active{background:#3a5234;padding:20px 0 40px;}
.z_activetitle h2{background:url(../images1/z_activehbg.jpg) no-repeat left center;height:146px;line-height:146px;padding-left:190px;font-size:50px;font-weight:bold;color:#fff;}
.z_activepic{width:719px;float:left;margin-top:15px;}
.z_activettxt{width:220px;float:left;margin-top:15px;}
.z_activettxt li{background:#fff url(../images1/sqb_icon1.png) no-repeat 8px center;
border-bottom: solid 1px #81b853;}
.z_activettxt li a{color:#81b853;font-family: "微软雅黑";font-size: 24px;font-weight: bold;line-height: 72px;padding-left: 80px;height: 72px;
display: block;}
.z_activettxt li.z_sxtjt{background-image:url(../images1/sqb_icon2.png);}
.z_activettxt li.z_mqckt{background-image:url(../images1/sqb_icon3.png);}
.z_activettxt li.z_schdt{background-image:url(../images1/sqb_icon4.png);}
.z_activettxt li.z_sqskt  .active{background: #81b853 url(../images1/sqb_icon1_hover.png) no-repeat 8px center;color:#fff;}
.z_activettxt li.z_sxtjt .active{background: #81b853 url(../images1/sqb_icon2_hover.png) no-repeat 8px center;color:#fff;}
.z_activettxt li.z_mqckt .active{background: #81b853 url(../images1/sqb_icon3_hover.png) no-repeat 8px center;color:#fff;}
.z_activettxt li.z_schdt .active{background: #81b853 url(../images1/sqb_icon4_hover.png) no-repeat 8px center;color:#fff;}
 
.z_schdlistpic{ position: relative; width: 100%; min-width: 960px;; overflow: hidden; height: 153px;margin-top:40px;}
.z_subschdlistpic{ position: absolute; left: 0; top: 0;background:#fff;}
.z_schdlistpic img{ float: left; margin-left: 6px;} 

.z_xzbkpic img{margin:0 auto;}
.z_xzbkpic h2{font-size: 30px;color: #80bb51;font-weight: bold;margin:25px 0;}
.z_xzbkpic h2 a{color: #80bb51;}

.nowbm dt {float: left;height: 283px;margin: 0 0 0 20px;}
.nowbm dd {padding-left: 370px;font-family: "微软雅黑";font-size: 14px;color: #595959;}
.nowbm dd h2 {margin-bottom: 20px;color: #7dbf5b;border-bottom: solid 5px #7dbf5b;padding: 10px 0;font-size: 27.5px;}
.nowbm dd h2 span {font-size: 35px;}
.nowbm .ljbmbtn {margin-top: 20px;}

.z_latestcouse{margin-top:100px;} 
.z_latestcouse table{width:100%;}
.STYLE1{color:#f00;}
.z_latestcouse table td, .z_latestcouse table thead th{border:solid #ddd 1px;line-height:32px;}  
a.btn-success{color: #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
background-color: #5bb75b;
background-image: -moz-linear-gradient(top, #62c462, #51a351);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
background-image: -webkit-linear-gradient(top, #62c462, #51a351);
background-image: -o-linear-gradient(top, #62c462, #51a351);
background-image: linear-gradient(to bottom, #62c462, #51a351);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
border-color: #51a351 #51a351 #387038;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
padding: 5px 20px;
font-size: 11.9px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
} 
/***************************************招生简章 end——第二版******************** ***************/



article.node .course_all img{display:inline;margin:0;float:left;}  
#LRfloater0{display:none;} 
ul.jcarousel li{position:relative;}
.curtain_icon{position: absolute;
background:#79be0b url(../images/plus-icon.png) no-repeat center center; 
z-index: 500;
bottom: 50px;
left: 50%;
margin: 0 0 -12px -12px;
display: block;
overflow: hidden;
width: 24px;
height: 24px;
text-align: center;
opacity: 0;
filter: alpha(opacity = 0);
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
-webkit-transition: all .35s ease-in;
-moz-transition: all .35s ease-in;
-ms-transition: all .35s ease-in;
-o-transition: all .35s ease-in;
transition: all .35s ease-in;

}

ul.jcarousel li:hover  .curtain_icon{bottom: 62%;
opacity: 1;
filter: alpha(opacity = 100);
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);

}

/***************************************?????????***********************************/
/**.rightadv_hd, .rightadv_sqb, .rightadv_wm, .rightadv_wx{position:relative;height:138px;overflow:hidden;margin:10px 0 0;}
.rightadv_hd img, .rightadv_sqb img, .rightadv_wm img, .rightadv_wx img{border:9px #ececec solid;width:210px;height:120px;webkit-transition: all 200ms ease-in;
-moz-transition: all 200ms ease-in;
-o-transition: all 200ms ease-in;
transition: all 200ms ease-in;}
.hd_text, .sqb_text, .wm_text, .wx_text{webkit-transition: all 200ms ease-in;
-moz-transition: all 200ms ease-in;
-o-transition: all 200ms ease-in;
transition: all 200ms ease-in;
 z-index:10; text-align:center;position:absolute;color:#fff;width:100%; bottom:-32px;line-height:32px;height:32px;}  
.icon_ciycle{webkit-transition: all 200ms ease-in;
-moz-transition: all 200ms ease-in;
-o-transition: all 200ms ease-in;
transition: all 200ms ease-in;
filter: alpha(opacity=60);
-moz-opacity: 0.6;
-khtml-opacity: 0.6;
opacity: 0.6;
display:block;height:32px;line-height:32px;position:absolute;width:100%;background:#79be0b; bottom:-32px;
z-index:9; 
}
a.hd_text:hover, a.sqb_text:hover, a.wm_text:hover, a.wx_text:hover{color:#fff;}  
.rightadv_hd:hover .icon_ciycle, .rightadv_hd:hover .hd_text, .rightadv_sqb:hover .icon_ciycle, .rightadv_sqb:hover .sqb_text, .rightadv_wm:hover .icon_ciycle, .rightadv_wm:hover .wm_text, .rightadv_wx:hover .icon_ciycle, .rightadv_wx:hover .wx_text{bottom:0;} 
.rightadv_hd:hover img, .rightadv_sqb:hover img, .rightadv_wm:hover img, .rightadv_wx:hover img{border:9px #79be0b solid;width:210px;} **/
.rightadv_hd{margin:15px 0 0;}
.rightadv_hd img{width:60px;height:60px;}
.rightadv_hd dt{float:left;margin-right:10px;}  
.rightadv_hd dd p{font-size:12px;line-height:20px;}
.rightadv_hd dd p a{color:#828282;}
.rightadv_hd dd p a:hover{color:#83b330;}

.node-362{height:1000px;overflow:auto;}
.node-362>.field>.field-items>.field-item{float:left;margin:15px 8px;}
.node-362>.field>.field-items>.field-item>a>img{
max-width: 140px;
height: 205px;
padding: 3px;
border: 1px solid #E4E4E4;
margin:0
}

#block-block-11 img{display:inline;}

.about_ustextall{width:245%;} 
article.node .about_ustextall h2{color:#79be0b;}
article.node .about_ustextall p{margin: 0 0 15px;line-height: 18px;}

/***************手机 导航*****************/

.head_menu{display:none;}
.mobile_menu{position:fixed;width:50%;right:-50%;top:46px;background:#79be0b;z-index:9999;height:100%;}

@media all and (max-width: 1220px)  and (min-width: 1024px) {
ul.nice-menu a{padding: 9px 14px 8px;}
ul.nice-menu-down .menuparent a{padding-right:14px;}
ul.nice-menu>li.first a{padding: 9px 20px 8px;} 
}
@media all and (min-width: 960px)
{
.sidebar-second #content {float: left;width: 75%;margin-left: 0%;margin-right: -75%;
}
.sidebar-second .region-sidebar-second {float: left;width: 25%;margin-left: 75%;margin-right: -100%;
}
}
  
@media all and (max-width: 960px)  and (min-width: 769px) {
#logo{margin-top:5px;}
.fix_box, #page, .region-bottom{width:768px;}
.aia_artitle h1.page__title, .breadcrumb{width:748px;}
.view-fontfourclock .views-row .field-content{width:120px;} 
#block-nice-menus-1{float:none;margin:0;}
ul.nice-menu a{padding: 9px 26px 8px;}
.box_bg{margin-top:10px;}
.jcarousel-skin-default .jcarousel-item{height:180px;}
.jcarousel-skin-default .jcarousel-container-horizontal, .view-id-fontscoll{height:180px;min-height:180px;} 
.about_ustextall{width:150%;} 
}
@media all and (max-width: 768px) {

ul.nice-menu-down {border:none;}
ul.nice-menu li{float:none;border:none;}
ul.nice-menu li a{border:none;}
ul.nice-menu li.menuparent ul{display:none;} 
.about_ustextall{width:100%;} 
}

@media all and (max-width: 768px)  and (min-width: 481px) {
#logo{margin-top:5px;width:260px;}
.fix_box, #page, .region-bottom{width:480px;} 
.aia_artitle h1.page__title, .breadcrumb{width:460px;background-position: center left;}
.breadcrumb{width:380px;display:none;}
.four_scolltitle{font-size:12px;}
.view-fontfourclock .views-row .field-content{width:165px;margin-bottom:20px;} 
#block-nice-menus-1{float:none;margin:0;}
ul.nice-menu a{padding: 9px 34px 8px;}
.box_bg{margin-top:10px;}
.jcarousel-skin-default .jcarousel-item{height:130px;}
.jcarousel-skin-default .jcarousel-container-horizontal, .view-id-fontscoll{height:130px;min-height:130px;}
.left_box{width:96%;}
.right_box{display:none;}
.region-bottom .footer_column{width: 48%;padding: 0 1%;margin-bottom:20px;}
/***************侧边栏 begin***************/
.sidebars{display:none;}
.sidebar-second #content{width:100%;}
.right_menu{display:none;}
}
 
@media all and (max-width: 480px) {
.header__name-and-slogan{display:none;}
#block-views-fontscoll-block, .box_bg{display:none;}
.left_box .quicktabs-tabs li a {padding:0 14px;}
.bootom_box{min-width:380px;}
.breadcrumb{width:380px;display:none;}

#block-views-fontfourclock-block{padding-top:20px;}
#main{padding-top:0px !important;}

#header{padding:20px 0 0;} 

#block-quicktabs-flink{display:none;}
#logo{margin-top:5px;}
.stickynav-active1{position:inherit; -webkit-box-shadow: none;-moz-box-shadow: none;width: 100%;}
.fix_box, #page, .region-bottom{width:370px;} 
.four_scolltitle{font-size:12px;}
.view-fontfourclock .views-row .field-content{width:30%;margin-bottom:20px;}   
 
ul.flippy{display:none;} 
 
#block-nice-menus-1{float:none;margin:0;display:none;}
ul.nice-menu a{padding: 9px 34px 8px;}
.box_bg{margin-top:10px;}
.jcarousel-skin-default .jcarousel-item{height:130px;}
.jcarousel-skin-default .jcarousel-container-horizontal, .view-id-fontscoll{height:50px;min-height:50px;}
.left_box{width:96%;}
.right_box{display:none;}
.region-bottom .footer_column{
width: 100%;
text-align: left;
float: none;
min-height: 120px;  
padding-bottom: 20px;}
#block-views-fontscoll-block-1{min-height:80px;clear:both;}
.sidebars{display:none;}
.sidebar-second #content{width:100%;}
.right_menu{display:none;}
#mobile a{color:#fff;}
#mobile img{display:inline;float:left;margin-left:35px;}
#mobile{display:block;position: fixed;
bottom: 0;
width: 100%;
height: 45px;
z-index: 9999;
background: #79BE0B;
border-top: 1px solid #719c27;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5);
text-align: center;
line-height:45px; 
}
body{padding-bottom:45px;}

.head_menu{display:block;clear:both;height:45px;width:100%;border-bottom:solid #719c27 1px;z-index:9999;line-height:45px;font-size:24px;font-family:"微软雅黑";background:#79be0b;color:#fff;text-align:center;position:fixed;top:0;}
.head_menu a{color:#fff;display:black;} 
.mobile_menu a{border-top:solid 1px #bbde84;border-top:solid 1px #bbde84;font-size:16px;border-bottom:solid #719c27 1px;display:block;height:40px;line-height:40px;width:100%;color:#fff;}

} 
#block-md-slider-1{height:400px;position: relative;}
#block-md-slider-2{height:400px;position: relative;}
.md-current a{background:#79BE0B;}
/**幻灯片的样式，防止加载排序乱**/
.md-layer-1-0-0{
width: 79.661%;
height: 87.5%;
top: 0%;
left: 0%;
display: block;}
.md-layer-1-0-1{
width: 48.7288%;
height: 73%;
top: 0%;
left: 17.3729%;
display: block;}
.md-layer-1-0-2{
width: 26.3559%;
height: 58.25%;
top: 32.75%;
left: 66.1017%;
display: block;}
.md-layer-1-0-3{
width: 40.9322%;
height: 75%;
top: 15.5%;
left: 42.3729%;
display: block;}
.md-layer-1-0-4{
width: 20.1695%;
height: 10%;
top: 56.25%;
left: 12.2881%;
display: block;}
.md-layer-1-0-5{
width: 20.1695%;
height: 10%;
top: 56.25%;
left: 12.2881%;
display: block;}
.md-layer-1-1-0{width: 42.4576%;
height: 99.5%;
top: 0.5%;
left: 11.2712%;
display: block;}
.md-layer-1-1-1{width: 23.2203%;
height: 6.5%;
top: 45.75%;
left: 57.1186%;
display: block;}
.md-layer-1-1-2{width: 28.6441%;
height: 6.75%;
top: 60%;
left: 57.2034%;
display: block;}
.md-layer-1-1-3{width: 19.2373%;
height: 8.75%;
top: 75.5%;
left: 57.5424%;
display: block;}
.md-layer-1-2-0{width: 54.5763%;
height: 85%;
top: 15%;
left: 28.3898%;
display: block;}
.md-layer-1-2-1{width: 15.5085%;
height: 7.75%;
top: 29.5%;
left: 11.8644%;
display: block;}
.md-layer-1-2-2{width: 19.4068%;
height: 7%;
top: 53%;
left: 11.8644%;
display: block;}
.md-layer-1-2-3{width: 12.0339%;
height: 5.5%;
top: 39.25%;
left: 11.8644%;
display: block;}
.md-layer-1-3-0{width: 43.0508%;
height: 91.5%;
top: 8.5%;
left: 9.0678%;
display: block;}
.md-layer-1-3-1{width: 30.8475%;
height: 6.25%;
top: 44.25%;
left: 54.322%;
display: block;}
.md-layer-1-3-2{width: 34.4068%;
height: 6.25%;
top: 58.5%;
left: 54.322%;
display: block;}
.md-layer-1-3-3{width: 11.2712%;
height: 12.5%;
top: 73.5%;
left: 54.4915%;
display: block;}
.slide-4, .slide-3, .slide-2{display:none;}
/**2015.6.26改版**/
.span4{width:300px;float:left;margin-left: 20px;}
.imgcss img:hover {transform: translate3d(0px, -2px, 0px);transition: all 0.3s ease 0s;box-shadow: 0px 2px 8px 2px rgba(0, 0, 0, 0.1);}
#block-block-23, #block-block-5, #block-block-25{margin-left:10px;}
.imgcss img {transition: all 200ms ease-in 0s;border-radius: 4px;border: 1px solid #DDD;}
.martop10 {margin-top: 10px;}
.front_aiagg h2{line-height: 40px;color: #83B330;margin-top: 35px;}
.front_aiagg p{border: 1px solid #EBEBEB;padding: 14px 20px 15px;font-size: 12px;line-height: 24px;}
#quicktabs-tabpage-fontfivetab-3 .views-row-first .cfo_hot{padding-right:30px;background:url(http://www.aiaworldwide.com.cn/sites/all/themes/aia1/images/5-131223213R2.gif) center right no-repeat;}

#md-slider-1 .slide-1{background:url(http://www.aiaworldwide.com.cn/sites/default/files/CFO_BANNER.jpg) center center no-repeat;}