/* 常用参数设置 */
@charset "utf-8";
/* I am using classes from http://snipplr.com/view/47181/less-classes/ for border radius */
/* 常用参数设置 */
/* 重置浏览器样式 reset.less */
* {
    margin: 0;
    padding: 0;
    outline: none;
}
input,
textarea,
select {
    font-family: inherit;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
form {
    margin: 0;
}
h4,
h5,
h6 {
    font-size: 1em;
}
ul,
ol {
    padding-left: 0;
    list-style-type: none;
    /*float: right;*/
    /*margin-bottom: 10px;*/
}
img {
    border: 0;
}
/* 公用样式 common.less */
/* 文字对齐方式 */
.tc {
    text-align: center;
}
.tr {
    text-align: right;
}
.tl {
    text-align: left;
}
/* 层浮动定义 */
.fl {
    float: left;
    width: 100%;
    height: 400px;
    margin: 0px auto 10px;
    text-align: center;
}
.fr {
    float: right;
}
.nf {
    float: none;
}
/* 文字方向 */
.ltr {
    direction: ltr;
}
.rtl {
    direction: rtl;
}
/* 文字大小 */
.f10 {
    font-size: 10px;
}
.f12 {
    font-size: 12px;
}
.f13 {
    font-size: 13px;
}
.f14 {
    font-size: 14px;
}
.f16 {
    font-size: 16px;
}
.f20 {
    font-size: 20px;
}
.f24 {
    font-size: 24px;
}
/* 行高 */
.lh14 {
    line-height: 14px;
}
.lh16 {
    line-height: 16px;
}
.lh18 {
    line-height: 18px;
}
.lh20 {
    line-height: 20px;
}
.lh22 {
    line-height: 22px;
}
.lh24 {
    line-height: 24px;
}
/* margin & padding */
.mgt {
    margin-top: 1em;
    /* 基线高度 */
}
.mgt5 {
    margin-top: 5px;
}
.mgt10 {
    margin-top: 10px;
}
.mgt20 {
    margin-top: 20px;
}
.mgb {
    margin-bottom: 1em;
}
.mgb5 {
    margin-bottom: 5px;
}
.mgb10 {
    margin-bottom: 10px;
}
.mgb20 {
    margin-bottom: 20px;
}
/* 定位 */
.rel {
    position: relative;
}
.abs {
    position: absolute;
}
.inline {
    display: inline;
}
.invisible {
    visibility: hidden;
}
*[hidden] {
    display: none;
}
.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    zoom: 1;
}
br.left {
    clear: left;
}
br.right {
    clear: right;
}
br.all,
.clear,
.spacer {
    clear: both;
}
.lnk {
    cursor: pointer;
    text-decoration: underline;
}
.border-box {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
/* content */
.read-more:after {
    content: "\00A0\000BB";
    /* Insert a space then right angled-quote*/

}
img {
    vertical-align: middle;
}
/* 网站基本模板样式 template.less */
body {
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
    font-size: 12px;
    font-size: 0.875rem;
    line-height: 1.5em;
    min-width: 960px;
    -webkit-font-smoothing: antialiased;
}
body.cn {
    font-family: "microsoft yahei", "宋体";
    font-size: 14px;
    font-size: 0.875rem;
}
body.develop:hover {
    background: url(graphic/grid-18.png) center 0 repeat-y #ffffff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: inherit;
}
h1 {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 2em;
    letter-spacing: -0.025em;
    text-shadow: 0 1px 1px #fff;
}
h2 {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.2;
    margin: 1.2em 0 0.4em;
}
h3 {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.5em;
    margin: 0.6em 0 0.25em;
}
h4 {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.25;
    margin: 1em 0 0;
}
h5,
h6 {
    font-size: 12px;
    font-size: 0.75rem;
}
a{
    color: #333;
    text-decoration: none;
    cursor: pointer;
}
a:visited {
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    text-decoration: none;
    color: #E47A00;
}
/* 提示信息 */
.success,
.warning,
.attention,
.information {
    padding: 10px 10px 10px 33px;
    margin-bottom: 15px;
    color: #555555;
}
.success {
    background: #eaf7d9 url('../image/success.png') 10px center no-repeat;
    border: 1px solid #BBDF8D;
}
.warning {
    background: #ffd1d1 url('../image/warning.png') 10px center no-repeat;
    border: 1px solid #F8ACAC;
}
.attention {
    background: #fff5cc url('../image/attention.png') 10px center no-repeat;
    border: 1px solid #F2DD8C;
}
.information {
    background: #e8f6ff url('../image/information.png') 10px center no-repeat;
    border: 1px solid #B8E2FB;
}
.success .close,
.warning .close,
.attention .close,
.information .close {
    float: right;
    padding-top: 4px;
    padding-right: 4px;
    cursor: pointer;
}
.required {
    color: #FF0000;
    font-weight: bold;
}
.error {
    display: block;
    color: #FF0000;
}
.help {
    color: #999;
    font-size: 10px;
    font-weight: normal;
    font-family: Verdana, Geneva, sans-serif;
    display: block;
}
#notification {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 100;
}
#notification .close {
    padding: 5px;
    display: inline-block;
}

.cn article p,
.cn .article p,
.jp article p,
.jp .article p {
    font-size: 14px;
    margin-bottom:1em;
}

.cn article p,
.cn .article p{
    line-height: 1.8;
    text-indent: 2em;
}

/* 网站公共主结构样式 */
.page_margins {
    /*max-width: 1400px;*/
    margin: 0 auto;
}
#main{
    width: 100%;
    min-height: 500px;
    position: relative;
}
#main_top{
    /*margin-bottom: 50px;*/
}
#header,
#footer {
    position: relative;
}
.wrap,
.contents {
    width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
/*-------------------------------------- 网站排版------------------------------------------ */
#content section,
#content .section {

}
#content section .top h1,
#content .section .top h1 {
    font-size: 18px;
}
#content section .content,
#content .section .content {
    min-height: 300px;
    padding: 10px 0;
}
/*#content{  background: #f9f9f9;}
#content .top{padding: 0px 20px;}
#content .content{padding: 20px;}*/
/* 属性展示效果 */
.attribute {
    border-collapse: collapse;
    width: 100%;
    border-top: 1px solid #DDDDDD;
    border-left: 1px solid #DDDDDD;
    margin-bottom: 20px;
}
.attribute thead td,
.attribute thead tr td:first-child {
    color: #000000;
    font-size: 14px;
    font-weight: bold;
    background: #F7F7F7;
    text-align: left;
}
.attribute tr td:first-child {
    color: #000000;
    font-weight: bold;
    text-align: right;
    width: 20%;
}
.attribute td {
    padding: 7px;
    color: #4D4D4D;
    text-align: center;
    vertical-align: top;
    border-right: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
}
/* Sitemap*/
.sitemap-info h3 {
    font-size: 14px;
}
.sitemap-info ul {
    margin-left: 2em;
}
.sitemap-info ul.items {
    list-style: inside square;
    padding: 0;
}
.sitemap-info .c50l {
    width: 50%;
    float: left;
}
.sitemap-info .c50r {
    width: 50%;
    float: right;
}
.sitemap-info {
    padding: 20px;
}
/* 网站氛围 typography.less */
/* typography.less *//* 网站布局样式 layout.less */
#column_left {
    float: left;
    width: 220px;
    margin-right: 15px;
}
#column_right {
    float: right;
    width: 220px;
    margin-left: 10px;
}
#content {
    overflow: hidden;
}
/* 网格系统 grid.less */
[class*=colgroup] {
    zoom: 1;
}
[class*=colgroup] .item {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}
.colgroup-2 .item {
    float: left;
    width: 50%;
}
.colgroup-3 .item {
    float: left;
    width: 33.3333%;
}
.colgroup-4 .item {
    float: left;
    width: 25%;
}
.columns-5 .column {
    float: left;
    width: 20%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.column-4 .column {
    float: left;
    width: 25%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.grid-list.column-5 .column {
    float: left;
    width: 20%;
    padding-left: 10px;
    margin-bottom: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.grid-list.column-5 .column:nth-of-type(5n+1) {
    clear: left;
}
.grid-list.column-4 .column {
    float: left;
    width: 25%;
    padding-right: 10px;
    margin-bottom: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.grid-list.column-4 .column:first-of-type {
    padding-right: 10px;
}
.grid-list.column-4 .column:nth-of-type(4n+1) {
    clear: left;
    padding-right: 0px;
}
/* 头部样式 header.less */
/* header.less */
#header #logo {
    float: left;
}
#header #logo img {
    margin: 0px;
}
/* 底部样式 footer.less */
#footer {
    clear: both;
    width: 100%;
    margin: 20px auto 0px;
    padding: 20px 0 0 0;
    background-color: #A8A7A7;
    color: #ffffff;

    /*border-top: 3px solid #291717;*/
}
#footer .nav {
    float: left;
    margin-bottom: 0px;
}
#footer .nav li {
    display: inline-block;
    border-right: 1px solid #ccc;
    padding: 0 10px;
}
#footer .nav li:last-child {
    border-right: 0;
}
#footer .nav li a {
    display: block;
}
#footer .support {
    text-align: center;
}
#footer .copy {
    text-align: center;
}
/* 网站通用导航样式 */
#menu {
    height: 40px;
    width: 100%;
    z-index: 10001;
    background: #808080;
    /*background: url(graphic/nav-bg.png) repeat-x;*/
    /*margin: -25px auto 0;*/
}
#menu .contents {
    overflow: visible;
}
#menu .list li {
    display: inline;
    float: left;
    position: relative;
    width: 100px;
    text-align: center;
    height: 40px;
    line-height: 40px;
}
.jp #menu .list li{
    width: 130px;
}
#menu .list li:first-child {
    /*background: url(graphic/nav-border.png) left 0 no-repeat;*/
}
#menu .list li a {
    padding: 2px;
    font-weight: 100;
    line-height: 40px;
    height: 40px;
    /*background: url(graphic/nav-border.png) right 0 no-repeat;*/
    color: #ffffff;
    /*border-right: 1px solid #D6D6D6;*/

}
#menu .list li.actived {
    /*background: url(graphic/top-triggle.png) center bottom no-repeat;*/
    /*background-color:#807C23;*/

}
#menu .list li.actived a{
    color:#000000;
    border-bottom: 1px solid #000000;
}
#menu .list li a:hover {
    /*background: url(graphic/top-triggle.png) center bottom no-repeat;*/
    /*color: #ffffff;*/
    border-bottom: 1px solid #ffffff;

}
#menu .list li ul.sub {
    display: none;
    z-index: 10005;
    position: absolute;
    left: 0;
    top: 40px;
    width: 100px;
    background: #808080;
    text-align: center;
}
.jp #menu .list li ul.sub{
    width: 130px;
}
#menu .list li ul.sub li {
    display: block;
    float: left;
    /*background-color: #EAEAEA;*/
    /*background-image: none;*/
    /*width: auto;*/
    min-width: 100px;
    overflow: hidden;
}
#menu .list li ul.sub li a {
    /*padding: 3px 10px;*/
    height: 30px;
    line-height: 30px;
    color: #ffffff;
    background-image: none;
    border: none;
}
#menu .list li ul.sub li a:hover {
    /*background-color: #807C23;*/
    /* background:url(graphic/nav-on-bg.jpg) 0 0 repeat-x;*/
    color: #ffffff;
}
#menu .list li:hover ul {
    display: block;
}
/* 通用模块样式 module.less */
.box {
    margin-bottom: 20px;
}
.box .content {
    padding: 5px 0px;
}
#column_left .box .top {
    background-color: #301D17;
    color: #fff;
    padding: 10px 10px;
}
#column_left .box .top h3 {
    margin: 0px;
    font-size: 14px;
}
#column_left .box .content {
    padding: 10px;
    /*border: 1px solid #F1F1F1;*/
}
#sub_nav.box .top {
    background-color: #301D17;
    color: #fff;
    padding: 10px 10px;
}
#sub_nav.box .top h3 {
    margin: 0px;
}
#sub_nav.box .content {
    padding: 0;
}
#sub_nav.box .content li {
    line-height: 1.5em;
    height: 50px;
    line-height: 50px;
    padding-left:30px;
    /*background: url(graphic/icon_circle.png) 10px center no-repeat;*/
    /*border: 1px solid #d8d8d8;*/
    border-top: none;
}

#sub_nav.box .content li:hover{
    background-color: #ff5050;
}
#sub_nav.box .content li:hover a {
    color: #fff;
}
#sub_nav.box .content li a{

}
#sub_nav.box .content li a:hover{
    color: #333;
}
#sub_nav.box .content li.selected a {
    color: #ff5050;
}
#sub_nav.box .content li:hover a {
    color: #fff;
}
#sub_nav.box .content li.selected {

}
#contact ul {
    overflow: hidden;
}
#contact .content li {
    line-height: 30px;
    border-top: 1px dashed #d8d8d8;
}
#contact .content li:first-child {
    border: 0;
}
#contact .content li .td1 {
    width: 50px;
    float: left;
}
#contact .content li .td2 {
    margin-left: 50px;
    display: block;
}
#partner .top {
    border-bottom: 1px solid #F2F2F2;
}
#partner .top h3 {
    font-size: 15px;
    font-weight: 600;
    color: #311D17;
    padding-left: 20px;
}
#partner .item {
    display: inline;
    float: left;
    width: 20%;
    padding: 5px;
    margin-bottom: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
/* 网站通用组件样式 search.less */
#search {
    float: right;
    clear: right;
    /*background: url(graphic/search.png) right 0 no-repeat;*/
    width: 180px;
    height: 25px;
    margin-top: 4px;
    margin-right: 190px;
    border: 1px solid #ddd;
    border-radius: 20px;
}
#search .search_content {
    float: left;
    height: 25px;
    line-height: 23px;
    font-size: 12px;
    margin-left: 10px;
    padding: 0px;
    width: 137px;
    border: 0px none;
}
#search .btn-search {
    display: inline-block;
    cursor: pointer;
    width: 51px;
    height: 23px;
    background: transparent url("graphic/search01.png") no-repeat scroll 0% 0%;
    position: relative;
    top: -23px;
    left: 150px;
}
/* 网站通用组件样式 language.less */
#language {
    position: absolute;
    right: 0;
    top: 6px;
    width: 180px;
    height: 30px;
    text-align: right;
}
#language p a {
    margin-right: 9.5px;
    color: #888888;
}
#language p a:hover {
    text-decoration: underline;
}
#language p a.en,
#language p a.cn {
    /*background: url(graphic/united-states-flag-icon.png) no-repeat left center;*/
}
#language p a.cn {
    /*background-image: url(graphic/China-Flag-icon.png);*/
}
/* 网站通用组件样式 slideshow.less */
#slideshow {
    height: 367px;
    position: relative;
    color: #fff;
}
#slideshow div.slideshowbox {
    position: absolute;
    left: 0;
    top: 0;
    height: 367px;
    width: 100%;
}
#slideshow .slideshowbox .wrapper {
    height: 367px;
}
#slideshow div.slideshow-nav p {
    position: absolute;
    left: 50%;
    top: 337px;
}
#slideshow div.slideshow-nav span {
    background: none repeat scroll 0 0 #FAFAFA;
    cursor: pointer;
    display: block;
    float: left;
    margin-right: 12px;
    filter: alpha(opacity=20);
    -moz-opacity: 0.2;
    opacity: 0.2;
    width: 12px;
    height: 12px;
    line-height: 12px;
    font-size: 1px;
}
#slideshow div.slideshow-nav span.on {
    background: #0773b9;
}
#nivo_slider_9 {
    width: 100%;
    height: 417px;
}
/* 网站通用组件样式 tab.less */
.htabs {
    height: 31px;
    line-height: 16px;
    border-bottom: 2px solid #01a044;
}
.htabs a {
    border-top: 2px solid #01a044;
    border-left: 2px solid #01a044;
    border-right: 2px solid #01a044;
    background: #01a044;
    padding: 7px 15px 6px 15px;
    float: left;
    font-size: 14px;
    font-weight: bold;
    font-family: "microsoft yahei";
    text-align: center;
    text-decoration: none;
    color: #fff;
    margin-right: 2px;
    display: none;
}
.htabs a.selected {
    padding-bottom: 8px;
    background: #FFFFFF;
    color: #000;
    font-family: "microsoft yahei";
}
.tab-content {
    border-left: 2px solid #01a044;
    border-right: 2px solid #01a044;
    border-bottom: 2px solid #01a044;
    min-height: 150px;
    padding: 20px;
    margin-bottom: 20px;
    z-index: 2;
    overflow: auto;
    background: #fff;
}
.tab-content .box {
    margin-bottom: 0px;
}
.tab-content .box-product > div {
    margin-bottom: 0px;
}
#content .article .htabs {
    margin-top: 40px;
}
.box .tab-content {
    padding: 0;
}
/* 网站通用组件样式-面包屑  breadcrumb.less */
#breadcrumb {
    margin: 0px 0 10px 0;
}
.breadcrumb {
    background-color: #ddd;
    padding: 5px;
    font-family: "microsoft yahei";
    border-radius: 0px;
}
/* 网站通用组件样式-翻页  pagination.less */
.pagination {
    padding-top: 8px;
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
}
.pagination .links {
    float: left;
}
.pagination .links a {
    display: inline-block;
    border: 1px solid #bbb;
    padding: 4px 10px;
    text-decoration: none;
    color: #A3A3A3;
}
.pagination .links .active a {
    border: none;
}
.pagination .links b {
    display: inline-block;
    font-weight: normal;
    text-decoration: none;
    color: rgb(255, 255, 255);
}
.pagination .results {
    float: right;
    padding-top: 3px;
}
/* 网站通用表单样式 form.less */
form {
    padding: 0;
    margin: 0;
    display: inline;
}
input[type='text'],
input[type='password'],
textarea {
    background: #F8F8F8;
    border: 1px solid #CCCCCC;
    padding: 3px;
    margin-left: 0px;
    margin-right: 0px;
}
select {
    background: #F8F8F8;
    border: 1px solid #CCCCCC;
    padding: 2px;
}
label {
    cursor: pointer;
}
input[type="email"],
input[type="password"],
input[type="text"],
input[type="url"] {
    -moz-border-bottom-colors: none;
    -moz-border-image: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    -moz-box-sizing: border-box;
    background: none repeat scroll 0 0 #FFFFFF;
    border-color: #C0C0C0 #D9D9D9 #D9D9D9;
    border-radius: 1px 1px 1px 1px;
    border-right: 1px solid #D9D9D9;
    border-style: solid;
    border-width: 1px;
    display: inline-block;
    height: 29px;
    margin: 0;
    line-height: 29px;
    padding-left: 8px;
}
input[type="email"]:hover,
input[type="password"]:hover,
input[type="text"]:hover,
input[type="url"]:hover {
    -moz-border-bottom-colors: none;
    -moz-border-image: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #A0A0A0 #B9B9B9 #B9B9B9;
    border-right: 1px solid #B9B9B9;
    border-style: solid;
    border-width: 1px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
}
input[type="email"]:focus,
input[type="password"]:focus,
input[type="text"]:focus,
input[type="url"]:focus {
    border: 1px solid #97C03D;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) inset;
    outline: medium none;
}
input[type="email"][disabled="disabled"],
input[type="password"][disabled="disabled"],
input[type="text"][disabled="disabled"],
input[type="url"][disabled="disabled"] {
    background: none repeat scroll 0 0 #F5F5F5;
    border: 1px solid #E5E5E5;
}
input[type="email"][disabled="disabled"]:hover,
input[type="password"][disabled="disabled"]:hover,
input[type="text"][disabled="disabled"]:hover,
input[type="url"][disabled="disabled"]:hover {
    box-shadow: none;
}
input[type="checkbox"],
input[type="radio"] {
    -moz-box-sizing: border-box;
    background: none repeat scroll 0 0 #FFFFFF;
    border: 1px solid #DCDCDC;
    border-radius: 1px 1px 1px 1px;
    cursor: pointer;
    width: 20px;
    margin: 0;
    position: relative;
    vertical-align: bottom;
    height: 20px;
    border: none \9;
}
input[type="checkbox"]:active,
input[type="radio"]:active {
    background: none repeat scroll 0 0 #EBEBEB;
    border-color: #C6C6C6;
}
input[type="checkbox"]:hover {
    border-color: #C6C6C6;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1) inset;
}
input[type="radio"] {
    border-radius: 1em 1em 1em 1em;
    height: 15px;
    width: 15px;
}
input[type="checkbox"]:checked,
input[type="radio"]:checked {
    background: none repeat scroll 0 0 #FFFFFF;
}
input[type="radio"]:checked:after {
    border-radius: 1em 1em 1em 1em;
    content: "";
    display: block;
    height: 7px;
    left: 3px;
    position: relative;
    top: 3px;
    width: 7px;
}
input[type="checkbox"]:checked:after {
    display: block;
    left: -5px;
    position: absolute;
    top: -6px;
}
input[type="checkbox"]:focus {
    border-color: #97C03D;
    outline: medium none;
}
/* 网站通用表单样式 table.less */
table.form {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
table.form tr td:first-child {
    width: 150px;
}
table.form > * > * > td {
    color: #000000;
}
table.form td {
    padding: 4px;
}
input.large-field,
select.large-field {
    width: 300px;
}
table.list {
    border-collapse: collapse;
    width: 100%;
    border-top: 1px solid #DDDDDD;
    border-left: 1px solid #DDDDDD;
    margin-bottom: 20px;
}
table.list td {
    border-right: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
}
table.list thead td {
    background-color: #EFEFEF;
    padding: 0px 5px;
}
table.list thead td a,
.list thead td {
    text-decoration: none;
    color: #222222;
    font-weight: bold;
}
table.list tbody td a {
    text-decoration: underline;
}
table.list tbody td {
    vertical-align: top;
    padding: 0px 5px;
}
table.list .left {
    text-align: left;
    padding: 7px;
}
table.list .right {
    text-align: right;
    padding: 7px;
}
table.list .center {
    text-align: center;
    padding: 7px;
}
table.list .asc {
    padding-right: 15px;
    background: url('../image/asc.png') right center no-repeat;
}
table.list .desc {
    padding-right: 15px;
    background: url('../image/desc.png') right center no-repeat;
}
/* 网站通用表单样式 button.less */
.button {
    -moz-transition: all 0.218s ease 0s;
    -moz-user-select: none;
    background-color: #301d17;
    border: 1px solid #301d17;
    background-image: -moz-linear-gradient(center top, #301d17, #301d17);
    border-radius: 4px 4px 4px 4px;
    color: #FFFFFF;
    cursor: default;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    font-family: "microsoft yahei";
    height: 35px;
    letter-spacing: 0px;
    line-height: 35px;
    margin-right: 5px;
    min-width: 140px;
    padding: 0 8px;
    text-align: center;
    text-shadow: 0 1px rgba(0, 0, 0, 0.1);
}
button.button,
input.button[type="submit"] {
    height: 29px;
    line-height: 29px;
    margin: 0;
    vertical-align: bottom;
}
.button:hover {
    -moz-transition: all 0s ease 0s;
    background-image: -moz-linear-gradient(center top, #f8f8f8, #f1f1f1);
    border: 1px solid #C6C6C6;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    color: #333333;
    text-decoration: none;
}
.button:active {
    background-color: #F6F6F6;
    background-image: -moz-linear-gradient(center top, #f6f6f6, #f1f1f1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
}
.button:visited {
    color: #666666;
}
.button-submit {
    background-color: #97C03D;
    background-image: -moz-linear-gradient(center top, #97c03d, #4787ed);
    border: 1px solid #97C03D;
    color: #FFFFFF;
    text-shadow: 0 1px rgba(0, 0, 0, 0.1);
}
.button-submit:hover {
    background-image: -moz-linear-gradient(center top, #97c03d, #357ae8);
    border: 1px solid #2F5BB7;
    color: #FFFFFF;
    text-shadow: 0 1px rgba(0, 0, 0, 0.3);
}
.button-submit:active {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) inset;
}
.button-share {
    background-color: #3D9400;
    background-image: -moz-linear-gradient(center top, #3d9400, #398a00);
    border: 1px solid #29691D;
    color: #FFFFFF;
    text-shadow: 0 1px rgba(0, 0, 0, 0.1);
}
.button-share:hover {
    background-color: #368200;
    background-image: -moz-linear-gradient(center top, #3d9400, #368200);
    border: 1px solid #2D6200;
    color: #FFFFFF;
    text-shadow: 0 1px rgba(0, 0, 0, 0.3);
}
.button-share:active {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) inset;
}
.button-red {
    background-color: #D14836;
    background-image: -moz-linear-gradient(center top, #dd4b39, #d14836);
    border: 1px solid transparent;
    color: #FFFFFF;
    text-shadow: 0 1px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}
.button-red:hover {
    background-color: #C53727;
    background-image: -moz-linear-gradient(center top, #dd4b39, #c53727);
    border: 1px solid #B0281A;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    color: #FFFFFF;
    text-shadow: 0 1px rgba(0, 0, 0, 0.3);
}
.button-red:active {
    background-color: #B0281A;
    background-image: -moz-linear-gradient(center top, #dd4b39, #b0281a);
    border: 1px solid #992A1B;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) inset;
}
.button-white {
    background: none repeat scroll 0 0 #FFFFFF;
    border: 1px solid #DCDCDC;
    color: #666666;
}
.button-white:hover {
    background: none repeat scroll 0 0 #FFFFFF;
    border: 1px solid #C6C6C6;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    color: #333333;
}
.button-white:active {
    background: none repeat scroll 0 0 #FFFFFF;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
}
.button-red:visited,
.button-share:visited,
.button-submit:visited {
    color: #FFFFFF;
}
.button-submit:focus,
.button-share:focus,
.button-red:focus {
    box-shadow: 0 0 0 1px #FFFFFF inset;
}
.button-share:focus {
    border-color: #29691D;
}
.button-red:focus {
    border-color: #D14836;
}
.button-submit:focus:hover,
.button-share:focus:hover,
.button-red:focus:hover {
    box-shadow: 0 0 0 1px #ffffff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
}
.button img {
    display: inline-block;
    margin: -3px 0 0;
    opacity: 0.55;
    vertical-align: middle;
}
.button:hover img {
    opacity: 0.72;
}
.button:active img {
    opacity: 1;
}
a.button {
    display: inline-block;
    padding-left: 6px;
    text-decoration: none;
    cursor: pointer;
}
a.button span {
    color: #FFFFFF;
    font-family: "microsoft yahei";
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
}
a.button span:hover {
    color: #333;
}
.btn-wish {
    background: url(graphic/btn-wish.png) no-repeat;
    width: 150px;
    height: 45px;
    display: block;
    float: left;
    margin-right: 20px;
}
.btn-wish:hover {
    background: url(graphic/btn-wish-on.png) no-repeat;
}
.btn-buy {
    background: url(graphic/btn-buy.png) no-repeat;
    width: 150px;
    height: 45px;
    display: block;
    float: left;
}
.btn-buy:hover {
    background: url(graphic/btn-buy-on.png) no-repeat;
}
.btn-wish span,
.btn-buy span {
    display: none;
}
.buttons {
    padding: 0px 20px 20px;
}
/* 网站固定页面样式-首页 home.less */
#home #main {
    /*padding-top: 10px;*/
    /*margin-top: 54px;*/
}
#home #column_right {
    float: right;
    width: 320px;
}
#home #column_left {
    float: left;
    width: 320px;
}
#home #content {
    /*margin-left: 340px;*/
    /*margin-right: 340px;*/
    overflow: hidden;
}
#home #main_middle .box .top {
    /*width: 320px;*/
    padding: 20px 0px 0px;
    margin-left: 40px;
    margin-bottom: 10px;
    border: none;
}
#home #main_middle .box .top h3 {
    /*text-indent: -1000em;*/
    margin: 0;
}
#home #main_middle .box .content {
    /*border: 1px solid #F1F1F1;*/
    border-top: 0;
    padding: 10px;
    min-height: 240px;
    /*overflow: hidden;*/
}
#home #about_us .top {
    /*background: url(graphic/about-us.png) 0 0 no-repeat;*/
}
#home #acid_1 .top {
    background: url(graphic/news.png) 0 0 no-repeat;
}
#home #acid_1 .top .more {
    float: right;
    display: inline-block;
    width: 40px;
    height: 14px;
    background: url(graphic/more.png) 0 0 no-repeat;
    margin-top: 12px;
    margin-right: 10px;
    text-indent: -1000em;
}
#home #contact .top {
    background: url(graphic/contact-us.png) 0 0 no-repeat;
}
#home .box .article-list .lists .item .name {
    display: inline-block;
    width: 250px;
}
/*

#home #content{
	margin-top:10px; 

	#featured{
		float: left;
		width: 276px; 
		overflow: hidden;
	}

	#about-us{
		float: left;
		width: 415px;
		overflow: hidden;
		margin: 0px 10px;
	}

	#news{
		float: right;
		width: 286px;
		overflow: hidden;
	}

	.box{ 
		.top{
			background: url(graphic/box-bg.png) 0 0 no-repeat; 
			.border-radius(3px 3px 0 0); 

			h3{
				margin:0;
				padding-left:30px;
				line-height: 24px;
				height: 24px;
			}
		}
		
		.content{ border:1px solid #70641D; border-top:0; }

	 }
}
*/
/*
#article_tabs{ 
	width:310px; float:left;

	.htabs{ 
			border-bottom:0;

		a {
			border:0;
			background: url(graphic/title-bg.jpg) 0 0 no-repeat;
			width:78px;
			color:#fff;
			padding-bottom:2px;
			height:31px;
			padding:0;
			text-align: center;
			line-height: 25px;


			&.selected {
				background: url(graphic/title-on-bg.png) 0 0 no-repeat;
				color: #fff;
			}
		}

	}


	.tab-content{ 
		border:0; border-top:2px solid #ccc; margin-top:-8px; 
		padding-top:6px;

 		.item{ line-height: 25px; height:25px;}

		.item-summary{  
			height:7.5em; 
			background-image:none; 
			text-indent: 0;
			line-height: 21px;

			.thumb{ float:left; margin-top:5px;  margin-right:5px;}

			.title{ 
				font-weight: bold; display: 
				inline-block;  height:1.5em; 
				overflow: hidden;
			}

			.content-box{ overflow: hidden; }


		 }



		 a{ font-size:12px;}
	}
 }

#article_category_7{ width:230px; float:right; }


#featured .box-heading,#article_category_7 .box-heading{
	height:31px;
	background: url(graphic/line.jpg) left bottom no-repeat;
}

#article_category_2 .article-summary-list .item{
	background: url(graphic/title-ico.png) 0px 16px no-repeat;
	padding:10px 0px 0px 10px;
}
#article_category_2 .article-summary-list .title{ font-weight:bold; width:20em; height:1.5em; overflow:hidden; font-family: "microsoft yahei";}
#article_category_2 .read-more{color: #e47a00;}

.home #featured .col-2 .item{ padding:10px 0px 0px;}
.home #featured .item{ float: left; display: inline; }
.home #featured .item img{border:1px solid #ccc;}
.home #featured .box-content {
	padding: 0px 16px;
	background-color: #fff;
	position: relative;
	height:200px;
	overflow: hidden;
}

.home .article-list .vlist li a{ display:inline; }


#home #content{background: none; border: none;}

.home .work{ margin-bottom: 2em; }
.work .row-fluid{margin-top: 20px;margin-bottom: 30px;}
.work .span4{ text-align:center; border-right: 1px solid #ccc;}
.work .span4:last-child{border: none;}

.home .service{ 
	background-color:#f9f9f9;
	padding:30px 50px;
	border:1px solid #E4E4E4;
	border-radius:3px;
	margin-bottom:2em;
}
.service .row-fluid{ margin-bottom:2em; }
.service .span6 figure{ float:left; margin:0 1em 1em 0;  }
.service .span6 h3{ }
.service .span6 p{ }
*/
/*
#featured h3{ background-image:url(graphic/product-title.png); background-repeat: no-repeat; text-indent: -1000em; }

#article_category_2 h3{ background-image:url(graphic/news-title.png); background-repeat: no-repeat; text-indent: -1000em;  }

#contact h3{ background-image:url(graphic/contact-title.png); background-repeat: no-repeat; text-indent: -1000em;  }
*//* 网站固定页面样式-单页 information.less */
/* Style for page *//* 网站固定页面样式-文章 article.less */
/* 文章列表 */
.article-list .lists {
    padding-left: 0px;
    padding-right: 0px;
}
.article-list .lists .item {
    /*background: url(graphic/title-ico.png) left center no-repeat;*/
    line-height: 45px;
    height: 45px;
    overflow: hidden;
    border-bottom: 1px #ccc dashed;
}
.article-list .lists .item a {
    display: inline-block;
}
.article-list .lists .item h3 {
    font-weight: normal;
    font-size: 1em;
}
.article-list .lists .item .publish-date {
    float: right;
    color: #999;
}
.article-list .lists .item:last-child {
    /*border-bottom: 0;*/
}

.article-list .lists .item-summary {
    border-bottom: 1px #ccc dashed;
    padding: 10px 0px 20px;
    overflow: hidden;
}
.article-list .lists .item-summary .thumb {
    float: left;
    margin-right: 10px;
}
.article-list .lists .item-summary .thumb img {
    border: 3px solid #ddd;
}
.article-list .lists .item-summary .summary {
    overflow: hidden;
    color: #888;
}
.article-list .grids .item-thumb {
    text-align: center;
    line-height: 1.5em;
    margin-bottom: 1.5em;
    padding: 3px 5px;
}
.article-list .grids .item-thumb a {
    display: block;
}
.article-list .grids .item-thumb .title {
    display: block;
    margin-top: 0.5em;
    margin-bottom: 1em;
}
.article-list .grids .item-thumb img {
    border: 1px solid #ccc;
}
.list-download .item {
    border-bottom: 1px #ccc dashed;
    height: 30px;
    line-height: 30px;
}
.list-download .item .date {
    float: right;
    width: 80px;
}
.list-download .item .size {
    float: right;
    width: 100px;
}
.article-list {
    padding-left: 0px;
    padding-right: 0px;
}
.article-list .vlist li {
    background: url(graphic/title-ico.png) left center no-repeat;
    text-indent: 8px;
    line-height: 45px;
    height: 45px;
    overflow: hidden;
    border-bottom: 1px #ccc dashed;
}
.article-list .vlist li a {
    display: inline-block;
    font-size: 14px;
}
.article-list .vlist li .date,
.article-summary-list .vlist li .date {
    float: right;
    color: #999;
}
.article-summary-list li {
    border-bottom: 1px #ccc dashed;
    padding: 20px 0px 20px;
}
.article-summary-list li img {
    border: 3px solid #ddd;
}
.article-summary-list .item {
    overflow: hidden;
}
.article-summary-list .item .thumb {
    float: left;
    margin-right: 10px;
}
.article-summary-list .item .summary {
    overflow: hidden;
    color: #888;
}
/* 案例介绍页面样式 */
.article-thumblist li {
    float: left;
    width: 33.3333%;
    text-align: center;
    line-height: 1.5em;
    margin-bottom: 1.5em;
}
.article-thumblist li a {
    display: block;
}
.article-thumblist li .title {
    display: block;
    margin-top: 0.5em;
    margin-bottom: 1em;
}
.article-thumblist li img {
    border: 1px solid #ccc;
}
/* 文章详细页 */
#content .article .info {
    margin-bottom: 0px;
    line-height: 14px;
}
#content .section .info .pub_date {
    color: #999;
    font-size: 12px;
    font-weight: normal;
    text-align: right;
}
#content article p {
    line-height: 200%;
    font-size: 14px;
}
#review .item {
    padding: 10px;
    overflow: auto;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}
#review .item b {
    display: inline-block;
    vertical-align: top;
    text-align: left;
    margin-right: 10px;
}
#review .item .date {
    width: 80px;
    float: right;
}
#review .item .b1 {
    background: #F7B26F;
    padding: 15px;
}
#review .item .b2 {
    background: #F59636;
    padding: 20px;
}
/* 网站固定页面样式-产品 product.less */
.product-grid .product {
    padding: 3px;
    text-align: center;
}
.product-grid .product img {
    border: 1px solid #ccc;
    margin: 0px auto;
    width: 100%;
}
.product-grid .product:hover img {
    border: 1px solid #301d17;
}
.product-grid .product .name {
    padding: 8px 0 10px 0;
    line-height: 21px;
    height: 2em;
    margin: 0px auto;
}
.product-list .product {
    text-align: center;
    margin-bottom: 2em;
}
.product-list .product img {
    border: 1px solid #ccc;
}
#content .content .product-list {
    padding: 0px 10px;
}
/* category */
.category-info {
    overflow: auto;
    margin-bottom: 20px;
}
.category-info .image {
    float: left;
    padding: 5px;
    margin-right: 15px;
    border: 1px solid #E7E7E7;
}
.category-list {
    overflow: auto;
    margin-bottom: 20px;
}
.category-list ul {
    float: left;
    width: 18%;
}
.category-list .div a {
    text-decoration: underline;
    font-weight: bold;
}
/* manufacturer */
.manufacturer-list {
    border: 1px solid #DBDEE1;
    padding: 5px;
    overflow: auto;
    margin-bottom: 20px;
}
.manufacturer-heading {
    background: #F8F8F8;
    font-size: 15px;
    font-weight: bold;
    padding: 5px 8px;
    margin-bottom: 6px;
}
.manufacturer-content {
    padding: 8px;
}
.manufacturer-list ul {
    float: left;
    width: 25%;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 10px;
}
.product-info {
    overflow: hidden;
    margin-bottom: 20px;
    margin-top: 20px;
}
.product-info .left-content {
    float: left;
    margin-right: 25px;
}
.product-info .right-content {
    overflow: hidden;
}
.product-info .image {
    border: 1px solid #ddd;
    float: left;
    margin-bottom: 20px;
    padding: 6px;
    text-align: center;
}
.product-info .image-additional {
    width: 377px;
    margin-left: 0px;
    clear: both;
    overflow: hidden;
}
.product-info .image-additional img {
    border: 1px solid #ddd;
}
.product-info .image-additional a {
    float: left;
    display: block;
}
.product-info .description {
    padding: 10px 5px 10px 5px;
    margin-bottom: 10px;
    line-height: 20px;
    color: #4D4D4D;
}
.product-info .description span {
    color: #38B0E3;
}
.product-info .description a {
    color: #4D4D4D;
    text-decoration: none;
}
.product-info .price {
    overflow: auto;
    border-bottom: 1px solid #E7E7E7;
    padding: 0px 5px 10px 5px;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: bold;
    color: #333333;
}
.product-info .price-old {
    color: #F00;
    text-decoration: line-through;
}
.product-info .price-tax {
    font-size: 12px;
    font-weight: normal;
    color: #999;
}
.product-info .price .reward {
    font-size: 12px;
    font-weight: normal;
    color: #999;
}
.product-info .price .discount {
    font-weight: normal;
    font-size: 12px;
    color: #4D4D4D;
}
.product-info .options {
    border-bottom: 1px solid #E7E7E7;
    padding: 0px 5px 10px 5px;
    margin-bottom: 10px;
    color: #000000;
}
.product-info .cart {
    border-bottom: 1px solid #E7E7E7;
    padding: 0px 5px 10px 5px;
    margin-bottom: 20px;
    color: #4D4D4D;
    overflow: auto;
}
.product-info .cart div {
    float: left;
    vertical-align: middle;
}
.product-info .cart div > span {
    padding-top: 7px;
    display: block;
    color: #999;
}
.product-info .cart .minimum {
    padding-top: 5px;
    font-size: 11px;
    color: #999;
    clear: both;
}
.product-info .review {
    color: #4D4D4D;
    border-top: 1px solid #E7E7E7;
    border-left: 1px solid #E7E7E7;
    border-right: 1px solid #E7E7E7;
    margin-bottom: 10px;
}
.product-info .review > div {
    padding: 8px;
    border-bottom: 1px solid #E7E7E7;
    line-height: 20px;
}
.product-info .review > div > span {
    color: #38B0E3;
}
.product-info .review .share {
    overflow: auto;
    line-height: normal;
}
.product-info .review .share a {
    text-decoration: none;
}
/* products relation */
[role="page_product"] #tab-solution img {
    border: 2px solid #eee;
}
[role="page_product"] #content .tab-content {
    border: 0;
    background-color: inherit;
    min-height: 0;
}
.product-info .thumb {
    text-align: center;
}
.product-info .thumb img {
    border: 5px solid #ddd;
}
/* 网站固定页面样式-会员 member.less */
.login-content {
    float: left;
}
.login-content input {
    width: 290px;
}
.login-content a.button {
    background-color: none;
}
.login-content a.button span:hover {
    color: #999;
}
.register-content {
    background: #000;
    height: 455px;
    width: 950px;
    float: left;
}
.register-content span,
.register-content p {
    color: #eee;
}
.register-content .form {
    color: #fff;
}
/*.login-content {
	margin-bottom: 20px;
	overflow: auto;
}
.login-content .left {
	float: left;
	width: 48%;
}
.login-content .right {
	float: right;
	width: 48%
}
.login-content .left .content, .login-content .right .content {
	min-height: 190px;
}*/
/* 会员中心左侧栏目 */
.member-left {
    float: left;
    width: 210px;
    margin-bottom: 10px;
}
.member-left ul.nav {
    border-bottom: solid 1px #e9e9e9;
    border-left: solid 1px #e9e9e9;
    border-right: solid 1px #e9e9e9;
}
.member-left ul.nav li {
    padding: 1px;
    border-top: solid 1px #e9e9e9;
}
.member-left ul.nav li h1 {
    line-height: 35px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 0;
    padding: 0 0 0 10px;
    display: block;
    color: #333;
    background: #e3e3e3;
}
.member-left dl.navigation {
    padding: 5px 0;
}
.member-left dl.navigation dd {
    padding: 3px 10px;
}
.member-left dl.navigation dd a {
    outline: none;
    display: block;
    color: #333;
    text-decoration: none;
    line-height: 20px;
    padding-left: 15px;
}
.member-left dl.navigation dd a:hover {
    color: #eb1a3c;
}
.member-left dl.navigation dd a.selected {
    color: #fff;
    background: #e81f3f;
    font-weight: bold;
}
.member-left dl.navigation dd dd {
    padding-left: 20px;
}
/*找回密码开始*/
.password_contant {
    margin-top: 10px;
}
.pass_title h1 {
    height: 48px;
    background: url(graphic/forgotten/lo_btbg.gif) repeat-x;
    line-height: 48px;
    font-weight: normal;
    font-size: 22px;
    padding-left: 15px;
}
.password_contant {
    border: 1px solid #ccc;
}
.pass_left {
    padding: 25px 20px 0 20px;
    width: 630px;
    border-right: 1px solid #ccc;
    height: 400px;
}
.pass_right {
    padding: 25px 10px 0 10px;
    width: 220px;
    height: 400px;
}
.pass_progress {
    background: url("graphic/forgotten/pass01.gif") no-repeat scroll 0 0 transparent;
    height: 30px;
    overflow: hidden;
    padding-top: 30px;
    width: 630px;
}
.pass_progress2 {
    background: url("graphic/forgotten/pass02.gif") no-repeat scroll 0 0 transparent;
    height: 30px;
    overflow: hidden;
    padding-top: 30px;
    width: 630px;
}
.pass_progress3 {
    background: url("graphic/forgotten/pass03.gif") no-repeat scroll 0 0 transparent;
    height: 30px;
    overflow: hidden;
    padding-top: 30px;
    width: 630px;
}
.pass_progress li,
.pass_progress2 li,
.pass_progress3 li {
    float: left;
    height: 30px;
    line-height: 30px;
    text-align: center;
    width: 210px;
    font-size: 14px;
}
.pass_inputlist tr td {
    padding-bottom: 20px;
}
.pass_tj {
    text-align: right;
    font-size: 14px;
}
.pass_tsyy {
    margin-top: 20px;
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 20px;
}
.yzm {
    display: inline-block;
    vertical-align: middle;
}
.pass_next {
    padding: 4px 12px;
    background-color: #90B830;
    cursor: pointer;
    border: 0;
    font-size: 16px;
    color: #fff;
}
.pass_right p {
    line-height: 2em;
}
.inline {
    display: inline;
    margin-left: 2em;
}
/*找回密码结束*/
aside .register-ad {
    display: block;
    float: left;
    margin-left: 60px;
    margin-top: 30px;
}
aside .login-ad {
    display: block;
    float: left;
    margin-left: 30px;
    margin-top: 20px;
}
/* Sprint Style  sprint.less */
/* sprint.less */
a.more,
a.read-more {
    display: inline-block;
    width: 80px;
    height: 20px;
}
/* Graceful for UX graceful.less */
p::selection {
    background-color: #97C03D;
    color: #fff;
}
p::-moz-selection {
    background-color: #97C03D;
    color: #fff;
}
a[href^="tel:"] {
    text-decoration: none;
    cursor: default;
}
:lang(en-gb) > q {
    quotes: "\201C" "\201D" "\2018" "\2019";
}
q:before {
    content: open-quote;
}
q:after {
    content: close-quote;
}
/* Media Query 响应式设计 */
/* 局部响应式扩展 responsive.less */
.img-responsive {
    display: block;
    height: auto;
    max-width: 100%;
}
/* Landscape phones and down */
@media (max-width: 480px) {

}
/* Landscape phone to portrait tablet */
@media (max-width: 767px) {

}
/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) {

}
/* Large desktop */
@media (min-width: 1200px) {

}
/* mobile.less */
/* mobile.less */
/* Landscape phones and down */
@media (max-width: 480px) {

}
/* Landscape phone to portrait tablet */
@media (max-width: 767px) {

}
/* tablet.less */
/* tablet.less */
/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) {

}
/* Large desktop */
@media (min-width: 1200px) {

}
/* 打印样式 print.less */
/* print.less */
@media print {
    .print {
        position: static;
        left: 0;
    }
    .noprint {
        display: none !important;
    }
}

/* This beautiful CSS-File has been crafted with LESS (lesscss.org) and compiled by simpLESS (wearekiss.com/simpless) */


/*article_thumb*/
#hover li:first-child {
    border: none;
    margin: 0;
    /*border-bottom: 1px dashed #ddd;*/
    /*padding-bottom: 20px;*/
}
#hover li:first-child .xian{
    border-bottom: 1px dashed #DDDDDD ;
    padding-bottom: 10px;
}
#hover li{
    margin-top: 20px;
    /*border-top: 1px dashed #cccccc;*/
    /*padding-top: 20px;*/
}

/*产品左栏样式*/
.contents #category ul{padding-left: 0px}
.contents #category ul li {padding-left:10px;line-height: 30px}
.contents #category li a{background: url("graphic/slideup.png") no-repeat scroll left 8px transparent;display: block;height: 28px;line-height: 28px;padding-left: 22px;overflow: hidden}
.contents #category .active>a{background: url("graphic/slidedown.png") no-repeat scroll left 8px transparent;display: block;height: 28px;line-height: 28px;padding-left: 22px;overflow: hidden}


/*footer底部导航样式*/
#footer .list .item a{
    color: #FFFFFF;
}
#footer .list .item a:hover{
    color: #E47A00;
}
#footer_bottom{
    margin: 0px auto 20px;
    width: 100%;
    min-height: 40px;
    border-top: 10px solid #808080;
}
#footer_bottom .address{
    float: left;
    width: 45%;
}
#footer_bottom .copy,.support{
    float: right;
    width: 55%;
    text-align: right;
}

#footer_bottom .inname{
    width: 1000px;
    margin: 10px auto 20px;
    min-height: 60px;
}