@charset 'utf-8';

/*
名称：OFweek 英文站主样式
维护：王文 wangwen1220#139.com
依赖：base.css
日期：2013-7-1
*/

/* Solutions
----------------------------------------------------------------------------- */
/*
名称: sl-fixed
用法: 添加 class
注意:
  如果需要多个方向的固定位置，比如 top + right，需要加两个 class
  如果加了 .sl-fixed-top，那么就别给这个元素加 top 属性的值
  为了不出现异常，这个只作为套用。比如要 top: 30px 的时候，请在 .sl-fixed-top 的子元素内设置
  由于我们有打包，所以，改 solution 是可以的，但这是强烈不推荐的，因为不利于维护
*/
.sl-fixed {
  position: fixed;
  _position: absolute;
}

/* 相当于正常的 position: fixed; top: 0; */
.sl-fixed-top {
  bottom: auto;
  top: 0;
  _bottom: auto;
  _top: expression(eval(document.documentElement.scrollTop));
}

/* 相当于正常的 position: fixed; bottom: 0; */
.sl-fixed-bottom {
  bottom: 0;
  top: auto;
  _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)));
}

/* 相当于正常的 position: fixed; left: 0; */
.sl-fixed-left {
  left: 0;
  right: auto;
  _left: expression(eval(document.documentElement.scrollLeft));
}

/* 相当于正常的 position: fixed; right: 0; */
.sl-fixed-right {
  right: 0;
  left: auto;
  _right: auto;
  _left: expression(eval(document.documentElement.scrollLeft+document.documentElement.clientWidth-this.offsetWidth)-(parseInt(this.currentStyle.marginLeft,10)||0)-(parseInt(this.currentStyle.marginRight,10)||0));
}

/** 解决 IE6 伪固定定位的抖动问题 **/
html {
  _background-image: url(about:blank);
  _background-attachment: fixed;
}

/** 解决 Firefox 下按钮内文字垂直居中 **/
input[type='reset']::-moz-focus-inner,
input[type='button']::-moz-focus-inner,
input[type='submit']::-moz-focus-inner,
input[type='file'] > input[type='button']::-moz-focus-inner,
button::-moz-focus-inner {
  border: none;
  padding: 0;
}

/* Plugins
----------------------------------------------------------------------------- */
/*
@name: wfloat
@overview: jquery.wfloat 样式文件
@notice: .wfloat-absolute 相对于外层元素定位，所以外层元素要设为相对定位
@require: sl-fixed & jquery.wfloat.js
*/
.wfloat-absolute,
.wfloat-fixed {
  width: 300px;
  z-index: 100;
}

.wfloat-absolute {
  position: absolute;
  right: 0;
  bottom: 0;
  _top: auto !important;
}
.wfloat-fixed {
  /*position: fixed !important;*/
  /*_position:absolute !important;*/
}
.wfloat-fixed-offset-top {
  margin-top: 10px;
  _margin-top: -220px;
}
.wfloat-fixed-offset-bottom {
  margin-bottom: 10px;
  _margin-bottom: 245px;
}

/** jquery.Validform **/
.Validform_checktip{
  margin-left:8px;
  line-height:20px;
  height:20px;
  overflow:hidden;
  color:#999;
  font-size:12px;
}
.Validform_right{
  color:#71b83d;
  padding-left:20px;
  background:url(../images/right.png) no-repeat left center;
}
.Validform_wrong{
  color:red;
  padding-left:20px;
  white-space:nowrap;
  background:url(../images/error.png) no-repeat left center;
}
.Validform_loading{
  padding-left:20px;
  background:url(../images/onLoad.gif) no-repeat left center;
}
.Validform_error{
  background-color:#ffe7e7;
}
#Validform_msg{color:#7d8289; font: 12px/1.5 tahoma, arial, \5b8b\4f53, sans-serif; width:280px; -webkit-box-shadow:2px 2px 3px #aaa; -moz-box-shadow:2px 2px 3px #aaa; background:#fff; position:absolute; top:0px; right:50px; z-index:99999; display:none;filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#999999');}
#Validform_msg .iframe{position:absolute; left:0px; top:-1px; z-index:-1;}
#Validform_msg .Validform_title{line-height:25px; height:25px; text-align:left; font-weight:bold; padding:0 8px; color:#fff; position:relative; background-color:#000;}
#Validform_msg a.Validform_close:link,#Validform_msg a.Validform_close:visited{line-height:22px; position:absolute; right:8px; top:0px; color:#fff; text-decoration:none;}
#Validform_msg a.Validform_close:hover{color:#cc0;}
#Validform_msg .Validform_info{padding:8px;border:1px solid #000; border-top:none; text-align:left;}

/* Global
----------------------------------------------------------------------------- */
/* 默认文字和背景颜色 */
body {
  color: #333;
  font: 12px/1.5 Arial,Helvetica,sans-serif;
  _word-wrap: break-word;/* 防止 IE6 连字符撑开布局 */
}

/* 节日背景 */
html.products.index body {
  /*padding-top: 130px;*/
  /*background: url(/images/festival/new_year_2014.jpg) no-repeat 50% 0;*/

  /*padding-top: 158px;*/
  /*background: url(../images/christmas2014.jpg) 50% 0 no-repeat;*/
  /*background: url(../images/2014newyear.jpg) 50% 0 no-repeat;*/
}

/* 链接样式 */
a, a:link {
  color: inherit;
  *color: #666;
  cursor: pointer;
}
a:hover, a:active {
  color: #D24400;
}

/* 清除图片底部空白间隙 */
img {
  vertical-align: top;
}

/* 默认表单样式 */
/*input[type='text'], textarea {
  color: #999;
}
input[type='text']:focus, textarea:focus {
  color: #444;
}*/

/* 输入框默认值样式 */
.defaultval {
  color: #999 !important;
}

/* AD */
.ad-wrap {
  clear: both;
  margin: 10px 0;
  overflow: hidden;
  *zoom: 1;
  *position: relative;
}
.ad-wrap-h90 {
  height: 90px;
}
.ad {
  overflow: hidden;
  /*background: #F9F9F9;*/
}
.ad-fr {
  float: right;
}
.ad-fl {
  float: left;
}
.ad-w728 {
  width: 728px;
}
.ad-w230 {
  width: 230px;
}
.ad-w250 {
  width: 250px;
}
.ad-w300 {
  width: 300px;
}
.ad-w490 {
  width: 490px;
}
.ad-h90 {
  height: 90px;
}
.ad-h250 {
  height: 250px;
}

/* 分割线 */
.hr {
  margin: 5px 0;
  height: 0;
  line-height: 0;
  overflow: hidden;
  border-bottom: 1px dotted #ccc;
  font-size: 0;
}

/* 排版 */
.fn-fl {
  float: left;
  display: inline;
}
.fn-fr {
  float: right;
  display: inline;
}
#w .f12 {
  font-size: 12px;
}
#w .f14 {
  font-size: 14px;
}
#w .mt0 {
  margin-top: 0;
}
#w .mt5 {
  margin-top: 5px;
}
#w .mt8 {
  margin-top: 8px;
}
#w .mt20 {
  margin-top: 25px;
}
#w .mt30 {
  margin-top: 30px;
}
#w .mt40 {
  margin-top: 40px;
}
#w .mt50 {
  margin-top: 50px;
}
#w .mt15 {
  margin-top: 15px;
}
#w .mt10 {
  margin-top: 10px;
}
#w .mb0 {
  margin-bottom: 0;
}
#w .mb5 {
  margin-bottom: 5px;
}
#w .mb8 {
  margin-bottom: 8px;
}
#w .mb10 {
  margin-bottom: 10px;
}
#w .mb15 {
  margin-bottom: 15px;
}
#w .mb20 {
  margin-bottom: 20px;
}
#w .mb30 {
  margin-bottom: 30px;
}
#w .mb50 {
  margin-bottom: 50px;
}

/* TPL
----------------------------------------------------------------------------- */
/*
@name: w-cnt
@overview: 通用内容块样式
@require: null
*/
/* .w-cnt {
  margin: 10px 0;
  background: #ccc;
} */
.w-cnt-item {
  float: left;
  display: inline;
  _overflow: hidden;
}
.w-cnt-item-m,
.w-cnt-item-ml,
.w-cnt-item-mr {
  float: left;
  width: 100%;
}
.w-cnt-item-m .w-cnt-item-cnt {
  /*margin: 0 330px 0 220px;*/
  margin-right: 330px;
}
.w-cnt-item-ml .w-cnt-item-cnt {
  margin: 0 330px 0 0;
}
.w-cnt-item-mr .w-cnt-item-cnt {
  margin: 0 0 0 220px;
}
.w-cnt-item-l {
  width: 190px;
  margin-left: -100%;
  _margin-left: -1000px;
}
.w-cnt-item-r {
  width: 300px;
  margin-left: -300px;
}

/*
@name: w-cntbox
@overview: 带边框和背景的内容模块
@require: null
*/
.w-cntbox {
  padding: 30px;
  min-height: 250px;
  _height: 250px;
  border: 1px solid #ddd;
  border-top: 3px solid #BB0000;
  background-color: #FCFCFC;
}
.w-cntbox .w-title-success {
  text-align: center;
}
.w-cntbox .w-title-success span {
  /*display: inline-block;*/
  line-height: 30px;
  padding-left: 38px;
  background: url(../images/icon-success.png) 0 50% no-repeat;
}
.w-cntbox .w-title {
  font-weight: normal;
}
.w-cntbox .hr {
  margin: 30px 0;
}
.w-cntbox .w-list-dot .w-list-item {
  margin: 5px 0 0;
  background-image: url(../images/icon-dot-gray.png);
}
.w-cntbox .w-list-dot .w-list-item a {
  color: #666;
}

/*
@name: w-box
@overview: 通用盒样式
@require: null
*/
.w-box {
  margin: 20px 0;
}
.w-box-hd {
  padding: 10px 0;
  border-bottom: 2px solid #ddd;
}
.w-box-hd .title {
  line-height: 1;
  font-size: 24px;
  color: #bb0000;
}
.w-box-hd .title a {
  color: #bb0000;
}
.w-box-ft {
  padding-top: 15px;
  text-align: right;
  color: #BB0000;
}
.w-box-ft a {
  font-weight: bold;
  color: #BB0000;
}

/*
@name: w-box-mod1
@overview: 盒模块1样式
@require: w-box
*/
.w-box-mod1 {
  padding: 0 5px 5px;
  background: #F0F0F0;
}
.w-box-mod1 .w-box-hd {
  padding: 0 5px;
  border: none;
}
.w-box-mod1 .w-box-hd .title {
  height: 44px;
  line-height: 44px;
  font-size: 25px;
  color: #222;
  overflow: hidden;
}
.w-box-mod1 .w-box-hd .title a {
  color: #222;
}
.w-box-mod1 .w-box-bd {
  background: #fff;
}

/*
@name: w-box-mod2
@overview: 盒模块2样式
@require: w-box
*/
.w-box-mod2 {
  border: 1px solid #DDD;
  background: #fff;
}
.w-box-mod2 .w-box-hd {
  padding: 0 10px;
  height: 30px;
  line-height: 30px;
  overflow: hidden;
  border: none;
  background: #F0F0F0;
}
.w-box-mod2 .w-box-hd .title {
  font-size: 14px;
  font-weight: bold;
  color: #222;
}
.w-box-mod2 .w-box-hd .title a {
  color: #222;
}

/*
@name: w-box-mod3
@overview: 盒模块3样式
@require: w-box
*/
.w-box-mod3 {
  border: 1px solid #DDD;
  background: #F0F0F0;
}
.w-box-mod3 .w-box-hd {
  padding: 8px 9px;
  border: none;
}
.w-box-mod3 .w-box-hd .title {
  font-size: 18px;
  color: #222;
}
.w-box-mod3 .w-box-hd .title a {
  color: #222;
}
.w-box-mod3 .w-box-bd {
  margin: 0 9px;
}

/*
@name: w-list
@overview: 通用列表样式
@require: null
*/
.w-list {
  margin: 10px 0;
}
.w-list-item {
  height: 26px;
  line-height: 26px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  _vertical-align: top;/* 解决 ie6 下 li 之间有间隙的问题 */
}
.w-list-item-dt,
.w-list-item-dot,
.w-list-item-video {
  margin: 0 0 5px;
  height: auto;
  line-height: 1.7;
  white-space: normal;
  padding-left: 12px;
  color: #444;
  background: url(../images/icon-dot-gray.png) no-repeat 0 8px;
}
.w-list-item-dt {
  margin-bottom: 0;
  padding-left: 0;
  background: none;
  font-weight: bold;
}
.w-list-item-video {
  background: url(../images/icon-video.png) no-repeat 0 4px;
}
.w-list-item strong {
  font-weight: bold;
  color: #222;
}
.w-list-item em {
  color: #222;
}

/* w-list-dot */
.w-list-dot .w-list-item {
  padding-left: 10px;
  background: url(../images/icon-dot.png) no-repeat 0 50%;
}
.w-list-dot .w-list-item-dt {
  font-weight: bold;
  padding-left: 0;
  background: none;
}
/* TODO */
.w-list-dot .w-list-item a {
  _display: block;
  _width: 100%;
  _height: 100%;
  _overflow: hidden;
  _white-space: nowrap;
  _text-overflow: ellipsis;
}

/* w-list-date */
.w-list-date .w-list-item {
  position: relative;
  padding-right: 50px;
}
.w-list-date .w-list-item .date {
  position: absolute;
  right: 0;
  top: 0;
  color: #666;
}
.w-list-date .w-list-item .link {
  *display: block;
  *height: 100%;
  *width: 100%;
  *overflow: hidden;
  *white-space: nowrap;
  *text-overflow: ellipsis;
}

/*
@name: w-article
@overview: 通用文章样式
@require: null
*/
.w-article {
  margin: 10px 0;
}
.w-article-title {
  margin: 15px 0 5px;
  *margin-top: 5px;
  font-weight: bold;
  font-size: 14px;
  color: #222;
}
.w-article .w-article-title a {
  color: #222;
}
.w-article-img {
  float: left;
}
.w-article-txt {
  margin-left: 75px;
  line-height: 18px;
}
.w-article-txt .title,
.w-article-txt .title a {
  color: #000;
}
.w-article-txt .summary {
  color: #666;
}
.w-article-txt .cnt {
  color: #444;
  line-height: 1.6;
}

/*
@name: w-articles
@overview: 通用文章列表样式
@require: w-article
*/
.w-articles .w-article {
  margin: 0 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px dotted #ddd;
}
.w-articles .w-article-img {
  margin-right: 20px;
  _margin-right: 15px;
}
.w-articles .w-article-txt {
  margin: 0;
  /*overflow: hidden;*/
  /**zoom: 1;*/
}
.w-articles .w-article-title,
.w-articles .w-article-txt .title {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: bold;
  color: #16447E;
}
.w-articles .w-article-main .w-article-txt .title {
  font-size: 25px;
  line-height: 1.1;
}
.w-articles .w-article-title {
  margin-bottom: 10px;
  font-size: 24px;
}
.w-articles .w-article-title a,
.w-articles .w-article-txt .title a {
  color: #16447E;
}
.w-articles .w-article-txt .date {
  color: #999;
}
.w-articles .w-article-txt .summary {
  font-size: 14px;
  color: #444;
}
.w-articles .w-article-txt .link {
  margin-top: 7px;
  font-size: 14px;
}
.w-articles .w-article-txt .link a {
  margin-right: 1em;
  color: #16447E;
}
.w-articles .w-article-txt .link a.video {
  padding-left: 25px;
  background: url(../images/icon-video-black.png) no-repeat 0 50%;
}
.w-articles .w-article-txt .action {
  margin-top: 10px;
}
.w-articles .w-article-txt .action a {
  margin-right: 15px;
  color: #222;
  padding-left: 20px;
  background: url(../images/icon-action-check.png) 0 50% no-repeat;
  text-decoration: underline;
}
.w-articles .w-article-txt .action a.register {
  background-image: url(../images/icon-action-register.png);
}
.w-articles .w-article-txt .action a.sponsor {
  background-image: url(../images/icon-action-sponsor.png);
}

/*
@name: w-piclist
@overview: 通用图片列表样式
@require: null
*/
.w-piclist {
  margin-right: -12px;
}
.w-piclist-item {
  float: left;
  display: inline;
  margin: 10px 12px 0 0;
  text-align: center;
}
.w-piclist-item .title {
  margin: 5px 0;
  height: 16px;
  line-height: 16px;
  overflow: hidden;
  color: #000;
}
.w-piclist-item .title a {
  color: #000;
}

/*
@name: w-album
@overview: 通用相册样式
@require: null
*/
.w-album {
  margin-right: -10px;
}
.w-album-item {
  float: left;
  display: inline;
  margin: 10px 10px 0 0;
  width: 146px;
  border: 1px solid #fff;
  text-align: center;
  /* background: #eee; */
}
.w-album-item-hover,
.w-album-item:hover {
  border-color: #ddd;
}
.w-album-item .img {
  display: block;
  height: 146px;
  line-height: 146px;
  overflow: hidden;
  /*border: 1px solid #ddd;*/
  *font-size: 130px;
  /*background-color: #000;*/
}
.w-album-item .img:after {
  content: '';
  vertical-align: middle;
}
/*.w-album-item-hover .img,
.w-album-item:hover .img {
  border-color: #fff;
}*/
.w-album-item .img img {
  vertical-align: middle;
}
.w-album-item .title {
  margin-top: 5px;
  height: 20px;
  line-height: 20px;
  overflow: hidden;
  color: #444;
}
.w-album-item .title a {
  color: #444;
}

/*
@name: w-tab
@overview: tab 动画插件样式
@require: jquery etab 插件
*/
.w-tab-cnt {
  display: none;
}
.w-tab .w-tab-cnt.on {
  display: block;
}

/*
@name: w-tab-box
@overview: tab 动画插件样式
@require: w-tab & jquery etab 插件
*/
.w-tab-box {
  margin: 20px 0;
  /* border: 5px solid #F8F8F8; */
  background: #fff;
}
.w-tab-box .w-tab-hd {
  height: 35px;
  line-height: 35px;
  border-bottom: 1px solid #ddd;
  background: #F8F8F8;
}
.w-tab-box .w-tab-nav {
  float: left;
  display: inline;
  /* width: 50%; */
  padding: 0 10px;
  height: 100%;
  margin-left: -1px;
  /* border-left: 1px solid #DDD; */
  text-align: center;
  font-size: 16px;
  color: #333;
  cursor: pointer;
}
.w-tab-box .w-tab-hd .w-tab-nav.on {
  margin-left: 0;
  border: 1px solid #ddd;
  border-bottom: none;
  color: #bb0000;
  background: #fff;
  _position: relative;
  _bottom: -1px;
}

/*
@name: w-switchable-news
@overview: 新闻轮换图模块
@require: jquery switchable 插件
*/
.w-switchable-news {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 50px;
  width: 670px;
  height: 176px;
  overflow: hidden;
  border-bottom: 1px dotted #ddd;
}
.w-switchable-news .w-switchable-slide {
  /* height: 176px; */
  width: 9999px;
}
.w-switchable-news .w-switchable-slide-item {
  float: left;
  width: 670px;
}
.w-switchable-news .w-switchable-nav {
  position: absolute;
  top: 182px;
  left: 0;
  height: 19px;
  line-height: 19px;
  overflow: hidden;
  *zoom: 1;
  display: none;
}
.w-switchable-news .w-switchable-nav a {
  float: left;
  margin-right: 2px;
  width: 17px;
  height: 100%;
  text-indent: -9999px;
  background: url(../images/icon-prev-gray.png) no-repeat;
}
.w-switchable-news .w-switchable-nav .pause {
  background-image: url(../images/icon-pause-gray.png);
}
.w-switchable-news .w-switchable-nav .paused {
  background-image: url(../images/icon-play-gray.png);
}
.w-switchable-news .w-switchable-nav .next {
  background-image: url(../images/icon-next-gray.png);
}
.w-switchable-news .w-switchable-nav a:hover {
  filter: alpha(opacity=66);
  opacity: .66;
}
.w-switchable-news .w-switchable-nav .stats {
  float: left;
  padding-left: 15px;
  height: 100%;
  color: #666;
}

/*
@name: w-switchable-num
@overview: 带数字导航的轮换图模块
@require: jquery switchable 插件
*/
.w-switchable-num {
  position: relative;
  width: 560px;
  height: 230px;
  overflow: hidden;
}
.w-switchable-num .w-switchable-slide {
  /* height: 230px; */
}
.w-switchable-num .w-switchable-slide-item {
  float: left;
}
.w-switchable-num .w-switchable-slide-item img {
  display: block;
  width: 560px;
  height: 230px;
}
.w-switchable-num .w-switchable-trigger {
  position: absolute;
  right: 10px;
  bottom: 10px;
  border: 1px solid #e1e1e1;
  border-left: none;
}
.w-switchable-num .w-switchable-trigger li {
  float: left;
  display: inline;
  width: 18px;
  height: 18px;
  line-height: 18px;
  border-left: 1px solid #e1e1e1;
  color: #444;
  font-size: 12px;
  text-align: center;
  filter:progid:DXImageTransform.Microsoft.gradient(enabled='true',startColorstr='#7FFFFFFF', endColorstr='#7FFFFFFF');
  background: rgba(255, 255, 255, .5);
  cursor: pointer;
}
.w-switchable-num .w-switchable-trigger li.current {
  color: #fff;
  filter:progid:DXImageTransform.Microsoft.gradient(enabled='false');
  background: #CC0000 url(../images/bg-num.png) no-repeat;
}

/*
@name: w-switchable-album
@overview: 相册滑动模块
@require: jquery switchable 插件
*/
.w-switchable-album {
  position: relative;
  margin: 20px 0;
  padding: 0 20px;
  /* width: 560px; */
  height: 132px;
  overflow: hidden;
  /* background: #eee; */
}
.w-switchable-album .w-switchable-slide {
  position: absolute;
  margin-left: 19px;
  width: 9999px;
}
.w-switchable-album .w-switchable-slide-item {
  float: left;
  margin: 0;
  padding: 0 20px;
  width: 152px;
  border-left: 1px dotted #ddd;
  text-align: center;
}
.w-switchable-album .w-switchable-slide-item .img {
  display: block;
  height: 108px;
  line-height: 108px;
  overflow: hidden;
  *font-size: 100px;
}
.w-switchable-album .w-switchable-slide-item .img:after {
  content: '';
  vertical-align: middle;
}
.w-switchable-album .w-switchable-slide-item .img img {
  vertical-align: middle;
}
.w-switchable-album .w-switchable-slide-item .title {
   padding-top: 5px; 
   height:20px;
   line-height: 20px;
  overflow: hidden !important;
  color: #333;
  padding-bottom:25px;
}
.w-switchable-album .w-switchable-slide-item .title a {
  color: #333;
}
.w-switchable-album .w-switchable-slide-item:hover .img {
  border:1px solid #ddd;
   border-bottom:none;
}
.w-switchable-album .w-switchable-slide-item:hover .title {
   border:1px solid #ddd;
   border-top:none;
}


.w-switchable-album .w-switchable-nav .next,
.w-switchable-album .w-switchable-nav .prev {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  width: 20px;
  *height: 100%;
  text-indent: -9999px;
  background: #fff url(../images/btn-prev.png) no-repeat 50% 50%;
  outline: none;
}
.w-switchable-album .w-switchable-nav .next {
  left: auto;
  right: 0;
  background-image: url(../images/btn-next.png);
}
.w-switchable-album .w-switchable-nav .prev:hover {
  background-image: url(../images/btn-prev-hover.png);
}
.w-switchable-album .w-switchable-nav .next:hover {
  background-image: url(../images/btn-next-hover.png);
}

/*
@name: w-drop
@overview: 下拉菜单模块
@require: null
*/
.w-drop {
  position: relative;
  z-index: 11;
}
.w-drop-trigger {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 0 25px 0 10px;
}
.w-drop-trigger .w-arrow {
  position: absolute;
  top: 50%;
  margin-top: -2px;
  right: 10px;
  border-color: #F8F8F8;
  border-top-color: #666;
}
.w-drop-trigger:hover .w-arrow {
  border-top-color: #D24400;
}
.w-drop-list {
  display: none;
  position: absolute;
  z-index: 1;
  /* top: 27px; */
  left: 0;
  width: 156px;
  border: 1px solid #CCC;
  background: #FFF;
}
.w-drop-list-item {
  line-height: 18px;
  margin: 8px 10px;
}
.w-drop-list-item a {
  color: #444;
  /* display: block; */
  /* padding: 5px 10px; */
}
.w-drop-list-item a:hover {
  color: #D24400;
  /* color: #000; */
  /* background: #ADADAD; */
  /* text-decoration: none; */
}
.w-drop:hover .w-drop-list,
.w-drop-hover .w-drop-list {
  display: block;
}

/*
@name: w-pager
@overview: 普通分页模板
@require: null
*/
.w-pager {
  margin: 25px 0 25px -10px;
  text-align: center;
}
.w-pager a, .w-pager span {
  display: inline-block;
  margin-left: 10px;
  padding: 0 8px;
  height: 21px;
  line-height: 21px;
  border: 1px solid #ccc;
  color: #333;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  /* font-family: tahoma; */
  background: #fff;
}
.w-pager .current {
  color: #E00000;
  font-weight: bold;
  border: none;
  /* background: #E00000; */
}
.w-pager a:hover, .w-pager a:active {
  /* color: #000; */
  color: #E00000;
  border-color: #ccc;
  text-decoration: none;
  /* background: #f5f5f5; */
}
.w-pager .dot {
  padding: 0;
  border: none;
}
.w-pager .disabled {
  display: none;
  color: #999;
  cursor: default;
}
.w-pager .first i, .w-pager .last i {
  margin-right: 1px;
  font-size: .85em;
  vertical-align: top;
}
.w-pager .last i {
  margin: 0 0 0 1px;
}

/*
@name: w-position
@overview: 当前位置
@require: null
*/
.w-position {
  margin-bottom: 5px;
  line-height: 1;
  color: #444;
}
.w-position a {
  color: #003F80;
}
.w-position .divide {
  position: relative;
  top: -2px;
  font-size: .8em;
  margin: 0 .6em;
}

/*
@name: w-button
@overview: 通用按钮
@require: null
*/
.w-button {
  margin: 10px 0;
  height: 36px;
  line-height: 36px;
  overflow: hidden;
  border: 1px solid #ddd;
  /* font-size: 14px; */
  background: url(../images/bg-w-button.png) repeat-x;
}
.w-button .txt {
  display: block;
  height: 100%;
  color: #D24400;
  padding-left: 38px;
  background: url(../images/icon-w-button.png) no-repeat 18px 50%;
}
.w-button .link {
  margin-left: .5em;
  color: #D24400;
}
.w-button strong {
  padding-left: 18px;
  font-size: 16px;
  font-weight: bold;
  color: #000;
}

/*
@name: w-btn
@overview: 通用按钮
@require: null
*/
.w-btn {
  margin: 10px 0;
  height: 30px;
  line-height: 30px;
  overflow: hidden;
  border: 1px solid #E0A889;
  font-size: 14px;
  font-weight: bold;
  color: #CC3A00;
  text-align: center;
  /*background: #FDEBC0 url(../images/bg-w-btn.png) repeat-x;*/
}
.w-btn a {
  display: block;
  height: 100%;
  color: #CC3A00;
  text-decoration: none;
  background: #FDEBC0 url(../images/bg-w-btn.png) repeat-x;
}

/*
@name: w-sbtn
@overview: 通用按钮
@require: null
*/
.w-sbtn:link,
.w-sbtn {
  position: relative;
  display: inline-block;
  padding: 0 20px;
  height: 20px;
  line-height: 20px;
  overflow: hidden;
  text-align: center;
  color: #fff;
  background: url(../images/bg-sbtn.png) no-repeat;
  text-decoration: none;
}
.w-sbtn i {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 20px;
  height: 100%;
  background: url(../images/bg-sbtn.png) no-repeat 100% 0;
}
.w-sbtn:hover i {
  /*background-image: url(../images/bg-sbtn-on.png);*/
  _color: #fff;
  _text-decoration: none;
}

/*
@name: w-showbox
@overview: 通用展示模块
@require: null
*/
.w-showbox {
  word-wrap: break-word;
}
.w-showbox-tab {
  height: 25px;
  line-height: 25px;
  border-bottom: 1px solid #BB0000;
}
.w-showbox-tab .nav {
  float: left;
  display: inline;
  margin-right: -1px;
  border: 1px solid #DDD;
  border-bottom: none;
  font-size: 14px;
  color: #444;
  cursor: pointer;
  background: #F1F1F1 url(../images/bg-showbox-tab-nav.png) repeat-x;
}
.w-showbox-tab .nav a {
  *float: left;
  display: block;
  padding: 0 15px;
  height: 24px;
  line-height: 24px;
  color: #444;
  font-weight: bold;
}
.w-showbox-tab .nav:hover,
.w-showbox-tab .nav.on {
  height: 25px;
  line-height: 25px;
  border: none;
  border-right: 2px solid #fff;
  color: #fff;
  font-weight: bold;
  background: #C70000 url(../images/bg-showbox-tab-nav-on.png) repeat-x;
  cursor: default;
  text-decoration: none;
}
.w-showbox-tab .nav.on {
  border-right-color: #fff; /* fuck! */
}
.w-showbox-tab .nav:hover a,
.w-showbox-tab .nav.on a {
  color: #fff;
  text-decoration: none;
  /* cursor: default; */
}
.w-showbox-tab .nav.on a {
  cursor: default;
}
.w-showbox-tab .link {
  float: left;
  display: inline;
  margin-left: 30px;
  color: #444;
}
.w-showbox-tab .link a {
  color: #444;
}
.w-showbox-sort {
  padding: 0 10px;
  height: 31px;
  line-height: 31px;
  overflow: hidden;
  border: 1px solid #DDD;
  border-top-color: #fff;
  margin-bottom: 1px;
  color: #444;
  background: #F0F0F0;
  *zoom: 1;
}
.w-showbox-sort .action {
  float: left;
  display: inline;
  padding-left: 20px;
  background: url(../images/icon-arrow-ld.png) no-repeat 0 50%;
}
.w-showbox-sort .action a {
  color: #444;
  text-decoration: underline;
}
.w-showbox-sort .action a:hover {
  color: #D24400;
}
.w-showbox-sort .action .divide {
  margin: 0 3px;
}
.w-showbox-sort .sortby {
  float: right;
  text-align: right;
}
.w-showbox-sort .sortby label {
  margin-left: 18px;
  _display: inline-block;
}
.w-showbox-sort .sortby select {
  *vertical-align: middle;
  _margin-top: 5px;
  _vertical-align: top;
}
.w-showbox-sort .view {
  margin-left: 4px;
  display: inline-block;
  width: 17px;
  height: 17px;
  overflow: hidden;
  font-size: 0;
  text-indent: -9999px;
  background: url(../images/icon-view-list.png) no-repeat;
  vertical-align: middle;
}
.w-showbox-sort .view-gallery {
  background-image: url(../images/icon-view-gallery.png);
}
.w-showbox-sort span.view-list {
  background-image: url(../images/icon-view-list-on.png);
}
.w-showbox-sort span.view-gallery {
  background-image: url(../images/icon-view-gallery-on.png);
}
.w-show {
  padding: 20px 0;
  border-bottom: 1px dotted #DDD;
  color: #666;
  background: #fff;
  *zoom: 1;
}
.w-show:after {
  content: '';
  display: block;
  clear: both;
  font-size: 0;
  height: 0;
  visibility: hidden;
}
.w-show-hd {
  padding: 0;
  height: 31px;
  line-height: 31px;
  overflow: hidden;
  border: none;
  color: #444;
  font-weight: bold;
  background: #F0F0F0;
}
.w-show-ckbox,
.w-show-pic {
  float: left;
  display: inline;
  margin-right: 10px;
  *margin-right: 6px;
}
.w-show-pic {
  width: 100px;
  height: 100px;
  overflow: hidden;
  text-align: center;
  border: 1px solid transparent;
  _border-color: #fff;
}
.w-show-pic:hover {
  border-color: #EBEBEB;
}
.w-show-ckbox {
  margin-left: 10px;
  *margin-left: 6px;
}
.w-show-ckbox input {
  /* vertical-align: -3px; */
  vertical-align: -2px;
  *vertical-align: -5px;
}
.w-show-hd .w-show-ckbox input {
  *vertical-align: -10px;
}
.w-show-pros,
.w-show-supplier,
.w-show-date,
.w-show-area {
  float: right;
  /* margin-left: 20px; */
  padding: 0 10px;
  text-align: center;
  width: 100px;
  min-height: 1em;
  _height: 1em;
}
.w-show-pros,
.w-show-supplier {
  text-align: left;
  width: 185px;
}
.w-show-pros .p,
.w-show-supplier p {
  color: #444;
  line-height: 1.5;
}
.w-show-pros p a,
.w-show-supplier p a {
  color: #16447E;
}
.w-show-supplier .member-type {
  margin: 5px 0 5px;
  color: #666;
}
.w-show-supplier .member-type img {
  margin-right: 3px;
  vertical-align: middle;
}
.w-show-pros .contact,
.w-show-supplier .contact,
.w-show-cnt .contact {
  position: relative;
  display: inline-block;
  margin-top: 7px;
  padding: 0 20px;
  height: 20px;
  line-height: 20px;
  overflow: hidden;
  /* text-align: center; */
  color: #fff;
  /* background: #DD4800 url(../images/btn-contact.png) no-repeat; */
  background: url(../images/btn-contact.png) no-repeat;
  text-decoration: none;
}
.w-show-pros .contact span,
.w-show-supplier .contact span,
.w-show-cnt .contact span {
  display: inline-block;
  height: 100%;
  padding-left: 25px;
  background: url(../images/icon-contact.png) no-repeat 0 50%;
}
.w-show-pros .contact i,
.w-show-supplier .contact i,
.w-show-cnt .contact i {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 20px;
  height: 100%;
  background: url(../images/btn-contact.png) no-repeat 100% 0;
}
.w-show-pros .contact:hover,
.w-show-supplier .contact:hover,
.w-show-cnt .contact:hover,
.w-show-pros .contact:hover i,
.w-show-supplier .contact:hover i,
.w-show-cnt .contact:hover i {
  background-image: url(../images/btn-contact-on.png);
  _color: #fff;
  _text-decoration: none;
}
.w-show-cnt {
  overflow: hidden;
  *zoom: 1;
  /* background: #eee; */
}
.w-show-hd .w-show-cnt {
  padding: 0 10px;
}
.w-show-cnt .title {
  line-height: 1;
  font-size: 14px;
  font-weight: bold;
  color: #16447E;
}
.w-show-cnt .title a {
  color: #16447E;
}
.w-show-cnt .title span {
  font-size: 12px;
  font-weight: normal;
  color: #999;
}
.w-show-cnt .member-type {
  margin-top: 10px;
  color: #666;
}
.w-show-cnt .member-type img {
  vertical-align: middle;
}
.w-show-cnt .member-type span {
  margin: 0 8px;
  vertical-align: middle;
}
.w-show-cnt .update {
  margin: 5px 0;
}
.w-show-cnt .summary {
  margin-top: 5px;
  line-height: 1.8;
  color: #444;
}
.w-show-cnt .action .addto {
  margin: 10px 15px 0 0;
  display: inline-block;
  /* height: 16px; */
  line-height: 16px;
  padding-left: 21px;
  color: #222;
  background: url(../images/icon-plus.png) no-repeat 3px 50%;
  text-decoration: underline;
}
.w-show-cnt .action .addto-basket {
  /* padding-left: 21px; */
  background-image: url(../images/icon-basket.png);
  background-position: 0 50%;
}
.w-show-cnt .action .addto:hover {
  color: #D24400;
}
.w-show-cnt .action .added {
  text-decoration: underline;
  color: #D24400;
  background-position: 0 50%;
}
.w-show-cnt .action .added.addto-myproducts {
  background-image: url(../images/icon-added-products.png);
}
.w-show-cnt .action .added.addto-mysuppliers {
  background-image: url(../images/icon-added-suppliers.png);
}
.w-show-date .date {
  display: inline-block;
  margin-top: 5px;
}
.w-show-area .country a {
  color: #666;
}
.w-show-area .flag {
  margin-top: 5px;
}

/*
@name: w-showbox-supplier
@overview: 通用展示模块
@require: .w-showbox
*/
.w-showbox-supplier .w-show-hover,
.w-showbox-supplier .w-show:hover {
  background: #FCFCFC;
}
.w-showbox-supplier .w-show-hd,
.w-showbox-supplier .w-show-hd:hover {
  padding: 0;
  /* font-weight: normal; */
  background: #F7F7F7;
}
.w-showbox-supplier .w-show-cnt {
  padding: 0 10px 0 0;
}
.w-showbox-supplier .w-show-cnt .title {
  line-height: 1.2;
}
.w-showbox-supplier .w-show-cnt .title a {
  margin-right: .8em;
}
.w-showbox-supplier .w-show-cnt .summary {
  margin-top: 6px;
  line-height: 1.7;
}
.w-showbox-supplier .w-show-area {
  width: 70px;
}

/*
@name: w-showbox-compare
@overview: 通用展示模块
@require: .w-showbox
*/
.w-showbox-compare .w-show-cnt {
  padding: 0 10px 0 0;
}
.w-showbox-compare .w-show-hd .w-show-cnt {
  padding: 0;
}
.w-showbox-compare .w-show-hd .w-show-cnt span,
.w-showbox-compare .w-show-hd .w-show-cnt a {
  padding: 0 10px 0 0;
}
.w-showbox-compare .w-show-cnt .title {
  line-height: 1.2;
}
.w-showbox-compare .w-show-hover,
.w-showbox-compare .w-show:hover {
  background: #FCFCFC;
}
.w-showbox-compare .w-show-area {
  padding: 0 6px;
  width: 58px;
  text-align: center;
}
.w-showbox-compare .w-show-hd .w-show-area {
  padding: 0;
  width: auto;
}
.w-showbox-compare .w-show-hd .w-show-area span,
.w-showbox-compare .w-show-hd .w-show-area a {
  padding: 0 6px;
  text-align: left;
  width: 54px;
}
.w-showbox-compare .w-show-as,
.w-showbox-compare .w-show-mp,
.w-showbox-compare .w-show-bt,
.w-showbox-compare .w-show-ts,
.w-showbox-compare .w-show-ye {
  float: right;
  padding: 0 10px 0 6px;
  width: 72px;
  min-height: 1em;
  _height: 1em;
  text-align: center;
  /* background: #ccc; */
}
.w-showbox-compare .w-show-hd .w-show-as,
.w-showbox-compare .w-show-hd .w-show-mp,
.w-showbox-compare .w-show-hd .w-show-bt,
.w-showbox-compare .w-show-hd .w-show-ts,
.w-showbox-compare .w-show-hd .w-show-ye {
  padding: 0;
  width: auto;
}
.w-showbox-compare .w-show-hd .w-show-as span,
.w-showbox-compare .w-show-hd .w-show-as a,
.w-showbox-compare .w-show-hd .w-show-mp span,
.w-showbox-compare .w-show-hd .w-show-mp a,
.w-showbox-compare .w-show-hd .w-show-bt span,
.w-showbox-compare .w-show-hd .w-show-bt a,
.w-showbox-compare .w-show-hd .w-show-ts span,
.w-showbox-compare .w-show-hd .w-show-ts a,
.w-showbox-compare .w-show-hd .w-show-ye span,
.w-showbox-compare .w-show-hd .w-show-ye a {
  padding: 0 10px 0 6px;
  width: 72px;
}
.w-showbox-compare .w-show-ye,
.w-showbox-compare .w-show-hd .w-show-ye span,
.w-showbox-compare .w-show-hd .w-show-ye a {
  width: 75px;
}
.w-showbox-compare .w-show-hd .w-show-ye {
  width: auto;
}
.w-showbox-compare .w-show-as,
.w-showbox-compare .w-show-hd .w-show-as span,
.w-showbox-compare .w-show-hd .w-show-as a {
  text-align: left;
  width: 90px;
}
.w-showbox-compare .w-show-hd .w-show-as {
  width: auto;
}
.w-showbox-compare .w-show-mp,
.w-showbox-compare .w-show-hd .w-show-mp span,
.w-showbox-compare .w-show-hd .w-show-mp a {
  text-align: left;
  width: 100px;
}
.w-showbox-compare .w-show-hd .w-show-mp {
  width: auto;
}
.w-showbox-compare .w-show-hd,
.w-showbox-compare .w-show-hd:hover {
  padding: 0;
  font-weight: normal;
  background: #F7F7F7;
}
.w-showbox-compare .w-show-hd .w-show-area span,
.w-showbox-compare .w-show-hd .w-show-area a,
.w-showbox-compare .w-show-hd .w-show-as span,
.w-showbox-compare .w-show-hd .w-show-as a,
.w-showbox-compare .w-show-hd .w-show-mp span,
.w-showbox-compare .w-show-hd .w-show-mp a,
.w-showbox-compare .w-show-hd .w-show-bt a,
.w-showbox-compare .w-show-hd .w-show-bt span,
.w-showbox-compare .w-show-hd .w-show-ts span,
.w-showbox-compare .w-show-hd .w-show-ts a,
.w-showbox-compare .w-show-hd .w-show-ye span,
.w-showbox-compare .w-show-hd .w-show-ye a,
.w-showbox-compare .w-show-hd .w-show-cnt span,
.w-showbox-compare .w-show-hd .w-show-cnt a {
  display: block;
  border-left: 1px solid #ddd;
  color: #444;
  background: url(../images/icon-arrow-down.png) no-repeat 95% 50%;
  outline: none;
}
.w-showbox-compare .w-show-hd span {
  background-image: none !important;
}
.w-showbox-compare .w-show-hd .w-show-area a.up,
.w-showbox-compare .w-show-hd .w-show-as a.up,
.w-showbox-compare .w-show-hd .w-show-mp a.up,
.w-showbox-compare .w-show-hd .w-show-bt a.up,
.w-showbox-compare .w-show-hd .w-show-ts a.up,
.w-showbox-compare .w-show-hd .w-show-ye a.up,
.w-showbox-compare .w-show-hd .w-show-cnt a.up {
  background-image: url(../images/icon-arrow-up.png);
}
.w-showbox-compare .w-show-hd .w-show-as span,
.w-showbox-compare .w-show-hd .w-show-as a,
.w-showbox-compare .w-show-hd .w-show-mp span,
.w-showbox-compare .w-show-hd .w-show-mp a {
  text-align: left;
  background-position: 88% 50%;
}
.w-showbox-compare .w-show-hd .w-show-ye span,
.w-showbox-compare .w-show-hd .w-show-ye a {
  /* word-wrap: break-word; */
  background-position: 97% 50%;
  text-align: left;
}
.w-showbox-compare .w-show-hd .w-show-bt span,
.w-showbox-compare .w-show-hd .w-show-bt a {
  background-position: 90% 50%;
  text-align: left;
}
.w-showbox-compare .w-show-hd .w-show-area span,
.w-showbox-compare .w-show-hd .w-show-area a {
  text-align: left;
}
.w-showbox-compare .w-show-hd .w-show-bt span,
.w-showbox-compare .w-show-hd .w-show-bt a,
.w-showbox-compare .w-show-hd .w-show-ye span,
.w-showbox-compare .w-show-hd .w-show-ye a {
  line-height: 1.2;
  height: 31px;
  /* background: #eee; */
}
.w-showbox-compare .w-show-hd .w-show-cnt span,
.w-showbox-compare .w-show-hd .w-show-cnt a {
  border: none;
  background-position: 8em 50%;
}

/*
@name: w-showbox-gallery
@overview: 通用展示模块
@require: .w-showbox
*/
.w-showbox-gallery .w-show-wrap {
  margin: 10px -30px 0 0;
}
.w-showbox-gallery .w-show {
  position: relative;
  float: left;
  margin: 20px 30px 0 0;
  padding: 0;
  width: 190px;
  height: 293px;
  border: none;
  /* border: 1px solid #fff; */
}
.w-showbox-gallery .w-show .w-show-inner {
  /*background: #444;*/
}
.w-showbox-gallery .w-show-img {
  display: table-cell;
  *display: block;
  /* margin: -1px -1px 10px; */
  width: 188px;
  height: 188px;
  overflow: hidden;
  border: 1px solid #ddd;
  text-align: center;
  vertical-align: middle;
  *zoom: 1;
  *position: relative;
  *font-size: 170px;
}
.w-showbox-gallery .w-show-img img {
  max-width: 188px;
  max-height: 188px;
  /*_width: 188px;*/
  /*_height: 188px*/
  vertical-align: middle;
}
.w-showbox-gallery .w-show-cnt {
  padding: 0;
  margin: 0 5px;
}
.w-showbox-gallery .w-show .w-show-ckbox {
  margin: 10px 0 0;
}
.w-showbox-gallery .w-show-cnt .title {
  margin: 10px 0 0 25px;
  height: 54px;
  line-height: 18px;
  overflow: hidden;
  font-weight: normal;
  font-size: 12px;
}
.w-showbox-gallery .w-show-cnt .contact {
  margin: 7px 10px;
}
.w-showbox-gallery .w-show-cnt .action {
  display: none;
}
.w-showbox-gallery .w-show-cnt .action .addto {
  display: block;
  margin: 0 0 8px 21px;
  color: #444;
}
.w-showbox-gallery .w-show-cnt .action .added {
  color: #D24400;
}
.w-showbox-gallery .w-show-cnt .action .addto:hover {
  color: #D24400;
}
.w-showbox-sort-normal,
.w-showbox-gallery .w-showbox-sort-ft {
  margin: 25px 0;
  padding: 20px 0 0;
  border: none;
  border-top: 1px dotted #CCC;
  background: none;
}
.w-showbox-sort-normal {
  margin-top: 0;
  border: none;
}
.w-showbox-sort-normal .w-show-ckbox,
.w-showbox-gallery .w-showbox-sort .w-show-ckbox {
  margin: 0 10px 0 0;
  *position: relative;
  *top: 6px;
}
.w-showbox-sort-normal .action,
.w-showbox-gallery .w-showbox-sort-ft .action {
  background-image: url(../images/icon-arrow-lu.png);
}

/* 放大效果 */
.w-showbox-gallery .w-show-hover,
.w-showbox-gallery .w-show:hover {
  *z-index: 1;
}
.w-showbox-gallery .w-show-hover .w-show-inner,
.w-showbox-gallery .w-show:hover .w-show-inner {
  position: absolute;
  z-index: 2;
  top: -52px;
  /*_top: -36px;*/
  left: -36px;
  padding: 20px;
  width: 220px;
  -webkit-box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: 2px 2px 4px 1px rgba(0,0,0,.13);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  transition: background-color .2s ease;
  -moz-transition: background-color .2s ease;
  -webkit-transition: background-color .2s ease;
  -o-transition: background-color .2s ease;
  border: 1px solid #DDD;
  background-color: #FFF;
}
.w-showbox-gallery .w-show-hover .w-show-img,
.w-showbox-gallery .w-show:hover .w-show-img {
  width: 220px;
  height: 220px;
  border: none;
}
.w-showbox-gallery .w-show-hover .w-show-img img,
.w-showbox-gallery .w-show:hover .w-show-img img {
  max-width: 220px;
  max-height: 220px;
  _width: 220px;
  _height: 220px
}
.w-showbox-gallery .w-show-hover .w-show-cnt .title,
.w-showbox-gallery .w-show:hover .w-show-cnt .title {
  height: auto;
  overflow-y: inherit;
}
.w-showbox-gallery .w-show-hover .w-show-cnt .contact,
.w-showbox-gallery .w-show:hover .w-show-cnt .contact,
.w-showbox-gallery .w-show-hover .w-show-cnt .contact i,
.w-showbox-gallery .w-show:hover .w-show-cnt .contact i {
  background-image: url(../images/btn-contact-on-gray.png);
  _color: #fff;
  _text-decoration: none;
}
.w-showbox-gallery .w-show-hover .w-show-cnt .action,
.w-showbox-gallery .w-show:hover .w-show-cnt .action {
  display: block;
}

/*
@name: w-rcmd
@overview: 搜索结果页推荐产品模块
@require: null
*/
.w-rcmd {
  margin: 20px 0;
}
.w-rcmd-title {
  padding-bottom: 5px;
  border-bottom: 2px #B00 solid;
  color: #000;
  font-size: 14px;
}
.w-rcmd-title .kw {
  font-weight: bold;
}
.w-rcmd-title .rcmd {
  color: #CC0033;
}
.w-rcmd-title .del {
  font-weight: normal;
  text-decoration: line-through;
}
.w-rcmd-title .rcmdlink {
  color: #16447E;
}
.w-rcmd-title .rcmdlink:hover {
  color: #D24400;
}

/*
@name: w-title
@overview: 通用标题
@require: null
*/
.w-title {
  line-height: 1;
  font-size: 24px;
  /*font-weight: bold;*/
  color: #bb0000;
}
.w-subtitle {
  margin: 10px 0;
  font-size: 15px;
  font-weight: bold;
  line-height: 1;
  color: #333;
}
.w-title-article {
  padding: 7px 10px;
  /* font-size: 16px; */
  font-weight: bold;
  line-height: 1.5;
  color: #333;
  background: #F0F0F0;
}
.w-subtitle-article {
  margin: 10px 0;
  font-weight: bold;
  line-height: 1.5;
  font-size: 13px;
  color: #333;
}

/*
@name: w-tipbox
@overview: 通用提示框
@require: null
*/
.w-tipbox {
  margin: 10px 0;
  padding: 5px 10px;
  border: 1px solid #EAC99E;
  /*line-height: 1.8;*/
  color: #444;
  background: #FFFBF2;
}
.w-tipbox p {
  margin: 5px 0;
}
.w-tipbox a {
  color: #16447E;
  text-decoration: underline;
}
.w-tipbox a:hover {
  color: #D24400;
}
.w-tipbox em {
  color: #BB0000;
}
.w-tipbox .tips-email {
  padding-left: 56px;
  background: url(../images/icon-tips-email.png) no-repeat;
}
.w-tipbox .xnote {
  padding-left: 32px;
}
.w-tipbox .xnote-x {
  margin-left: -32px;
}
.w-tipbox .tips-txt-main {
  color: #000;
}

/*
@name: w-minstep
@overview: 通用提示框
@require: null
*/
.w-minstep {
  margin: 15px 0;
}
.w-minstep-item {
  margin-bottom: 18px;
}
.w-minstep-num {
  float: left;
  display: inline;
  margin-right: 5px;
  padding: 0 8px 0 4px;
  height: 16px;
  line-height: 16px;
  overflow: hidden;
  font-weight: bold;
  /*font-size: 14px;*/
  color: #fff;
  background: #1977D1 url(../images/icon-minstep.png) no-repeat 100% 50%;
}
.w-minstep-txt {
  color: #333;
  overflow: hidden;
  zoom: 1;
}

/* Layout
----------------------------------------------------------------------------- */
/** 整体布局 **/
#topbar, #header, #content, #footer, .w-wrapper {
  width: 1000px;
  margin: 0 auto;
}

/* 宽度自适应 */
html.px1200 #topbar, html.px1200 #header, html.px1200 #content, html.px1200 .w-wrapper {
  /* width: auto; */
  /* min-width: 1160px; */
  /* max-width: 1200px; */
  /* _width: 1200px; */
  width: 1200px;
}
html.px1300 #topbar, html.px1300 #header, html.px1300 #content, html.px1300 .w-wrapper {
  width: auto;
  max-width: 1300px;
  min-width: 1160px;
  _width: 1200px;
}
/* html.px1200 body, */
html.px1300 body {
  padding-left: 10px;
  padding-right: 10px;
}
/* html.px1200 #topbar-wrapper, */
html.px1300 #topbar-wrapper,
  /* html.px1200 .search-ft, */
html.px1300 .search-ft {
  padding-left: 10px;
  padding-right: 10px;
  margin-left: -10px;
  margin-right: -10px;
}
/* html.px1200 #topbar-wrapper, */
html.px1300 #topbar-wrapper {
  padding-left: 20px;
  padding-right: 20px;
}

/** topbar **/
#topbar-wrapper {
  background: #F8F8F8;
  border-bottom: 1px solid #EBEBEB;
}
#topbar {
  height: 31px;
  line-height: 31px;
}
#topbar .nav-user {
  float: left;
  height: 100%;
  color: #666;
 
}
#topbar .nav-user a {
  color: #D24400;
  margin: 0 2px;
}
#topbar .nav-user a:hover {
  color: #D24400;
}

#topbar .nav-user  .home{
	background:url(../images/lightings/home.gif) 0 0 no-repeat;
	height:13px;
	padding-left:20px;
	margin-right:7px;
	color:#666;
	
}
#topbar .nav-user span{color:#ccc;margin-right:6px;}
	


#topbar .nav-site {
  float: right;
  margin-top: 4px;
  line-height: 26px;
  color: #666;
}
#topbar .nav-site .nav-item {
  float: left;
  display: inline;
  padding: 0 10px;
  background: url(../images/line-gray.png) no-repeat 100% 50%;
}
#topbar .nav-site .nav-item-last {
  padding-right: 0;
  background: none;
}
#topbar .nav-site .nav-item-link {
  /* border-left: 1px solid #ccc; */
}
#topbar .nav-site .nav-item-link.lang-cn {
  padding-left: 22px;
  background: url(../images/icon-lang-cn.png) 0 50% no-repeat;
}
#topbar .nav-site em {
  font-weight: bold;
}
#topbar .nav-site .w-drop {
  padding: 0;
}
#topbar .nav-site .w-drop-hover {
  _background: none;
}
#topbar .nav-site .w-drop:hover .w-drop-trigger,
#topbar .nav-site .w-drop-hover .w-drop-trigger {
  /* display: inline-block; */
  margin: -1px -1px 0 -1px;
  *left: -1px;
  border: 1px solid #ccc;
  border-bottom: none;
  background: #fff;
  text-decoration: none;
}
#topbar .nav-site .w-drop-list {
  top: 25px;
  left: -1px;
}
#topbar .nav-site .w-drop-myofw .w-drop-list {
  width: 170px;
}

/** header **/
#header .logo {
  float: left;
  display: inline;
  margin-left: 50px;
  *margin-top: 25px;
}
/*#header .logo a {
  display: block;
  width: 160px;
  height: 66px;
  overflow: hidden;
  text-indent: -9999px;
  background: url(../images/logo.png) no-repeat;
}*/
#header .logo a {
  display: block;
  width: 160px;
  height: 66px;
  overflow: hidden;
  /*background: url(../images/logo.png) no-repeat;*/
  text-align: right;
  text-decoration: none;
}
#header .logo a:hover {
  text-decoration: none;
}
#header .logo img {
  display: block;
}
#header .logo small {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: normal;
  color: #666;
}
#header .post {
  float: right;
  display: inline;
  margin-right: 50px;
  margin-top: 22px;
  *margin-top: 47px;
  width: 177px;
  background: #FBFBFB url(../images/bg-post.png) repeat-x;
}
#header .post a {
  display: block;
  height: 36px;
  line-height: 36px;
  overflow: hidden;
  padding-left: 36px;
  border: 1px solid #DDD;
  font-size: 14px;
  color: #000;
  background: url(../images/icon-post.png) no-repeat 12px 50%;
}
#header .post a:hover {
  color: #bb0000;
  border-color: #ccc;
  text-decoration: none;
}
#header .search {
  margin: 25px 237px 35px 250px;
  _margin: 25px 234px 35px 247px;/* ie6 3px bug */
}
#header .search-nav {
  padding-bottom: 8px;
  height: 14px;
  line-height: 14px;
  overflow: hidden;
  *zoom: 1;
  *position: relative;
}
#header .search-nav a {
  float: left;
  display: inline;
  position: relative;
  left: -11px;
  padding: 0 10px;
  border-left: 1px solid #CCC;
  text-decoration: none;
  outline: none;
}
#header .search-nav .w-arrow {
  display: none;
  position: absolute;
  bottom: -8px;
  *bottom: -9px;
  left: 50%;
  margin-left: -2px;
}
#header .search-nav a:hover {
  color: #BB0000;
}
#header .search-nav a.selected {
  /* font-weight: bold; */
  /* color: #D24400; */
  color: #BB0000;
  *top: -1px;
}
/* #header .search-nav a:hover .w-arrow, */
#header .search-nav a.selected .w-arrow {
  display: block;
  border-bottom-color: #BB0000;
}
#header .search-panel {
  height: 32px;
  line-height: 32px;
  border: 2px solid #BB0000;
  background: #fff;
  overflow: hidden;
  *zoom: 1;
  *position: relative;
  overflow: visible; /* 解决在 IE7 及更早浏览器下随着 value 增多两边留白也随着增加的问题 */
}
#header .search-panel .kw {
  float: left;
  display: inline;
  padding: 6px 10px 6px;
  width: 395px;
  height: 20px;
  line-height: 20px;
  border: 0;
  outline: none;
  *position: absolute;
  left: 0;
  color: #333;
}
#header .search-panel .noautocomplete {
  background: none;
}
#header .search-panel .submit {
  float: right;
  border: none;
  height: 100%;
  font-size: 16px;
  color: #fff;
  width: 94px;
  text-align: left;
  text-indent: 30px;
  background: #BB0000 url(../images/icon-search.png) no-repeat 12px 50%;
  cursor: pointer;
}
/* 其它信息 */
#header .info {
  position: relative;
  margin: 25px 0 20px 250px;
  height: 58px;
}
#header .info-item {
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: right;
  color: #444;
}
#header .info-signin {
  bottom: 25px;
}
#header .info a {
  color: #16447E;
  text-decoration: underline;
}
#header .info a:hover {
  color: #D24400;
}

/* nav */
#header .nav {
  clear: both;
  z-index: 2;
  position: relative;
  /* margin-bottom: 32px; */
  margin-bottom:15px;
  border-bottom: 3px solid #B00;
}
#header .nav-item {
  float: left;
  /* margin-right: 15px; */
  /* margin-right: 10px; */
  /* padding: 0 5px; */
  /*padding-right: 10px;*/
  padding-right: 30px;
}
#header .nav-item-link {
  position: relative;
  /* left: -10px; */
  display: block;
  float: left;
  margin-bottom: -3px;
  padding: 0 15px;
  height: 32px;
  line-height: 30px;
  font-size: 16px;
  font-weight: bold;
  color: #444;
}
#header .nav-item:hover .nav-item-link,
#header .nav-item-hover .nav-item-link,
#header .nav-item-on .nav-item-link,
#header .nav-item-link:hover {
  color: #fff;
  background: #BB0000 url(../images/bg-nav.png) repeat-x;
  text-decoration: none;
}





/*#header .nav-item-on .nav-item-link{color:#bb0000;}*/


#header .nav-item-link:hover .w-arrow {
  border-top-color: transparent;
  border-bottom-color: #fff;
  display:none;
}
#header .w-drop-trigger {
  padding: 0 25px 0 10px;
}
#header .w-drop-trigger .w-arrow {
  border-color: transparent;
  _border-color: #fff;
  border-top-color: #000;
  display:none;
}
#header .nav-item-on .w-drop-trigger .w-arrow {
  _border-color: #D00000;
  border-top-color: #fff;
}
#header .w-drop-trigger:hover .w-arrow,
#header .nav .w-drop-hover .w-arrow,
#header .w-drop:hover .w-arrow {
  margin-top: -6px;
  border-color: transparent;
  _border-color: #D00000;
  border-bottom-color: #fff;
}
#header .w-drop-list {
  z-index: 11;
  top: 32px;
  width: 250px;
  border: 1px solid #D6D6D6;
}
#header .w-drop-list-item {
  margin: 0;
}
#header .w-drop-list-item a {
  display: block;
  padding: 6px 10px;
  /* height: 30px; */
  /* line-height: 30px; */
  /* overflow: hidden; */
  color: #444;
}
#header .w-drop-list-item a:hover {
  color: #fff;
  background: #D00000;
  text-decoration: none;
}
#header .nav-item .subnav {
  position: absolute;
   left: 0;
/*  left: 190px;
  left: 195px;*/
  bottom: -35px;
  _bottom: -36px;
  /* width: 100%; */
  /* _width: 1000px;; */
  padding: 0 5px;
  width: 800px;
  height: 32px;
  line-height: 32px;
  overflow: hidden;
  *zoom: 1;
  background: #fff;
  display:none !important;
}
#header .nav-item .subnav-more {
  left: -99999px;
  bottom: -60px;
  _bottom: -61px;
}
#header .nav-item:hover .subnav,
#header .nav-item-hover .subnav,
#header .nav-item-on .subnav {
  display: block;
}
#header .nav-item .subnav-item {
  position: relative;
  left: -9px;
  float: left;
  padding: 0 8px 0 9px;
  _padding-right: 5px;
  color: #333;
  background: url(../images/line-gray.png) no-repeat 0 50%;
}
#header .nav-item .subnav-item a {
  color: #333;
}
#header .nav-item .subnav-item a.current {
  color: #BB0000;
}

/** 主内容 **/
#content {
  /* padding-top: 20px; */
  margin-bottom: 33px;
  /* background: #eee; */
  /* *margin-top: -10px; */
}
.w-cnt-item-m .headline-item .title {
  font-size: 14px;
  font-weight: bold;
  color: #222;
  line-height: 1.2;
}
.w-cnt-item-m .headline-item .title a {
  color: #222;
}
.w-cnt-item-m .headline-item .date {
  color: #999;
  line-height: 1.8;
}
.w-cnt-item-m .headline-item .summary {
  color: #333;
  line-height: 1.5;
}
.w-cnt-item-m .headline-item .pic {
  float: right;
  width: 100px;
}
.w-cnt-item-m .headline-item .txt {
  margin-right: 110px;
}
.w-cnt-item-m .headline-lt,
.w-cnt-item-m .headline-rt {
  float: left;
  width: 320px;
  overflow: hidden;
}
.w-cnt-item-m .headline-rt {
  float: right;
}
.w-cnt-item-m .headline .hr {
  border-color: #ddd;
  margin-top: 11px;
  margin-bottom: 11px;
}
.w-cnt-item-m .headline-item-a .pic {
  float: none;
  display: block;
  width: auto;
}
.w-cnt-item-m .headline-item-a .title {
  margin: 5px 0;
  font-size: 20px;
  /* color: #000; */
}
.w-cnt-item-m .pros-box {
  margin: 20px 0 18px;
  border: 1px solid #ddd;
  background: #FCFCFC;
}
.w-cnt-item-m .pros-box-hd {
  padding: 0 10px;
  height: 31px;
  line-height: 31px;
  font-size: 14px;
  background: #F6F6F6;
}
.w-cnt-item-m .pros-box-hd .title {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding-left: 32px;
  font-weight: bold;
  color: #000;
  background: url(../images/icon-search-pros.png) no-repeat 0 50%;
}
.w-cnt-item-m .pros-box-hd .title a {
  color: #000;
}
.w-cnt-item-m .pros-box-hd .links {
  display: inline;
  color: #444;
}
.w-cnt-item-m .pros-box-hd .links a {
  margin-left: 5px;
  color: #444;
}
.w-cnt-item-m .pros-box-bd {
  padding: 5px 10px 0;
  *zoom: 1;
}
.w-cnt-item-m .pros-box-bd .list {
  margin-right: -8px;
}
.w-cnt-item-m .pros-box-bd .list-item {
  float: left;
  display: inline;
  margin: 10px 8px 0 0;
  width: 156px;
  height: 1em;
  line-height: 1;
  overflow: hidden;
}
.w-cnt-item-m .pros-box-bd .list-item a {
  display: block;
  margin-right: 8px;
  color: #444;
}
.w-cnt-item-m .pros-box-ft {
  margin-top: 10px;
  padding: 10px;
}
.w-cnt-item-m .pros-box-ft .hot-kws {
  float: left;
  margin-right: 10px;
  height: 21px;
  line-height: 21px;
}
.w-cnt-item-m .pros-box-ft .hot-kws .hot {
  float: left;
  font-style: italic;
  color: #BB0000;
  font-size: 14px;
}
.w-cnt-item-m .pros-box-ft .hot-kws em a {
  color: #BB0000;
}
.w-cnt-item-m .pros-box-ft .hot-kws .scroller {
  float: left;
  width: 430px;
  height: 100%;
  overflow: hidden;
}
.w-cnt-item-m .pros-box-ft .hot-kws .scroller a {
  margin: 0 6px;
  color: #222;
  text-decoration: underline;
}
.w-cnt-item-m .pros-box-ft .hot-kws .scroller a:hover {
  color: #D24400;
}
.w-cnt-item-m .pros-box-ft .search {
  float: right;
  display: inline;
  _width: 166px;
}
.w-cnt-item-m .pros-box-ft .search input {
  float: left;
  width: 123px;
  height: 19px;
  line-height: 19px;
  border: 1px solid #BDBDBD;
  text-indent: 5px;
  color: #333;
  background: #fff;
}
.w-cnt-item-m .pros-box-ft .search button {
  float: left;
  margin-left: 5px;
  width: 36px;
  height: 21px;
  overflow: hidden;
  border: none;
  text-indent: -9999px;
  background: url(../images/icon-search-pros-btn.png) no-repeat;
}
.w-cnt-item-m .hy-list {
  margin-right: -26px;
  font-size: 0;
  word-spacing: -3px\0; /* for opera */
  letter-spacing: -4px; /* win safari */
}
.w-cnt-item-m .hy-item {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: top;
  /*margin: 10px 26px 0 0;*/
  /*margin: 10px 26px 30px 0;*/
  margin: 10px 26px 20px 0;
  width: 206px;
  overflow: hidden;
  font-size: 12px;
  word-spacing: normal;
  letter-spacing: normal;
}
.w-cnt-item-m .hy-item .title {
  margin-bottom: 10px;
  font-size: 24px;
  color: #BB0000;
  line-height: 1;
}
.w-cnt-item-m .hy-item .title a {
  color: #BB0000;
}
.w-cnt-item-m .hy-item img {
  display: block;
}
.w-cnt-item-m .hy-item .subtitle {
  margin: 8px 0 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
  color: #222;
}
.w-cnt-item-m .hy-item .subtitle a {
  color: #222;
}
.w-cnt-item-m .hy-item .w-list {
  /* margin-top: 10px; */
}
.w-cnt-item-m .hy-item .w-list-item-dot,
.w-cnt-item-m .hy-item .w-list-item-video {
  margin: 0 0 15px;
  line-height: 1.22;
  padding-left: 13px;
  font-size: 14px;
  color: #333;
  background: url(../images/icon-dot.png) no-repeat 0 8px;
}
.w-cnt-item-m .hy-item .w-list-item a {
  color: #333;
}
.w-cnt-item-m .hy-item .w-list-item a:hover {
  color: #000;
}

/** 边栏 **/
.w-cnt-item-r .ad-w300 {
  text-align: center;
}
.w-cnt-item-r .newsletter {
  margin: 20px 0;
  padding: 5px 10px 1px;
  background: #f0f0f0;
}
.w-cnt-item-r .newsletter .title {
  font-size: 16px;
  color: #222;
  font-weight: bold;
}
.w-cnt-item-r .newsletter .item {
  margin: 5px 0 10px;
}
.w-cnt-item-r .newsletter .item .kw {
  padding: 0 5px;
  width: 180px;
  height: 23px;
  line-height: 23px;
  border: 1px solid #DDD;
  color: #666;
  background: #fff;
}
.w-cnt-item-r .newsletter .item .kw:focus {
  color: #444;
}
.w-cnt-item-r .newsletter .item button {
  margin-left: 8px;
  width: 80px;
  height: 25px;
  line-height: 25px;
  border: none;
  font-size: 14px;
  color: #fff;
  text-align: center;
  border-radius: 3px;
  background: #D24400;
  cursor: pointer;
}
.w-cnt-item-r .newsletter .item label {
  display: inline-block;
  margin-right: 25px;
  color: #999;
}
.w-cnt-item-r .newsletter .item .ckb {
  vertical-align: -2px;
  margin-right: .5em;
}
.w-cnt-item-r .w-tab-box-fb {
  position: relative;
  padding-bottom: 25px;
  /* border: 5px solid #F8F8F8; */
  *zoom: 1;
}
.w-cnt-item-r .w-tab-box-fb .w-tab-bd {
  padding: 5px 10px;
  height: 130px;
  overflow: hidden;
}
.w-cnt-item-r .w-tab-box-fb .w-tab-bd .title {
  margin: 5px 0 5px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #000;
  word-spacing: -2px;
  letter-spacing: -.5px;
}
.w-cnt-item-r .w-tab-box-fb .w-tab-bd .title a {
  color: #000;
}
.w-cnt-item-r .w-tab-box-fb .w-tab-bd .txt {
  margin-top: 5px;
  color: #666;
}
.w-cnt-item-r .w-tab-box-fb .w-tab-bd .txt a {
  color: #666;
  text-decoration: underline;
}
.w-cnt-item-r .w-tab-box-fb .w-tab-bd .txt a:hover {
  color: #D24400;
}
.w-cnt-item-r .w-tab-box-fb .w-tab-bd .txt strong,
.w-cnt-item-r .w-tab-box-fb .w-tab-bd .txt strong a {
  color: #bb0000;
  text-decoration: none;
  font-weight: normal;
}
.w-cnt-item-r .w-tab-box-fb .w-tab-bd .txt strong a:hover {
  text-decoration: underline;
}
.w-cnt-item-r .w-tab-box-fb .w-tab-bd li {
  margin: 0 2px;
  padding-left: 27px;
  color: #000;
  line-height: 26px;
  background: url(../images/icon-spe.png) no-repeat 0 5px;
}
.w-cnt-item-r .w-tab-box-fb .w-tab-bd li.item-spe {
  background-image: url(../images/icon-spe.png);
}
.w-cnt-item-r .w-tab-box-fb .w-tab-bd li.item-fsq {
  background-image: url(../images/icon-fsq.png);
}
.w-cnt-item-r .w-tab-box-fb .w-tab-bd li.item-sit {
  background-image: url(../images/icon-sit.png);
}
.w-cnt-item-r .w-tab-box-fb .w-tab-bd li.item-cnq {
  background-image: url(../images/icon-cnq.png);
}
.w-cnt-item-r .w-tab-box-fb .w-tab-bd li.item-ppr {
  background-image: url(../images/icon-ppr.png);
}
.w-cnt-item-r .w-tab-box-fb .w-tab-bd li a {
  color: #000;
}
.w-cnt-item-r .w-tab-box-fb .w-tab-ft {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 25px;
  line-height: 25px;
  padding: 0 10px 0 35px;
  color: #000;
  background: #fff url(../images/icon-user.png) no-repeat 12px 50%;
}
.w-cnt-item-r .w-tab-box-fb .w-tab-ft a {
  margin: 0 3px;
  color: #000;
  text-decoration: underline;
}
.w-cnt-item-r .w-tab-box-fb .w-tab-ft a:hover {
  color: #D24400;
}
.w-cnt-item-r .w-tab-box-fb .w-tab-ft .divide {
  color: #ccc;
}
.w-cnt-item-r .w-piclist-pros {
  margin: 5px -10px 0 10px;
}
.w-cnt-item-r .w-piclist-pros .w-piclist-item {
  margin-right: 10px;
  width: 131px;
  border: 2px solid #fff;
}
.w-cnt-item-r .w-piclist-pros .w-piclist-item .img {
  display: block;
  margin: 0 auto;
  width: 100px;
  height: 100px;
  line-height: 100px;
  overflow: hidden;
  *font-size: 88px;
  /*background: #f0f0f0;*/
}
.w-cnt-item-r .w-piclist-pros .w-piclist-item .img:after {
  content: '';
  vertical-align: middle;
}
.w-cnt-item-r .w-piclist-pros .w-piclist-item .img img {
  vertical-align: middle;
}
.w-cnt-item-r .w-piclist-pros .w-piclist-item .title {
  margin: 0;
  height: 26px;
  line-height: 26px;
}
.w-cnt-item-r .w-piclist-pros .w-piclist-item:hover,
.w-cnt-item-r .w-piclist-pros .w-piclist-item-hover {
  border-color: #eee;
}
.w-cnt-item-r .w-piclist-pros .w-piclist-item:hover a,
.w-cnt-item-r .w-piclist-pros .w-piclist-item-hover a {
  text-decoration: underline;
}
.w-cnt-item-r .w-box-np .w-article {
  margin: 10px 0 20px;
}
.w-cnt-item-r .w-box-np .w-article-img {
  margin-right: 10px;
  _margin-right: 7px;
}
.w-cnt-item-r .w-box-np .w-article-txt {
  margin-left: 0;
  /* height: 80px; */
  /* overflow: hidden; */
}
.w-cnt-item-r .w-box-events .w-article {
  margin-top: -1px;
  padding-top: 10px;
  border-top: 1px dotted #DDD;
}

/** footer **/
#footer-wrapper {
  position: relative;
  clear: both;
  /* border-top: 1px solid #ebebeb; */
  background: #f6f6f6;
}
#footer {
  color: #666;
  padding-bottom: 30px;
}
#footer-wrapper .share {
  padding: 20px 0;
  border-bottom: 1px solid #DDD;
  text-align: center;
  font-size: 0;
}
#footer-wrapper .share a {
  display: inline-block;
  margin: 0 5px;
  width: 24px;
  height: 24px;
  overflow: hidden;
  /* text-indent: -9999px; */
  background: url(../images/icon-share.png) no-repeat;
}
#footer-wrapper .share a.favorites {
  background-position: 0 0;
}
#footer-wrapper .share a.twitter {
  background-position: 0 -25px;
}
#footer-wrapper .share a.facebook {
  background-position: 0 -50px;
}
#footer-wrapper .share a.delicious {
  background-position: 0 -75px;
}
#footer-wrapper .share a.google {
  background-position: 0 -100px;
}
#footer-wrapper .share a.reddit {
  background-position: 0 -125px;
}
#footer-wrapper .share a.live {
  background-position: 0 -150px;
}
#footer-wrapper .share a.email {
  background-position: 0 -175px;
}
#footer-wrapper .share a.linkedin {
  background-position: 0 -200px;
}
#footer-wrapper .share a.stumbleupon {
  background-position: 0 -225px;
}
#footer-wrapper .share a.pinterest {
  background-position: 0 -250px;
}
#footer-wrapper .share a:hover {
  border: none;
  background-image: url(../images/icon-share-hover.png);
}
#footer-wrapper .connect {
  padding: 12px 0;
  height: 26px;
  line-height: 26px;
  font-size: 14px;
  color: #333;
  text-align: left;
}
#footer-wrapper .connect .inner {
  width: 1000px;
  margin: 0 auto;
}
#footer-wrapper .connect-links {
  float: left;
  width: 500px;
  /*background: #ccc;*/
}
#footer-wrapper .connect-email {
  float: right;
}
#footer-wrapper .connect-links a,
#footer-wrapper .connect-email a.email {
  margin: 0 0 0 6px;
  *margin: 0 0 0 8px;
  background-image: url(../images/icon-share-hover.png);
  vertical-align: middle;
}
#footer-wrapper .connect-links a:hover,
#footer-wrapper .connect-email:hover a.email,
#footer-wrapper .connect-email a.email:hover {
  opacity: .75;
  filter: alpha(opacity=75);
}
#footer-wrapper .connect-email a.link {
  margin: 0 0 0 -4px;
  padding-left: 10px;
  *padding-left: 12px;
  display: inline;
  color: #333;
  background: none !important;
  *width: auto;
  *height: auto;
}
#footer-wrapper .connect-email:hover a.link {
  text-decoration: underline;
}
#footer-wrapper .pro-alert {
  /*margin: 0 200px 0 300px;*/
  margin: 0 0 0 500px;
  text-align: right;
  /*background: #999;*/
}
#footer-wrapper .pro-alert input {
  margin-left: 4px;
  padding: 3px 5px;
  width: 123px;
  height: 18px;
  line-height: 18px;
  border: 1px #D7D7D7 solid;
  color: #666;
  font-size: 14px;
  vertical-align: middle;
}
#footer-wrapper .pro-alert input.focus,
#footer-wrapper .pro-alert input:focus {
  color: #444;
}
#footer-wrapper .pro-alert button {
  margin-left: 4px;
  *margin-left: 8px;
  width: 76px;
  height: 24px;
  line-height: 24px;
  border: none;
  font-size: 14px;
  color: #fff;
  text-align: center;
  background: #D24400;
  cursor: pointer;
  vertical-align: middle;
}
#footer .links {
  width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
  /* border-bottom: 1px solid #DDD; */
}
#footer .links-item {
  float: left;
  /*width: 20%;*/
  width: 15%;
}
#footer .links-item-wide {
  width: 20%;
}
#footer .links-item dt,
#footer .links-item dd {
  margin-bottom: 10px;
  padding-right: 15px;
  font-size: 14px;
  overflow: hidden;
  color: #333;
}
#footer .links-item dt a {
  color: #333;
}
#footer .links-item dd {
  margin-bottom: 0;
  line-height: 1.7;
  font-size: 12px;
  color: #666;
}
#footer .links-item dd a {
  color: #666;
}
#footer .links-item dd a.lang-cn {
  padding-left: 22px;
  background: url(../images/icon-lang-cn.png) 0 50% no-repeat;
}
#footer .hotpros {
  margin: 10px 0;
  text-align: center;
  color: #ccc;
}
#footer .hotpros em {
  color: #666;
}
#footer .hotpros a {
  margin: 0 .3em;
  color: #666;
}
#footer .copyright {
  padding-top: 15px;
  border-top: 1px solid #DDD;
  text-align: right;
}
#footer .copyright a {
  float: left;
  margin-right: 25px;
  color: #666;
}

/* footer-lite */
#footer.footer-lite {
  /*padding-top: 10px;*/
  border-top: 1px solid #ddd;
  text-align: center;
}
#footer.footer-lite .nav {
  margin: 15px 0;
  color: #16447E;
}
#footer.footer-lite .nav a {
  color: #16447E;
}
#footer.footer-lite .hotpros em {
  color: #222;
  font-weight: bold;
}
#footer.footer-lite .hotpros a {
  color: #222;
  font-weight: bold;
}
#footer.footer-lite .copyright {
  padding-top: 0;
  border-top: none;
  text-align: center;
}
#footer.footer-lite .copyright a {
  float: none;
  margin: 0 15px;
  color: #666;
}

/** 通用两列布局 html.normal **/
html.normal #header .nav {
  margin-bottom: 20px;
}
html.normal #content .w-cnt-item-m .w-cnt-item-cnt {
  margin: 0 0 0 220px;
}
html.normal #content .w-cnt-item-l {
  margin-left: -100%;
  _margin-left: -1000px;
}

/** 浮窗 **/
/*#float-box {
  position: fixed;
  z-index: 1111;
  top: 169px;
  right: 30px;
  _position: absolute;
  _top: expression(documentElement.scrollTop + 189);
}*/

/** Twitter **/
#tweeter_timeline {
  position: relative;
}
#tweeter_timeline .header {
  padding: 0 10px;
  color: #333;
  font-size: 12px;
  height: 27px;
  line-height: 27px;
  background: #ECEBEB url(../images/bg-twitter-header.png) repeat-x 0 -50px;
}
#tweeter_timeline .header a {
  padding-right: 15px;
  color: #333;
  background: url(../images/icon-twitter-header.png) no-repeat right center;
}
#tweeter_timeline .twitter_timeline {
  margin: 0;
  padding: 0 10px;
  list-style-type: none;
  height: 112px;
  overflow: auto;
  background-color: #F9F9F9;
}
#tweeter_timeline .twitter_timeline li {
  background-color: #505050;
  margin: 10px 0;
  color: #d5d5d5;
  padding: 10px;
  font-size: 12px;
  line-height: 1.4em;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
}
#tweeter_timeline .twitter_timeline li a {
  color: #FFF;
  font-weight: bold;
}
#tweeter_timeline .twitter_timeline li a.avatar {
  float: left;
  margin: 0 5px 5px 0;
}
#tweeter_timeline .twitter_timeline li .tweet {}
#tweeter_timeline .twitter_timeline li .tweet-toolbox {
  font-size: 10px;
  border-top: 1px solid #626262;
  margin-top: 2px;
  padding-top: 2px;
}
#tweeter_timeline .footer {
  padding: 3px 10px;
  text-align: right;
  color: #333;
  background-color: #E8E8E8;
}
#tweeter_timeline .footer a {
  color: #333;
  padding-right: 15px;
  background: url(../images/icon-twitter-header.png) no-repeat right center;
}
#twitter_timeline_decoration {
  position: absolute;
  top: 5px;
  right: 10px;
}

/** 新闻切换动画 **/
.w-switchable-news .w-article {
  margin: 0;
  padding: 0;
  border: none;
}
.w-switchable-news .w-article-img {
  margin: 0;
}
.w-switchable-news .w-article-txt {
  margin-left: 320px;
  _margin-left: 314px;/* fuck ie6 */
}
.w-switchable-news .w-article-txt .title {
  font-size: 25px;
  line-height: 1.1;
}
.w-switchable-news .w-article-txt .summary {
  margin-bottom: 13px;
}
.w-switchable-news .w-article-txt .link {
  margin-top: 8px;
}

/** 页脚搜索栏 **/
.search-ft {
  margin: 10px 0;
  padding: 8px 0;
  background: #F6F6F6;
}
.search-ft form {
  text-align: center;
  /* background: #aaa; */
}
.search-ft form input, .search-ft form select {
  margin: 0 1px;
  padding: 3px 5px;
  border: 1px solid #ddd;
  background: #fff;
  vertical-align: middle;
}
.search-ft form input {
  padding: 4px 5px;
  width: 357px;
}
.search-ft form select {
  max-width: 250px;
  color: #666;
}
.search-ft form button {
  margin: 0 1px;
  width: 70px;
  height: 25px;
  line-height: 25px;
  border: none;
  color: #fff;
  vertical-align: middle;
  text-align: left;
  text-indent: 20px;
  font-weight: bold;
  background: #BB0000 url(../images/icon-search-ft.png) no-repeat 5px 50%;
  cursor: pointer;
}

/** 各栏目通用 **/
.w-cnt-title-list,
.w-cnt-title-category,
.w-cnt-title {
  margin-bottom: 20px;
  line-height: 1;
  font-size: 25px;
  color: #bb0000;
  /* background: #eee; */
}
.w-cnt-title-list a,
.w-cnt-title a {
  color: #bb0000;
}
/*.w-cnt-title-list a:hover,
.w-cnt-title a:hover {
  text-decoration: none;
}*/
.w-cnt-title span {
  margin-left: 1em;
  color: #666;
  font-size: 12px;
}
.w-cnt-title span strong {
  font-weight: bold;
  color: #BB0000;
}
.w-cnt-title-category {
  font-weight: bold;
  color: #16447E;
}
.w-cnt-title-category a {
  color: #16447E;
}
.w-cnt-title-show {
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 25px;
  color: #282828;
}
.w-cnt-title-show a {
  color: #282828;
}
.w-cnt-item-m .related-info {
  margin: 20px 0 15px;
}
.w-cnt-item-m .related-info .title {
  margin-bottom: 3px;
  font-size: 14px;
  color: #444;
  font-weight: bold;
}
.w-cnt-item-m .related-info .cnt {
  line-height: 2;
  color: #222;
}
.w-cnt-item-m .related-info .cnt a {
  margin-right: 8px;
  color: #444;
}
.w-cnt-item-m .related-info .cnt a:hover {
  color: #16447E;
}
.w-cnt-item-r .w-box-mod1 .w-list {
  margin: 0 7px;
  padding: 5px 0 0;
  overflow: hidden;
  *position: relative;
  *zoom: 1;
}
.w-cnt-item-r .w-box-mod1 .w-list-item {
  top: -6px;
  height: 38px;
  line-height: 38px;
  border-top: 1px dashed #CECECE;
  color: #16447E;
  font-weight: bold;
}
.w-cnt-item-r .w-box-mod1 .w-list-item a {
  color: #16447E;
}
.w-cnt-item-r .w-box-mod1 .w-list-item .date {
  padding: 0 10px;
  font-weight: bold;
  font-size: 20px;
  color: #999;
  font-style: italic;
}
.w-cnt-item-r .w-box-np .w-article-title a {
  color: #16447E;
}
html.home .w-cnt-item-r .w-box-np .w-article-title a {
  color: #222;
}
.w-cnt-item-r .w-box-mod3 .pro-alert .summary {
  line-height: 1.6;
  color: #444;
}
.w-cnt-item-r .w-box-mod3 .pro-alert .summary em {
  color: #BB0000;
}
.w-cnt-item-r .w-box-mod3 .pro-alert input {
  display: block;
  margin-top: 7px;
  padding: 0 4px;
  width: 170px;
  height: 23px;
  line-height: 23px;
  border: 1px solid #ddd;
  color: #666;
  background: #fff;
}
.w-cnt-item-r .w-box-mod3 .pro-alert input:focus {
  color: #333;
}
.w-cnt-item-r .w-box-mod3 .pro-alert button {
  display: block;
  margin: 10px 0;
  width: 80px;
  height: 25px;
  line-height: 25px;
  border: none;
  font-size: 14px;
  color: #fff;
  text-align: center;
  border-radius: 3px;
  background: #D24400;
  cursor: pointer;
}

/* w-box-rvh */
.w-cnt-item-r .w-box-rvh .w-list {
  margin: 0 0 10px;
  padding-bottom: 5px;
  border-bottom: 1px dotted #ddd;
}
.w-cnt-item-r .w-box-rvh .w-list-item a {
  color: #16447E;
  text-decoration: underline;
}
.w-cnt-item-r .w-box-rvh .w-list-item a:hover {
  color: #D24400;
}
.w-cnt-item-r .w-box-rvh .w-box-ft {
  margin: -15px 9px 10px;
}
.w-cnt-item-r .w-box-rvh .w-box-ft a {
  color: #444;
  *zoom: 1;/* 解决定义背景后 CSS 三角在 IE6 中梯成形问题 */
}
.w-cnt-item-r .w-box-rvh .w-box-ft .w-arrow {
  margin-left: 2px;
  border-color: #F0F0F0;
  border-left-color: #D24400;
}

/* w-box-catalog */
.w-box-catalog .w-box-hd .title {
  position: relative;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding-right: 16px;
  _padding-right: 12px;
  *line-height: 30px;
}
/*.w-box-catalog .w-box-hd .title .w-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  border-width: 5px;
  border-color: #F0F0F0;
  border-top-color: #838383;
}*/
.w-box-catalog .w-list {
  margin: 5px 10px;
}
.w-box-catalog .w-list-item {
  color: #999;
  _width: 100%;
}
.w-box-catalog .w-list-item a {
  color: #444;
}
.w-box-catalog .w-list-item a:hover {
  color: #000;
}
.w-box-catalog .w-list-item a.on {
  color: #b00;
  font-weight: bold;
}
.w-box-catalog .w-list-sublist {
  *zoom: 1;
  _width: 100%;
  _overflow: hidden;
  /* background: #eee; */
}
.w-box-catalog .w-list-sublist .w-list {
  margin: 0 0 8px 10px;
}
.w-box-catalog .w-list-sublist .w-list .w-list-item a {
  color: #16447E;
}
.w-box-catalog .w-list-sublist .w-list .w-list-item-on a {
  color: #BB0000;
  text-decoration: none;
  cursor: default;
}
.w-box-catalog .w-list-sublist .w-list .w-list-item-sublist,
.w-box-catalog .w-list-sublist .w-list .w-list-item-sublist a {
  color: #777777;
  font-size: 12px;
}
.w-box-catalog .w-list-sublist .w-list .w-list-item-sublist i {
  margin-right: .3em;
  /*display: inline-block;*/
  /*width: 8px;*/
  /*text-align: center;*/
}

/* newsletter */
.w-box-catalog dt.w-list-item,
.w-box-catalog dt.w-list-item a,
.w-box-catalog dt.w-list-item a:hover {
  color: #16447E;
  font-weight: bold;
  outline: none;
  text-decoration: none;
  cursor: pointer;
}
.w-box-catalog dt.w-list-item i {
  display: inline-block;
  width: 15px;
  font-size: 18px;
  cursor: pointer;
}
.w-box-catalog dt.w-list-item-fold i {
  /*font-size: 17px;*/
}
.w-box-catalog dd.w-list-sublist {
  margin-bottom: 8px;
  border-bottom: 1px dotted #DDDDDD;
}
.w-box-catalog dd.w-list-sublist:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.w-box-catalog dd.w-list-sublist .w-list {
  margin: 0 0 8px 15px;
}
.w-box-catalog dd.w-list-sublist .w-list .w-list-item a {
  color: #444;
}
.w-box-catalog dd.w-list-sublist .w-list .w-list-item-sublist,
.w-box-catalog dd.w-list-sublist .w-list .w-list-item-sublist a {
  color: #777777;
}
.w-box-catalog dd.w-list-sublist .w-list .w-list-item-on a {
  color: #BB0000;
  text-decoration: none;
  cursor: default;
}

/* hot-keywords */
#content .hot-keywords {
  margin: 0 0 40px;
  height: 14px;
  line-height: 14px;
  overflow: hidden;
}
#content .hot-keywords em {
  font-weight: bold;
  font-style: italic;
  color: #BB0000;
}
#content .hot-keywords a {
  margin: 0 4px;
  color: #16447E;
  text-decoration: underline;
}
#content .hot-keywords a:hover {
  color: #BB0000;
}

/** 产品详细页 **/
.w-proshow-title {
  margin-bottom: 20px;
  line-height: 1;
  font-size: 30px;
  color: #222;
}
.w-proshow-title a {
  color: #222;
}
.w-proshow-status {
  margin-bottom: 28px;
  height: 16px;
  line-height: 16px;
}
.w-proshow-status .date {
  float: left;
  color: #666;
}
.w-proshow-status .date a {
  color: #666;
}
.w-proshow-status .date .divide {
  margin: 0 2px;
  color: #ccc;
}
.w-proshow-status .share {
  float: right;
  font-size: 0;
}
.w-proshow-status .share .title {
  display: inline-block;
  height: 16px;
  padding-left: 20px;
  overflow: hidden;
  font-size: 12px;
  color: #000;
  vertical-align: top;
  background: url(../images/icon-share-show.png) no-repeat 0 0;
}
.w-proshow-status .share a {
  display: inline-block;
  margin-left: 10px;
  width: 16px;
  height: 16px;
  overflow: hidden;
  background: url(../images/icon-share-show.png) no-repeat;
}
.w-proshow-status .share a.favorites {
  background-position: 0 0;
}
.w-proshow-status .share a.twitter {
  background-position: 0 -32px;
}
.w-proshow-status .share a.facebook {
  background-position: 0 -16px;
}
.w-proshow-status .share a.google {
  background-position: 0 -48px;
}
.w-proshow-status .share a.linkedin {
  background-position: 0 -64px;
}
.w-proshow-status .share a.email {
  background-position: 0 -80px;
}
.w-proshow-status .share a.print {
  background-position: 0 -96px;
}
.w-proshow-status .share a:hover {
  filter: alpha(opacity=75);
  opacity: .75;
}
.w-proshow-article {
  color: #444;
  line-height: 1.5;
  font-size: 14px;
  /* overflow: hidden; */
}
.w-proshow-article a {
  color: #16447E;
  /*font-weight: bold;*/
  text-decoration: underline;
}
.w-proshow-article a:hover {
  color: #16447E;
  /*text-decoration: underline;*/
}
.w-proshow-article p {
  margin: 15px 0;
}
.w-proshow-article ul,
.w-proshow-article ol {
  margin-left: 2em;
  list-style: disc;
}
.w-proshow-article li {
  margin: 5px 0;
}
.w-proshow-article ol {
  list-style-type: decimal;
}
.w-proshow-article img {
  display: block;
  margin: 0 auto;
  max-width: 670px;
  max-height: 500px;
  overflow: hidden;
}
.w-proshow-article strong {
  font-size: 16px;
  color: #222;
}
.w-proshow-article strong a {
  color: #222;
}
.w-proshow-article strong a:hover {
  color: #222;/* fuck ie6 */
}
.w-proshow-article .contribute {
  margin: 10px 0;
  text-align: right;
}
.w-proshow-article .contribute a {
  display: inline-block;
  height: 16px;
  line-height: 16px;
  color: #16447E;
  font-size: 12px;
  padding-left: 25px;
  background: url(../images/icon-contribute.png) 0 50% no-repeat;
  text-decoration: none;
}
.w-proshow-article .contribute a:hover {
  text-decoration: underline;
}
.w-proshow-box {
  margin-top: 30px;
  border: 1px dashed #A1A1A1;
  padding: 15px;
}
.w-proshow-box-hd .title {
  font-size: 25px;
  font-weight: bold;
  line-height: 1.1;
  color: #333;
}
.w-proshow-box-hd .title a {
  color: #333;
}
.w-proshow-box-bd .w-list {
  margin: 0;
}
.w-proshow-box-bd .w-list-item {
  margin-top: 4px;
  font-size: 14px;
  color: #333;
}
.w-proshow-box-bd .w-list-item a {
  font-size: 14px;
  color: #333;
  text-decoration: underline;
}
.w-proshow-box-bd .w-list-item a:hover {
  color: #D24400;
}
.w-proshow .w-articles {
  margin-top: 30px;
}
.w-proshow .w-articles-title {
  margin-bottom: 15px;
  font-size: 24px;
  line-height: 1;
  color: #BB0000;
}
.w-proshow .w-articles-title a {
  color: #BB0000;
}
.w-proshow .w-article-txt .title {
  color: #16447E;
  font-weight: normal;
}
.w-proshow .w-article-txt .title a {
  color: #16447E;
}
.w-proshow .w-article-txt .summary {
  font-size: 12px;
}

/** Events Pages **/
html.events #header .nav {
  margin-bottom: 20px;
}
html.events #content .position {
  margin-bottom: 21px;
  line-height: 1;
  color: #444;
}
html.events #content .position a {
  color: #003F80;
}
html.events #content .position .divide {
  position: relative;
  top: -2px;
  font-size: .8em;
  margin: 0 .6em;
}
html.events #content .w-cnt-item-m .w-cnt-item-cnt {
  margin: 0 260px 0 220px;
  /* *zoom: 1; */
}
html.events #content .w-cnt-item-r {
  width: 230px;
  margin-left: -230px;
}
html.events #content .w-cnt-item-l {
  margin-left: -1000px;/* 操蛋的 IE6 */
}
/* TODO 在类 w-box 后加 w-box-catalog 下面的就可以去掉了 */
html.events #content .w-box-mod2 .w-box-hd .title {
  position: relative;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding-right: 16px;
  _padding-right: 12px;
  *line-height: 30px;
}
/*html.events #content .w-box-mod2 .w-box-hd .title .w-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  border-width: 5px;
  border-color: #F0F0F0;
  border-top-color: #838383;
}*/
html.events #content .w-box-mod2 .w-list {
  margin: 5px 10px;
}
html.events #content .w-box-mod2 .w-list-item {
  color: #999;
}
html.events #content .w-cnt-item-l .w-box-mod2 .w-list-item {
  _width: 100%;
}
html.events #content .w-box-mod2 .w-list-item a {
  color: #444;
}
html.events #content .w-box-mod2 .w-list-item a:hover {
  color: #000;
}
/* todo end */
html.events #content .w-cnt-item-m .search .title {
  line-height: 1;
  margin-bottom: 8px;
  font-size: 16px;
  color: #BB0000;
}
html.events #content .w-cnt-item-m .search .panel {
  float: left;
  /* width: 288px; */
  height: 21px;
  line-height: 21px;
  overflow: hidden;
  border: 1px solid #DDD;
  background: #fff;
}
html.events #content .w-cnt-item-m .search .kw {
  float: left;
  padding-left: 5px;
  width: 220px;
  height: 21px;
  line-height: 21px;
  border: none;
  color: #333;
  background: #fff;
}
html.events #content .w-cnt-item-m .search .submit {
  float: left;
  width: 33px;
  height: 21px;
  border: none;
  text-indent: -9999px;
  background: #fff url(../images/bg-search-btn.png) no-repeat;
}
html.events #content .w-cnt-item-m .w-articles-sort {
  margin: 20px 0;
  *margin-top: 13px;
  padding-bottom: 20px;
  border-bottom: 1px dotted #ddd;
  line-height: 1;
  text-align: right;
}
html.events #content .w-cnt-item-m .w-articles-sort .sort-by {
  float: left;
  color: #444;
}
html.events #content .w-cnt-item-m .w-articles-sort .sort-by .divide {
  color: #CCC;
}
html.events #content .w-cnt-item-m .w-articles-sort a {
  margin: 0 .4em;
  color: #444;
}
html.events #content .w-cnt-item-m .w-articles-sort a.on {
  color: #BB0000;
}
html.events #content .w-cnt-item-m .w-articles-sort .results {
  color: #999;
}
html.events #content .w-cnt-item-m .w-article-txt {
  margin-left: 0;
  /* _margin-left: 92px; */
  overflow: hidden;
  *zoom: 1;
}
html.events #content .w-cnt-item-m .w-article-txt .title {
  font-size: 14px;
}
html.events #content .w-cnt-item-m .w-article-txt .title span {
  margin-left: 4px;
  font-size: 10px;
  color: #b00;
  font-weight: normal;
  font-style: italic;
}
html.events #content .w-cnt-item-m .w-article-txt .summary {
  font-size: 12px;
}
html.events #content .w-cnt-item-r .w-box-mod2 .w-list-item-more {
  background: none;
  color: #BB0000;
}
html.events #content .w-cnt-item-r .w-box-mod2 .w-list-item-more a {
  color: #BB0000;
  outline: none;
}
html.events #content .w-cnt-item-r .w-box-mod2 .w-list-item-more i {
  margin-left: .6em;
  font-weight: bold;
  font-size: 9px;
  vertical-align: top;
}
html.events-pr #content .w-cnt-item-m .w-cnt-item-cnt {
  margin-right: 0;
}
html.events-pr #content .w-cnt-item-m .w-article-txt {
  margin-left: 0;
}
html.events-pr #content .w-cnt-item-m .w-article-txt .title {
  font-size: 16px;
  line-height: 1;
}
html.events-pr #content .w-cnt-item-m .w-article-txt .date {
  margin: 8px 0;
}
html.events-pr #content .w-cnt-item-m .w-article-txt .summary {
  font-size: 14px;
}
html.events-pr #content .w-pager {
  margin-left: -10px;
  text-align: left;
}
html.events-show #content .w-cnt-item-m .w-cnt-item-cnt {
  margin: 0 230px 0 0;
}
html.events-show #content .w-cnt-item-r {
  margin-left: -200px;
  width: 200px;
}
html.events-show #content .w-cnt-item-m .table-show {
  border: 1px solid #ddd;
}
html.events-show #content .w-cnt-item-m .table-show th,
html.events-show #content .w-cnt-item-m .table-show td {
  padding: 7px 15px;
  border: 1px solid #ddd;
  color: #444;
  vertical-align: top;
}
html.events-show #content .w-cnt-item-m .table-show th {
  width: 110px;
  text-align: right;
  color: #222;
  font-weight: bold;
  background: #FCFCFC;
}
html.events-show #content .w-cnt-item-m .table-show td a {
  color: #D24400;
}
html.events-show #content .w-cnt-item-m .table-show td p {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* TODO: 在类 w-box 后加 w-box-rvh 下面的就可以去掉了 */
html.events-show #content .w-cnt-item-r .w-box .w-list {
  margin: 0 0 10px;
  padding-bottom: 5px;
  border-bottom: 1px dotted #ddd;
}
html.events-show #content .w-cnt-item-r .w-box .w-list-item a {
  color: #16447E;
  text-decoration: underline;
}
html.events-show #content .w-cnt-item-r .w-box .w-list-item a:hover {
  color: #D24400;
}
html.events-show #content .w-cnt-item-r .w-box-ft {
  margin: -15px 9px 10px;
}
html.events-show #content .w-cnt-item-r .w-box-ft a {
  color: #444;
  *zoom: 1;/* 解决定义背景后 CSS 三角在 IE6 中梯成形问题 */
}
html.events-show #content .w-cnt-item-r .w-box-ft .w-arrow {
  margin-left: 2px;
  border-color: #F0F0F0;
  border-left-color: #D24400;
}
/* TODO End */

/** Research Pages **/
/* 配合边栏滚动定位 */
html.research #content {
  position: relative;
}

html.research .btn-download-directory {
  margin: 10px 0;
  text-align: center;
}
html.research .btn-download-directory a {
  display: inline-block;
  padding: 0 15px;
  height: 28px;
  line-height: 28px;
  border: 1px solid #ddd;
  color: #000;
  background: #F5F6F6 url(../images/btn-download-directory.png) repeat-x;
}
html.research .btn-download-directory-main a {
  font-size: 14px;
  font-weight: bold;
}
html.research .btn-download-directory a:hover {
  border-color: #ccc;
  text-decoration: none;
}
html.research .live-chat-btn {
  /* margin-top: 10px; */
  display: inline-block;
  width: 120px;
  height: 30px;
  overflow: hidden;
  /* background: url(../images/live-chat-btn2.png) no-repeat; */
  /*vertical-align: top;*/
}
html.research .live-chat-btn a {
  display: inline-block;
  width: 100%;
  height: 100%;
  /* line-height: 200px; */
  overflow: hidden;
  /* opacity: 0; */
  /*filter: alpha(opacity=0);*/
}
html.research .live-chat-btn a img {
  /* display: none; */
}
html.research .btn-leave-msg {
  margin: 0 0 0 20px;
  display: inline-block;
  width: 177px;
  height: 30px;
  line-height: 200px;
  overflow: hidden;
  background: url(../images/btn-leave-msg.png) no-repeat;
}
html.research #content .hot-keywords {
  float: left;
  display: inherit;
  /*margin: -20px 0 25px;*/
  padding: 0;
  width: 100%;
  height: 30px;
  line-height: 30px;
  /*white-space: nowrap;*/
  overflow: hidden;
  /*-ms-text-overflow: ellipsis;*/
  /*text-overflow: ellipsis;*/
  background: #F0F0F0;
  _position: relative;
}
html.research #content .hot-keywords em {
  margin-left: 10px;
  font-style: normal;
}
html.research #content .hot-keywords a {
  color: #333333;
}
html.research #content .hot-keywords a:hover {
  color: #BB0000;
}
html.research .w-articles .w-article .w-article-txt {
  overflow: hidden;
  *zoom: 1;
}
html.research .w-articles .w-article-title {
  margin: 0 0 15px;
  font-size: 19px;
  line-height: 1.3;
}
html.research .w-proshow .w-articles-main {
  margin-top: 0;
}
html.research .w-proshow .w-articles-main .w-article {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
html.research .w-proshow .w-articles-main .w-article-title {
  font-size: 20px;
  margin-bottom: 20px;
}
html.research .w-proshow .w-articles-main .w-article-txt .summary {
  margin-bottom: 6px;
  color: #000;
  font-size: 14px;
}
html.research .w-proshow .w-articles-main .w-article-txt .btns {
  margin-top: 25px;
  overflow: hidden;
  *zoom: 1;
}
html.research .w-proshow .w-articles-main .w-article-txt .btns .live-chat-btn,
html.research .w-proshow .w-articles-main .w-article-txt .btns .btn-leave-msg {
  float: left;
  display: inline;
}
html.research .w-proshow-title {
  margin: 44px 0 15px;
  padding: 2px 10px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  color: #444;
  background: #F0F0F0;
}
html.research .w-proshow-article p {
  margin: 8px 0;
}
html.research .w-proshow .w-articles-report {
  margin-top: 40px;
}
html.research .w-proshow .w-articles-report .w-article {
  margin: 20px 0 30px;
  padding-bottom: 0;
  border-bottom: none;
}
html.research .w-proshow .w-articles-report .w-article-txt .title {
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.5;
  color: #16447E;
}
html.research .w-proshow .w-articles-report .w-article-txt .title a {
  color: #16447E;
}
html.research .w-box-catalog .w-box-hd .title {
  /* 滚动时在 IE6 下会诡异的随滚动条滚动 */
}
html.research .w-box-catalog .w-box-hd .title img {
  margin-right: 5px;
  vertical-align: middle;
  _float: left;
  _margin: 8px 10px 0 0;
}
html.research .w-box-catalog .w-box-bd {
  margin: 10px;
}
html.research .w-box-catalog p {
  line-height: 1.5;
  margin: 5px 0;
}
html.research .w-box-catalog .live-chat-btn {
  margin: 5px;
  width: 103px;
  /* background-image: url(../images/live-chat-btn.png); */
  vertical-align: middle;
}
html.research .w-box-catalog p strong {
  margin-right: 2px;
}
html.research .w-box-catalog .w-list {
  margin: 0;
}
html.research .w-box-catalog .w-list-item-dot {
  line-height: 1.5;
  _width: 266px;
}
html.research .w-box-catalog .w-list-item-dot a:hover {
  color: #16447E;
}

/* form-artdialog */
html.research .form-artdialog {
  display: none;
  margin: -10px 50px 10px 0;
}
html.research .form-artdialog .form-item {
  margin: 21px 0 0;
}
html.research .form-artdialog .form-item label {
  display: inline-block;
  /* width: 80px; */
  width: 94px;
  margin-right: 8px;
  vertical-align: middle;
  font-size: 14px;
  color: #333;
  text-align: right;
}
html.research .form-artdialog .form-item .need {
  color: #FF0000;
  vertical-align: middle;
}
html.research .form-artdialog .form-item input,
html.research .form-artdialog .form-item textarea {
  padding: 0 4px;
  height: 20px;
  line-height: 20px;
  width: 158px;
  color: #444;
  border: 1px solid #7F9DB9;
  vertical-align: middle;
}
html.research .form-artdialog .form-item input.long,
html.research .form-artdialog .form-item textarea.long {
  width: 292px;
}
html.research .form-artdialog .form-item textarea {
  height: 110px;
  line-height: 1.5;
  vertical-align: top;
}
html.research .form-artdialog .form-item .submit {
  display: block;
  /* margin-left: 88px; */
  margin-left: 105px;
  height: 24px;
  width: 89px;
  border: none;
  text-indent: -9999px;
  background: #F4F4F4 url(../images/btn-submit-dialog.png) no-repeat;
  cursor: pointer;
}

/** Products Pages **/
html.products #header .nav {
  margin-bottom: 20px;
}
html.products #content .pro-show {
  margin: 10px 0 30px;
  border: 1px solid #ddd;
  background: #F9F9F9;
  *width: 1198px;
  *overflow: hidden;
}
html.products #content .pro-show .pro-list {
  /* margin: 19px -11px 0 19px; */
  margin: 0 4px 0 4px;
  overflow: hidden;
  *zoom: 1;
}
html.products #content .pro-show .pro-list-item {
  float: left;
  /* margin-right: 30px; */
  padding: 19px 15px 0;
  width: 140px;
  overflow: hidden;
  text-align: center;
}
html.products #content .pro-show .pro-list-item-hover,
html.products #content .pro-show .pro-list-item:hover {
  background: #F1F1F1;
}
html.products #content .pro-show .pro-list-item .img {
  display: block;
  width: 138px;
  height: 118px;
  line-height: 118px;
  overflow: hidden;
  *font-size: 106px;
  border: 1px solid #EBEBEB;
}
html.products #content .pro-show .pro-list-item .img:after {
  content: '';
  vertical-align: middle;
}
html.products #content .pro-show .pro-list-item .img img {
  vertical-align: middle;
}
html.products #content .pro-show .pro-list-item .img:hover {
  border-color: #C4D9F1;
}
html.products #content .pro-show .pro-list-item .title {
  margin: 8px 0 19px;
  height: 14px;
  line-height: 14px;
  overflow: hidden;
  color: #16447E;
}
html.products #content .pro-show .pro-list-item .title a {
  color: #16447E;
}
html.products #content .w-cnt-item-m .w-cnt-item-cnt {
  margin: 0 230px 0 0;
}
html.products #content .w-cnt-item-r {
  margin-left: -200px;
  width: 200px;
}
html.products #content .w-cnt-item-r .w-box-bt {
  margin-top: 16px;
}
html.products #content .w-cnt-item-r .w-box-bt .w-box-bd dl {
  margin: 15px 5px;
}
html.products #content .w-cnt-item-r .w-box-bt .w-box-bd dt {
  height: 16px;
  line-height: 16px;
  padding-left: 25px;
  color: #333;
  line-height: 1;
  background: url(../images/icon-email.png) no-repeat 0 50%;
}
html.products #content .w-cnt-item-r .w-box-bt .w-box-bd dt.email {
  background-image: url(../images/icon-email.png);
}
html.products #content .w-cnt-item-r .w-box-bt .w-box-bd dt.alert {
  background-image: url(../images/icon-spe.png);
}
html.products #content .w-cnt-item-r .w-box-bt .w-box-bd dt.post {
  background-image: url(../images/icon-ppr.png);
}
html.products #content .w-cnt-item-r .w-box-bt .w-box-bd dt.favorite {
  background-image: url(../images/icon-favorite.png);
}
html.products #content .w-cnt-item-r .w-box-bt .w-box-bd dt a {
  color: #333;
}
html.products #content .w-cnt-item-r .w-box-bt .w-box-bd dd {
  margin: 0 0 10px 25px;
  color: #999;
}

/* Category Page */
html.pro-category #content .w-cnt-title {
  margin-bottom: 15px;
}
html.pro-category #content .pro-category-nav {
  padding-bottom: 8px;
  line-height: 1;
  border-bottom: 2px solid #ddd;
  color: #222;
  font-weight: bold;
}
html.pro-category #content .pro-category-nav a {
  color: #222;
}
html.pro-category #content .pro-category-nav .divide {
  margin: 0 5px;
  color: #ccc;
}
html.pro-category #content .pro-category-list {
  position: relative;
  padding-top: 75px;
  border-top: 1px dotted #ddd;
}
html.pro-category #content .pro-category-list-index {
  position: absolute;
  top: 30px;
  left: 0;
  /* margin-bottom: 30px; */
  font-size: 19px;
  /* font-weight: bold; */
  color: #BB0000;
  line-height: 1;
}
html.pro-category #content .pro-category-list-item {
  float: left;
  margin-bottom: 25px;
  width: 370px;
  /* background: #eee; */
}
html.pro-category #content .pro-category-list-item .title {
  font-size: 17px;
  /*font-weight: bold;*/
  color: #333;
}
html.pro-category #content .pro-category-list-item .title a {
  color: #333;
}
html.pro-category #content .pro-category-list-item .title span {
  /* font-weight: normal; */
  font-size: 12px;
  color: #999;
}
html.pro-category #content .pro-category-list-item .links {
  margin-top: 3px;
  line-height: 2;
  color: #16447E;
}
html.pro-category #content .pro-category-list-item .links a {
  color: #16447E;
}
html.pro-category #content .pro-category-list-item .links i {
  margin: 0 5px;
  color: #ccc;
}

/* Catalog Pages */
html.pro-catalog #content .w-cnt-item-m .pro-catalog {
  overflow: hidden;
  *position: relative;
  *zoom: 1;
}
html.pro-catalog #content .w-cnt-item-m .pro-catalog .w-article {
  position: relative;
  top: -31px;
  margin: 0 0 25px;
  padding: 30px 20px 0;
  border-top: 1px dotted #DDD;
}
html.pro-catalog #content .w-cnt-item-m .pro-catalog .w-article-img {
  border: 1px solid #fff;
}
html.pro-catalog #content .w-cnt-item-m .pro-catalog .w-article-img:hover {
  border-color: #ddd;
}
html.pro-catalog #content .w-cnt-item-m .pro-catalog .w-article .num {
  font-weight: normal;
  font-size: 12px;
  color: #999;
}
html.pro-catalog #content .w-cnt-item-m .pro-catalog .w-article-txt {
  margin: 0 0 0 158px;
  _margin: 0 0 0 155px;
  /* background: #eee; */
}
html.pro-catalog #content .w-cnt-item-m .pro-catalog .w-article-txt .title {
  /* font-weight: bold; */
  font-size: 18px;
  color: #222;
}
html.pro-catalog #content .w-cnt-item-m .pro-catalog .w-article .w-list {
  margin: 5px 0 0;
  /* background: #eee; */
}
html.pro-catalog #content .w-cnt-item-m .pro-catalog .w-article .w-list-item {
  float: left;
  display: inline;
  margin-right: 30px;
  _margin-right: 27px;
  width: 345px;
  background-image: url(../images/icon-dot-gray.png);
}
html.pro-catalog #content .w-cnt-item-m .pro-catalog .w-article .w-list-item a {
  display: inline;
  color: #16447E;
}

/** Importer & Company Pages **/
html.importer #header .nav,
html.company #header .nav,
html.showbox #header .nav {
  margin-bottom: 15px;
}
html.company #content .hot-keywords,
html.showbox #content .hot-keywords {
  margin-bottom: 30px;
}
html.importer #content .w-cnt-item-m .w-cnt-item-cnt,
html.company #content .w-cnt-item-m .w-cnt-item-cnt,
html.showbox #content .w-cnt-item-m .w-cnt-item-cnt {
  margin: 0 230px 0 220px;
  /* *zoom: 1; */
}
html.importer #content .w-cnt-item-ml .w-cnt-item-cnt {
  margin: 0 230px 0 0;
}
html.importer #content .w-cnt-item-ml .w-cnt-item-cnt .w-show-area {
  width: 150px;
}
html.importer #content .w-cnt-item-ml .w-cnt-item-cnt .w-show-cnt {
  padding-left: 20px;
}
html.importer #content .w-cnt-item-r,
html.company #content .w-cnt-item-r,
html.showbox #content .w-cnt-item-r {
  width: 200px;
  margin-left: -200px;
}
html.importer #content .w-cnt-item-l,
html.company #content .w-cnt-item-l,
html.showbox #content .w-cnt-item-l {
  margin-left: -100%;
  _margin-left: -1200px;/* 操蛋的 IE6 */
}

/* browse-by-country Page */
html.countries #content .countries-list {
  padding-top: 10px;
  border-top: 2px solid #ddd;
}
html.countries #content .countries-list li {
  float: left;
  margin-bottom: 18px;
  width: 25%;
  height: 15px;
  line-height: 15px;
  white-space: nowrap;
  overflow: hidden;
  /* background: #eee; */
  vertical-align: middle;
  *width: 24.9%;
}
html.countries #content .countries-list li a {
  color: #003F80;
  /* vertical-align: middle; */
}
html.countries #content .countries-list li img {
  margin-right: 5px;
  color: #003F80;
  vertical-align: middle;
}
html.countries #content .countries-list li span {
  margin-right: 5px;
  color: #666;
}

/** Seminar Pages **/
html.seminar #header .nav {
  margin-bottom: 20px;
}
html.seminar #content .position {
  margin-bottom: 21px;
  line-height: 1;
  color: #444;
}
html.seminar #content .position a {
  color: #003F80;
}
html.seminar #content .position .divide {
  position: relative;
  top: -2px;
  font-size: .8em;
  margin: 0 .6em;
}
html.seminar #content .w-cnt-item-m .w-cnt-item-cnt {
  margin: 0 260px 0 0;
  /* *zoom: 1; */
}
html.seminar #content .w-cnt-item-r {
  width: 230px;
  margin-left: -230px;
}
html.seminar #content .w-cnt-item-r .w-box-mod2 .w-list-item-more {
  background: none;
  color: #BB0000;
}
html.seminar #content .w-cnt-item-r .w-box-mod2 .w-list-item-more a {
  color: #BB0000;
  outline: none;
}
html.seminar #content .w-cnt-item-r .w-box-mod2 .w-list-item-more i {
  margin-left: .6em;
  font-weight: bold;
  font-size: 9px;
  vertical-align: top;
}
html.seminar-home #content .w-cnt-item-m .w-article:last-child {
  border-bottom: none;
}
html.seminar #content .w-cnt-item-m .w-article-title {
  font-size: 16px;
}
html.seminar #content .w-cnt-item-m .btn-view-more {
  display: block;
  margin: 30px 0 50px;
  padding: 7px 0;
  line-height: 1.5;
  color: #000;
  text-align: center;
  background: #F0F0F0;
}
html.seminar #content .w-cnt-item-m .btn-view-more:hover {
  background: #ebebeb;
  text-decoration: none;
}
html.seminar #content .w-cnt-item-m .w-pager {
  margin-top: 40px;
  margin-bottom: 50px;
}

/** Headhunting Pages **/
html.headhunting #header .nav {
  margin-bottom: 20px;
}
html.headhunting #content .position {
  margin-bottom: 21px;
  line-height: 1;
  color: #444;
}
html.headhunting #content .position a {
  color: #003F80;
}
html.headhunting #content .position .divide {
  position: relative;
  top: -2px;
  font-size: .8em;
  margin: 0 .6em;
}
html.headhunting #content .w-cnt-item-m .w-cnt-item-cnt {
  margin: 0 230px 0 0;
  /* *zoom: 1; */
}
html.headhunting #content .w-cnt-item-r {
  width: 200px;
  margin-left: -200px;
}
html.headhunting #content .hr-cnt {
  font-size: 14px;
  line-height: 1.8;
  color: #000;
}
html.headhunting #content .hr-pagetitle {
  margin-bottom: 20px;
  font-size: 24px;
  /*font-weight: bold;*/
  line-height: 1;
  color: #BB0000;
}
html.headhunting #content .hr-title {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid  #ddd;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  color: #000;
}
html.headhunting #content .hr-subtitle {
  margin: 40px 0 20px;
  font-size: 14px;
  font-weight: bold;
  color: #000;
}
html.headhunting #content .hr-txt {
  margin: 15px 0;
}
html.headhunting #content .hr-list li {
  margin-bottom: 20px;
  padding-left: 10px;
  background: url(../images/icon-dot-gray.png) no-repeat 0 12px;
}
html.headhunting #content .w-cnt-item-r .hr-contact {
  padding: 10px;
  border: 1px solid  #ddd;
  background-color: #FFFBF4;
}
html.headhunting #content .w-cnt-item-r .hr-contact h2,
html.headhunting #content .w-cnt-item-r .hr-contact h3 {
  margin: 0 0 10px;
  padding-bottom: 8px;
  line-height: 1;
  font-weight: bold;
  font-size: 14px;
  color: #D24400;
  border-bottom: 1px solid  #f0f0f0;
}
html.headhunting #content .w-cnt-item-r .hr-contact h3 {
  margin-top: 18px;
}
html.headhunting #content .w-cnt-item-r .hr-contact p {
  margin: 5px 0;
  line-height: 1.7;
}
html.headhunting #content .w-cnt-item-r .hr-contact p a {
  color: #444;
}
html.headhunting #content .w-cnt-item-r .hr-contact p strong {
  margin-right: 5px;
  color: #222;
  font-weight: normal;
}
html.headhunting #content .w-cnt-item-r .hr-contact p.tel {
  padding-left: 25px;
}
html.headhunting #content .w-cnt-item-r .hr-contact p.tel strong {
  margin-left: -25px;
}
html.headhunting #content .w-cnt-item-r .hr-contact .follow-us {
  display: inline-block;
  padding-top: 16px;
  width: 16px;
  height: 0;
  overflow: hidden;
  background: url(../images/icon-facebook.png) no-repeat;
}
html.headhunting #content .hr-cnt .hr-form {
  margin-top: 60px;
}
html.headhunting #content .hr-cnt .hr-form-title {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 2px solid #ddd;
  font-size: 24px;
  /*font-weight: bold;*/
  line-height: 1;
  color: #BB0000;
}
html.headhunting #content .hr-cnt .hr-form-item {
  margin: 12px 0;
  line-height: 24px;
  color: #444;
  font-size: 12px;
}
html.headhunting #content .hr-cnt .hr-form-item label {
  display: inline-block;
  width: 125px;
  margin-right: 12px;
  text-align: right;
}
html.headhunting #content .hr-cnt .hr-form-item .need {
  margin-right: 2px;
  color: #D60000;
}
html.headhunting #content .hr-cnt .hr-form-item input,
html.headhunting #content .hr-cnt .hr-form-item textarea {
  padding: 0 5px;
  width: 288px;
  height: 22px;
  line-height: 22px;
  border: 1px solid #7F9DB9;
  vertical-align: top;
  color: #444;
  background-color: #fff;
}
html.headhunting #content .hr-cnt .hr-form-item textarea {
  width: 520px;
  height: 226px;
}
html.headhunting #content .hr-cnt .hr-form-item button {
  display: block;
  margin: 20px 0 0 137px;
  border: 0;
  width: 92px;
  height: 32px;
  overflow: hidden;
  text-indent: -9999px;
  background: url(../images/btn-submit.png) no-repeat;
  cursor: pointer;
}




/** 产品列表悬浮大图 **/
html.showbox .float_ajax_box {
  width: 252px;
  height: 252px;
  border: 1px solid #ADCFEA;
  background: #D1E3F5;
  /* -moz-box-shadow:0 0 5px rgba(0, 0, 0, .3); */
  /* -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3); */
  /* box-shadow: 0 0 5px rgba(0, 0, 0, .3); */
}
html.showbox .float_ajax_box_inner {
  *width: 234px;
  *height: 234px;
  padding: 8px;
  border: 1px solid #fff;
  background: #D1E3F5;
}
html.showbox .float_ajax_link {
  display: table-cell;
  *display: block;
  padding: 16px;
  width: 200px;
  height: 200px;
  overflow: hidden;
  border: 1px solid #4E89C4;
  text-align: center;
  background: #fff url(../images/loading.gif) no-repeat 50% 50%;
  vertical-align: middle;
}
html.showbox .float_loading {
  display: none;
}
html.showbox .float_ajax_image {
  padding: 0;
  width: 182px;
  height: auto;
  vertical-align: middle;
}
html.showbox .float_corner {
  font-size: 21px;
  font-family: \5b8b\4f53, sans-serif;
}
html.showbox .float_corner_left,
html.showbox .float_corner_right {
  width: 10px;
  height: 20px;
}

/** newsletter pages **/
#content.w-cntbox {
  width: 938px;
  margin-bottom: 50px;
}
.newsletter-form .w-subtitle {
  margin: 20px 0 5px;
}
.newsletter-form .w-tipbox {
  margin: 20px 0 15px;
}
.newsletter-form .info-email {
  padding-left: 25px;
  background: url(../images/icon-email-gray.png) 0 50% no-repeat;
}
.newsletter-form .form-field {
  margin: 15px 0 0;
}
.newsletter-form .form-field-item {
  margin: 5px 0;
}
.newsletter-form .form-field-list {
  width: 450px;
  overflow: hidden;
  zoom: 1;
}
.newsletter-form .form-field-list .form-field-item {
  float: left;
  margin: 0 0 5px 0;
  width: 25%;
  *width: 24.9%;
}
.newsletter-form .form-field-list .form-field-item label {
  margin-right: 10px;
}
.newsletter-form .form-field input[type='checkbox'],
.newsletter-form .form-field input[type='radio'] {
  margin-right: 5px;
  vertical-align: -3px;
}
.newsletter-form .form-field button {
  margin: 10px 7px 0 0;
  padding: 0 15px;
  *padding: 0;
  height: 24px;
  /*line-height: 18px;*/
  border: 1px solid #888;
  color: #000;
  background: #EDEDED url(../images/bg-w-button.png) repeat-x;
  border-radius: 2px;
}

/** 会员升级按钮 **/
.btn-upgrade {
  display: inline-block;
  width: 192px;
  height: 40px;
  line-height: 1000px;
  overflow: hidden;
  background: url(../images/btn-upgrade.png) no-repeat;
}
.btn-upgrade-cn {
  background-image: url(../images/btn-upgrade-cn.png);
}
.btn-upgrade-en {
  background-image: url(../images/btn-upgrade-en.png);
}

/** live chat **/
.live-chat {
  margin: 10px 0;
  padding: 0 10px 25px;
  border: 1px solid #ddd;
  background: #FEF8EE;
  overflow: hidden;
  zoom: 1;
}
.live-chat .title {
  margin-bottom: 20px;
  height: 30px;
  line-height: 30px;
  border-bottom: 1px solid #F0F0F0;
  font-size: 14px;
  font-weight: bold;
  color: #D24400;
}
.live-chat .img {
  float: left;
  display: inline;
  margin-right: 10px;
}
.live-chat .txt {
  overflow: hidden;
  zoom: 1;
}
.live-chat .txt p {
  margin-top: 5px;
}
.live-chat .txt .btn a {
  margin-top: 5px;
  display: block;
  width: 94px;
  height: 20px;
  overflow: hidden;
  text-indent: -9999px;
  background: url(../images/btn-live-chat.png) no-repeat;
}
.live-chat-en .txt .btn a {
  background-image: url(../images/btn-live-chat-en.png);
}
.live-chat-cn .txt .btn a {
  background-image: url(../images/btn-live-chat-cn.png);
}

/** activate_product_alert.htm **/
#content.w-cntbox-apa {
  width: 898px;
  padding-left: 50px;
  padding-right: 50px;
}
.w-cntbox-apa .w-tipbox {
  margin-top: 18px;
  padding-left: 20px;
  padding-right: 20px;
  width: 658px;
}
.w-cntbox-apa .btn-wrap {
  margin: 20px 0 0 238px;
}

/** help **/
.help-title {
  margin: 30px 0 10px;
  font-size: 20px;
  /*font-weight: bold;*/
  color: #333;
}
.help-titlesub {
  color: #666;
}
.help-hgroup .help-title {
  margin: 10px 0;
}
.help-summary {
  margin: 10px 0;
  color: #222;
}
.help-screenshot {
  clear: both;
  display: block;
  margin: 10px 0;
}
.help-list {
  margin: 10px 0;
  color: #222;
}
.help-list-item {
  margin-top: 5px;
}
.help-list-hasimg .help-list-item {
  margin-top: 15px;
  vertical-align: middle;
}
.help-list-item img {
  margin: 5px;
  vertical-align: middle;
}
.help-list a,
.help-summary a {
  color: #16447E;
  text-decoration: underline;
  cursor: default;
}
.help-list a:link,
.help-summary a:link {
  color: #333;
  text-decoration: none;
  cursor: pointer;
}
.help-list a:hover,
.help-summary a:hover {
  text-decoration: underline;
}
.help-btn-contact {
  display: block;
  width: 134px;
  height: 37px;
  overflow: hidden;
  text-indent: -9999px;
  background: url(../images/help/btn-contact-us.png) no-repeat;
}

/** 旧模板通用样式 **/
#ofw-cnt {
  margin-bottom: 50px;
}

/** 居中图片 **/
.center-img {
  display: block;
  height: 90px;
  /* line-height: 100px;*/
  overflow: hidden;
  border: 1px solid #ddd;
  *font-size: 93px;
  text-align: center;
}
.center-img:after {
  content: '';
  vertical-align: middle;
}
.center-img img {
  /* border: 1px dashed #ccc; */
  vertical-align: middle;
}

/** 提示框 **/
.ofw-tipbox-wrap {
  position: relative;
}
.ofw-tipbox {
  position: absolute;
  right: 0;
  top: 0;
  width: 186px;
  border: 1px solid #ccc;
  padding: 10px;
  color: #666;
}
.ofw-tipbox .arrow {
  position: absolute;
  display: block;
  top: 10px;
  left: -7px;
  width: 7px;
  height: 15px;
  background: url(/images/tubiao01.gif) no-repeat;
}
.ofw-tipbox a {
  color: #003399;
  text-decoration: none;
}
.ofw-tipbox a:hover {
  color: #ff6600;
  text-decoration: underline;
}
.ofw-tipbox ul {
  margin: 5px 0;
  list-style: disc outside none;
  color: #333333;
}
.ofw-tipbox li {
  margin: 0 0 2px 14px;
}

/** 底部广告位 **/
#add-footer {
  margin: 10px auto 30px;
  width: 1000px;
}
#footer .partner-links {
  /* margin-bottom: 15px; */
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px #ddd solid;
  font-size: 14px;
  color: #666;
}
#footer .partner-links .title {
  margin-bottom: 5px;
  text-align: right;
  overflow: hidden;
  *zoom: 1;
}
#footer .partner-links .title h3 {
  float: left;
  color: #333;
}
#footer .partner-links .partners {
  line-height: 1.8;
}
#footer .partner-links .partners a {
  margin-right: 10px;
}
.current{font-weight: bold;color:#666;}

/* 添加返回顶部按钮 by Steven 2014-12-12 */
#back-to-top {
  display: block;
  position: fixed;
  z-index: 99999;
  right: 10px;
  bottom: 200px;
  width: 50px;
  height: 50px;
  border-radius: 3px;
  overflow: hidden;
  background: #000 url(../images/icon-back-top-top.png) 50% 50% no-repeat;
  cursor: pointer;
  text-decoration: none;
  opacity: .2;
  filter: Alpha(opacity=20);
  _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)-200));
  _background: url(../images/icon-back-top-top.gif) 50% 50% no-repeat;
}
#back-to-top:hover {
  opacity: .3;
  filter: Alpha(opacity=30);
}

/* 内面换圣诞 Logo */
/*
#header .logo a {
  position: relative;
  margin-top: -10px;
  padding-top: 56px;
  width: 169px;
  height: 20px;
  background: url(../images/logo-christmas.png) no-repeat;
}
#header .logo img {
  display: none;
}


html.products.index #header .logo a {
  margin-top: 0;
  padding-top: 0;
  width: 160px;
  height: 66px;
  background: none;
}
html.products.index #header .logo img {
  display: block;
}*/



/*整合global样式*/
/*shuaijuntao加的样式*/
/*文章页右栏Releated Reports 样式*/
.rr_list ul li {margin-bottom:15px;}
.rtitle{font-size:24px; color:#b00;}
.rtitle-line{ border-bottom:2px solid #ddd;}

.events-list dl{border-bottom:1px dashed #ddd; padding-bottom:8px; margin-top:12px;}
.events-list dl dt{float:left;width:76px;}
.events-list dl dd{ float:left; width:224px; font-size:12px; color:#000; line-height:20px; margin-top:-5px; }
.events-list dl dd span{color:#666;}
.events-list .no-bdline{border-bottom:none;}

.news-pro h3{color:#16447e; font-size:14px; font-weight:bold; padding:20px 0 5px 0;}
.news-pro .pro-pic{width:80px;}
.news-pro .pro-con{width:210px; line-height:20px;}

.w-proshow-status .add-comm-btn{width:119px; height:24px; line-height:24px; display:block; background:#d24400; color:#fff; text-align:center; text-decoration:none;}
.w-proshow-status .add-comm-btn:hover{color:#fff;}





/*文章页面Related Content版块*/
.rc{}
.rc dt{padding:16px 0 8px;}
.rc dd{background:url(../images/icon-dot.png) left center no-repeat; padding-left:10px;}
.rc dd a{ font-size:14px; color:#004db3; line-height:26px;}
/*文章页Recommend Content*/
.rc-pic-list{width:670px; overflow:hidden;}
.rc-pic-list ul li{ float:left; display:inline; width:210px; margin-right:20px; margin-bottom:15px;}
.rc-pic-list .nomargin{margin-right:0;}
.rc-pic-list h3{margin:30px 0 17px 0;}
.rc-pic-list a{font-size:14px; color:#004db3; display:block; font-weight:bold;}
.rc-pic-list li img{margin-bottom:5px;}
/*文章页Join The Discussion*/
.join-dis{font-size:12px; color:#666; position:relative; width:670px;}
.join-dis h3{padding:22px 0 15px;}
.join-dis .txt,.reply-box .txt{width:358px; height:28px; border:1px solid #7f9db9;  padding-left:10px; color:#666;}
.join-dis .msg{color:#b00; padding-left:11px;}
.join-dis textarea{color:#666; border:none; width:668px; height:78px;}
.join-dis .comm-box{width:668px; height:110px; border:1px solid #7f9db9;}
.join-dis .comm-box p,.reply-tip{height:30px; background:#eee; line-height:30px; padding-left:10px;color:#00a354; display:none;}
.join-dis .btn{width:120px; height:33px; background:#d24400; color:#fff; font-size:14px; border:none; border-radius:2px; font-weight:bold;margin-top:20px;}
.join-dis .login-box{ position:absolute;right:0; top:30px; width:260px; height:148px;}
.login-r a{width:209px; height:31px;_height:23px; border:1px solid #b3b3b3; display:block; line-height:31px; text-align:center; background:#f1f1f1; font-size:12px; color:#000; margin-bottom:6px;_padding-top:8px;}
.login-r{float:right;}
.login-l{width:21px; float:left;}
.login-l .line{width:1px; height:61px; background:#ddd; margin-left:7px;}
.login-r a i{display:inline-block;}
.login-ofweek{  background:url(../images/ico-ofweek.png) no-repeat; width:15px; height:15px; padding-right:10px;}
.login-facebook{ background:url(../images/ico-facebook.png) left center no-repeat; width:17px; height:19px; line-height:19px; vertical-align:middle;}
.login-twitter{background:url(../images/ico-twitter1.png) left center no-repeat; width:12px; height:9px; vertical-align:middle; padding-right:10px;}
.login-google{background:url(../images/ico-google.png) left center no-repeat; width:14px; height:12px; vertical-align:middle; padding-right:10px;}
/*Comments*/
.comment-box{font-size:14px; color:#000; border-bottom:1px dashed #e8e8e8; padding-bottom:20px; margin-bottom:10px;}
.comment-box p{ line-height:24px;}
.comment-box p strong{ color:#16447e; font-weight:normal;}
.com-count{line-height:36px;margin-left:7px; font-size:14px; color:#000;}
.reply-box{width:668px; height:219px; border:1px solid #ddd; margin-top:20px;}
.comment-box .reply{ display:block; width:74px; height:28px; background:url(../images/reply.gif) 0 0 no-repeat;margin-top:13px;}
.reply-box .nametxt{width:148px;}
.reply-box .emailtxt{width:426px;}
.reply-box table{margin-top:20px;}
.reply-box textarea{width:614px; height:38px; border:1px solid #7f9db9;margin:30px 0;}
.reply-box .btn{ background:url(../images/post.gif) 0 0 no-repeat; width:90px; height:33px; border:none;}
.show-reply{width:620px; height:63px; background:#f0f0f0; line-height:63px; padding-left:10px; padding-top:9px;margin-top:13px;}
.show-reply p{ line-height:28px;}


/*weixin*/
#footer .links{ position:relative;}
#footer .weixin{ position:absolute;width:96px;right:-120px;bottom:-3px; text-align:center;}
#footer .weixin dt  img{width:96px; height:92px;}
#footer .weixin strong{ font-weight:normal; color:#b00;}
/*View by Category*/
.bread_nav a,.bread_nav span{ padding-right:6px;}
.vb_categoty{color:#ccc;margin-top: 16px;margin-bottom: 32px; background:#F0F0F0; padding:5px;}
.vb_categoty a{color:#333; padding:0 4px;}
.vb_categoty dt{color:#c00;margin-right:5px;}
.vb_categoty a.current{color:#b00;}


.w-list-item_new{
    padding-right: 0px !important;
}
.ui-news-offer{
    width: 100% !important;
}
.ui-news-product{
    width: 360px !important;
}

/* 2015-09-29 News page for details and New Products page for details */
.layout-full{margin-top:28px;}
.layout-full .title{font-weight:bold;}
.layout-full .related-info{padding-bottom:30px;}
.lf-img-list{margin-top:15px;overflow:hidden;padding:15px 0 45px 0;border-bottom:1px solid #ddd;}
.lf-img-list ul{width:1030px;height:236px;overflow:hidden;}
.lf-img-list li{float:left;width:190px;margin-right:12px;height: 235px;}
.lf-img-list a{display:block;position: relative;height: 188px;padding-bottom: 45px;text-align: center;}
.lf-img-list a:link,.lf-img-list a:visited{border:1px solid #fff;}
.lf-img-list a:hover{border-color:#ccc;}
.lf-img-list img{vertical-align: middle;display: inline-block;*display: inline;*zoom: 1;}
.lf-img-list h4{padding:5px;position: absolute;left: 0;bottom:0;text-align: left;}
.layout-full .cnt a{margin-right:15px;}
.lf-img-list a .middle-span {display: inline-block;*display:inline;*zoom:1;width: 1px;height: 100%;content: "";margin-left: -1px;vertical-align: middle;}
.ui-box-hd {
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #DDD;
  line-height: 1;
}
.ui-box-hd .title {font-size: 24px;color: #BB0000;}


/*sourcing_service*/
#content .w-form .header p i {color: #E82D2C;}
#content .w-form .header h3 {font-size: 22px;color: #000;}
.w-form {margin-top:9px;color: #333;font-size: 14px;}
.w-form fieldset{margin: 25px 0;}
.ss_lc{ background:#f6f6f6; text-align:center;margin-bottom:21px;margin-top:5px; overflow:hidden; padding:15px 0;}
.ss_lc li{
	float: left;
	display:inline;
	background-repeat: no-repeat;
	background-position:center top;
	padding-top:45px;
	text-align: center;
	margin:0 17px;
	position:relative;
	top:4px;
}
.ss_lc .step1{background-image: url(../images/step1.png);}
.ss_lc .step2{background-image: url(../images/step2.png);}
.ss_lc .step3{background-image: url(../images/step3.png);}
.ss_lc .step4{background-image: url(../images/step4.png);}
.ss_lc .step5{background-image: url(../images/step5.png);
background-position:center top;padding-top:49px;top:0;}
.ss_lc .nextstep{ background-image:url(../images/nextstep.gif);width:11px; background-position:center 20px;}
.w-form legend {
    margin-bottom:20px;
    width:100%;
    line-height:35px;
    text-indent:10px;
    font-weight:bold;
    background:#F4F4F4;
    *margin-left:-10px;
}
.w-form .item {margin:18px 0 18px 102px;}
.w-form .item .label {
   float: left;
   margin-right: 15px;
   width: 156px;
   line-height: 32px;
   text-align: right;
}
.w-form .item .label i {color: #E82D2C;}
.w-form .item .input {overflow: hidden;}
.w-form .item input.text {
   padding: 5px;
   width: 188px;
   height: 20px;
   line-height: 20px;
   border: 1px solid #A4A4A4;
   color: #444;
   background: #fff;
   box-shadow: inset 0 1px 5px #ddd;
}
.w-form .item input.file {margin-top:3px;padding:0 25px;height: 26px;}
.w-form .item input.wide {width: 388px;}
.w-form .item .submit {
   margin-left: 165px;
   padding: 0 32px;
   height: 40px;
   border: 0;
   border-radius: 2px;
   color: #fff;
   text-align: center;
   font: 20px/40px 'Microsoft YaHei', SimHei;
   background: #E82D2C;
   cursor: pointer;
}
.w-form .item .tips {margin-top:5px;color:#8A8A8A;font-size: 12px;}
.submitBbtn{margin-top:10px;cursor:pointer; border:none;height:32px; width:92px;background:url(//en.ofweek.com/image/cpbay/businessBtn10.png) no-repeat;margin-left: 170px;}
.input span.txt{color:#E82D2C; background:url(../images/ico-error.gif) left center no-repeat; height:13px; line-height:13px;display:inline-block;*display:inline;*zoom:1; padding-left:19px;margin-left:5px;}
.product-info #yzm{width:100px; height:18px;}