@charset "utf-8";

/*全局控制*/
body{ margin:0;padding:0;font-size:12px;line-height:22px;font-family:"微软雅黑",Arial;-webkit-text-size-adjust:none;}
html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td,p{margin:0;padding:0;}
input,select,textarea{font-size:12px;line-height:16px;}img{border:0;}ul,li{list-style-type:none;}
a{color:#333;text-decoration:none;}
a:hover{text-decoration:underline;}
.tc{text-align:center;}.tl{text-align:left;}.tr{text-align:right;}
.dis{display:block;}.undis{display:none;}
.fl{float:left;}.fr{float:right;}.cl{clear:both;}.fb{font-weight:bold;}.fnb{font-weight:200;margin-left:-1px;}
.hr_1,.hr_10{font-size:1px;line-height:1px;clear:both;}
.hr_1{height:1px;}.hr_10{height:10px;}
input[type="text"]:focus,input[type="password"]:focus,textarea:focus{outline:none;}


/********************* 以下(结束标识)代码请在实际开发中删除 *********************/


/* 基础动画定义 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes slideIn {
    from { transform: translateX(-30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* 幻灯图基础样式 */
.fo-slider {
    width: 363px;
    height: 287px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.fo-slider:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.fo-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    filter: alpha(opacity=0);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease;
    transform: scale(0.95);
}

.fo-slide.active {
    transform: scale(1);
}

.fo-slide:first-child {
    opacity: 1;
    filter: alpha(opacity=100);
}

.fo-slide img {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fo-slide:hover img {
    transform: scale(1.05);
}

/* 导航按钮 */
.fo-prev, .fo-next {
    position: absolute;
    top: 50%;
    margin-top: -15px;
    width: 30px;
    height: 30px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    z-index: 100;
    text-decoration: none;
    font-size: 16px;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0;
}

.fo-slider:hover .fo-prev,
.fo-slider:hover .fo-next {
    opacity: 1;
}

.fo-prev { left: 5px; }
.fo-next { right: 5px; }

.fo-prev:hover, .fo-next:hover {
    background: rgba(255,255,255,0.8);
    color: #333;
    transform: scale(1.2);
}

/* 指示器 */
.fo-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 100;
}

.fo-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.7);
    margin: 0 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fo-dots span.active {
    background: #f00;
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(255,0,0,0.6);
}

/* 导航样式增强 */
.nav li {
    position: relative;
    transition: all 0.3s ease;
}

.nav li a {
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.nav li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    transition: width 0.3s ease;
}

.nav li:hover::after {
    width: 100%;
}

.nav li:hover a {
    transform: translateY(-3px);
}

/* 列表项动画 */
.lie1 li, .lie3 li, .lie4 li {
    position: relative;
    padding-left: 15px;
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
}

.lie1 li::before, .lie3 li::before, .lie4 li::before {
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.lie1 li:hover, .lie3 li:hover, .lie4 li:hover {
    padding-left: 10px;
    transform: translateX(5px);
}

.lie1 li:hover::before, .lie3 li:hover::before, .lie4 li:hover::before {
    opacity: 1;
}

.lie1 li a, .lie3 li a, .lie4 li a {
    transition: color 0.3s ease;
}

.lie1 li:hover a, .lie3 li:hover a, .lie3 li:hover a{
    color: #c00;
}

/* 按钮和链接样式 */
a {
    transition: all 0.3s ease;
}

.biao a, .biao1 a {
    position: relative;
    padding: 3px 8px;
    border-radius: 4px;
}

.biao a:hover, .biao1 a:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* 标题样式 */
.biao span, .biao1 span {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.biao span::after, .biao1 span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
}

.biao:hover span::after, .biao1:hover span::after {
    width: 100%;
}

/* 滚动动画元素 */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


.animate-on-scroll1 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.animate-on-scroll1.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 顶部banner动画 */
.banner1 {
    overflow: hidden;
}

#slideplay img {
    transition: transform 6s ease;
}

#slideplay:hover img {
    transform: scale(1.1);
}

/* 页脚链接样式 */
.footer a, .foot a {
    position: relative;
    display: inline-block;
}

.footer a::after, .foot a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #333;
    transition: width 0.3s ease;
}

.footer a:hover::after, .foot a:hover::after {
    width: 100%;
}

/* 友情链接样式 */
.weblink1 a {
    display: inline-block;
    margin: 0 10px;
    padding: 5px 10px;
    
    border-radius: 4px;
}

.weblink1 a:hover {
    background: #f0f0f0;
    border-color: #c00;
    transform: rotate(2deg) scale(1.05);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}


/*头部区域*/
.header{height:121px; background:url(../images/fo_01.png) repeat-x center;}
.header1{ width:1080px; height:121px; margin:0 auto;}
.header h1{width:225px;height:49px;float:left;margin:60px 0 0 5px; }
.header h1.logo{background:url(../images/logo123.png) no-repeat;}
.header .txt{position:absolute;width:174px;top:18px;right:16px;text-align:center;color:#dfdfdf;_display:inline-block;}
.header .txt span{padding:0 10px;}
.header .tel{position:absolute;top:50px;right:16px;height:14px;line-height:14px;padding-left:70px;background:url(../images/tel_txt.png) no-repeat;text-align:center;font-family:Verdana;font-size:14px;color:#8d8c8c;}
.navArea{ width:750px; float:right;margin:55px 0 0 0;}
.navBg{}
.nav{width:750px;height:58px;margin:0 auto;line-height:58px;font-family:"微软雅黑";}
.nav li{float:left;}
.nav li a{display:block;width:105px;text-align:center;font-size:16px;color:#161616;}
.nav li a:hover, .nav li a:hover.on{background:url(../images/dao.png) no-repeat center;text-decoration:none; color:#a87700;}
.nav li a.on{background:#1c1c1c;}
.nav li a.on2{background:#333;text-decoration:none;}
.nav li:hover.on{background:#1c1c1c;text-decoration:none;}
.nav li ul{display:none;position:absolute;z-index:9999;} 
.nav li ul li{float:none;display:block;position:relative;line-height:20px;_display:inline;} 
.nav li ul li .s{position:absolute;top:0;left:140px;border-left:1px solid transparent;}
.nav li ul li .s li{float:none;}
.nav li ul li a{display:block;width:120px;height:20px;padding:4px 0 8px 20px;background:#333;text-align:left;font-weight:normal;font-size:12px;color:#ccc;}
.nav li ul li a:hover{color:#f10000;}
.nav .t,.nav .t:hover{background:url(../images/nav_ico.gif) no-repeat 120px center #333;}


/*Banner*/
.banner, .mainbody{width:1080px;margin:0 auto;}

.banner #full-screen-slider { width:100%; height:455px;position:relative}
.banner #slides { display:block; width:100%; height:455px; list-style:none; padding:0; margin:0; position:relative}
.banner #slides li { display:block; width:100%; height:100%; list-style:none; padding:0; margin:0; position:absolute}
.banner #slides li a { display:block; width:100%; height:100%; text-indent:-9999px}
.banner #pagination { display:block; list-style:none; position:absolute; left:50%; top:436px; z-index:999; margin:0; overflow:hidden; height:10px;}
.banner #pagination li { display:block; list-style:none; width:10px; height:10px; float:left; margin-left:10px; background:#FFF }
.banner #pagination li a { display:block; width:100%; height:100%; padding:0; margin:0;  text-indent:-9999px;}
.banner #pagination li.current { background:#f47838}


/*公告区域*/
.subnotice{width:935px;margin:0 auto 35px auto;padding:0 10px 0 15px;height:30px;line-height:30px;background:#f3f3f3;color:#8d8d8d;overflow:hidden;}
.subnotice strong{color:#6a6a6a;float:left;}
.notice{width:935px;margin:0 auto 35px auto;padding:0 10px 0 15px;height:36px;line-height:36px;background:#f3f3f3;color:#8d8d8d;overflow:hidden;}
.notice_a{width:680px;overflow:hidden;float:left;}
.notice_a strong{color:#6a6a6a;float:left;}
.search{float:right;width:175px;height:24px;margin-top:6px;background:url(../images/search_bg.gif) no-repeat;}
.search .key{width:140px;height:22px;line-height:22px;margin:1px 0 1px 5px;border:0;float:left;}
.search .key[type="text"]:focus{outline:none;}
.search .sub{float:right;width:30px;height:24px;background:url(../images/search_bg.gif) no-repeat right 0;border:none;cursor:pointer;}
.search .sub span{display:none;}

/*幻灯*/
#fo-slider {
    width: 363px;
    height: 287px;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
#fo-slider .fo-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; /* 初始透明 */
    filter: alpha(opacity=0); /* 兼容IE */
    transition: opacity 0.8s ease-in-out; /* 淡入淡出过渡 */
    -webkit-transition: opacity 0.8s ease-in-out;
}
#fo-slider .fo-slide:first-child {
    opacity: 1;
    filter: alpha(opacity=100);
}
#fo-slider img {
    width: 100%;
    height: 100%;
    border: 0;
}
#fo-prev, #fo-next {
    position: absolute;
    top: 50%;
    margin-top: -15px;
    width: 30px;
    height: 30px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    z-index: 100;
    text-decoration: none;
    font-size: 16px;
    opacity: 0.7;
    transition: opacity 0.3s;
}
#fo-prev {
    left: 5px;
}
#fo-next {
    right: 5px;
}
#fo-prev:hover, #fo-next:hover {
    opacity: 1;
}
#fo-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 100;
}
#fo-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.7);
    margin: 0 3px;
    cursor: pointer;
    transition: background 0.3s;
}
#fo-dots span.active {
    background: #f00;
    transform: scale(1.2);
}


/*页面主要区域*/
.mainbody1{ background:#f9f2e8;}
.mainbody_1{ width:740px; float:left; margin-bottom:20px;}
.mainbody_2{ width:322px; float:right; }
.mainbody_22{background:#eedec5; border:#d7c9af solid 1px;border-top: none;}
.biao{  width:738px;height:35px; border:#d7c9af solid 1px; background:url(../images/biao.png) no-repeat #eedec5; background-position:10px;}
.biao span{  padding:8px 0 0 40px; float:left; font-size:16px; font-weight:bold; color:#835848;} 
.biao a{ float:right; font-size:16px; font-weight:bold; color:#835848; margin-top:5px; margin-right:10px;}
.biao a:hover{ text-decoration:none;} 

.biao1{  width:320px;height:35px; border:#d7c9af solid 1px; background:url(../images/biao.png) no-repeat #eedec5; background-position:10px;}
.biao1 span{  padding:8px 0 0 40px; float:left; font-size:16px; font-weight:bold; color:#835848;} 
.biao1 a{ float:right; font-size:16px; font-weight:bold; color:#835848; margin-top:5px; margin-right:10px;}
.biao1 a:hover{ text-decoration:none;} 

.nei{background:#eedec5; border:#d7c9af solid 1px;border-top: none; padding:15px; font-size:16px;color:#835848; min-height:283px; line-height:36px; }

.mainbody_1nei11{ float:left;}
.mainbody_1nei1{ margin:20px 0;}
.lie{ width: 352px; float:right;}
.lie1 {list-style: none;padding: 0; margin: 0;overflow: hidden; padding-top:5px;}
.lie1 li {background:url(../images/lie.png) no-repeat; background-position: 0px 10px;height:35px; line-height:35px;overflow: hidden; }
.lie1 li a {font-size:16px;color: #503a2b; padding-left:20px;}
.lie1 li a:hover {color: #c00; text-decoration: underline;}
.lie1 li span {color: #b2a29b;font-size: 16px;float: right;/width: 90px;text-align: right;}

.lie3 { overflow: hidden; padding-top: 10px; min-height:298px; padding:15px 10px 0 10px;}
.lie3 li {background: url(../images/lie.png) no-repeat; background-position: 0px 10px;height: 35px; line-height: 35px;  border-bottom: #d7c9af dashed 1px;padding: 0;margin: 0;}
.lie3 li a {font-size: 16px; color: #503a2b; padding-left: 20px;display: inline-block;}
.lie3 li a:hover { color: #c00; text-decoration: underline;}
.lie3 li span {color: #b2a29b;font-size: 16px;float: right; width: 90px;text-align: right;margin-right: 5px;}
.mainbody2{ background:url(../images/bg2.jpg) repeat-x center #f9f2e8; height:358px;}

.lie4 { overflow: hidden; min-height:298px;}
.lie4 li {background: url(../images/lie.png) no-repeat; background-position: 0px 10px;height: 35px; line-height: 35px;  border-bottom: #d7c9af dashed 1px;padding: 0;margin: 0;}
.lie4 li a {font-size: 16px; color: #503a2b; padding-left: 20px;display: inline-block;}
.lie4 li a:hover { color: #c00; text-decoration: underline;}
.lie4 li span {color: #b2a29b;font-size: 16px;float: right; text-align: right;}


















.mainbody .OneOfTwo, .mainbody .TowOfTow{margin-bottom:35px;}
.mainbody .OneOfTwo{width:827px;float:right;}
.mainbody .TowOfTow{width:233px;float:left;}

.mainbody .newwarp{width:300px;float:left;margin-top:14px;}
.mainbody .newstitle{line-height:14px;background:url(../images/news_title.png) no-repeat;text-align:right;}
.mainbody .newstitle a{color:#2554b3;}
.mainbody .newsfocus{height:76px;padding:15px 0 3px;margin-bottom:12px;border-bottom:1px solid #e0e0e0;}
.mainbody .newsfocus div{float:left;width:60px;height:60px;margin-right:16px;}
.mainbody .newsfocus div a{width:60px;height:60px;border:1px solid #d2d2d0;border-radius:5px;display:table-cell;vertical-align:middle;text-align:center;*display:block;*font-size:42px;*font-family:Arial;}
.mainbody .newsfocus div a img{border-radius:5px;vertical-align:middle;}
.mainbody .newsfocus h3{margin-bottom:3px;}
.mainbody .newsfocus h3 a{font-weight:bold;font-size:12px;color:#fe8216;}
.mainbody .newsfocus p{color:#8f8f8f;line-height:18px;}
.mainbody .newslist li{color:#325e7f;}
.mainbody .newslist li a{color:#325e7f;}
.mainbody .newslist li span{float:right;font-family:Verdana;color:#8c8c8c;}
.mainbody .aboutus{width:362px;height:180px;padding:36px 26px 0;float:right;background:url(../images/aboutus_bg.png) no-repeat 18px 13px #fcfcfc;line-height:24px;color:#888;border:1px solid #f4f4f4;border-bottom:2px solid #e6e6e6;border-radius:5px;}
.mainbody .aboutus img{float:left;margin:5px 15px 0px 0;}
.mainbody .aboutus a{color:#2554b3;}

.contact{background:url(../images/contact_title.png) no-repeat;padding-top:23px;color:#c6c5c5;margin:14px 0 25px 0;}
.follow{background:url(../images/follow_title.png) no-repeat;padding-top:30px;}
.follow a{text-indent:-99999px;overflow:hidden;float:left;}
.follow a.sina{display:block;width:62px;height:50px;background:url(../images/sina_logo.png) no-repeat;margin:0 30px 0 15px;}
.follow a.tqq{display:block;width:48px;height:50px;background:url(../images/tqq_logo.png) no-repeat 0 center;}


/*友情链接*/
.weblink{width:1080px; height:100px;line-height:24px;margin:0 auto;background:url(../images/fo_11.png) no-repeat 0 center;font-family:Verdana; overflow:hidden; }
.weblink a{margin:0 20px;color:#533d2d; font-size:14px;}
.weblink a:hover{color:#c00;}
.weblink1{ padding:20px 10px 20px 75px;}

/*页脚区域*/
.footer{padding:30px 0;border-top:1px solid #a87700;text-align:center;line-height:32px;font-family:Verdana;color:#868582; background:url(../images/bg3.jpg) repeat-x center #f9f0e7; font-size:14px;}
.foot{ background:#fff; text-align:center; font-size:14px; padding:15px 0;line-height:32px;}
.contmsg{width:40px;height:37px;position:fixed;bottom:0;right:20px;background:url(../images/msg_bg.gif) no-repeat;cursor:pointer;text-decoration:none;line-height:18px;_position:absolute;_bottom:auto;_top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,10)||0)-(parseInt(this.currentStyle.marginBottom,10)||0)));}
.msgtxt{display:none;border:1px solid #e1e1e1;width:120px;padding:5px 8px;position:absolute;bottom:40px;right:0;}


/*子页样式*/
.subBanner, .subBody{width:1080px;margin:0 auto;}
.subBody{margin-bottom:25px;}
.subBody .OneOfTwo{width:827px;float:right;}
.subBody .TwoOfTwo{width:233px;float:left;}
.subBody .OneOfTwos{width:175px;float:left;}
.subBody .TwoOfTwos{width:750px;float:right;}
.subBody .search_l{margin-bottom:25px;}
.subBody .subnav{margin-bottom:25px;}
.subBody .subnav li{margin-bottom:2px;}
.subBody .subnav li a{display:block;height:24px;line-height:24px;padding-left:20px;background:url(../images/subnav_ico.gif) no-repeat 5px center;}
.subBody .subnav li a:hover{color:#fff;text-decoration:none;background:url(../images/subnav_ico_on.gif) no-repeat 5px center #ccc;}
.subBody .subnav li a.on, .subBody .subnav li a:hover.on{color:#fff;background:#999;}
.subBody .subTitle{height: 35px; border: #d7c9af solid 1px;background: url(../images/biao.png) no-repeat #eedec5;background-position: 10px;text-align:right;}
.subBody .subTitle .catname{font-size:16px;font-weight:bold;float:left;font-family:"微软雅黑";color:#835848;padding: 8px 0 0 40px;}
.subBody .subTitle .shopcart{background:url(../images/shopcart_ico.gif) no-repeat 0 center; padding-left:20px;}
.subBody .subTitle a{color:#835848;}
.subBody .subTitle span{color:#835848;padding: 8px 10px 0 0;}
.subBody .subTitle a.goback{float:left;margin-left:10px; margin-top:10px;}
.subBody .subtype li{float:left;}
.subBody .subtype li a{background:#ffa41b;padding:2px 5px;margin-right:5px;color:#fff;}
.subBody .subtype li a:hover{text-decoration:none;background:#ff9900;}
.subBody .subtype li a.on{background:#999;}
.subBody .subtype2{padding:0 0 0 10px;}
.subBody .subtype2 li{float:left;}
.subBody .subtype2 li a{background:#fff8ed;border:1px solid #ff9900;padding:2px 5px;margin-right:5px;color:#3e3e3e;}
.subBody .subtype2 li a.on{color:#ff6600;}
.subCont{line-height:36px;color:#503a2b; background:#eedec5; padding:15px; border:#d7c9af solid 1px;border-top:none; font-size:16px; }


/********************* 以上(结束标识)代码请在实际开发中删除 *********************/

/*幻灯Banner*/
.banner1{ height:445px; background:url(../images/bj1.jpg) no-repeat center #f9f1e6;}
#slideplay{width:1080px;height:408px;position:relative;overflow:hidden; padding-top:20px;}
#slideplay ul{position:absolute;}
#slideplay ul li{height:408px;position:relative;float:left;background:#000;overflow:hidden;}
#slideplay ul li div{position:absolute;}
#slideplay ul li img{width:1080px;height:408px;}
#slideplay .btnBg{width:1080px;height:20px;position:absolute;left:0;bottom:0;background:#000;}
#slideplay .btn{height:10px;padding:5px 10px;position:absolute;right:0;bottom:0;text-align:right;}
#slideplay .btn span{width:25px;height:10px;margin-left:5px;background:#fff;display:inline-block;cursor:pointer;_display:inline;_zoom:1;_font-size:0;}
#slideplay .btn span.on{background:#fff;}
#slideplay .preNext{width:45px;height:100px;position:absolute;top:120px;background:url(../images/sprite.png) no-repeat 0 0;cursor:pointer;display:none;}
#slideplay .pre{left:0;}
#slideplay .next{right:0;background-position:right top;}


/*图片滚动*/
.scrollimg{width:960px;height:50px;position:relative;margin:0 auto 20px;}
.scrollimg div.imgwrap{width:880px;height:50px;margin:0 40px;position:absolute;top:0;overflow:hidden;}
.scrollimg div.imgwrap ul{list-style-image:none;list-style-position:outside;list-style-type:none;margin:0;padding:0;position:absolute;top:0;}
.scrollimg ul li{float:left;height:50px;width:146px;overflow:hidden;}
.scrollimg ul li dl{float:left;height:50px;width:146px;overflow:hidden;}
.scrollimg ul li dl dt{clear:both;float:left;height:45px;width:60px;overflow:hidden;margin-right:8px;}
.scrollimg ul li dl dt a{height:45px;width:60px;display:table-cell;vertical-align:middle;text-align:center;*display:block;*font-size:39px;*font-family:Arial;}
.scrollimg ul li dl dt a img{vertical-align:middle;}
.scrollimg ul li dl dd{color:#aaa;}
.scrollimg ul li dl dd a{color:#3372A2;display:block;font-size:14px;height:20px;margin:2px 0;overflow:hidden;}
.scrollimg a.arrow{display:block;height:50px;width:20px;background:url(../images/arrow.png) no-repeat 0 0;position:absolute;top:0;cursor:pointer;text-indent:-99999px;}
.scrollimg a.back{background-position:0 0;left:0;}
.scrollimg a.back:hover{background-position:0 -100px;}
.scrollimg a.forward{background-position:0 -50px;right:0;}
.scrollimg a.forward:hover{background-position:0 -150px;}


/*新闻栏目*/
.news_list2 li{height:50px;line-height:25px;border-bottom:1px solid #eff2f4;padding:6px 0 5px 0;color:#a0a0a0;}
.news_list2 li span.title a{float:left;color:#0f5fbb;font-weight:bold;}
.news_list2 li span.title a:hover{text-decoration:none;color:#000;}
.news_list2 li span.time{float:left;}
.news_list2 li span.hits{float:right;}
.news_list2 li span.class{margin-left:12px;}
.news_list2 li span.class a{text-decoration:underline;color:#a0a0a0;}


/*产品栏目*/
.product_list li{width:33.3%;float:left;margin-bottom:7px;}
.product_list li a.img{width:220px;height:150px;display:table-cell;vertical-align:middle;text-align:center;*display:block;*font-size:125px;*font-family:Arial;border:1px solid #d7c9af;overflow:hidden;}
.product_list li a.img img{vertical-align:middle;}
.product_list li a.img:hover{border:1px solid #ff0000;}
.product_list li p.info{width:222px;line-height:30px;}
.product_list li p.info span{font-family:Verdana;color:#503a2b;float:right;}
.product_list li p.info a{float:left;color:#503a2b;}


/*案例样式*/
.caselist li{margin-bottom:12px;padding-bottom:12px;border-bottom:1px solid #eee;clear:both;}
.caselist li p.preview{display:block;width:100px;height:80px;float:left;margin-right:12px;}
.caselist li p.desc{padding:0 10px;line-height:20px;color:#999;}
.caselist li a.img{width:100px;height:80px;margin:0 0 0 10px;padding:1px;display:table-cell;vertical-align:middle;text-align:center;*display:block;*font-size:70px;*font-family:Arial;border:1px solid #ccc;overflow:hidden;}
.caselist li a.img:hover{border:1px solid #ff9900;}
.caselist li a.img img{vertical-align:middle;}
.caselist li a.type{color:#ff9900;font-weight:bold;}
.caselist li a.title{font-weight:bold;font-size:12px;color:#333;}
.caselist span{display:block;line-height:22px;font-family:Arial;color:#666;}
.caselist span small{font-size:12px;margin-right:10px;}


/*软件下载*/
.softlist li{margin-bottom:12px;padding-bottom:12px;border-bottom:1px solid #eee;clear:both;font-family:Verdana;}
.softlist li .preview{float:left;margin-right:10px;}
.softlist li .preview .img{width:50px;height:50px;padding:1px;display:table-cell;vertical-align:middle;text-align:center;*display:block;*font-size:29px;*font-family:Arial;overflow:hidden;}
.softlist li .preview .img img{vertical-align:middle;}
.softlist li .cont{float:left;}
.softlist li .title{font-weight:bold;}
.softlist li .cont_area{float:left;width:500px;}
.softlist li .size{padding-left:8px;font-size:10px;}
.softlist li .desc{display:block;line-height:20px;}
.softlist li .dl_btn{float:right;width:67px;height:26px;line-height:26px;background:url(../images/bkgnormal.png) no-repeat;text-align:center;margin-top:12px;}
.softlist li .dl_btn:hover{background:url(../images/bkghover.png) no-repeat;text-decoration:none;}
.softlist li .dl_btn:active{background:url(../images/bkgdown.png) no-repeat;}


/*列表内容页*/
.listConts{ background:#eedec5; border:#d7c9af solid 1px; border-top:none; padding:15px;}
.listConts{line-height:26px;color:#503a2b;}
.listConts .title{font-size:24px;text-align:center;line-height:40px;color:#000;}
.listConts .info{width:380px;height:27px;line-height:28px;text-align:center;margin:15px auto;border:1px solid #d7c9af;border-left:none;border-right:none;color:#503a2b;}
.listConts .info small{margin-left:8px;margin-right:3px;color:#999;font-size:12px;}
.listConts .info .small,.info .big{font-family:Georgia;font-weight:bold;cursor:pointer;}
.listConts .info .small{font-size:10px;padding-right:3px;}
.listConts .info .big{color:#003ba6;padding-left:3px;}
.listConts .desc{margin:20px 0 15px;padding:5px 10px;line-height:20px;border:1px solid #f4e4b4;background:#fffff0;}
.listConts .showimg{margin:20px 0;text-align:center;}
.listConts .showimg a img{border:1px solid #ccc;padding:1px;}
.listConts .showimg a:hover img{border:1px solid #F90;padding:1px;}
.listConts .conttitle{font-weight:bold;padding-bottom:7px;margin-bottom:7px;color:#2f2f2f;line-height:24px;border-bottom:1px solid #ddd;font-size:14px;}
.listConts .author{text-align:right;color:#503a2b;}
.listConts img{ max-width:100%;} 
#textarea img{max-width:100%;}

/*留言栏目*/
.msgtitle{display:block;padding-bottom:5px;font-size:14px;font-weight:bold;}
.message_block{color:#666;}
.message_block p{padding:12px;}
.msg_input{width:400px;border:1px solid #e0e0e0;padding:8px 9px;background:#fff;font-size:13px;color:#888;-webkit-box-shadow:0px 2px 0px 0px rgba(0, 0, 0, 0.03);box-shadow:0px 2px 0px 0px rgba(0, 0, 0, 0.03);border-radius:2px;}
.msg_input_on{width:400px;border:1px solid #8cd1ff;background:#f1f9ff;padding:8px 9px;-webkit-box-shadow:0px 2px 0px 0px rgba(0, 0, 0, 0.03);box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.03);border-radius:2px;font-size:13px;color:#888;}
.message_labes{font-size:14px;}
.message_title{height:34px;line-height:34px;background:#f6f9fb;padding:0 12px;}
.message_title h2{color:#376b88;font-size:14px;float:left;}
.message_title span{float:right;font-weight:bold;color:#999;}
.message_info{color:#8ea6b6;text-align:right;}
.message_replay{background:#f5f5f5;padding:0 12px;}
.msg_btn_area{margin:16px 0;text-align:right;}
.msg_btn_area a{display:inline-block;padding:5px 15px;background:#09F;color:#fff;text-align:center;font-family:"宋体";font-size:14px;overflow:hidden;cursor:pointer;font-weight:bold;}
.msg_btn_area a:hover{text-decoration:none;background:#F60}
.msgflag{margin-left:4px;font-size:12px;color:#900;}


/*大图样式*/
.picarr{position:relative;margin:20px auto;}
.picarr .picture{width:100%;text-align:center;}
.picarr .picture a{display:none;}
.picarr .preview{width:685px;margin-top:20px;padding:5px;background:#eef3fa;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;}
.picarr .preview li{float:left;margin:4px;}
.picarr .preview li a{width:58px;height:45px;border:1px solid #fff;background:#fff;display:table-cell;vertical-align:middle;text-align:center;*display:block;*font-size:35px;*font-family:Arial;}
.picarr .preview li a img{vertical-align:middle;}
.picarr .preview li.current a{border:1px solid #000;}


/*详细页功能区*/
.preNext{position:relative;}
.preNext .line{height:10px;overflow:hidden;clear:both;background:url(../images/box_dotline.gif) left 15px repeat-x;margin:4px auto;padding-top:10px;}
.preNext .line strong{display:block;width:8px;height:10px;overflow:hidden;font-size:0px;line-height:100px;background:url(../images/box_dotline.gif) right -10px no-repeat;float:left;}
.preNext .text{color:#999;}
.preNext .actBox{position:absolute;top:25px;right:0;}
.preNext .actBox li{display:inline;padding-left:22px;background-image:url(../images/actbox-ico.gif);background-repeat:no-repeat;margin-left:10px;}
.preNext .actBox li a{color:#666;}
.preNext .actBox li#act-fav{background-position:4px 0px;}
.preNext .actBox li#act-err{background-position:4px -37px;}
.preNext .actBox li#act-pus{background-position:4px -73px;}
.preNext .actBox li#act-pnt{background-position:4px -109px;}


/*评论样式*/
.commnet{margin:20px 0 30px;padding:8px 0 0 8px;background:url(../images/commnet_bg.png) repeat-x;border:1px solid #ccc;border-radius:3px;}
.commnet textarea{width:100%;height:59px;border:none;background:transparent;outline:none;font-size:14px;color:#999;overflow:auto;}
.commnet .toolbar{padding-top:8px;_padding-top:5px;*padding-top:5px!important;height:30px;line-height:30px;overflow:hidden;}
.commnet .options{float:left;}
.commnet .button,
.commnet .button_on{float:right;width:100px;height:30px;border:none;border-left:1px solid #ccc;font-size:14px;font-weight:bold;cursor:pointer;}
.commnet .button{background:url(../images/commnet_btn_bg.png) repeat-x;}
.commnet .button_on{background:url(../images/commnet_btnon_bg.png) repeat-x;}
.commlist{margin-top:20px;}
.commlist li{border-bottom:1px solid #eaeaea;word-wrap:break-word;}
.commlist li p{line-height:20px;color:#999；}
.commlist li span.uname{color:#D32;font-family:Verdana;font-weight:bold;}
.commlist li span.time{color:#bbb;}
.commnum span{display:inline-block;width:70px;margin-top:20px;line-height:24px;border:1px solid #ccc;background:#f5f5f5;border-radius:3px;text-align:center;}
.commnum span i{color:#900;font-family:Verdana;font-weight:bold;}


/*分页样式*/
.page_info{text-align:center;margin-top:10px;color:#333;}
.page_info span{padding:0 2px;font-weight:bold;}
.page_list{height:24px;line-height:24px;text-align:center;letter-spacing:0;font-family:"Arial Black";font-size:12px;margin-top:20px;}
.page_list a{display:inline-block;color:#898989;border:1px solid #e8e8e8;background:#f8f8f8;text-align:center;padding:0 8px;margin:0 1px;}
.page_list a:hover{color:#fff;border:1px solid #898989;background:#898989;}
.page_list a.on{color:#fff;border:1px solid #503a2b;background:#503a2b;}


/*内容分页*/
.contPage{height:20px;line-height:20px;text-align:center;letter-spacing:0;font-family:"Arial Black";font-size:10px;margin-top:20px;}
.contPage a{display:inline-block;color:#898989;background:#fff;text-align:center;padding:0 7px;margin:0 1px;}
.contPage a:hover{color:#fff;background:#898989;}
.contPage a.on{color:#333;background:#E5EDF2;border:1px solid #C2D5E3;}


/*在线客服*/
*html{background-image:url(about:blank);background-attachment:fixed;}
.kf{width:127px;border:1px solid #51b5f0;position:fixed;top:45%;right:0;background:url(../images/kf_ico.png) no-repeat 7px 10px #1a98d5;min-height:50px;_height:auto!important;_height:50px;
_position:absolute;_bottom:auto;_top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,10)||130)-(parseInt(this.currentStyle.marginBottom,10)||130)));}
.kf_r{margin-left:37px;background:#16a2dd;color:#fff;text-align:center;padding:10px 0 10px;}
.kf_r img{margin-bottom:5px;}


/*Top按钮*/
*html{background-image:url(about:blank);background-attachment:fixed;}/*解决IE6下滚动抖动的问题*/
.tbox{width:50px;float:right;position:fixed;right:10px;bottom:15px;_position:absolute;_bottom:auto;_top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,10)||0)-(parseInt(this.currentStyle.marginBottom,10)||0)));_margin-bottom:15px;display:none;}/*解决IE6下不兼容 position:fixed 的问题*/
.tbox #gotop{width:50px;height:50px;background:url(../images/icon.png) no-repeat 0 0;display:block;}