@charset 'utf-8';
/* 名称：OFweek 资讯网全局样式
说明：此样式文件为全站通用的模块提供样式，且不影响网站已有样式。
注意：修改此样式表请慎重！除非你知道你在做什么！
作者：王文 | wangwen1220#139.com | 2012-12-19
更新：2013-12-12 */

/* 样式重设
----------------------------------------------------------------------------- */
/* 清除内外边距 */
.G-reset, .G-reset * {
	margin: 0;
	padding: 0;
}
/* 让用户可以自定义字体 */
.G-reset {
	color: #444;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	_word-wrap: break-word; /* 防止 IE6 连字符撑开布局 */
}
/* 要注意表单元素并不继承父级 font 的问题 */
.G-reset, .G-reset button, .G-reset input, .G-reset select, .G-reset textarea {
	font: 12px/1.5 \5b8b\4f53, tahoma, arial, "Hiragino Sans GB";
}
/* 重设 HTML5 标签，IE 需要在 js 中 createElement(TAG) */
.G-reset article, .G-reset aside, .G-reset details, .G-reset figcaption, .G-reset figure, .G-reset footer, .G-reset header, .G-reset hgroup, .G-reset menu, .G-reset nav, .G-reset section {
	display: block;
}
/* HTML5 媒体文件跟 img 保持一致 */
.G-reset audio, .G-reset canvas, .G-reset video {
	display: inline-block;
 *display: inline;
 *zoom: 1;
}
/* 使表单元素在 IE 下能继承字体大小 */
.G-reset input, .G-reset select, .G-reset textarea {
	font-size: 100%;
}
/* 解决在 IE7 及更早浏览器下随着 value 增多两边留白也随着增加的问题 */
.G-reset input, .G-reset button {
 *overflow: visible;
}
/* 去掉各Table cell 的边距并让其边重合 */
.G-reset table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* IE bug fixed:th 不继承 text-align */
.G-reset th {
 *text-align: inherit;
}
/* 去除默认边框 */
.G-reset fieldset, .G-reset img {
	border: 0;
}
/* ie6 7 8(q) bug 显示为行内表现 */
.G-reset iframe {
 *display: block;
}
/* 去掉 firefox 下此元素的边框 */
.G-reset abbr, .G-reset acronym {
	border: 0;
	font-variant: normal;
}
/* 一致的 del 样式 */
.G-reset del {
	text-decoration: line-through;
}
/* 将斜体扶正 */
.G-reset address, .G-reset caption, .G-reset cite, .G-reset code, .G-reset dfn, .G-reset em, .G-reset th, .G-reset var, .G-reset i {
	font-style: normal;
	font-weight: 500;
}
/* 代码字体 */
.G-reset code, .G-reset kbd, .G-reset pre, .G-reset samp {
	font-family: monospace, serif;
	font-size: 1em;
}
/* 去掉列表前的标识 li 会继承 */
.G-reset ol, .G-reset ul {
	list-style: none;
}
/* 对齐是排版最重要的因素，别让什么都居中 */
.G-reset caption, .G-reset th {
	text-align: left;
}
/* 来自 Yahoo，让标题都自定义，适应多个系统应用 */
.G-reset h1, .G-reset h2, .G-reset h3, .G-reset h4, .G-reset h5, .G-reset h6 {
	font-size: 100%;
	font-weight: 500;
}
.G-reset q:before, .G-reset q:after {
	content: '';
}
/* 统一上标和下标 */
.G-reset sub, .G-reset sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}
.G-reset sup {
	top: -0.5em;
}
.G-reset sub {
	bottom: -0.25em;
}
/* 标记，类似于手写的荧光笔的作用 */
.G-reset mark {
	background: #fffdd1;
}
/* 链接样式 */
.G-reset a {
	color: #444;
}
.G-reset a:hover {
	color: #444;
	text-decoration: underline;
}
/* 默认不显示下划线，保持页面简洁 */
.G-reset ins, .G-reset a {
	text-decoration: none;
}
/* 常用功能
----------------------------------------------------------------------------- */
/* 浮动 */
.fn-fl, .fn-fr {
	display: inline;
}
.fn-fl {
	float: left;
}
.fn-fr {
	float: right;
}
.fn-fn {
	float: none;
}
/* 清除浮动 */
.fn-cl {
	clear: left;
}
.fn-cr {
	clear: right;
}
.fn-cb {
	clear: both;
}
/* 清理浮动 */
.fn-clear:after {
	content: '';
	display: block;
	clear: both;
	visibility: hidden;
	height: 0;
	font-size: 0;
}
.fn-clear {
 *zoom: 1; /* for IE6-7 */
}
/* 更简洁的清理浮动方式 */
.fn-clearfix:before, /* :before 伪类，是用来处理 top-margin 边折叠 */ .fn-clearfix:after {
	content: '';
	display: table; /* 隐藏这个空白使用的是 display: table */
}
.fn-clearfix:after {
	clear: both;
}
.fn-clearfix {
 *zoom: 1; /* for IE6-7 */
}
/* 隐藏，通常用来与 js 配合 */
.fn-hide {
	display: none;
}
/* 单行文字溢出时出现省略号，需设定宽度 */
.fn-text-overflow {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
/* 简单的渐变 */
.fn-linear {
	background: -webkit-gradient(linear, left top, left bottom, from(#fcfcfc), to(#f1f1f1));
	background: -moz-linear-gradient(top, #fcfcfc, #f1f1f1);
 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfcfc', endColorstr='#f1f1f1');
	background: -o-linear-gradient(top, #fcfcfc, #f1f1f1);
	background: -ms-linear-gradient(top, #fcfcfc, #f1f1f1);
	background: linear-gradient(top, #fcfcfc, #f1f1f1);
}
/* 浅色的渐变 */
.fn-linear-light {
	background: -webkit-gradient(linear, left top, left bottom, from(#fcfcfc), to(#f9f9f9));
	background: -moz-linear-gradient(top, #fcfcfc, #f9f9f9);
 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfcfc', endColorstr='#f9f9f9');
	background: -o-linear-gradient(top, #fcfcfc, #f9f9f9);
	background: -ms-linear-gradient(top, #fcfcfc, #f9f9f9);
	background: linear-gradient(top, #fcfcfc, #f9f9f9);
}
/* 人民币符号 */
.fn-rmb {
	font-family: arial;
	font-style: normal;
	padding-right: 4px;
}
/* chrome 下字体过小的问题 */
.fn-webkit-adjust {
	-webkit-text-size-adjust: none;
}
/* 通用模块
----------------------------------------------------------------------------- */
/* @name:G-boxm1
@overview:通用盒模块1
@require:null */
.G-boxm1 {
	margin: 10px 0;
	border: 1px solid #ddd;
	border-top: none;
}
.G-boxm1 .G-boxm1-hd {
	height: 28px;
	line-height: 28px;
	background: #E00000 url(../images/global-steven/bg-G-boxm1-hd.png) repeat-x;
}
.G-boxm1 .G-boxm1-hd-title {
	float: left;
	display: inline;
	margin-left: -1px;
	padding: 0 50px 0 0;
	border-left: 1px solid #CC0000;
	font-weight: bold;
	font-size: 16px;
	color: #fff;
	background: url(../images/global-steven/bg-G-boxm1-title.png) no-repeat 100% 50%;
}
.G-boxm1 .G-boxm1-hd-title span {
	display: block;
	padding-left: 26px;
	background: url(../images/global-steven/icon-G-boxm1-title.png) no-repeat 6px 50%;
}
.G-boxm1 .G-boxm1-hd-links {
	float: right;
	display: inline;
	padding-right: 10px;
	color: #666;
}
.G-boxm1 .G-boxm1-hd-links a {
	color: #17498F;
}
.G-boxm1 .G-boxm1-hd-links a:hover {
	color: #cc0000;
}
.G-boxm1 .G-boxm1-hd-search {
	float: right;
	display: inline;
	margin-right: 10px;
	_margin-top: 3px;
}
.G-boxm1 .G-boxm1-hd-search input {
	padding: 0 5px;
	width: 136px;
	height: 18px;
	line-height: 18px;
	border: 1px solid #707070;
	color: #666;
	background: #fff;
}
.G-boxm1 .G-boxm1-hd-search input:focus, .G-boxm1 .G-boxm1-hd-search input.focus {
	color: #000;
}
.G-boxm1 .G-boxm1-hd-search select {
	margin: 0 2px;
	padding: 1px 0;
	_margin: 0 7px 0 2px;
	min-width: 88px;
	border: 1px solid #707070;
	/* font-size: 14px;
  */
	_position: relative;
	_top: -1px;
}
.G-boxm1 .G-boxm1-hd-search button {
	padding: 0 8px;
	height: 20px;
	line-height: 20px;
	_line-height: 18px;
	border: none;
	border-radius: 4px;
	color: #fff;
	font-weight: bold;
	background: #D80101;
	cursor: pointer;
}
/* @name:G-hdm1
@overview:通用标题模块1
@require:null */
.G-hdm1 {
	height: 24px;
	line-height: 24px;
	border-bottom: 1px solid #CCCCCC;
}
.G-hdm1 .G-hdm1-title {
	float: left;
	font-weight: bold;
	font-size: 14px;
	color: #333;
	padding: 0 0 0 25px;
	background: url(../images/global-steven/icon-G-hdm1-title.png) no-repeat 4px 50%;
}
.G-hdm1 .G-hdm1-links {
	float: right;
	color: #666;
}
.G-hdm1 .G-hdm1-links a {
	color: #1A4991;
}
.G-hdm1 .G-hdm1-links a:hover {
	color: #cc0000;
}
/* @name:G-list
@overview:通用列表模块
@require:null */
.G-list {
	margin: 10px 0;
}
.G-list-item {
	height: 22px;
	line-height: 22px;
	white-space: nowrap;
	overflow: hidden;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;
	_vertical-align: top; /* 解决 ie6 下 li 之间有间隙的问题 */
}
.G-list-item a {
	color: #253751;
}
.G-list-item a:hover {
	color: #CC0000;
}
/* G-list-mdot */
.G-list-mdot .G-list-item {
	padding-left: 10px;
	background: url(../images/global-steven/icon-dot.png) no-repeat 0 50%;
 *background-position: 0 8px;
}
/* G-list-mdate */
.G-list-mdate .G-list-item {
	position: relative;
	padding-right: 50px;
}
.G-list-mdate .G-list-item .G-list-item-date {
	position: absolute;
	right: 0;
	top: 0;
	color: #767676;
}
.G-list-dot .G-list-item a, .G-list-mdate .G-list-item a {
	_display: inline-block;
	_height: 100%;
	_overflow: hidden;
	_text-overflow: ellipsis;
}
/* @name:G-album1
@overview:通用相册模块1
@require:null */
.G-album1 {
	margin-right: -10px;
}
.G-album1 .G-album1-item {
	float: left;
	display: inline;
	margin: 10px 10px 0 0;
}
.G-album1 .G-album1-item-img {
	display: block;
	position: relative;
	text-decoration: none;
	_zoom: 1;
}
.G-album1 .G-album1-item-img:hover {
	text-decoration: none;
}
.G-album1 .G-album1-item-img .x-playbar {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	_width: 100%;
	height: 20px;
	line-height: 20px;
	overflow: hidden;
 *zoom: 1;
 filter: progid:DXImageTransform.Microsoft.gradient(enabled='true', startColorstr='#B2000000', endColorstr='#B2000000');
	background: rgba(0, 0, 0, 0.7);
 *cursor: pointer;
}
.G-album1 .G-album1-item-img .x-playbar .x-icon {
	float: left;
	display: inline;
	margin: 0 6px;
	height: 100%;
	width: 13px;
	background: url(../images/global-steven/icon-play.png) no-repeat 0 50%;
	_height: 13px;
	_margin-top: 3px;
	_background: none;
 _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/global-steven/icon-play.png', sizingMethod='scale');
}
.G-album1 .G-album1-item-img .x-playbar .x-time {
	float: right;
	display: inline;
	margin: 0 6px;
	color: #fff;
}
.G-album1 .G-album1-item-title {
	margin-top: 4px;
	height: 18px;
	line-height: 18px;
	overflow: hidden;
	color: #444;
	text-align: center;
}
/* @name:G-tablem1
@overview:通用表格模块1
@require:null */
.G-tablem1 {
	width: 100%;
}
.G-tablem1 thead {
	background: #F2F2F2;
}
.G-tablem1 tbody {
	background: #fff;
}
.G-tablem1 tfoot {
	background: #EFEFEF;
}
.G-tablem1 th, .G-tablem1 td {
	padding: 4px 10px;
}
/* .G-tablem1 th:first-child, .G-tablem1 td:first-child {
  text-align: left;
}
*/
.G-tablem1 th {
	color: #333;/* font-weight: bold;
  */
  /* text-align: center;
  */
}
.G-tablem1 td a {
	color: #253751;
}
.G-tablem1 td a:hover {
	color: #CC0000;
}
.G-tablem1 tfoot td {
	text-align: right;
}
.G-tablem1 tfoot td a {
	display: inline-block;
	padding: 0 7px;
	line-height: 18px;
	border: 1px solid #CDCDCD;
	color: #333;
	background: #fff;
}
.G-tablem1 tfoot td a:hover {
	color: #c00;
	background: #f7f7f7;
	text-decoration: none;
}
/* @name:G-catsm1
@overview:通用目录模块1
@require:null */
.G-catsm1 {
	margin: 10px 0;/* background: #ccc;
  */
}
.G-catsm1 .G-catsm1-item {
	float: left;
	display: inline;
	margin: 0 0 0 12px;
	width: 108px;
	line-height: 16px;
	color: #666;
}
.G-catsm1 .G-catsm1-title {
	height: 18px;
	line-height: 18px;
}
.G-catsm1 .G-catsm1-title a, .G-catsm1 .G-catsm1-title a:hover {
	color: #444;
}
.G-catsm1 .G-catsm1-title.x-icon a {
	padding-left: 20px;
	background: url(../images/global-steven/icon-fold.png) left 1px no-repeat;
}
.G-catsm1 .G-catsm1-title.x-icon-unfold a {
	background: url(../images/global-steven/icon-unfold.png) left center no-repeat;
}
.G-catsm1 .G-catsm1-list {
	display: none;
	margin-left: 20px;
}
.G-catsm1 .G-catsm1-list-item {
	margin-top: 5px;
}
/* 排版定制
----------------------------------------------------------------------------- */
/* ----- 主页导航修改（添加二级菜单） by Steven 2012-12-19 ----- */
.w-menu, #steven .w-menu {
/* position: relative;
  */
}
.w-menu div.w-menu-submenu, #steven .w-menu div.w-menu-submenu {
	margin: 0;
	padding: 0;
	position: absolute;
	z-index: 1001;
	top: 34px;
	left: 0;
	/* min-width: 110px;
  */
	width: 110px;
	border: 1px solid #D5D5D5;
	border-bottom: none;
	background: #DD0000;
	display: none;
}
.w-menu div.w-menu-submenu.two-cols, #steven .w-menu div.w-menu-submenu.two-cols {
	width: 220px;
	overflow: hidden;
 *zoom: 1;
}
.w-menu div.w-menu-submenu a, #steven .w-menu div.w-menu-submenu a {
	display: block;
	margin: 0;
	padding: 0 5px;
	width: 100px;
	height: 24px;
	line-height: 22px;
	/* text-indent: 5px;
  */
	color: #fff;
	border-bottom: 1px solid #D5D5D5;
	background: #DD0000;
}
.w-menu div.w-menu-submenu.two-cols a, #steven .w-menu div.w-menu-submenu.two-cols a {
	float: left;
	display: inline;
}
.w-menu div.w-menu-submenu a:hover, #steven .w-menu div.w-menu-submenu a:hover {
	color: #FFF000;
}
/* ----- 各行业频道增加人才招聘和供求模块 by Steven 2013-12-13 ----- */
/* 人才招聘模块 */
.G-boxm1-rczp {
}
/* 供求模块 */
.G-boxm1-cpgq .x-procats {
	margin: 20px 0 0;
}
.G-boxm1-cpgq .x-txtlist {
	float: left;
	display: inline;
	margin: 5px 0 20px 12px;
	width: 280px;
}
.G-boxm1-cpgq .x-txtlist .G-hdm1 {
	margin-top: 15px;
}
.G-boxm1-cpgq .x-txtlist .G-list {
	margin-bottom: 0;
}
.G-boxm1-cpgq .x-txtlist .G-list-item a {
	_width: 230px;
}
.G-boxm1-cpgq .x-piclist {
	float: left;
	display: inline;
	margin: 20px 0 20px 0;
	width: 423px;
}
.G-boxm1-cpgq .x-piclist-bd {
	margin-top: 24px;
	height: 384px;
	overflow: hidden;
 *zoom: 1;
 *position: relative;
}
.G-boxm1-cpgq .x-piclist .G-album1 {
	margin: 0;
}
.G-boxm1-cpgq .x-piclist .G-album1-item {
	margin: 0 0 10px 15px;
	width: 126px;
}
.G-boxm1-cpgq .x-piclist .G-album1-item-img {
	height: 94px;
	line-height: 94px;
	overflow: hidden;
	text-align: center;
 *font-size: 92px;
	border: 1px solid #ccc;
}
.G-boxm1-cpgq .x-piclist .G-album1-item-img:after {
	content: '';
	vertical-align: middle;
}
.G-boxm1-cpgq .x-piclist .G-album1-item-img img {
	width: 80px;
	vertical-align: middle;
}
.G-boxm1-cpgq .x-hwqg {
	clear: both;
	margin: 10px 12px;
	font-family: arial;
}
.G-boxm1-cpgq .x-hwqg .G-hdm1 {
	border-bottom-style: dotted;
}
.G-boxm1-cpgq .x-hwqg .G-list {
	float: left;
	width: 350px;/* background: #ccc;
  */
}
.G-boxm1-cpgq .x-hwqg .G-list-item {
	height: 25px;
	line-height: 25px;
}
.G-boxm1-cpgq .x-hwqg .G-list-item strong {
	font-size: 14px;
	font-weight: bold;
	color: #333;
}
.G-boxm1-cpgq .x-hwqg .G-list-item-link {
	width: 200px;
	color: #1A4991;
}
.G-boxm1-cpgq .x-hwqg .G-list-item-date {
	right: 30px;
	color: #999;
}
.G-boxm1-cpgq .x-hwqg .x-hwqg-ft {
	clear: both;
	margin: 5px 0;
	text-align: right;/* background: #ccc;
  */
}
.G-boxm1-cpgq .x-hwqg .x-hwqg-ft a {
	color: #FF0000;
	text-decoration: underline;
}
.G-boxm1-cpgq .x-hwqg .x-hwqg-ft a:hover {
	color: #FF0000;/* text-decoration: none;
  */
}
/* ----------- 找回/重设密码页 ---------- */
.w-content {
	width: 990px;
	margin: 10px auto;
	text-align: left;
	color: #666;
	background: #fff;
}
.w-content .w-form {
	position: relative;
	margin: 80px 0 80px 170px;
	_margin: 68px 0 68px 170px;
 *zoom: 1;
}
.w-content .w-form-title {
	margin-bottom: 20px;
	padding-left: 74px;
	font-weight: bold;
	font-size: 14px;
	color: #CC0000;
}
.w-content .w-form-item {
	margin: 11px 0;
	height: 21px;
	line-height: 21px;
}
.w-content .w-form-item label {
	display: inline-block;
	height: 21px;
	width: 70px;
	text-align: center;
	font-size: 12px;
	text-align: center;
	color: #E62000;
}
.w-content .w-form-item input {
	height: 19px;
	line-height: 19px;
	border: 1px solid #7F9DB9;
	width: 144px;
	padding: 0 5px;
}
.w-content .w-form-item .need {
	display: inline-block;
	height: 21px;
	margin-left: 5px;
	color: #FF0048;
}
.w-content .w-form-item-code input {
	margin-right: 2px;
	width: 79px;
	vertical-align: top;
	color: #444;
}
.w-content .w-form-item button {
	margin-left: 84px;
	padding: 0 15px;
}
.w-content .w-tips-error {
	display: none;
	position: absolute;
	z-index: 10;
	top: 77px;
	left: 66px;
	width: 248px;
	padding: 12px 14px;
	border: 1px solid #B1B1B1;
	background: #FEFEE9;
	color: #444444;
	font-size: 12px;
	text-align: center;
}
.w-content .w-tips-success {
	display: none;
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	width: 367px;
	border: 8px solid #CCCCCC;
	background: #fff;
}
.w-content .w-tips-title {
	margin: 16px 8px;
	font-size: 14px;
	font-weight: bold;
	color: #336699;
}
.w-content .w-tips-closer {
	position: absolute;
	top: 16px;
	right: 10px;
	display: block;
	width: 18px;
	height: 18px;
	overflow: hidden;
	text-indent: -9999px;
	background: #A1A1A1 url(/images/w-tips-closer.png) no-repeat 0 0;
	text-decoration: none;
	cursor: pointer;
}
.w-content .w-tips-content {
	margin: 15px 15px 20px 18px;
	font-size: 14px;
	color: #444444;
}
.w-content .w-tips-content span {
	display: inline-block;
	padding-left: 48px;
	line-height: 1.6;
	background: url(/images/w-tips-success.png) no-repeat 0 45%;
}
.w-content .w-tips-footer {
	border-top: 1px solid #CCCCCC;
	padding: 10px 10px 20px;
	color: #999999;
	background: #F2F2F2;
}
/* 找回密码页 */
#reset-password .w-form-item label {
	color: #444444;
}
#reset-password .w-form-item input {
	border-color: #848484 #E0E0E0 #E0E0E0 #848484;
}
#reset-password .w-form-item .input-readonly {
	border-color: #fff #fff #fff #fff;
	padding: 0;
	color: #444444;
}
.w-content .w-regbox {
	position: absolute;
	left: 370px;
	top: 25px;
	height: 135px;
	border-left: 1px solid #CCCCCC;
	background: #fff;
}
.w-content .w-regbox p {
	margin: 24px 40px;
	color: #444444;
	font-size: 14px;
}
.w-content .w-regbox p a {
	color: #336699;
	text-decoration: none;
}
.w-content .w-regbox p a:hover {
	text-decoration: underline;
}
#reset-password .w-tips-success {
	width: auto;
	padding: 10px 0 10px;
	border: none;
	background: #fff;
}
#reset-password .w-tips-content {
	width: 564px;
	padding: 28px;
	border: 3px solid #F2F2F2;
}
#reset-password .w-tips-content a {
	display: inline-block;
	margin-top: 5px;
	color: #336699;
	text-decoration: none;
}
#reset-password .w-tips-content a:hover {
	text-decoration: underline;
}
/* 重设密码成功 */
#reset-password-success .w-tips-success {
	position: static;
	display: block;
	width: auto;
	padding: 90px 0 100px 150px;
	border: none;
	background: #fff;
}
#reset-password-success .w-tips-content {
	width: 564px;
	padding: 28px;
	border: 3px solid #F2F2F2;
}
#reset-password-success .w-tips-content a {
	display: inline-block;
	margin-top: 5px;
	color: #336699;
	text-decoration: none;
}
#reset-password-success .w-tips-content a:hover {
	text-decoration: underline;
}
#gundong_1 {
	background: url("../images/navbg_23.gif") repeat-x scroll 0 0 transparent;
	border-bottom: 1px solid #C7C7C7;
	border-left: 1px solid #D9D9D9;
	border-right: 1px solid #D9D9D9;
	height: 35px;
	line-height: 35px;
	margin: 0 auto;
	width: 988px;
}
#gundong_1 a {
	color: #990000;
	text-decoration: none;
}
#gundong_1 a:hover {
	color: #0C0D4E;
	text-decoration: underline;
}
/** global **/
.g-clearfix:before, .g-clearfix:after {
	content: '';
	display: table;
}
.g-clearfix:after {
	clear: both;
}
.g-clearfix {
 *zoom: 1;
}
.g-wrap {
	margin-left: auto;
	margin-right: auto;
	width: 990px;
 *zoom: 1;
	overflow: visible;
	height: 30px;
}
.g-wrap:before, .g-wrap:after {
	content: '';
	display: table;
}
.g-wrap:after {
	clear: both;
}
/** g-topbar **/
#g-topbar {
	height: 30px;
	border-bottom: 1px solid #ccc;
	color: #333;
	font: 12px/30px SimSun;
	background: #f7f7f7;
	overflow: visible;
}
#g-topbar a {
	color: #333;
	text-decoration: none;
}
#g-topbar a:hover {
	text-decoration: underline;
}
#g-topbar i {
	font-style: normal;
	color: #999;
}
#g-topbar .g-topbar-nav {
	float: left;
	position: relative;
 *position: relative;
 *z-index: 99999;
	color: #999;
	overflow: visible;
	line-height: 30px;
}
#g-topbar .g-topbar-dropmenu .g-topbar-menu {
	display: none;
	position: absolute;
	z-index: 99999;
	top: 30px;
	right: -474px;
	float: left;
	line-height: 24px;
	padding: 3px 10px;
	width: 450px;
	text-align: left;
	background: #fff;
	border: 1px solid #ccc;
}
#g-topbar .g-topbar-dropmenu .g-topbar-trigger {
	display: block;
	width: 20px;
	height: 30px;
	position: absolute;
	right: -22px;
	top: 0;
	z-index: 11;
	background: url(http://images.ofweek.com/ofweek/images/inco.gif) no-repeat 50% 11px;
	text-decoration: none;
	cursor: pointer;
}
#g-topbar .g-topbar-dropmenu:hover .g-topbar-trigger, #g-topbar .g-topbar-dropmenu.g-topbar-drop .g-topbar-trigger {
	width: 18px;
	height: 31px;
	margin-bottom: -1px;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	background-color: #fff;
	background-position: 50% 12px;
}
#g-topbar .g-topbar-dropmenu:hover .g-topbar-menu, #g-topbar .g-topbar-dropmenu.g-topbar-drop .g-topbar-menu {
	display: block;
}
#g-topbar .g-topbar-loginbar {
	float: right;
}
#g-topbar .g-topbar-loginbar li {
	float: left;
	line-height: 30px;
}
#g-topbar .g-topbar-weibo a {
	display: inline-block;
	margin-right: 12px;
	padding-left: 20px;
	background: url(http://images.ofweek.com/ofweek/images/weibolg.png) no-repeat 0 50%;
}
/** g-footer **/
#g-footer {
	margin-top: 15px;
	padding: 10px 0;
	border-top: 1px solid #ddd;
	clear: both;
	font-size: 12px;
	font-family: Simsun;
}
#g-footer .g-footer-nav {
	height: 30px;
	line-height: 30px;
	text-align: center;
}
#g-footer .g-footer-nav a {
	color: #1a4991;
	text-decoration: none;
}
#g-footer .g-footer-nav a:hover {
	color: #F15C00;
	text-decoration: underline;
}
#g-footer .g-footer-links {
	color: #666666;
	float: left;
	line-height: 25px;
	padding: 5px 0;
	text-align: center;
	width: 100%;
}
#g-footer .g-footer-links a {
	color: #243851;
}
#g-footer .g-footer-links a:hover {
	color: #c00;
}
#g-footer .g-footer-record {
	padding: 5px 0;
	text-align: center;
}
/* 增加 头部图标样式 2014-06-16 by panshanshan */
.redbg {
	background: url(../images/global-steven/email/red_bg.gif) no-repeat center top;
	height: 23px;
	text-align: center;
	display: inline-block;
	float: left;
	line-height: 23px;
	color: #fff;
	margin: 4px 0px 0 0;
}
#g-topbar .redbg a:link, #g-topbar .redbg a:visited, #g-topbar .redbg a:hover {
/* color: #fff;*/
}
.email {
	display: inline-block;
	background: url(../images/global-steven/email/ico_email.png) no-repeat center left;
	padding-left: 22px;
	margin-left: 5px;
}
.detail_time a img {
	position: relative;
	left: -3px;
}
/* 右侧邮件订阅模块 */
.email_dy {
	width: 100%;
	height: 78px;
	background: #f1f1f1 url(../images/global-steven/email/top_bg.gif) no-repeat left top;
	margin-bottom: 10px;
}
.email_dy h3 {
	padding: 8px 0 0 20px;
	font-size: 14px;
	font-weight: bold;
}
.email_dy .dy_con {
	padding: 15px 0 0 10px;
}
.dy_txt {
	width: 180px;
	height: 20px;
	background: #fff;
	border-top: solid 1px #ddd;
	border-left: solid 1px #ddd;
	line-height: 20px;
	color: #b3b3b3;
	font-size: 12px;
	float: left;
}
.dy_btn {
	float: left;
	margin-left: 5px;
}
.email_dy .dy_con strong a:link, .email_dy .dy_con strong a:visited, .email_dy .dy_con strong a:hover {
	color: #1a4991;
}
/* 文章页边栏 sticky by Steven */
.right_part1_last {
	background-color: #fff;
}
.right_part1_last .title {
 *position: relative;
}
/*.sticky-bottom {
  top: auto !important;
  bottom: 0 !important;
}*/


/*会后报告*/

.meeting {
	width: 1000px;
	margin: 50px auto;
	overflow: hidden;
}
.left-news {
	width: 470px;
	float: left;
	overflow: hidden
}
.left-news ul {
	width: 470px;
	list-style: none;
}
.left-news ul li {
	padding: 10px 0px;
	border-bottom: 1px #999999 dashed;
}
.left-news ul li h2 {
	font-size: 16px;
	font-weight:600;
	font-family:Microsoft YaHei;
}
.left-news ul li p {
	width: 470px;
	height: 44px;
	line-height: 22px;
	overflow: hidden;
	color: #666666;
}
.right-photo {
	width: 500px;
	height: 380px;
	float: right;
	position: relative;
	overflow: hidden;
}
.right-photo ul {
	list-style: none;
	overflow: hidden;
}
.right-photo ul li {
	width: 500px;
	height: 380px;
	overflow: hidden;
	float: left;
	position: relative
}
.right-photo ul li .photo {
	width: 500px;
	height: 380px;
	overflow: hidden;
}
.right-photo ul li p {
	width: 100%;
	position: absolute;
	left: 0px;
	bottom: 0px;
	height: 50px;
	line-height: 50px;
	background: rgba(0,0,0,0.7);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
	z-index: 99;
	color: #ffffff;
	text-indent: 10px;
	font-size: 16px;
	font-weight: bold;
}
#LeftArr {
	position: absolute;
	left: 20px;
	top: 40%;
	z-index: 999;
	cursor: pointer
}
#RightArr {
	position: absolute;
	right: 20px;
	top: 40%;
	z-index: 999;
	cursor: pointer
}
.wrap {
	width: 100%;
	overflow: hidden;
	background: #f4f4f4;
}
.box-content {
	width: 1000px;
	overflow: hidden;
	margin: 0 auto;
	padding: 30px 0px 30px 0px;
}
.title11 {
	background: url(../images/one01_03.png) 100px center no-repeat;
	height: 50px;
	line-height: 50px;
	color: #b80808;
	font-weight: 500;
	font-size: 24px;
}
.left-box {
	width: 640px;
	float: left;
	border-right: 1px #ccc solid;
}
.left-box ul {
	width: 620px;
	list-style: none;
}
.left-box ul li {
	width: 620px;
	overflow: hidden;
	border-bottom: 1px #ccc solid;
}
.left-box ul li h2 {
	line-height: 24px;
	margin-top: 10px;
	font-size: 16px;
	font-weight:600;
	font-family:Microsoft YaHei;
}
.left-box ul li .picture {
	float: left;
	margin: 15px 10px 15px 0px;
}
.left-box ul li span {
	font-size: 14px;
	color: #5a5a5a;
	line-height:24px;
}
.left-box ul li p {
	font-size: 14px;
	color: #5a5a5a;
	font-family: 宋体;
	margin-top:2px;
	line-height: 22px;
}
.right-box {
	width: 340px;
	float: right;
	overflow: hidden;
}
.ppt {
	width: 340px;
	overflow: hidden
}
.ppt ul {
	width: 340px;
	list-style: none;
}
.ppt ul li {
	margin-bottom: 20px;
	line-height: 22px;
	background: url(../images/sanjiao_12.png) left 8px no-repeat;
	padding-left: 15px;
}
.ppt ul li a {
	font-family: 宋体;
	font-size: 14px;
}
.title22 {
	background:url(../images/baogao_03.jpg) right top no-repeat;
	height: 50px;
	line-height: 50px;
	color: #b80808;
	font-weight: 500;
	font-size: 24px;
}
.titleppt {
	background:url(../images/title22ppt.png) right -5px no-repeat;
	height: 50px;
	line-height: 50px;
	color: #b80808;
	font-weight: 500;
	font-size: 24px;
}
.company {
	width: 340px;
	overflow: hidden;
	margin-top: 20px
}
.title33 {
	background: url(../images/title33_17.png) right center no-repeat;
	height: 56px;
	line-height: 56px;
	color: #b80808;
	font-weight: 500;
	font-size: 24px;
}
.company ul {
	list-style: none;
	overflow: hidden;
}
.company ul li {
	text-align: center;
	margin: 15px 0px;
}
.title44 {
	background: url(../images/title44_07.png) right center no-repeat;
	height: 51px;
	line-height: 51px;
	color: #b80808;
	font-weight: 500;
	font-size: 24px;
	font-family: Microsoft YaHei;
}
.meeting-box {
	width: 1000px;
	margin: 30px auto;
	overflow: hidden;
}
.heying {
	width: 960px;
	overflow: hidden;
	margin: 20px auto 0px
}
.slider_box {
	width: 960px;
	margin: 0 auto;
	height: 470px;
	overflow: hidden;
	position: relative;
}
.silder_con {
	height: 470px;
	overflow: hidden;
	position: absolute;
}
.silder_panel {
	width: 960px;
	height: 470px;
	overflow: hidden;
	float: left;
	position: relative;
	background: #111;
}
.f_l {
	float: left;
}
span.pic-words {
	display: block;
	position: absolute;
	bottom: 60px;
	left: 15px;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	z-index: 99;
	line-height: 26px;
}
.silder_nav {
	width: 960px;
	height: 48px;
	margin: 0 auto;
	bottom: 0;
	position: absolute;
	overflow: hidden;
	text-align: center;
	z-index: 999;
}
.silder_nav li {
	display: inline-block;
	padding: 0px;
	border: 1px solid #fff;
	margin: 2px;
*display:inline;
}
.silder_nav li, .silder_nav img {
	width: 60px;
	height: 35px;
	overflow: hidden;
}
b.bg {
	background: #000;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 93px;
	display: block;
	opacity: 0.5;
	filter: alpha(opacity=50);
}
.silderBox {
	height: 8px;
	line-height: 8px;
}
.clearfix {
*zoom:1
}
.silder_nav li.current {
	border: 3px solid #00a0e6;
	margin: 0 4px;
}
.title55 {
	background: url(../images/title55_1010.jpg) right center no-repeat;
	height: 50px;
	line-height: 55px;
	color: #b80808;
	font-weight: 500;
	font-size: 24px;
	font-family: Microsoft YaHei;
	margin: 20px 0px 10px 0px;
}
.news {
	width: 490px;
	float: left;
	overflow: hidden;
	border-right: 1px #ccc solid;
}
.news ul {
	width: 496px;
	overflow: hidden
}
.news ul li {
	line-height: 26px;
	background: url(../images/dian_13.jpg) left center no-repeat;
	text-indent: 10px;
}
.news ul li a {
	font-family: 宋体;
	font-size: 14px;
}
.news01 {
	float: left;
	overflow: hidden;
	margin-left: 30px;
}
.news01 ul {
	list-style: none;
	overflow: hidden
}
.news01 ul li {
	line-height: 26px;
	background: url(../images/dian_13.jpg) left center no-repeat;
	text-indent: 10px;
}
.news01 ul li a {
	font-family: 宋体;
	font-size: 14px;
}

.video{ background:url(../images/video-bg.gif) left center no-repeat; text-indent:20px;margin-top:none;width: 300px;
margin-left: 190px}
#prev{width:46px; height:46px; background:url(../images/left_03.png) center center no-repeat; display:block; position:absolute; top:40%; left:30px;cursor:pointer;}
#next{width:46px; height:46px; background:url(../images/right_05.png) center center no-repeat;display:block; position:absolute;top:40%; right:30px;cursor:pointer;}