@charset "utf-8";
/* CSS Document */

/* ===================================================================
   Reset
   ================================================================== */

html {
	font-size:100%;
	-ms-text-size-adjust:100%;
	-webkit-text-size-adjust:100%;
}

body,div,ul,ol,li,dl,dt,dd,h1,h2,h3,h4,h5,h6,hgroup,p,blockquote,figure,form,fieldset,input,legend,pre,abbr {
	margin:0;
	padding:0;
}

fieldset, iframe, img { border:0; }

sup {
	font-size:smaller;
	*vertical-align:top;
}

sub {
	font-size:smaller;
	*vertical-align:bottom;
}

ul { list-style:none; }

ol { 
    margin:0 0 0 20px;
    list-style-type:decimal;
    *margin-left:25px;
}


/* ===================================================================
   Typography 对应专题样式
   ================================================================== */

body { 
    font:14px/1.5 Tahoma, Verdana, Arial, '\5FAE\8F6F\96C5\9ED1', 'Hiragino Sans GB', '\5b8b\4f53', Sans-Serif;
    *font-family:'\5FAE\8F6F\96C5\9ED1', '\5b8b\4f53', Sans-Serif;
	background:url("../images/banner.jpg") center top no-repeat;
}

button, a {     /*IE7*/
    border:none;
    *+font-family:"Microsoft Yahei";
    cursor:pointer;
}

h1, h2, h3, h4, h5 { color:#333; }

h1, h3, h4 { font-weight:normal; }

h1 {
    font-size:26px;
    letter-spacing:4px;
    margin:6px 0 0.2em 0;
}

h2 {
    font-size:20px;
    letter-spacing:0.1em;
    margin:10px 0;
	font-weight:normal;
}


h3 {
    font-size:18px;
    letter-spacing:0.15em;
    margin:0 0 6px 0;
}

h4 {
    font-size:16px;
    letter-spacing:0.1em;
    margin:0 0 2px 0;
}

h5 { 
    font-size:15px; 
    margin:0 0 5px 0;
}

h6 { 
    font-size:12px;
    font-weight:normal;
}

h2 a,h3 a, h4 a {
	color:#333;
}

h2 a:hover,h3 a:hover, h4 a:hover {
	color:#70cabe;
}

a { 
    text-decoration:none; 
    cursor:pointer;
    color:#666;
	/*
    -webkit-transition:all 0.5s;
    -moz-transition:all 0.5s;
    -o-transition:all 0.5s;
    -ms-transition:all 0.5s;
    transition:all 0.5s;
	*/
}

a:hover, a:active { color:#1c932d; }

strong, .black { color:#333; }

p { margin:0 0 8px 0; }

i { margin-right:10px; }

@font-face {
	font-family:Century Gothic;
	src:url("../../../font/GOTHIC_1.ttf");
	font-weight:normal;
}

.more {
	font-family:Century Gothic;
}


/**
 * Table 表格
 */

table {
    border-collapse:collapse;
    border-spacing:0;
}

th {
    background:#00b6de;
    color:#fff;
    font-size:15px;
    letter-spacing:0.05em;
    line-height:18px;
    border:1px solid #6cd6e9;
    height:30px;
    text-align:center;
}

td {
    padding:5px 5px;
    background:#fff;
    border:1px solid #d5f8fe;
}


/**
 * Column 列 / 分栏
 */

.column {
    overflow:hidden;
    margin-left:-40px;
    display: table;
    content: "";
}

.column:before, .column:after {
    display: table;
    line-height: 0;
    content: "";
}

.column:after { clear: both; }

.column div {
    float:left;
    min-height:1px;
    margin-left:40px;
    display:block;
}

/* 三栏 */
.col-3 { width:230px; }	/* 加在子级div中 */



/* 四栏 */
.column-4 { margin-left:-36px; }	/* 加在父级div中 */

.column .col-4 { 	/* 加在子级div中 */
    width:218px;
    margin-left:36px;
}

.column .col-bg-4 {
	overflow:hidden;
	margin-left:36px;
	width:218px;
	height:306px;
}

.col-bg-4 div {
	overflow:hidden;
	margin:0;
	width:auto;
	padding:20px;
}


/*END*/


/**
 * List 列表
 */

.li-spacing-2x, .li-spacing-2x li { margin:0 0 20px 0; }

.li-spacing, .li-spacing li { margin:0 0 10px 0; }


/**
 * Paragraph 段落
 */ 

.paragraph-spacing h4, 
.paragraph-spacing h5 { 
    margin:20px 0 0 0;
}
/*END*/


/**
 * title
 */

.title {
	height:60px;
	padding:18px  0 0 0;
	text-align:center;
	background:url("../images/title_line.png") no-repeat 480px top;
}

.title p {
	color:#1c932d;
	font-size:14px;
	letter-spacing:0.2em;
}

.title a {
	color:#333;
	display:block;
}

.title a:hover,
.title a:active {
	color:#1c932d;
}


.subtitle {
    color:#00b6de;
    margin:0 0 10px 0;
	display:inline-block;
}

.sub-title {
    text-align:center;
    margin:20px 0 5px 0;
	letter-spacing:0.05em;
}

.subtitle3 {
	color:#00b6de;
	font-weight:normal;
	font-size:18px;
}

#wrap .fst-title {
    border-top:none;
    margin-top:0;
    padding-top:0;
}
/*END*/


/**
 * divider 分隔线
 */

.divider {
    border-top:1px solid #eee;
    padding-top:30px;
}


/*END*/


/**
 * 返回顶部
 */
.gotopbtn {
    background:url("../images/top.png") no-repeat;
    display:inline-block;
    width:50px;
    height:50px;
    z-index:1000;
    position:fixed;
    cursor:pointer;
    right:100px;
    top:auto;
    bottom:300px;
}

.gotopbtn:hover {
    background-position:0 -60px;
}
/*END*/


/* ===================================================================
   Basic 基础框架
   ================================================================== */
   
#wrap {
    overflow:hidden;
    color:#666;
    width:100%;
    min-width:980px;
    max-width:1920px;
	margin:0 auto;
}
/*END*/


/* ===================================================================
   header
   ================================================================== */
#header {
    height:100px;
    margin:0 auto;
}

#logo {
    display:block;
    width:212px;
    height:48px;
    margin:20px 0 0 10px;
    float:left;
    -webkit-transition:none;
    -moz-transition:none;
    -o-transition:none;
    -ms-transition:none;
    transition:none;
}


/* ===================================================================
   navbar
   ================================================================== */
   
#nav {
    height:80px;
    width:670px;
    float:right;
    z-index:2000;
}

#nav li {
    float:left;
    text-align:center;
	height:100%;
	padding:0 6px;
}

#nav a {
    line-height:70px;
    font-size:16px;
    display:block;
    -webkit-transition: 0s;
    -moz-transition: 0s;
    -o-transition: 0s;
    -ms-transition: 0s;
    transition: 0s;
    color:#333;
	width:120px;
	margin-top:12px;
}

#nav li a:hover,
#home .home a,
#TouristProductsIP1 .TouristProductsIP1 a, 
#TouristProductsIP2 .TouristProductsIP2 a,
#TouristProductsIP3 .TouristProductsIP3 a,
#TouristProductsIP4 .TouristProductsIP4 a {
	color:#1c932d;
	background:url("../images/navbg.png") no-repeat center 10px;
}
/*END*/

   
/* ===================================================================
   banner
   ================================================================== */
#banner {
	background:url("../images/title.png") 439px 156px no-repeat;
	height:620px;
	position:relative;
	width:980px;
	margin:0 auto;
	z-index:2;
}

#banner div {
	width:400px;
	margin:161px 553px 0 0;
	float:right;
	height:350px;
}

#banner p {
	color:#fff;
	line-height:20px;
	text-align:center;
	font-size:12px;
	letter-spacing:0.05em;
}

/*END*/


/* ===================================================================
   footer
   ================================================================== */
#footer {
    height:390px;
    overflow:hidden; 
    font-size:12px;
    color:#fff;
	background:url("../images/footbg.jpg") no-repeat top center;
}
.footer h1 {
	color:#fff;
}
.contact { 
    float:right; 
    margin:0 20px 0 0px; 
    width:36%;
    line-height:16px;
}

.contact p { margin:0 0 3px 0; }

.contact a { color:#e2b0a2; }

.contact a:hover, 
.contact a:active {
    color:#fff;
}

#footer .title_foot { 
    font-size:14px; 
    font-weight:700;
    margin:0 0 8px 0;
}

.eng { 
    font-size:11px; 
    font-family:tahoma; 
    line-height:14px;
}

.botlogo {
    float:left;
    width:190px;
    height:45px;
}

.botlogo a {
    display:block;
    width:190px;
    height:45px;
    margin-top:60px;
    background:url("../images/footlogo.png") no-repeat;
}
/*END*/


/* ===================================================================
   main
   ================================================================== */
   
#main {
    overflow:hidden;
    width:100%;
	background:url("../images/mainbg.jpg") center 200px no-repeat;
}

#content {
    width:100%;
    min-height:400px;
    margin:0 auto;
    position:relative;
}

.portfolio-stage {
    overflow:hidden;
    margin:0 auto;
    zoom:1;
}

.content {
	width:980px;
    overflow:hidden;
    margin:0 auto;
    zoom:1;
}
/*END*/


/**
 * 追根溯源
 */
h1 span,h3 span {
	letter-spacing:0;
} 

.source div {
	width:39%;
}

.source a h3 {
	text-align:center;
	color:#1c932d;
}

.source a h3 p {
	font-size:14px;
	letter-spacing:0.2em;
	color:#999;
}

.source a:hover h3,
.source a:active h3 {
	color:#775349;
}

.source p{
	line-height:27px;
}



/**
 * 设计逻辑
 */
.logic { margin:50px 0 0 0; }

.logic .col-3 {
	width:144px;
	margin-left:212px;
}

.logic1, 
.logic2, 
.logic3 {
	background:url("../images/icon.png") center top no-repeat;
	display:block;	
	height:150px;
	text-align:center;
	position:relative;
	-webkit-transition:none;
    -moz-transition:none;
    -o-transition:none;
    -ms-transition:none;
    transition:none;
}

.logic span {
	position:absolute;
	left:0;
	bottom:0;
	font-size:16px;
	letter-spacing:0.15em;
	margin-left:2px;
	text-align:center;
	width:100%;
	background:#fff;
}

.logic a:hover,
.logic a:active { 
	color:#775349;
}

.logic1:hover, 
.logic1:active { 
	background-position:center -150px;
}

.logic2 { background-position:center -300px; }

.logic2:hover, 
.logic2:active { 
	background-position:center -450px;
}

.logic3 { background-position:center -600px; }

.logic3:hover, 
.logic3:active { 
	background-position:center -750px;
}

 

/**
 * 他山之石
 */
.key {
	margin-top:200px;
}

.factor {
	margin-top:50px;
}

.factor a {
	width:25%;
	height:460px;
	float:left;
}

.factor1,
.factor2,
.factor3,
.factor4 {
	position:relative;
}

.factor1 {
	background:url("../images/index01.jpg") center top no-repeat;
}

.factor2 {
	background:url("../images/index02.jpg") center top no-repeat;
}

.factor3 {
	background:url("../images/index03.jpg") center top no-repeat;
}

.factor4 {
	background:url("../images/index04.jpg") center top no-repeat;
}

.factor a .texts {
	position:absolute;
	top:160px;
	z-index:100;
	width:100%;
	filter:alpha(opacity=100); 
	-moz-opacity:1; 
	-khtml-opacity:1; 
	opacity:1;
	-moz-transition:all 0.2s ease-in;
    -webkit-transition:all 0.2s ease-in;
	-o-transition:all 0.2s ease-in;
    transition:all 0.2s ease-in;
}

.factor a .mask {
	background-color:#000;
	height:100%;
	width:100%;
	position:absolute;
	top:0px;
	left:0px;
	z-index:10;
	filter:alpha(opacity=40); 
	-moz-opacity:0.4; 
	-khtml-opacity:0.4; 
	opacity:0.4;
	-moz-transition:all 0.2s ease-in;
    -webkit-transition:all 0.2s ease-in;
	-o-transition:all 0.2s ease-in;
    transition:all 0.2s ease-in;
}

.texts h2,
.texts p {
	color:#fff;
	text-align:center;
}

.texts p {
	letter-spacing:0.1em;
}

.factor a:hover div,
.factor a:active div {
	filter:alpha(opacity=0); 
	-moz-opacity:0; 
	-khtml-opacity:0; 
	opacity:0;
}

/**
 * 奇创实践
 */

.practice a {
	float:left;
	width:444px;
	height:296px;
	margin-left:90px;
	position:relative;
}

.practice1 {
	background:url("../images/index05.png") center top no-repeat;
}

.practice1:hover {
	background-position:center -350px;
}

.practice2 {
	background:url("../images/index05.png") center -700px no-repeat;
}

.practice2:hover {
	background-position:center -1050px;
}

.practice p {
	position: absolute;
    display: block;
    margin-top: 310px;
    width: 100%;
    font-size: 14px;
    color: #666;
}

.practice a h3 {
	position:absolute;
	color:#fff;
	text-align:center;
}

.practice a h3 span {
	font-size:15px;
	letter-spacing: 0.1em;
}

.practice .practice1 h3 {
	top:121px;
	left:294px;
	*left:271px;
}

.practice .practice2 h3 {
	top:121px;
	left:294px;
	*left:271px;
}

.links ul {
	width:441px;
	margin-left:-10px;
}

.links li {
	float:left;
	width:135px;
	margin-left:10px;
	font-size:15px;
	letter-spacing:0.1em;
	line-height:18px;
}

.links li span {
	font-size:14px;
	font-family:Century Gothic;
	color:#999;
	letter-spacing:0;
}



/**
 * 其它专题
 */
.review {
	margin-top:120px;
    margin-bottom:80px;
    overflow:hidden;
}

.review .title {
    zoom:1;
	height:60px;
	padding:18px  0 0 0;
	text-align:center;
	background:url("../images/title_line.png") no-repeat 480px top;
}

.review li img {
    width:190px;
    height:86px;
    padding:0;
    border:none;
}

.infiniteCarousel {
    width:980px;
    position:relative;
    height:86px;
    margin:30px 0 0 0;
}

.infiniteCarousel .wrapper {
    width:900px; /* .infiniteCarousel width - (.wrapper margin-left + .wrapper margin-right) */
    overflow: auto;
    height:86px;
    margin:0 35px 0 60px;
    position:absolute;
    top:0;
}

.infiniteCarousel .wrapper ul {
    width:920px; /* single item * n */
    list-style-image:none;
    list-style-position:outside;
    list-style-type:none;
    margin:0;
    padding:0;
    position:absolute;
    top:0;
}

.infiniteCarousel ul:hover li img { border-color:#ddd; }

.infiniteCarousel ul:hover li:hover img {
    border-color:#333;
}

.infiniteCarousel ul li {
    display:block;
    float:left;
    height:88px;
    width:226px;
}

.infiniteCarousel ul li a img { display:block; }

.infiniteCarousel .arrow {
    display:block;
    height:22px;
    width:15px;
    background:url("../images/arrow_review.png") 0 0 no-repeat;
    text-indent:-999px;
    position:absolute;
    top:30px;
    cursor:pointer;
    outline:0;
}

.infiniteCarousel .forward {
    background-position:-20px 0;
    right:0;
}

.infiniteCarousel .forward:hover { background-position:-20px -25px; }

.infiniteCarousel .back {
    background-position:0 0;
    left:0;
}

.infiniteCarousel .back:hover { background-position:0 -25px; }
p.app1_con {
	line-height: 26px;
	margin:0 0 15px 0;
}
p.app1_con img {
	width:650px;
}
.tr_nav{width:100%;margin:30px auto;padding:15px 0;}
.con_nav {
	width:960px;
	margin:0 auto;
}
.con_nav li {
	width:150px;
	margin:0 auto;	
	float:left;
	height:40px;
	line-height: 40px;
	text-align: center;
	font-size:18px;
	margin-right:10px;
}
.con_nav li:last-child {
	margin-right:0;
}
.con_nav li a {
	height:40px;
	line-height: 40px;
	width:150px;
	display: block;
	color:#fff;
	border-radius: 10px;
	background:#555;
}
.con_nav li a:hover,
.con_nav li.active a{
	background:#1c932d;
	text-decoration: none;
}