@charset 'utf-8';

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

/* Global
----------------------------------------------------------------------------- */
/* 默认文字和背景颜色 */
html {
  background-color: #025AB5;
  _background-image: url(about:blank);
  _background-attachment: fixed;
}
body {
  color: #000;
  font: 12px/1.5 Tahoma,'Simsun',arial;
  _word-wrap: break-word;
  background: #025AB5 url(../img/bg.jpg) repeat-x 50% 32px;
}

/* 链接样式 */
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 .mt15 {
  margin-top: 15px;
}
#w .mt20 {
  margin-top: 20px;
}
#w .mt30 {
  margin-top: 30px;
}
#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;
}

/*
@name: w-box
@overview: 通用盒样式
@require: null
*/
.w-box {
  margin-bottom: 20px;
}
.w-box-hd {
  position: relative;
  border-bottom: 2px solid #F56905;
  *zoom: 1;
}
.w-box-hd .title {
  margin-bottom: 10px;
  _margin-bottom: 6px;
  font: 19px/1.2 '微软雅黑','黑体','宋体',arial;
  color: #FF0101;
}
.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-nowrap .w-list-item {
  height: 21px;
  line-height: 21px;
  white-space: nowrap;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.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: 40px;
  overflow: hidden;
}
.w-sections-item-txt {
  margin-left: 52px;
}
.w-sections-item-txt .title {
  margin-bottom: 5px;
  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;
}

/*
@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 {
  padding: 5px 10px;
  line-height: 1.8;
  vertical-align: top;
}
.w-table tbody td h3 {
  font-weight: bold;
  font-size: 14px;
}
.w-table tbody td h4 {
  font-weight: bold;
}
.w-table tbody td.title {
  padding-top: 3px;
  padding-bottom: 3px;
  font-weight: bold;
  font-size: 14px;
  color: #fff;
  background: #F56905;
}
.w-table tbody td p {
  margin: 0 0 5px;
}
/* .w-table tbody tr:hover {
  background: #FEF9EA;
} */
.w-table tbody tr.even {
  background: #FEF9EA;
}
.w-table tbody tr.subth {
  background: #FECDC2;
}
.w-table tfoot td {
  padding: 15px 0 10px;
  color: #666;
}

/*
@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: 537px;
  height: 335px;
  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: 537px;
  height: 336px;
}
.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: #F56905;
}
.w-switchable-trigger {
  float: right;
}
.w-switchable-trigger li {
  margin-bottom: 10px;
  /* *margin-bottom: 5px; */
}
.w-switchable-trigger img {
  display: block;
  width: 136px;
  height: 59px;
  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 {
  _position: relative;
  margin-top: 324px;
  border-bottom: 3px solid #0486E8;
  background: #002D59;
}
#header .nav-item {
  float: left;
  display: inline;
  padding-left: 2px;
  background: url(../img/bg-nav-item.png) no-repeat 0 50%;
}
#header .nav-item.first {
  margin-left: 30px;
  padding-left: 0;
  background: none;
}
#header .nav-item a {
  float: left;
  padding: 0 21px;
  height: 46px;
  font: 15px/46px '微软雅黑','黑体','宋体',arial;
  color: #fff;
  text-decoration: none;
  outline: none;
}
#header .nav-item a:hover {
  text-decoration: underline;
}
#header .nav-item.current a {
  position: relative;
  margin: 0 -2px;
  padding: 0 28px 0 30px;
  line-height: 49px;
  background: #0486E8;
  text-decoration: none;
}
#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 .main {
  margin: 0 20px 0 260px;
  _margin: 0 20px 0 257px;
}
#content .main .w-box-bd .txt {
  margin: 5px 0;
}
#content .main .w-box-bd .x-logos {
  font-size: 0;
  letter-spacing: 0;
  word-spacing: 0;
  /*text-align: justify;*/
  text-align: center;
}
#content .main .w-box-bd .x-logos img {
  margin: 0 24px;
  /*width: 120px;*/
  width: 87px;
  vertical-align: middle;
}
#content .main .w-box-bd .x-logos img.logos {
  width: 680px;
  margin: 0;
}
#content .main .w-btn-wrapper {
  margin: 30px 0;
  padding-top: 60px;
  border-top: 2px solid #E4E4E4;
  text-align: center;
}
#content .main .w-btn-wrapper .w-btn {
  margin: 0 25px;
}
#content .side {
  float: left;
  width: 210px;
  padding-left: 20px;
}
#content .side .w-box-hd {
  border-color: #D5D5D5;
}
#content .side .w-box-hd .title {
  font-size: 14px;
  color: #F56905;
}

/* 部分特邀嘉宾及评委 */
.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;
  /*width: 145px;*/
  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: 64px;
  line-height: 16px;
  overflow: hidden;
}

/* 部分嘉宾介绍 */
.w-table-jb {
  border: 1px solid #ccc;
}
.w-table-jb tbody td {
  padding: 8px;
  border: 1px solid #ccc;
}
.w-table-jb tbody td img {
  width: 100px;
  height: auto;
}
.w-table-jb tbody td h4 {
  margin-top: 4px;
  text-align: center;
  font-weight: normal;
}
.w-table-jb tbody td h5 {
  margin-bottom: 4px;
  font-weight: bold;
  line-height: 1.2;
}
/*.w-table-jb tbody td p {
  margin: 0 0 15px 0;
}*/

/* 注册参会企业 */
.w-box-scroll .w-box-bd {
  margin: 10px 0;
  height: 80px;
  overflow: hidden;
}
.w-box-scroll .w-list {
  margin: 0;
}
.w-box-scroll .w-list-item {
  float: left;
  width: 33.33%;
  margin-right: -3px;
  /*width: 210px;*/
  /*margin-right: 9px;*/
  /*margin: 15px 15px 0 0;*/
}

/* 精彩回顾页 */
.yant {
  overflow: hidden;
  *zoom: 1;
  margin: 15px 0;
  padding-bottom: 15px;
  border-bottom: 1px dashed #ccc;
}
.yant .tup {
  float: left;
}
.yant .tup img {
  display: block;
  width: 270px;
  height: 160px;
  padding: 2px;
  border: 1px solid #ccc;
}
.yant dl {
  margin-left: 286px;
  overflow: hidden;
  *zoom: 1;
}
.yant dt {
  font-size: 14px;
  color: #cc0000;
  font-weight: bold;
}
.yant dd {
  padding-top: 5px;
  line-height: 20px;
  overflow: hidden;
  *zoom: 1;
}
.yant dd a {
  color: #020346;
}
.yant dd a:hover {
  color: #cc0000;
}
.webtw {
  margin: 15px 0 10px;
  overflow: hidden;
  *zoom: 1;
}
.webtu {
  width: 230px;
  float: left;
  text-align: center;
  padding-top: 13px;
}
.webtur {
  margin-left: 240px;
  overflow: hidden;
  *zoom: 1;
}
.webtur p {
  margin: 5px 0;
  line-height: 24px;
  font-size: 14px;
}
.webtur p a {
  color: #cc0000;
  text-decoration: none;
  font-weight: bold;
}
.webtext {
  line-height: 20px;
  padding-top: 5px;
  padding-bottom: 8px;
  padding-left: 5px;
}
.webtext p {
  margin: 5px 0;
  text-indent: 2em;
}
.clearline {
  display: block;
  height: 1px;
  overflow: hidden;
  border-bottom: 1px #CCCCCC dashed;
}
.webxx1 {
  margin: 20px 0;
  overflow: hidden;
  *zoom: 1;
}
.webxx1-1 {
  float: left;
  width: 230px;
}
.webxx1-2 {
  /*float: right;
  width: 480px;*/
  margin-left: 240px;
  overflow: hidden;
}
.webxx1-2 img {
  margin-top: 7px;
}
.webxx1-1 p {
  margin: 0px;
  text-align: center;
  padding-top: 40px;
}
.webxxnr {
  /*border: 3px #efefef solid;*/
}
.webxxnr p {
  /*margin: 0px;*/
  /*width: 464px;*/
  /*padding: 0px 5px;*/
}
p.webtitle {
  /*border-bottom: 1px #efefef solid;*/
  line-height: 25px;
  font-size: 14px;
  font-weight: bold;
}
p.webtime {
  /*border-bottom: 1px #efefef solid;*/
  line-height: 22px;
  font-weight: bold;
  color: #cc0000;
}
p.webtime2 {
  /*border-bottom: 1px #efefef solid;*/
  line-height: 22px;
}
p.websm {
  line-height: 18px;
  padding-top: 3px;
  padding-bottom: 3px;
}

/** 礼品 **/
/*.smartfloat {
  position: absolute;
  z-index: 100;
  left: 10px;
  top: 418px;
  width: 135px;
  overflow: hidden;
}
.smartfloat .closer {
  position: absolute;
  right: 1px;
  top: 1px;
  display: block;
  width: 20px;
  height: 20px;
  background: #000;
  filter: alpha(opacity=0);
  opacity: 0;
}*/

/** 页脚 **/
html .foot {
  border-top: 1px solid #ddd;
  background: #fff;
}
html #bottom {
  margin: 10px auto 0;
  padding-top: 10px;
  overflow: hidden;
  text-align: left;
  width: 990px;
  font: 12px/1.5 \5b8b\4f53, arial;
}
#bottom .bottom-m {
  float: left;
  height: 33px;
  width: 988px;
  border: none;
  background: none;
}
#bottom .bottom-m-1 {
  height: 29px;
  line-height: 29px;
  text-align: center;
  width: 984px;
  border: none;
}
#bottom .bottom-m-1 a {
  color: #1a4991;
  text-decoration: none;
}
#bottom .bottom-m-1 a:hover {
  color: #cc0000;
  text-decoration: underline;
}
#bottom .bottom-2 {
  color: #666666;
  float: left;
  line-height: 25px;
  padding: 5px 0;
  text-align: center;
  width: 100%;
}
#bottom .bottom-2 a {
  color: #253751;
}
#bottom .bottom-110 {
  float: left;
  padding: 5px 0;
  text-align: center;
  width: 100%;
}