@charset "utf-8";
/*====================
原css和layout合并。
prototype的样式。
尽量以间隔和大小来到排版达到效果。


模板所有区块,在临时样式中使用黑色背景，白色字，蓝色超链接。
清除所有区块自定义颜色。待设计需要，再自行在区块设置
======================*/




/*======================
设置模式中的临时样式。
实际使用时请删除
======================*/

body{color:#ffffff; background-color:#000000;}
a{color:#a9925c}




/*总体大小，样式重定义*/
*{-webkit-text-size-adjust:none;}/*禁用了这一属性，在chrome下放大网页，会导致其它元素均放大，而文字却依然为原定义的“12px”*/
body{font-size:12px;margin:0;padding:0;overflow-y:scroll;}
img{border:none;}
/* 设置默认字体,用 ascii 字符表示，使得在任何编码下都无问题  */
body,button, input, select, textarea {font:12px/1  "microsoft yahei", "\5b8b\4f53", sans-serif; line-height:14px;}


/*清除浮动*/
.clearfloat{clear:both;height:0;font-size:1px;line-height:0;}
.clearright{clear:right;height:0;font-size:1px;line-height:0;}
.clearleftt{clear:right;height:0;font-size:1px;line-height:0;}



/*连接颜色*/
/*20121208更新去掉背景透明，文字颜色设置*/

a           {text-decoration:none;}
a:active    {text-decoration:none;}
a:visited   {text-decoration:none;}



 

/*============翻页===============*/
#pages {margin:65px 1px 1px 1px;padding:4px;text-align:right;overflow:hidden;float: right; }

.product-function{clear:both;}
.page-guide {float:left;margin:0;padding:0;}
.page-guide a{display:block; margin:2px;border:1px solid #a9925c; }
.page-guide a:hover{ color:#ffffff;  text-decoration:none; }
.page-guide span{border:1px solid #a9925c;margin:2px; background-color: #cccccc  }

.page-guide span,
.page-guide a       {float:left; margin:0 10px 0 0; width:30px; height:34px; line-height:34px; text-align:center;  font-size:13px;padding:2px 4px 2px 4px; color:#a9925c;}

.pages_num          {float:left; overflow:hidden; }
/*=========翻页==================*/





/*按钮部 开始 此段代码配合图片sprit.png使用*/
.submit,.cancel,.search,.more,.buy,.location_home{background-image:url(../images/sprite.png)!important;display:block;border:none;background:transparent;margin:0;padding:0;cursor:pointer}

.submit{width:85px;height:26px;background-position:0 0;}
.submit:hover{background-position:-101px 0}

.cancel{width:85px;height:26px;background-position:0 -50px;}
.cancel:hover{background-position:-101px -50px}

.search{width:71px;height:21px;background-position:0 -101px;}
.search:hover{background-position:-101px -101px}

.more{width:52px;height:16px;background-position:0 -140px;}
.more:hover{background-position:-101px -140px}

.buy{width:107px;height:26px;background-position:0 -174px;}
.buy:hover{background-position:-144px -174px;}

/*列表图标，包含圆形和正方形，未加上三角形。需要把样式添加至li以上的ul中，因为是直接对样式下的li全部控制*/

.circle li,.square li,.circle li:hover,.square li:hover{background-image:url(../images/sprite.png);background-repeat:no-repeat}

.circle li{background-position:-690px 9px;}
.circle li:hover{background-position:-690px -41px;}
.square li{background-position:-690px -91px;}
.square li:hover{background-position:-690px -141px;}


.location_home{background-position:0px -52px; padding-left:25px;}


/*主要放置一些标题类的样式，字体的样式,例如文章标题，sidebar标题，content的标题，其他list中的标题*/
/*
h1:详细页面的产品、文章标题,目录名

h2:大板块的标题
h3:小版块标题

h4:sitebar中的版块标题


h5:文章，产品，列表中的标题
h6:文章，产品，列表中的副标题
*/

/*关于标题的样式设置*/
h1{font-size:36px;font-weight:700;}
h2{font-size:24px;font-weight:700; color:#ff9900}
h3{font-size:20px;font-weight:700;}
h4{font-size:18px;font-weight:700;}
h5{font-size:16px;font-weight:700;}
h6{font-size:14px;font-weight:700;}

/*标题通用样式*/
h1,h2,h3,h4,h5,h6{word-wrap:break-word;margin:0;padding:0;}


 

h1 a:hover,h2 a:hover,h3 a:hover,h4 a:hover,h5 a:hover{text-decoration:none;!important;}



.title-data{font-size:10px;color:#666666;}
.title-notice{font-size:12px;color:#AD3F40;}
.title-alarm{font-size:12px;color:#AD3F40;}


 



/*=================
智能云台
=================*/
#metro{position:fixed;left:0;top:0;background-color:#222222;width:100%; height:0;padding:0;z-index:100000; float:left;overflow:hidden; color:#ffffff; }




/*=================
返回顶部:
后期可以加多一些样式
=================*/
p#back-to-top {
    position:fixed;
    right:30px;
    bottom:100px;

}

p#back-to-top a {
    text-align:center;
    text-decoration:none;
    color:#d1d1d1;
    display:block;
    width:30px;
    /*使用CSS3中的transition属性给跳转链接中的文字添加渐变效果*/
    -moz-transition:color 1s;
    -webkit-transition:color 1s;
    -o-transition:color 1s;
}
p#back-to-top a:hover{
    color:#979797;
}
p#back-to-top a span{
    background:#d1d1d1 url("../images/arrow-up.jpg") no-repeat;

    border-radius:6px;
    display:block;
    height:50px;/*如果高低设置，少于100，会有动画的哦*/
    width:40px;
    margin-bottom:5px;
    /*使用CSS3中的transition属性给<span>标签背景颜色添加渐变效果*/
    -moz-transition:background 1s;
    -webkit-transition:background 1s;
    -o-transition:background 1s;
}
#back-to-top a:hover span{
    background:#979797 url("../images/arrow-up.jpg")  no-repeat center center;
}





 
 


/*
===========================================================
                公共部分样式结束
===========================================================
*/
/*所有块的居中中间部分*/
/*每个板块的main用margin来到定位距离。
以首页为例，index-mark-product和main同级
.main:板块的盒子中间部分;默认1000居中，如果改变为全屏，需要在该板块例如index-mark中添加
.main h2:板块的标题
.main .function
*/

/*box=ul=index-mark-product里面的列表内容
.box           {overflow:hidden}

.box h5        {}
.box h6        {}
.box .image    {}
.box .content  {}
.box .function {}
*/




/*顶部栏样式====================================================*/
.wrap {
    width: 1000px;
    margin: 0 auto;
    clear: both;
    position: relative;
    height: 100%;
}
#topbar {margin:0; padding:15px 0 0 0; overflow:hidden }

/*顶部栏  功能按钮 样式*/
#topbar .function {padding:0; margin:0; list-style-position:inside; overflow:hidden; }
#topbar .function li {padding:5px 10px; float:right; margin:0; height:20px; line-height:20px; }
#topbar .function li:hover {background-color:#222 }

#topbar .function li a {padding:0 0 0 23px; margin:0; color:#FFF; height:20px; display:block; vertical-align:top; text-align:left; background:url(../images/sprite.png) no-repeat; }

#topbar .function li:hover a {color:#09F; text-decoration:none }
#topbar .function .contact a {background-position:0 0; }
#topbar .function .favorite a {background-position:0 -100px; }
#topbar .function .sethomepage a {background-position:0 -150px; }
#topbar .function .homepage a {background-position:0 -50px; }
#topbar .function .contact:hover a {background-position:-100px 0; }
#topbar .function .favorite:hover a {background-position:-100px -100px; }
#topbar .function .sethomepage:hover a {background-position:-100px -150px; }
#topbar .function .homepage:hover a {background-position:-100px -50px; }

/*顶部栏 语言选择 样式*/
.language {padding:0; margin:0; list-style:none inside; overflow:hidden; float:right }
.language li {padding:5px 8px; float:left; margin:0 5px 0 0; height:20px; line-height:20px; }

.language li a {padding:0 0 0 33px; margin:0; color:#a9925c; height:20px; display:block; vertical-align:top; text-align:left; background-image:url(../images/sprite.png); background-repeat:no-repeat; }
.language li:hover a {color:#ffffff; text-decoration:none }
.language .cn a {background-position:0 -250px; }
.language .en a {background-position:0 -300px; }
.language .cn:hover a {background-position:-100px -250px; }
.language .en:hover a {background-position:-100px -300px; }





/*header栏 样式 =================================================== */
#header {height:110px;margin :0; padding :0; overflow :visible;position: fixed; top: 0; left: 0; background-image: url(../images/background.png); width: 100%; z-index:99999 }

#header .image{ width: 500px;}

#header .main        {margin :0 auto 0 auto; }
#header .image       {float :left; overflow :hidden; margin :0 30px 0 0 }
#header .content     {float :left; margin : 0; }
#header .content h2  {margin :0 0 15px 0 }
#header .content h3  {margin :0 0 15px 0 }
#header .content div {margin :0 0 15px 0 }






/*====================
搜索栏栏 样式 
====================== */
#header .search_box {height:32px;float:right; }
#header .search_box input {float:left; border:none; color:#cbcbcb; margin:0; padding:0; height:32px; font-size:18px; }
#header .search_box .function {width:32px; height:32px; background-color:#cccccc }
#header .search_box .content {width:280px;margin:0;padding:0 0 0 5px; font-size:14px; }
#header .search_box .content:focus{outline:none}






/*导航栏 样式 ===================================================*/



.menu{ float:right;  font-size: 14px; overflow: visible}
.menu {z-index:999; position: absolute; border:0; right: 0px; top:50px; }
.menu ul li a:visited {display:block; text-decoration:none; text-align:center; color:#a9925c; overflow:hidden; padding:0 5px }
/*一级目录的框*/
.menu ul li {float:left;  margin-left:17px;line-height: 20px; }
/*特别控制第一组的li的大小*/
.menu>ul>li {height:45px; }
.menu>ul>li>a {height:45px; font-size:14px;line-height:45px!important; }
/* specific to non IE browsers */
.menu ul li:hover a {color:#fff; }
/*二级目录*/
/*top:51px;是控制二级目录展开时候，的位置。*/
.menu ul li ol {display:none; }
.menu ul li:hover ol {display:block; position:absolute; top:55px; left:42px; min-width:200px; z-index:999 }
.menu ul li:hover ol li {width:200px; border: 1px solid #c0af87; background: #54626f;}
.menu ul li:hover ol li a {padding:15px 10px; display:block; background:#a9925c; color:#3c311f; text-align:left ;font-size: 14px;}
.menu ul li:hover ol li a:hover {background:#7f6438; color:#fff; }
.menu ul li .menu_2 {display: none;}
.menu ul li:hover .menu_2 {display:block;position: absolute;right: 570px;bottom: 55px;}
/*三级目录*/
.menu ul li ol li ul {display:none; }
.menu ul li ol li ul li {display:none; }
.menu ul li ol li ul li a {display:block; }
.menu ul li:hover>ol>li:hover ul {display:block; position:absolute; left:205px; top:0; }
.menu ul li:hover>ol>li:hover ul li {display:block; }
.menu ul li ol li ul li:hover ul {display:block; }
.menu ul li ol li ul li:hover ul li {display:block; }
.menu ul li ol li ul li a {padding:15px 5px; display:block; background:#666666; color:#000; text-align:left }


.nav_bg{ width:16px; height:8px; background:url(../images/nav_bg.png) no-repeat; display:block;position: absolute;top: -7px;right: 20px;}
.nav_bg.nav_bg_first{background:url(../images/nav_bg_first.png) no-repeat; }




/*========顶部横幅============*/
.banner              {margin-top:110px;height:410px; position:relative; text-indent:-999999px; }
.detail_body .banner {background:none; }
.bannerlong          {width:100%; height:100%; overflow:hidden; position:relative; background:#000; }
.bannerlong ul       {height:100%; position:absolute; left:0; top:0;padding:0; margin:0; }
.bannerlong ul li    {height:100%; float:left; }
.bannerlong ul li a  {height:100%; display:block;}

.dot                 {width:1000px; margin:0 auto; height:15px; position:relative; }
.onlydot             {display:none; }
.dot ul              {margin:-45px auto 0; }
.dot ul li           {background:#FFF; height:10px; width:10px; float:left; margin-right:15px; border-radius:50%; cursor:pointer; }






/*========中部横幅============*/
.banner_mid       {margin:25px 0 0 0;height:145px; }
.banner_mid ul    {margin:0; padding:0;height:100%; }
.banner_mid ul li {height:100%; }








/*========面包屑:位置指示=========*/
.location      {overflow:hidden; padding:10px 0 30px;color:#a9925c; }
.location li   {float:left; font-size:13px; }
.location li a {color:#a9925c; font-size:13px; }
/*---------面包屑:位置指示-------*/





/*========主体部分=========*/
#container {margin:0; padding:15px 0 0 0; overflow:hidden; }
#container {background:url(../images/container_bg.jpg); background-repeat: no-repeat; background-position: center top}

.main{width:1000px; margin:0 auto;overflow:hidden }




/*footer  样式 ===================================================*/

.footer                       {margin:25px 0 0 0 ;background-color:#000000; background-image: url("../images/footer-bg.jpg"); background-repeat: no-repeat overflow:hidden; height: 300px; background-position: center top;  }
.footer a                     {color:#ffffff}
.footer .main                 {margin:0 auto; }


.footer .img                  {float:left;   margin-right:20px;}
.footer h2                    {font-size:24px;color:#FFF; margin-bottom:20px;}
.footer h3                    {font-size:16px; color:#FFF; }

.footer .search-box           {border:#FFF 1px solid; overflow:hidden; float:left}
.footer .search-box .content  {color:#FFF;float:left;border:none; height:25px; width: 250px;}
.footer .search-box .function {width:60px; display:block; float:left; height:27px; background-color:#cccccc}



.footer .box                  {float:left; margin:15px 25px 25px 25px; width:120px; }
.footer .box ul               {margin: 0; padding: 0 }
.footer .box ul li            {line-height:18px; margin-bottom:10px;overflow:hidden; }
.footer .box h3               {margin-bottom:15px; color:#ffffff; font-size: 12px; color: #a9925c;border-bottom:solid 1px #cccccc; padding-bottom: 5px;}
.footer .box a                {color:#d1dbdf; } 

 

.copyright { height:60px; line-height:60px; text-align: center; padding-top: 15px; }
.copyright a {color:#ffffff}
.copyright p {margin:0 10px; color:#c7c7c7; }
.copyright .sitemap_btn {float:right; background:url("../images/footer_sitemap.jpg") no-repeat center left; padding-left:35px; height:28px; line-height:28px; color:#c7c7c7; margin-top:15px; margin-right:20px; text-decoration:none; }
.copyright .fvorite_btn {float:right; background:url("../images/footer_fav.jpg") no-repeat center left; padding-left:35px; height:28px; line-height:28px; color:#c7c7c7; margin-top:15px; text-decoration:none; }







/*分享按钮  样式 ===================================================*/
/*
新浪微博(点击去到网页)
腾讯微博(点击去到网页)
微信(点击出现二维码)

电子邮件(点击直接发送邮件)

skype(点击是在线客服)
wangwang(点击是在线客服)
QQ(点击是在线客服)

留言板(点击进入留言页面)
*/

.share-links                 {display: table; /*重点就是这个属性,这个样式会告知浏览器当前元素的宽度,采用最小的宽度.不是默认全宽*/ overflow:visible;  margin: 15px auto 0;}
.share-links a               {width:27px;height:27px;display:block;float:left;margin-right:25px;background-image:url(../images/footer-sprite.png);}
.share-links .logo_img       {position: relative;bottom: 16px;}

.share-links #swb            {background-position:0 0;}
.share-links #swb:hover      {background-position:-50px 0;}

.share-links #qq             {background-position:0 -50px;}
.share-links #qq:hover       {background-position:-50px -50px;}

.share-links #wx             {background-position:0 -100px;}
.share-links #wx:hover       {background-position:-50px -100px;}

.share-links #mail           {background-position:0 -150px;}
.share-links #mail:hover     {background-position:-50px -150px;}

.share-links #twb            {background-position:0 -200px;}
.share-links #twb:hover      {background-position:-50px -200px;}

.share-links #gbook          {background-position:0 -250px;}
.share-links #gbook:hover    {background-position:-50px -250px;}

.share-links #sky            {background-position:0 -300px;}
.share-links #sky:hover      {background-position:-50px -300px;}

.share-links #wangwang       {background-position:0 -350px;}
.share-links #wangwang:hover {background-position:-50px -350px;}










/*首页部分 样式 ===================================================*/
.index-introduce           { height:300px; margin:120px 8px 0 8px; }

.index-contact             {width:320px; float:left; height:300px; margin:0 5px; }
.index-contact .image      {background-color:#ff9900; text-align:center;margin:0 0 8px 0;}

.index-product-term        {width:320px; float:left; height:300px;  margin:0 5px;}
.index-product-term .image {background-color:#ff9900; text-align:center;margin:0 0 8px 0;}


.index-introduce h5{ text-align: center; font-size: 24px; color: #a9925c; font-weight: 100; height: 24px; }
.index-introduce h6{  color: #a9925c; text-align: center;font-size: 12px;font-weight: 100; border: solid 1px #a9925c; width: 200px; height: 30px; margin:15px auto  0 auto; line-height: 30px;}

.index-introduce .image{  margin-top: 25px;}

.index_mark_product li{ width: 310px; height:370px;}
.index_mark_product .image img {height:370px;width:310px;}




/*
首页标记显示的产品
.index_mark_product=main
*/

.index_mark_product                 {margin-top:25px;padding:55px 0 15px 0 }
.index_mark_product h2              {margin:15px 0;padding:0; text-align:center}
.index_mark_product .function       {margin:0;padding:0;text-align:center}

.index_mark_product  { overflow: hidden; }
.index_mark_product                  {height:380px;}
.index_mark_product ul              {margin:0;padding:0}
.index_mark_product ul li           {float:left;  margin:15px 6px 15px 14px; background-image: url("../images/product-list-bg.jpg")}
.index_mark_product ul li h5        {margin:15px 0;padding:0 0 0 15px; color: #a9925c; font-size: 18px;font-weight: 100;text-align: left;}
.index_mark_product ul li h6        {margin:8px 0;padding:0 0 0 15px; color: #ffffff; font-size: 36px; font-weight: 100;text-align: left;}
.index_mark_product ul li .image    {margin:0;padding:0;}
.index_mark_product ul li p         {margin:0;padding:0}







/*share area*/
.share_box li                {float:left; width:34px; height:30px; margin:0 15px; }
.share_box li a              {display:block; height:100%; }
.share_box li a.share_qq     {background:url("../images/share_qq.jpg") no-repeat center; }
.share_box li a.share_shouhu {background:url("../images/share_shouhu.jpg") no-repeat center; }
.share_box li a.share_weixin {background:url("../images/share_weixin.jpg") no-repeat center; }
.share_box li a.share_weibo  {background:url("../images/share_weibo.jpg") no-repeat center; }











/*=========产品中心列表=========*/
.product-list{}
.product-list h1{ text-align:center; background-image: url("../images/h1-line.jpg");background-repeat: no-repeat; line-height: 40px;  background-position: center bottom; color: #a9925c; font-size: 24px; padding-bottom: 15px;}
.product-list .content{ font-size:14px;margin-top:25px;}


.product-list .list{ width:750px;margin-top:25px;}
.product-list .sidebar{margin-top:25px; font-size: 14px;}
.product-list .sidebar li {margin: 5px 0 5px 5px;}
.product-list .sidebar li a  { padding-right: 10px ;position: relative;  left: 5px;  top: 20px;}
.product-list .sidebar li a:hover {background-image: url(../images/youjian.png); background-repeat: no-repeat; background-position: center right}


.product-list .sidebar h3{ font-size: 24px; color:#a9925c; text-align: right;padding-right: 10px; padding-bottom: 10px; }

.product-list .list ul              {margin:0;padding:0}
.product-list .list ul li{float:left;  margin:15px 8px ; background-image: url("../images/product-list-bg.jpg");width: 230px; overflow: hidden}
.product-list .list ul li h5        {margin:15px 0;padding:0 0 0 15px; color: #a9925c; font-size: 18px;font-weight: 100}
.product-list .list ul li h6        {margin:8px 0;padding:0 0 0 15px; color: #ffffff; font-size: 36px; font-weight: 100}
.product-list .list ul li .image    {margin:0;padding:0;}
.product-list .list ul li p         {margin:0;padding:0;}
.product-list .list ul li a img     {width: 230px;height:275px; }

/*=========产品中心列表=========*/


.product-detail h1{ text-align:center; background-image: url("../images/h1-line.jpg");background-repeat: no-repeat; line-height: 40px;  background-position: center bottom; color: #a9925c; font-size: 24px; padding-bottom: 15px;}
.product-detail .content_detail{ width: 990px; margin: 0 auto;padding:10px 0 ;background-color: #1c2228;padding:20px 0;}
.product-detail .content_detail p {width: 640px;margin-left: auto;margin-right: auto;line-height: 20px;}



/*=========新闻列表=========*/
.news-list{margin-top:15px;padding:0;}
.news-list h1{ text-align:center; background-image: url("../images/h1-line.jpg");background-repeat: no-repeat; line-height: 40px;  background-position: center bottom; color: #a9925c; font-size: 24px; padding-bottom: 15px;}
.news-list .content{ font-size:14px;}


.news-list .list{ margin-top:55px;}

.news-list .list ul                {margin:0;padding:0}
.news-list .list ul li             {margin:15px 6px;padding:0; overflow:hidden;height: 195px;}
.news-list .list ul li h5          {margin:5px 0;padding:0}
.news-list .list ul li .image      {margin:0 15px 0 0;padding:0; float:left; width: 300px; height: 195px; overflow: hidden}
.news-list .list ul li .data       {margin:0;padding:0; overflow:hidden}
.news-list .list ul li .data div   {margin:0 10px 0 0; padding:0 0 0 0px; float:left}
.news-list .list ul li .data .view {}
.news-list .list ul li .data .date {}
.news-list .list ul li .content    {margin:15px 0 0 0;padding:0}
.news-list .list ul li .function    { background-color:#a9925c ; color: #ffffff; padding: 3px; float: left; margin-top: 25px;}


/*=========新闻列表=========*/




/*=========新闻详情=========*/

.news-detail h1{ text-align:center; background-image: url("../images/h1-line.jpg");background-repeat: no-repeat; line-height: 40px;  background-position: center bottom; color: #a9925c; font-size: 24px; padding-bottom: 15px;}
.news-detail .content{margin-top:25px;font-size:14px;line-height: 24px;}
.news-detail .date{ text-align: center;color:#a9925c; margin-bottom: 25px;}
/*=========新闻详情=========*/











/*=========公司简介=========*/

.introduce-detail h1{ text-align:center; background-image: url("../images/h1-line.jpg");background-repeat: no-repeat; line-height: 40px;  background-position: center bottom; color: #a9925c; font-size: 24px; padding-bottom: 15px;}
.introduce-detail .content{font-size:14px;  margin: 25px auto 0 auto}
/*=========新闻详情=========*/







/*=========案例列表=========*/
.project-list{margin-top:15px;padding:0;}
.project-list h1{ text-align:center; background-image: url("../images/h1-line.jpg");background-repeat: no-repeat; line-height: 40px;  background-position: center bottom; color: #a9925c; font-size: 24px; padding-bottom: 15px;}
.project-list .content{ font-size:14px;}

.project-list .list{   margin-top:55px;}






.project-list .list ul                {margin:0;padding:0}
.project-list .list ul li             { margin:15px 6px 25px 6px;padding:0; overflow:hidden; float: left}
.project-list .list ul li h5          {margin:15px 0;padding:0}
.project-list .list ul li .image      {margin:0;padding:0;  }
.project-list .list ul li .data       {margin:0;padding:0; overflow:hidden}
.project-list .list ul li .data div   {margin:0 10px 0 0; padding:0 0 0 15px; float:left}
.project-list .list ul li .content    {margin:15px 0 0 0;padding:0}


/*=========案例列表=========*/




/*=========案例详情=========*/

.project-detail h1{ text-align:center}
.project-detail .content{margin-top:25px;font-size:14px;}
/*=========案例详情=========*/









/*=========下载列表=========*/
.download-list{margin-top:15px;padding:0;}
.download-list h1{ text-align:center; background-image: url("../images/h1-line.jpg");background-repeat: no-repeat; line-height: 40px;  background-position: center bottom; color: #a9925c; font-size: 24px; padding-bottom: 15px;}
.download-list .content{ font-size:14px;}

.download-list .list{ width:750px; float:left;margin-top:25px;}


.download-list .list ul                {margin:0;padding:0}
.download-list .list ul li             { margin:15px 6px;padding:0; overflow:hidden}
.download-list .list ul li h5          {margin:5px 0;padding:0}
.download-list .list ul li .image      {margin:0 15px 0 0;padding:0; float:left}
.download-list .list ul li .data       {margin:0;padding:0; overflow:hidden}
.download-list .list ul li .data div   {margin:0 10px 0 0; padding:0 0 0 15px; float:left}
.download-list .list ul li .content    {margin:15px 0 0 0;padding:0}
.download-list .list ul li .function    { float: right}


/*=========下载列表=========*/




/*=========案例详情=========*/

.download-list h1{ text-align:center; background-image: url("../images/h1-line.jpg");background-repeat: no-repeat; line-height: 40px;  background-position: center bottom; color: #a9925c; font-size: 24px; padding-bottom: 15px;}
.download-list .content{margin-top:25px;font-size:14px;}
/*=========案例详情=========*/








/*=========常见问题=========*/
.faq-list{margin-top:15px;padding:0;}
.faq-list h1{ text-align:center; background-image: url("../images/h1-line.jpg");background-repeat: no-repeat; line-height: 40px;  background-position: center bottom; color: #a9925c; font-size: 24px; padding-bottom: 15px;}
.faq-list .content{ font-size:14px;}

.faq-list .list{ border:solid 1px #ffffff; width:750px; float:left;margin-top:25px;}
.faq-list .sidebar{margin-top:25px;}





.faq-list .list ul                {margin:0;padding:0}
.faq-list .list ul li             {border:solid 1px #cccccc;margin:15px 6px;padding:0; overflow:hidden}
.faq-list .list ul li h5          {margin:5px 0;padding:0}
.faq-list .list ul li .image      {margin:0 15px 0 0;padding:0; float:left}
.faq-list .list ul li .data       {margin:0;padding:0; overflow:hidden}
.faq-list .list ul li .data div   {margin:0 10px 0 0; padding:0 0 0 15px; float:left}
.faq-list .list ul li .content    {margin:15px 0 0 0;padding:0}
.faq-list .list ul li .function    { float: right}


/*=========下载列表=========*/




.stage{ overflow: hidden; background-position: center 85px; background-repeat: no-repeat;}



.search-list h1{ text-align:center; background-image: url("../images/h1-line.jpg");background-repeat: no-repeat; line-height: 40px;  background-position: center bottom; color: #a9925c; font-size: 24px; padding-bottom: 15px;}
.search-list .list ul              {margin:0;padding:0; overflow: hidden}
.search-list .list ul li{float:left;  margin:15px 8px ;padding:0 0 15px 0; background-image: url("../images/product-list-bg.jpg");width: 230px; overflow: hidden}
.search-list .list ul li h5        {margin:15px 0;padding:0 0 0 15px; color: #a9925c; font-size: 18px;font-weight: 100}
.search-list .list ul li h6        {margin:8px 0;padding:0 0 0 15px; color: #ffffff; font-size: 36px; font-weight: 100}
.search-list .list ul li .image    {margin:0;padding:0;}
.search-list .list ul li p         {margin:0;padding:0}