@charset 'utf-8';

/*
名称：主样式表
维护：王文 wangwen1220#139.com
依赖：base.css
日期：2013-6-24
*/

/* Global
----------------------------------------------------------------------------- */
/* 默认文字和背景颜色 */
html {
  _background-image: url(about:blank);
  _background-attachment: fixed;
}

body {
  color: #000;
  font: 12px/1.5 Tahoma, 'Simsun', arial;
  _word-wrap: break-word;
}

/* 链接样式 */
a,
a:link {
  color: inherit;
  *color: #000;
}

a:hover,
a:active {
  color: #AD2305;
}

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

/* 默认表单样式 */
input,
textarea {
  color: #999;
}

input:focus,
textarea:focus {
  color: #444;
}

/* 分割线：重定义 <hr /> 元素的样式，去除默认边距，定义 1px 高度实线样式 */
hr {
  display: block;
  /* clear: both; */
  *margin: -7px 0 -9px;
  height: 1px;
  border: none;
  color: #ddd;
  background: #ddd;
}

.hr-dash {
  /* 定义 1px 高度虚线样式的 <hr /> 元素 */
  height: 0;
  border-top: 1px dashed #ddd;
  color: transparent;
  background: transparent;
}

.hr-dot {
  /* 定义 1px 高度点样式的 <hr /> 元素 */
  height: 0;
  border-top: 1px dotted #ddd;
  color: transparent;
  background: transparent;
}

.hr2 {
  /* 定义 2px 高度实线样式的 <hr /> 元素 */
  height: 2px;
}

.hr3 {
  /* 定义 3px 高度实线样式的 <hr /> 元素 */
  height: 3px;
}

/* 排版 */
.highlight {
  color: #AD2305;
}

#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 .mt10 {
  margin-top: 10px;
}

#w .mt20 {
  margin-top: 20px;
}

#w .mb0 {
  margin-bottom: 0;
}

#w .mb5 {
  margin-bottom: 5px;
}

#w .mb8 {
  margin-bottom: 8px;
}

#w .mb10 {
  margin-bottom: 10px;
}

/* TPL
----------------------------------------------------------------------------- */
/*
@name: w-cnt
@overview: 通用内容块样式
@require: null
*/
.w-cnt {
  margin: 0 auto;
  width: 960px;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: "";
  clear: both;
  height: 0;
}

.clearfix {
  zoom: 1;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.wrap {
  width: 1000px;
  margin: 0 auto;
}

.top-bar {
  background: #fff;
  border-bottom: 2px #e20000 solid;
}

.top-bar-login,
.top-bar-login-after {
  line-height: 30px;
  font: 12px/30px simsun;
}

.top-bar-login-after {
  display: none;
}

.top-bar .ofw-logo {
  margin-top: 2px;
}

.top-bar-login>.signin {
  display: inline-block;
  background: #e20000;
  height: 24px;
  width: 50px;
  border-radius: 2px;
  text-align: center;
  margin-top: 3px;
  line-height: 24px;
}

.top-bar-login>.signin>a {
  color: #fff;
}

.top-bar-login a,
.top-bar-login-after a {
  color: #333;
}

.top-bar-login a:hover,
.top-bar-login-after a:hover {
  text-decoration: underline;
}

.top-bar-login i {
  font-style: normal;
  color: #666;
}

.top-bar-login>.email {
  padding-left: 24px;
  display: inline-block;
  background: url(../images/ico_email.png) no-repeat left;
}

/*
@name: w-box
@overview: 通用盒样式
@require: null
*/
.w-box {
  margin-bottom: 20px;
}

.w-box-hd {
  position: relative;
  border-bottom: 2px solid #F7DAB3;
  *zoom: 1;
}

.w-box-hd .title {
  margin-bottom: 10px;
  /* border-bottom: 2px solid #F7DAB3; */
  font: 16px/1 '微软雅黑', '黑体', '宋体', arial;
  color: #FF2424;
}

.w-box-hd .link {
  position: absolute;
  right: 0;
  bottom: 5px;
  line-height: 1.2;
}

.w-box-hd .link a {
  color: #ED271F;
}

/*
@name: w-section
@overview: 段落样式
@require: null
*/
.w-section {
  margin: 10px 0 15px;
  line-height: 1.8;
  text-indent: 2em;
}

.w-section .more {
  margin-left: .5em;
  color: #0066CC;
}

/*
@name: w-title
@overview: 标题样式
@require: null
*/
.w-title {
  font-weight: bold;
  margin: 20px 0 5px;
  font-size: 16px;
}

.w-subtitle {
  font-weight: bold;
  margin: 20px 0 5px;
  font-size: 13px;
}

/*
@name: w-list
@overview: 列表样式
@require: null
*/
.w-list {
  margin: 10px 0;
  line-height: 1.8;
}

.w-list-item {
  margin-bottom: 5px;
  *zoom: 1;
}

.w-list-item .date {
  margin-left: 1em;
  color: #666;
}

.w-list-dot .w-list-item {
  padding-left: 8px;
  background: url(../img/icon-dot.png) no-repeat 0 50%;
}

.w-list-dh .w-list-item {
  padding-left: 22px;
  background: url(../img/icon-dh.png) no-repeat 0 7px;
}

/*
@name: w-sections
@overview: 文章样式
@require: null
*/
.w-sections {
  overflow: hidden;
}

.w-sections-item {
  position: relative;
  top: -1px;
  padding: 15px 0;
  border-top: 1px dotted #DDD;
  overflow: hidden;
  *zoom: 1;
}

.w-sections-item-img {
  float: left;
  width: 62px;
  overflow: hidden;
}

.w-sections-item-txt {
  margin-left: 72px;
}

.w-sections-item-txt .title {
  font-weight: bold;
}

.w-sections-item-txt .cnt {
  line-height: 1.7;
  color: #666;
}

.w-sections-item-txt .download {
  color: #0066CC;
  text-decoration: underline;
}

.w-sections-item-txt .download:hover {
  *color: #0066CC;
  text-decoration: none;
}

/*
@name: w-article
@overview: 带图片和文字的文章
@require: null
*/
.w-article {
  padding: 15px 10px;
  border-bottom: 1px dotted #DDD;
  overflow: hidden;
  *zoom: 1;
}

.w-article img {
  float: left;
  border: 1px solid #eee;
}

.w-article p {
  margin-left: 95px;
  line-height: 2;
}

.w-article p .more {
  text-decoration: underline;
  color: #0066CC;
}

.w-article p .more:hover {
  text-decoration: none;
}

.w-article-odd {
  background: #FAFAFA;
}

.w-article-odd img {
  /* float: right; */
}

.w-article-odd p {
  /* margin: 0 205px 0 0; */
}

/*
@name: w-art
@overview: 文章样式
@require: null
*/
.w-art {
  padding: 15px 10px;
  border-bottom: 1px dotted #DDD;
  overflow: hidden;
  *zoom: 1;
}

.w-art .title {
  font-size: 14px;
  font-weight: bold;
}

.w-art .cnt {
  margin-top: 7px;
  line-height: 2;
}

.w-art .cnt .more {
  color: #AD2305;
}

.w-art .list {
  margin-top: 4px;
  color: #999;
  line-height: 2;
}

/*
@name: w-btn
@overview: 按钮样式
@require: null
*/
.w-btn {
  display: inline-block;
  text-indent: -9999px;
  *text-indent: 0;
  *font-size: 0;
  width: 190px;
  height: 50px;
  overflow: hidden;
  outline: none;
}

.w-btn-zc {
  background: #F22A22 url(../img/btn-zc.png) no-repeat;
}

.w-btn-zz {
  background: #FB9727 url(../img/btn-zz.png) no-repeat;
}

.w-btn-wrapper {
  margin: 20px 0;
  text-align: center;
}

.w-btn-wrapper .w-btn {
  margin: 0 25px;
}

/*
@name: w-imglink
@overview: 图片链接样式
@require: null
*/
.w-imglink {
  overflow: hidden;
}

.w-imglink-item {
  position: relative;
  padding: 10px 0;
  top: -1px;
  border-top: 1px dashed #DDD;
}

.w-imglink-item a {
  display: block;
}

.w-imglink-item a:hover {
  padding-left: 2px;
}

/*
@name: w-table
@overview: 表格样式
@require: null
*/
.w-table {
  margin-top: 15px;
  width: 100%;
  _width: 99%;
}

.w-table thead th {
  padding: 5px 10px;
  font-weight: bold;
  color: #fff;
  font-size: 15px;
  background: #AD2305;
}

.w-table tbody td {
  vertical-align: top;
  padding: 8px 6px;
}

.w-table tbody td h3 {
  font-weight: bold;
  font-size: 14px;
}

.w-table tbody td h4 {
  font-weight: bold;
}

/* .w-table tbody tr:hover {
  background: #FEF9EA;
} */
.w-table tbody tr.even {
  background: #fff;
}

.w-table tbody tr.subth {
  background: #fff;
}

.w-table tfoot td {
  padding: 10px 0 10px 15px;
  color: #999;
}

/*
@name: w-imgtable
@overview: 图片表格样式
@require: null
*/
.w-imgtable {
  margin: 5px 0;
  width: 100%;
  line-height: 1.5;
}

.w-imgtable th,
.w-imgtable td {
  padding: .5em 1em;
  border: 1px solid #ddd;
  vertical-align: top;
}

.w-imgtable th,
.ui-box .thead td {
  font-weight: bold;
  color: #000;
}

.w-imgtable .img td {
  padding: .5em;
  text-align: center;
}

.w-imgtable td.txt {
  padding: .5em 1em;
}

.w-imgtable td.txt h4,
.w-imgtable td.txt h5 {
  font-weight: bold;
  color: #000;
  /* font-size: 14px; */
}

.w-imgtable td.txt h5 {
  margin-top: 8px;
}

.w-imgtable td.txt h5 em {
  font-weight: bold;
  color: #FF7E16;
}

.w-imgtable td.txt p {
  margin: 8px 0 0;
}

.w-imgtable td.img {
  padding: .5em;
  text-align: center;
  vertical-align: top;
}

/*
@name: w-switchable
@overview: 焦点图样式
@require: jquery-switchable
*/
.w-switchable {
  margin-bottom: 20px;
  overflow: hidden;
  *zoom: 1;
  background: #fff;
}

.w-switchable-slide {
  position: relative;
  float: left;
  width: 520px;
  height: 325px;
  overflow: hidden;
}

.w-switchable-slide-item {
  position: absolute;
}

.w-switchable-slide .active {
  z-index: 1;
}

.w-switchable-slide-item .img,
.w-switchable-slide-item img {
  display: block;
  width: 520px;
  height: 325px;
}

.w-switchable-slide-item .title {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40px;
  font: 18px/40px '微软雅黑', '黑体', '宋体', arial;
  color: #fff;
  text-indent: 1em;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled='true', startColorstr='#7F000000', endColorstr='#7F000000');
  background: rgba(0, 0, 0, 0.5);
}

.w-switchable-slide-item .title a {
  color: #fff;
}

.w-switchable-trigger {
  float: right;
}

.w-switchable-trigger li {
  margin-bottom: 10px;
  /* *margin-bottom: 5px; */
}

.w-switchable-trigger img {
  display: block;
  width: 130px;
  height: 57px;
  filter: alpha(opacity=60);
  opacity: .6;
  cursor: pointer;
}

.w-switchable-trigger .active img {
  filter: alpha(opacity=100);
  opacity: 1;
}

/* Layout
----------------------------------------------------------------------------- */
/** 页眉 **/
#header {
  position: relative;
}

#header .topbar {
  height: 32px;
  line-height: 32px;
  background: #F5F5F5 url(../img/bg-topbar.png) repeat-x;
}

#header .topbar .menu {
  float: left;
  display: inline;
}

#header .topbar .menu-item {
  float: left;
  display: inline;
  margin-right: 4px;
  _margin-right: 2px;
  color: #444;
}

#header .topbar .menu-item a {
  margin-right: 4px;
  color: #1E376D;
}

#header .topbar .menu-user {
  float: right;
}

#header .topbar .menu-user .menu-item {
  margin-right: 0;
  margin-left: 4px;
  _margin-left: 2px;
}

#header .topbar .menu-user .menu-item a {
  margin-left: 0;
  margin-right: 4px;
}

#logininfo a {
  color: #1E376D;
}

#header .nav {
  height: 60px;
  background: #000;
}

#header .nav-item {
  float: left;
  display: inline;
}

#header .nav-item-first {
  margin-left: 30px;
}

#header .nav-item-last {
  padding: 0;
  background: none;
}

#header .nav-item a {
  float: left;
  padding: 0 10px;
  height: 60px;
  font: 18px/60px '微软雅黑', '黑体', '宋体', arial;
  color: #fff;
  text-decoration: none;
  outline: none;
}

#header .nav-item a:hover {
  text-decoration: underline;
}

#header .nav-item-active a {
  color: #770606;
  background: #fff;
}

#header .banner-links a {
  position: absolute;
  left: 50%;
  margin-left: -86px;
  top: 62px;
  display: block;
  width: 258px;
  height: 45px;
  /* border: 1px solid #fff; */
  text-indent: -9999px;
  overflow: hidden;
}

#header .banner-links a:hover {
  /* filter: alpha(opacity=10); */
  opacity: .08;
  background: #fff;
  border-radius: 5px;
}

/** 内容 **/
#content {
  position: relative;
  padding: 30px 0 20px;
  background: #fff;
  overflow: hidden;
}

#content.w-cnt-show {
  top: -49px;
  margin-bottom: -62px;
}

#content.w-cnt-show .w-box-hd {
  border: none;
}

#content.w-cnt-show .w-box-hd .title {
  font-size: 20px;
  margin-bottom: 20px;
}

#content .position {
  margin: -10px 20px 20px;
}

#content .position a {
  color: #000;
}

#content .position .home {
  padding-left: 15px;
  background: url(../img/icon-home.png) no-repeat 0 50%;
}

#content .position span {
  margin: 0 .3em;
  color: #444;
  font-family: sans-serif;
}

#content .position em {
  color: #C03F10;
}

#content .main {
  margin: 0 20px 0 230px;
}

html.index #content .main {
  margin-left: 280px;
}

#content .main .w-box-hyld .w-list-item {
  margin-bottom: 15px;
}

#content .main .w-table .w-list {
  margin: 0;
}

#content .side {
  float: left;
  width: 180px;
  padding-left: 20px;
}

html.index #content .side {
  width: 238px;
}

#content .side .w-box-hd .title {
  font-size: 14px;
}

#content .side .w-box-jbxx .w-list-item {
  overflow: hidden;
  *zoom: 1;
}

#content .side .w-box-jbxx .w-list-item .dt {
  float: left;
}

#content .side .w-box-jbxx .w-list-item .dd {
  display: block;
  overflow: hidden;
  *zoom: 1;
}

#content .side .nav {
  margin-bottom: 20px;
}

#content .side .nav-item {
  padding: 11px 0;
  border-bottom: 1px dotted #F7DAB3;
}

#content .side .nav-item a {
  display: inline-block;
  padding-left: 20px;
  font: 14px/1 '微软雅黑', '黑体', '宋体', arial;
  color: #FF3F3F;
  background: url(../img/arrow-rt.png) no-repeat 0 50%;
}

#content .side .nav-item a:hover {
  background-position: 2px 50%;
}

#content .side .nav-item-active a {
  color: #000;
  cursor: default;
  text-decoration: none;
  background-position: 0 50%;
}

#content .side .nav-item-active a:hover {
  background-position: 0 50%;
}

#content .side .w-box-ad .w-imglink-item a:hover {
  padding-left: 0;
}

#content .side .w-box-ad .w-imglink-item img {
  width: 100%;
}

/* 首页-2013部分特邀嘉宾及评委 */
/* .w-list-jb {
  margin: 10px 0;
}
.w-list-jb .w-list-item {
  float: left;
  margin: 0 -1px 0 0;
  width: 108px;
  border: 1px solid #ddd;
} */
.w-jbpw {
  table-layout: fixed;
  margin: 15px 0;
  width: 100%;
  _width: 99%;
}

.w-jbpw td {
  border: 1px solid #ccc;
  vertical-align: top;
}

.w-jbpw-item td {
  padding: 4px 8px;
  border: none;
}

.w-jbpw-item td.img {
  border-bottom: 1px solid #ccc;
  vertical-align: bottom;
  text-align: center;
}

.w-jbpw-item td.img a {
  display: inline-block;
  /* width: 88px; */
  width: 80px;
  height: 116px;
  overflow: hidden;
  vertical-align: bottom;
  text-align: center;
}

.w-jbpw-item td.img img {
  margin-left: -5px;
  width: auto;
  height: 100%;
}

.w-jbpw-item td .name a {
  color: #0066CC;
}

.w-jbpw-item td .intro {
  margin-top: 4px;
  line-height: 1.5;
  /* color: #333; */
}

/* 首页-2013部分特邀嘉宾及评委 */
.w-list-jb {
  margin: 5px -30px 15px 0;
  overflow: hidden;
  *zoom: 1;
}

.w-list-jb .w-list-item {
  float: left;
  margin: 10px 30px 0 0;
  _margin: 10px 21px 0 0;
  width: 140px;
  border: 1px solid #ddd;
}

.w-list-jb .w-list-item .photo {
  padding: 5px 10px;
  border-bottom: 1px solid #ccc;
  text-align: center;
}

.w-list-jb .w-list-item .photo a {
  display: block;
  /* width: 100px; */
  height: 120px;
  overflow: hidden;
  vertical-align: bottom;
}

.w-list-jb .w-list-item .photo img {
  /* margin-left: -5px; */
  width: auto;
  height: 100%;
}

.w-list-jb .w-list-item .txt {
  padding: 5px 10px;
}

.w-list-jb .w-list-item .txt .name a {
  color: #0066CC;
}

.w-list-jb .w-list-item .txt .intro {
  margin-top: 3px;
  height: 54px;
  line-height: 18px;
  overflow: hidden;
}

/* 嘉宾介绍 */
.xtable {
  margin-bottom: 20px;
  border-collapse: separate;
  border-spacing: 1px;
  _width: 99%;
}

.xtable td {
  padding: 4px 8px;
}

.xtable td.photo {
  padding: 3px;
}

/** 礼品 **/
.smartfloat {
  position: absolute;
  z-index: 100;
  left: 10px;
  top: 418px;
  width: 135px;
  overflow: hidden;
  /* -moz-box-shadow: 1px 1px 2px rgba(0,0,0,.2);
  -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,.2);
  box-shadow: 1px 1px 2px rgba(0,0,0,.2); */
}

.smartfloat .closer {
  position: absolute;
  right: 1px;
  top: 1px;
  display: block;
  width: 20px;
  height: 20px;
  background: #000;
  filter: alpha(opacity=0);
  opacity: 0;
}

/** 页脚 **/
#bottom {
  font: 12px Arial, Helvetica, sans-serif;
  color: #333;
  background: #fff;
  width: 960px;
  padding: 10px 0;
  margin: 0 auto;
  overflow: hidden;
  *zoom: 1;
}

.bottom-m {
  border: 1px #cc0000 solid;
  background: #FFF4F4;
}

.bottom-m-1 {
  height: 29px;
  border-bottom: 2px #FF6044 solid;
  border-right: 2px #FF6044 solid;
  border-left: 2px #fff solid;
  border-top: 2px #fff solid;
  line-height: 29px;
  text-align: center;
}

.bottom-m-1 a {
  color: #333;
  text-decoration: none;
}

.bottom-m-1 a:hover {
  text-decoration: underline;
}

.bottom-2 {
  margin: 5px 0px;
  text-align: center;
  line-height: 18px;
  color: #666;
}

.bottom-2 a {
  color: #020346;
}

.bottom-110 {
  text-align: center;
  margin: 5px 0px;
}

/* followbox */
*html {
  background-image: url(about:blank);
  background-attachment: fixed;
}

#followbox {
  position: fixed;
  z-index: 9999;
  right: 10px;
  bottom: 10px;
  padding-top: 10px;
  width: 150px;
  text-align: center;
  color: #fff;
  line-height: 1.5;
  background: #FF6500;
  _position: absolute;
  _top: expression(document.documentElement.clientHeight + document.documentElement.scrollTop - this.clientHeight - 10);
}

#followbox .closer {
  position: absolute;
  right: 0;
  top: 0;
  width: 14px;
  height: 14px;
  font: 12px/14px Arial;
  overflow: hidden;
  color: #fff;
  background: #341302;
  text-decoration: none;
}

#followbox .closer:hover {
  opacity: .88;
  filter: alpha(opacity=88);
}

#followbox dt {
  margin: 5px 0 3px;
}

#followbox dt.code {
  font-size: 14px;
}

#followbox dd.code {
  width: 117px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 5px;
  text-align: center;
  font-size: 12px;
  color: #000;
  background: #fff;
}

#followbox dd.wb {
  width: 67px;
  margin-left: auto;
  margin-right: auto;
}

#followbox dd.code strong {
  font-weight: normal;
  color: #FE020F;
}

#followbox dt.share {
  margin-bottom: 0;
  height: 22px;
  line-height: 22px;
  overflow: hidden;
  color: #fff;
  background: #0A284D;
  cursor: pointer;
}

#followbox dd.share {
  display: none;
}

.jiabin {
  border-left: solid 1px #ddd;
  border-top: solid 1px #ddd;
  margin-top: 20px;
  width: 660px;
}

.jiabin tr td {
  border-right: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  line-height: 20px;
  padding: 5px;
  vertical-align: top;
}

.jiabin tr td img {
  width: 84px;
  height: 74px;
}

.red a:link,
.red a:visited,
.red a:hover {
  color: #cc0000;
}

.w-jbpw-item td .name {
  font-size: 14px;
  font-weight: bold;
  color: #0066CC;
}

.w-jbpw-item td .name a {
  color: #0066CC;
}

.w-jbpw-item td.img img {
  height: 116px;
  width: 89px;
}

.detail-jj td {
  padding: 5px 10px;
  line-height: 20px;
}

/*浮窗*/
.fuchuang {
  position: fixed;
  z-index: 9999;
  left: 0px;
  _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)));
  bottom: 140px;
  _margin-bottom: 140px;
  width: 150px;
  height: 212px;
  background: url(../img/fc2.png) no-repeat;
}

.fuchuang .fuchuang_zc,
.fuchuang .fuchuang_traffic,
.fuchuang .fuchuang_qyzz {
  width: 150px;
  height: 70px;
  display: block;
}

.fuchuang .fuchuang_zc {
  background-position: 0 0;
}

.fuchuang .fuchuang_traffic {
  background: 0 -71px;
}


#g-footer {
  background: #fff;
  height: 280px;
}

/* banner */
.banner-container {
  width: 100%;
  height: 654px;
  position: relative;
}

.banner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}

.banner li {
  width: 100%;
  height: 100%;
  position: absolute;
  display: none;
}

.banner-btn {
  position: absolute;
  z-index: 2;
  right: 50%;
  bottom: 20px;
  margin-right: -500px;
}

.banner-btn li {
  float: left;
  width: 100px;
  height: 6px;
  margin-right: 8px;
  line-height: 0;
  background-color: #fff;
  cursor: pointer;
}

.banner-btn li.active {
  background-color: #04cef5;
}

.erect-nav #content.w-cnt-show {
  top: 0;
  margin-bottom: 0;
}

.erect-nav #header .nav {
  display: none;
}

/* 会议日程表格颜色 */
.w-table tbody tr.td-bg1 {
  background: #943734;
  color: #fff;
}

.w-table tbody tr.td-bg2 {
  background: #e5b8b7;
}


/* 奖项揭晓 */
.hjmd-tab-btn {
  margin-top: 15px;
  overflow: hidden;
}

.hjmd-tb li {
  float: left;
  width: 25%;
  height: 40px;
  font: normal 16px/40px "microsoft yahei";
  color: #333;
  text-align: center;
  font-weight: bold;
  background-color: #efefef;
  cursor: pointer;
}

.hjmd-tb li.current {
  background-color: #ad2305;
  color: #fff;
}

.hjmd-tab-content {
  margin-top: 40px;
}

.hjmd-tc,
.hjmd-tc-s {
  display: none;
  font-size: 0;
}

.hjmd-tc li,
.hjmd-tc-s li {
  display: inline-block;
  width: 220px;
  text-align: center;
  margin-right: 10px;
  margin-bottom: 20px;
  font-family: "microsoft yahei";
  font-size: 13px;
  vertical-align: top;
}

.hjmd-tc li:nth-child(4n),
.hjmd-tc-s li:nth-child(4n) {
  margin-right: 0;
}

.hjmd-tc li a img,
.hjmd-tc-s li a img {
  width: 220px;
  height: 160px;
}

.hjmd-tc .bold,
.hjmd-tc-s .bold {
  padding-bottom: 5px;
  margin-top: 15px;
  font-weight: bold;
}

.hjmd-tc .fl,
.hjmd-tc-s .fl {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: top;
  line-height: 18px;
}

.hjmd-product {
  /* width:170px; */
  text-align: left;
  line-height: 18px;
}

/* 左侧导航 */
.sidebar {
  position: fixed;
  left: 0;
  top: 200px;
  width: 122px;
  background: url("../images/180917/leftnav-top.png") no-repeat left top, url("../images/180917/leftnav-bottom.png") no-repeat right bottom;
}

.sidebar .sidebar-wrap {
  width: 100%;
  background-color: #0c276c;
  margin: 40px 0;
}

.sidebar .sidebar-wrap .sibar-item {
  width: 100%;
  height: 40px;
  background-color: #2093ff;
  margin-bottom: 1px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
}

.sidebar .sidebar-wrap .sibar-item a {
  display: block;
  color: #fff;
  font: 16px/40px '微软雅黑', '黑体', '宋体', arial;
}

.sidebar .sidebar-wrap .sibar-item:hover {
  background-color: #0476e1;
}

.sidebar .sidebar-wrap .sibar-item.active {
  background-color: #0476e1;
}

.back {
  height: 46px;
}

.huojiang_list>li>i {
  display: inline-block;
  width: 7px;
  height: 11px;
  background: url(../images/180917/sanjiaoxing.png) no-repeat center center;
  margin-right: 5px;
}

.hdgz-qrcode {
  text-align: center;
}

.hdgz-qrcode>div {
  display: inline-block;
  margin: 0 30px;
}

.hdgz-qrcode>div p img {
  width: 15px;
  height: 15px;
  vertical-align: middle;
}