@charset "utf-8";
/*
简介：可通用所有项目，包含样式重设和常用样式，参考自 Alice CSS
*/

/*
规则：
    a、前缀 j- 开始的样式都是供javascript操作的，通用的 不可随意更改
    b、前缀 g- 开始的样式都是通用的模块样式，不可随意更改
*/

/* CSS Reset 样式重设
----------------------------------------------------------------------------- */
/* 防止用户自定义背景颜色对网页的影响 */
html {
    color: #000;
    background: #fff;
}

/* 清除内外边距，内外边距通常让各个浏览器样式的表现位置不同 */
body,h1,h2,h3,h4,h5,h6,hr,div,p,blockquote, /* structural elements 结构元素 */
dl,dt,dd,ul,ol,li, /* list elements 列表元素 */
pre,code, /* text formatting elements 文本格式元素 */
form,fieldset,legend,input,textarea,button, /* form elements 表单元素 */
th,td, /* table elements 表格元素 */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section /* HTML5 elements HTML5 元素 */ {
    margin: 0;
    padding: 0;
}

/* 重设 HTML5 标签，IE 需要在 js 中 createElement(TAG) */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display: block;
}

/* HTML5 媒体文件跟 img 保持一致 */
audio,canvas,video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

/* 要注意表单元素并不继承父级 font 的问题 */
body,button,input,select,textarea {
    font: 14px/1.5 "Microsoft YaHei","simsun";
}

/* 使表单元素在 IE 下能继承字体大小 */
input,select,textarea {
    font-size: 100%;
}

/* ?解决在 IE7 及更早浏览器下随着 value 增多两边留白也随着增加的问题 */
input,button{
    *overflow: visible;
}

/* ?去除 button 点击时在火狐下的虚线框 */
/* button::-moz-focus-inner {
  border-color: transparent;
} */

/* ?解决 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;
}

/* 去掉各Table cell 的边距并让其边重合 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* IE bug fixed: th 不继承 text-align */
th {
    text-align: inherit;
}

/* 去除默认边框 */
fieldset,img {
    border: 0;
    vertical-align: top;
}

/* ie6 7 8(q) bug 显示为行内表现 */
iframe {
    display: block;
}

/* 去掉 firefox 下此元素的边框 */
abbr,acronym {
    border: 0;
    font-variant: normal;
}

/* 一致的 del 样式 */
del {
    text-decoration: line-through;
}

/* 将斜体扶正 */
address,caption,cite,code,dfn,em,th,var,i {
    font-style: normal;
    font-weight: 500;
}

/* 代码字体 */
code,kbd,pre,samp {
    font-family: monospace, serif;
    font-size: 1em;
}

/* 去掉列表前的标识 li 会继承 */
ol,ul {
    list-style: none;
}

/* 对齐是排版最重要的因素，别让什么都居中 */
caption,th {
    text-align: left;
}

/* 来自 Yahoo，让标题都自定义，适应多个系统应用 */
h1,h2,h3,h4,h5,h6 {
    font-size: 100%;
    font-weight: 500;
}
q:before,q:after {
    content: '';
}

/* 统一上标和下标 */
sub,sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}
sup {
    top: -0.5em;
}
sub {
    bottom: -0.25em;
}

/* 标记，类似于手写的荧光笔的作用 */
mark {
    background: #fffdd1;
}

/* 正常链接 未访问 */
a:link,a:visited {
    color: #333;
}

/* 鼠标悬停 */
a:hover {
    color: #cc0000;
    text-decoration: underline;
}

/* 默认不显示下划线，保持页面简洁 */
ins,a {
    text-decoration: none;
}

/* 常用样式
----------------------------------------------------------------------------- */
/* 清理浮动 */
.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 */
}

/* 浮动 */
.fn-fl,.fn-fr {
    display: inline;
}
.fn-fl {
    float: left;
}
.fn-fr {
    float: right;
}
.fn-fn {
    float: none;
}

/* placeholder */
.em1{ padding: 0 .5em; }
.em2{ padding: 0 1em; }

/* font-simsun */
.font-simsun{ font-family: "simsun"; }

/* padding-top */
.pt5{ padding-top: 5px; }
.pt10{ padding-top: 10px; }
.pt15{ padding-top: 15px; }
.pt20{ padding-top: 20px; }
.pt25{ padding-top: 25px; }
.pt30{ padding-top: 30px; }

/* margin-top */
.mt2{ margin-top: 2px; }
.mt3{ margin-top: 3px; }
.mt5{ margin-top: 5px; }
.mt10{ margin-top: 10px; }
.mt15{ margin-top: 15px; }
.mt20{ margin-top: 20px; }
.mt25{ margin-top: 25px; }
.mt30{ margin-top: 30px; }
.mt40{ margin-top: 40px; }
/* margin-right */
.mr2{ margin-right: 2px; }
.mr3{ margin-right: 3px; }
.mr5{ margin-right: 5px; }
.mr20{ margin-right: 20px; }

/* width */
.w110{ width: 110px; margin:0 auto;}
.w150{ width: 260px; }
.w230{ width: 230px; }
.w350{ width: 260px; }
.w475{ width: 475px; }
.w480{ width: 480px; }
.w600{ width: 700px; }
.w1000{ width: 1000px; margin-left: auto; margin-right: auto; overflow:hidden; }

/* line-height */
.line-h16{ line-height: 16px; }
.line-h18{ line-height: 18px; }
.line-h20{ line-height: 20px; }
.line-h20{ line-height: 20px; }
.line-h22{ line-height: 22px; }
.line-h24{ line-height: 24px; }
.line-h26{ line-height: 26px; }
.line-h28{ line-height: 28px; }
.line-h30{ line-height: 30px; }

/* ----- main ----- */
html{ _text-overflow: ellipsis; }
/* header */
/* top-crumbs */
.top-crumbs{ height: 32px; font: normal 12px/32px "Tahoma","simsun"; background: url(../images/top-crumbs.png) center top repeat-x; }
.g-topbar-nav i{ padding: 0 .2em; }
/* nav */
.nav-box{ height: 52px; }
.nav{ width: 100%; height: 53px; line-height: 53px; background-color: #000000; }
.nav-list{ margin-left: -25px; font-size: 16px; }
.nav-list li{ float: left; height: 50px; padding: 0 .5em; margin-left: 25px; }
.nav-list li.current{ border-bottom: 4px solid #d1010b; }
.nav-list a{ display: block; float: left; height: 100%;color:#f4f4f4;width:72px; text-align:center; }
/* logo */
.logo{ padding: 40px 0 0; }
/* time-place */
.time-place{ margin: -10px 0 0 155px; font-size: 18px; line-height: 24px; }
.tp-time,.tp-place{ padding: 0 0 0 28px; margin: 0 20px 0 0; background: url(../images/time-place.png) 0 0 no-repeat; }
.tp-place{ background-position: 3px -24px; }
/* banner */
.banner{ position: relative; height: 480px; }
.banner-pic li{ display: none; position: absolute; left: 0; top: 0; width: 100%; height: 100%; }
/* meeting-summary 会议概览 */
.g-title{ height: 36px; line-height: 36px; }
.w_title
{
	font: 20px/22px "Microsoft Yahei","黑体";color: #340e37;
}
.w_title img
{
	padding-right: 10px;
}
.ms-bd p{ margin: 10px 0 0; font: normal 14px/24px "simsun"; text-indent: 2em; }
/* meeting-schedule 会议日程 */
.msd-table{ width: 100%; font-family: "microsoft yahei"; border: 1px solid #000; }
.msd-table table,.msd-table table td{border: none;}
.msd-table th,.msd-table td{ height: 36px; padding: 0 0 0 15px; }
.msd-table th{ color: #fff; font-weight: bold; background-color: #a62d64; }
.msd-table td{ border: 1px solid #000;font-size: 14px;color: #000;}
.msd-table .tb-title{background: #fdcae1;}
/* who-attend */
.list-icon-right{ font-family: "simsun"; line-height: 20px; }
.list-icon-right li{ padding: 0 0 0 30px; margin: 8px 0 0; background: url(../images/right.png) left 8px no-repeat; }
.right1 li{ background: url(../images/right.png) 5px 5px no-repeat;}
/* right */
.g-title-a{height: 24px; color: #898989; background: url(../images/right_title.gif) left 11px repeat-x;  }
.g-title-a h3{float: left;font-size: 16px;color:#000;background: #fff;padding-right: 6px;}
.dw-logo li{ padding: 3px 0; text-align:center;}
/* link-btn */
.link-btn a{ width: 174px; height: 51px; margin: 0 0 0 1px; text-align: center; line-height: 51px; font-size: 20px; background: url(../images/btn-bg1.png) 0 0 repeat-x; }
.link-btn a:link,.link-btn a:visited{ color: #fff; }
.link-btn a:hover{ text-decoration: none;}
.link-btn .lb-red{ background-position: 0 -52px; }
/* tel-code */
.code-txt{ font-family: "simsun"; font-size: 12px; text-align: center; line-height: 35px; }
.code-txt img{ vertical-align: middle; margin: -3px 5px 0 0; }
.red{ color: #ff0000; }
.red:link,.red:visited{ color: #ff0000; }
.blue{ color: #001d9f; }
.blue:link,.blue:visited{ color: #001d9f; }
/* 会议交通 */
.traffic{ font:14px/24px "simsun"; color:#333; }
.traffic li:after{clear:both;content:".";display:block;height:0;visibility: hidden;}
.traffic li{margin:5px 0 0;zoom:1;}
.t-key{float:left;}
.t-value{float:left;width:430px;}
/* bottom-btn */
.bottom-btn{ margin: 40px 0 30px 0; text-align: center; }
/* about */
.about{ height: 215px; margin: 35px 0 0; background-color: #f4f4f4; }
.industry-logo{ margin: 70px 0 0 20px; }
.industry-intro{ width: 755px; }
.ii-title{ margin: 45px 0 0; font-size: 18px; font-weight: bold; }
.ii-content{ margin: 10px 0 0; font: normal 14px/20px "simsun"; }
/* footer */
#g-footer { padding: 10px 0; font-family: "simsun"; font-size: 12px; clear: both;border-top: 1px solid #ddd;}
#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: #666; float: left; line-height: 25px; padding: 5px 0; text-align: center; width: 100%; }
#g-footer .g-footer-record { width: 536px; margin: 0 auto 10px; overflow: hidden; }
#g-footer .g-footer-record p { border: 1px solid #D2D2D2; float: left; display: inline; font-size: 12px; height: 50px; line-height: 20px; margin: 6px; width: 120px; overflow: hidden; }
#g-footer .g-footer-record .fn-fl { padding: 3px; }
#g-footer .g-footer-record .fn-fr { padding: 5px 3px 0; width: 72px; }
/* fixed-top */
.fixed-top{ position: fixed; _position: absolute; left: 0; top: 0; z-index: 9999; _top:expression(eval(document.documentElement.scrollTop)); }
/* await */
.await-tips{ padding: 80px 0 200px; text-align: center; font-size: 28px; }
/* zanzhu */
.left_title{ font:normal 18px/24px "Microsoft Yahei","黑体"; color:#333;  }
/*赞助页面*/
.banner_zanzhu{ background:#131c48; height:60px; width:100%; min-width:1000px; }
.nav_zanzhu{ width:1000px; margin:0 auto; height:60px; background:url(../images/banner_font_bg.gif) no-repeat center right;}
.zz_con h3,.zz_con p,.zz_con .news_list2 li{ font-size:14px; }
.gailan_con p{ text-indent:2em; }
.zz_con p{ line-height:26px; }
.zz_con .danwei{ float:none; }
.pad10{ padding-top:15px; }
.pad20{ padding-top:30px; }
.pad40{ padding-top:50px; }
.txtcenter{ text-align: center; }
.richeng_table2 tr td{ padding:8px 3px; }
.richeng_table{
    border-top:solid 1px #8f98bd;
    border-left:solid 1px #8f98bd;
    width:99.99%;
    font-size:14px;
    border-collapse: 0;
}
.richeng_table tr td
{
    line-height:20px;
    border-bottom:solid 1px #8f98bd;
    border-right:solid 1px #8f98bd;
    padding:10px;
}
.richeng_table .title
{
    background:#8f98bd;
    font-weight:bold;
    color:#fff;
}
.richeng_zhuce
{
    margin:4px 0 20px;
}
.richeng_zhuce h3
{
    padding-bottom:10px;
    font-size:14px;
    color:#333;
}
.richeng_zhuce .richeng_table
{
    font-size:12px;
    width:345px;
}
.richeng_zhuce .richeng_table tr td
{
    padding:2px 5px;
}

/* top menu */
#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: -550px;
    float: left;
    line-height: 24px;
    padding: 3px 10px;
    width: 526px;
    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-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
}
.redbg {
    background: url(http://www.ofweek.com/images/global-steven/email/red_bg.gif) no-repeat center top;
    width: 50px;
    height: 23px;
    text-align: center;
    display: inline-block;
    float: left;
    line-height: 23px;
    color: #fff;
    margin: 4px 5px 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(http://www.ofweek.com/images/global-steven/email/ico_email.png) no-repeat center left;
    padding-left: 22px;
    margin-left: 5px
}
/*浮窗*/
.fuchuang
{
    display:none;
    position:fixed;
    _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: 0;
    _margin-bottom:0;
    right:0;
    z-index:99;
    width:119px;
    height:252px;
    background:#fff url(../images/fukuang_07.png) no-repeat center top;
}
.fuchuang .fuchuang_zc,.fuchuang .fuchuang_share,.fuchuang .fuchuang_scrolltop,.fuchuang .fuchuang_traffic
{
    height:62px;
    display:block;
    cursor:pointer;
}
.fuchuang .fuchuang_scrolltop
{
    background-position:0 0;
}
.fuchuang .fuchuang_zc
{
    background:0 -74px;
}
.fuchuang .fuchuang_share
{
    background:0 -148px;
}
/*.fuchuang .fuchuang_traffic
{
    background:0 -223px;
}*/
.jiathis_style
{
    display:none;
}
.fuchuang .fuchuang_close
{
    position: absolute;
    display: block;
    top: 2px;
    right: 2px;
    background: #549DE0;
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
    font-family: "Arial";
    color: #fff;
    cursor: pointer;
}
.fuchuang .fuchuang_close:hover
{
    color: #f00;
}
.sh_review_intro
    {
        padding-top: 10px;
        text-indent: 2em;
    }
    .sh_review_more
    {
        margin-top: 15px;
    }
    .sh_review_more a:link,.sh_review_more a:visited
    {
        color: #0469d0;
    }
    .sh_review_more a:hover
    {
        text-decoration: underline;
    }
    .sh_review_photo
    {
        width: 100%;
        height: 430px;
        padding-bottom: 20px;
        margin-top: 20px;
    }
    .sh_review_photo img
    {
        width: 100%;
        height: 100%;
    }
    .fs_qqun
    {
        width: 100%;
        height: 75px;
        position: relative;
        cursor: pointer;
    }
    .fs_wechat
    {
        width: 100%;
        height: 76px;
        position: relative;
        cursor: pointer;
    }
    .fs_qqun_pop,.fs_wechat_pop
    {
        width: 180px;
        position: relative;
        display: none;
    }
    .fs_qqun_pop
    {
        left: -175px;
        top: -50px;
    }
    .fs_wechat_pop
    {
        left: -175px;
        top: -120px;
    }
    .sh_rp_photo_box
    {
        position: relative;
        zoom:1;
    }
    .sh_rp_pb_title
    {
        display: none;
        width: 100%;
        height: 30px;
        font-family: microsoft yahei;
        font-size: 14px;
        line-height: 30px;
        text-align: center;
        color: #fff;
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 2;
    }
    .sh_rp_pb_bg
    {
        display: none;
        width: 100%;
        height: 30px;
        background: #000;
        opacity: .7;
        _filter: alpha(opacity=70);
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 1;
    }

.part1
{
    width: 1000px;
    margin: 0 auto;
    zoom: 1;
}
.part1 h2
{
    text-align:center;
}

.jiabin_list li
{
    float:left;
    width:200px;
    height:400px;
    background:#d6d6d6;
    position:relative;
}
.jiabin_list li h3
{
    position:absolute;
    height:50px;
    bottom:0;
    left:10px;
    color:#fff;
    font:14px/20px "Microsoft Yahei","黑体";
}
.jiabin_list li span
{
    position:relative;
    top:150px;
    display:block;
    margin-left:50px;
}
/*上届会议嘉宾*/
.jiabin_list_old
{
    padding:20px 0;
}
.jiabin_list_old li
{
    width:120px;
    height:215px;
    line-height: 18px;
    text-align:center;
    float:left;
    font-size:12px;
    margin:0 65px 10px;
    _margin:0 38px 10px;
}
.jiabin_list_old02 li
{
    height:230px;
}
.jiabin_list_old li h6
{
    text-align:center;
    width:120px;
    margin-bottom:8px;
}
.jiabin_list_old li img
{
    width:120px;
    height:150px;
}
.part3
{
    width:100%;
    min-width:1000px;
    padding:30px 0px 0px;
    overflow:hidden;
}
.canhui
{
    width:100%;
    min-width:1000px;
    height:380px;
    background:#111b47 url(../images/ch_bg.gif) no-repeat center top;
    margin:0 0 40px;
    position:relative;
}
.canhui h6
{
    padding:25px 0 10px;
}
.qiye .qiye_prev,.qiye .qiye_next
{
    position:absolute;
    cursor:pointer;
    top:130px;
    width:130px;
    height:130px;
}
.qiye .qiye_prev
{
    left:50%;
    margin-left:-670px;
    background:url(../images/left_mr.png) no-repeat center;
}
.qiye .qiye_prev:hover
{
    background:url(../images/left_hov.png) no-repeat center;
}
.qiye .qiye_next
{
    right:50%;
    margin-right:-670px;
    background:url(../images/right_mr.png) no-repeat center;
}
.qiye .qiye_next:hover
{
    background:url(../images/right_hov.png) no-repeat center;
}
.qiye .qiye_con
{
    width:1000px;
    height:278px;
    overflow:hidden;
    position:relative;
}
.qiye_con ul
{
    float:left;
    width:1000px;
}
.qiye_con li
{
    line-height:34px;
    color:#fff;
    font-size:12px;
}
.qiye li span
{
    display:block;
    float:left;
    width:215px;
    padding-right:15px;
}
.qiye li span.w240
{
    width:240px;
}
.qiye li span.w252
{
    width:252px;
}
.qiye li span.w230
{
    width:230px;
}
.odd
{
    filter:progid:DXImageTransform.Microsoft.gradient(enabled='true',startColorstr='#B2131F4E', endColorstr='#B2131F4E');
    background:rgba(19,31,78,0.7);
}
:root .odd
{
    filter:progid:DXImageTransform.Microsoft.gradient(enabled='true',startColorstr='#00131F4E', endColorstr='#00131F4E');
}
.part1 .part1_title
{
    text-align:center;
}

.huaxu,.intro
{
    padding-bottom:30px;
}
.huaxu_left
{
    width:690px;
    float:left;
    height:350px;
    position:relative;
}
.huaxu_control
{
    position:absolute;
    right:-220px;
    bottom:0;
    _width:205px;
}
.huaxu_left .prev_btn,.huaxu_left .next_btn
{
    width:40px;
    height:40px;
    background:url(../images/prev_btn.gif) no-repeat center top;
    cursor:pointer;
    z-index:9;
}
.huaxu_left .next_btn
{
    float:right;
    background:url(../images/next_btn.gif) no-repeat center top;
}
.huaxu_left .prev_btn,.huaxu_control ul,.huaxu_control ul li
{
    float:left;
}
.huaxu_control ul
{
    margin:0 20px;
}
.huaxu_control ul li
{
    float:left;
    text-indent:-99999em;
    width:8px;
    height:8px;
    background:url(../images/dot_mr.gif) no-repeat center;
    margin:16px 5px 0;
    cursor:pointer;
}
.huaxu_control ul li.active
{
    background:url(../images/dot_hov.gif) no-repeat center;
}
.huaxu_box
{
    width:710px;
    height:350px;
    overflow:hidden;
    *zoom:1;
    position:absolute;
    padding:30px;
    top:-30px;
    left:-30px;
}
.huaxu_box ul 
{
    height:380px;
    overflow:visible;
}
.huaxu_box ul li
{
    float:left;
    width:230px;
    height:175px;
    cursor:pointer;
    position:relative;
    overflow:visible;
}
.huaxu_box ul li img
{
    height:175px;
    position:absolute;
    top:0;
    left:0;
}
.huaxu_box ul li .huaxu_hov
{
    width:310px;
    height:250px;
    filter:progid:DXImageTransform.Microsoft.gradient(enabled='true',startColorstr='#B2131C48', endColorstr='#B2131C48');
    background:rgba(19,28,72,0.7);
    text-align:center;
    position:absolute;
    z-index:11;
    top:-30px;
    left:-30px;
    display:none;
}
.huaxu_box ul li .huaxu_hov img{
    width:65px;
    height:64px;
    left:50%;
    margin-left:-32px;
    margin-top:96px;
}
:root .huaxu_box ul li .huaxu_hov
{
    filter:progid:DXImageTransform.Microsoft.gradient(enabled='true',startColorstr='#00131C48', endColorstr='#00131C48');
}
.huaxu_right
{
    width:290px;
    float:right;
}
.huaxu_right p
{
    line-height:24px;
}
.huaxu_right02 p
{
    line-height:20px;
}
/*light box*/
.light_box
{
    width:100%;
    height:100%;
    position:fixed;
    background:rgba(0,0,0,0.6);
    top:0;
    left:0;
    z-index:1111;
    display:none;
    _position: absolute;
    filter:progid:DXImageTransform.Microsoft.gradient(enabled='true',startColorstr='#99000000', endColorstr='#99000000');background:rgba(0,0,0,0.6);
}
.light_box img
{
    width:650px;
    height:494px;
}
.light_box .prev,.light_box .next,.light_box .close
{
    width:57px;
    height:57px;
    background:url(../images/btn.png) 0 0;
    position:absolute;
    cursor:pointer;
}
.light_box .next
{
    background:url(../images/btn.png) -57px 0;
}
.light_box .close
{
    background:url(../images/btn_close.png) no-repeat center  center;
}

.intro .intro_logo
{
    float:left;
    width:194px;
    padding:10px 0 0 20px;
}
.intro .intro_right
{
    width:760px;
    float:right;
}
.intro .intro_right h3
{
    font:bold 20px/30px "Microsoft Yahei","黑体";
    color:#000;
}
.intro .intro_right p
{
    padding:8px 0 40px;
}
.intro .intro_right .btn_tools img
{
    margin-right:20px;
}

.part1 .part1_title
{
    text-align:center;
}
.part1 .part1_title h3
{
    top:-15px;
    width:175px;
    left:50%;
    margin-left:-50px;
    background:#fff;
    padding:0 15px;
    position:absolute;
		line-height:50px;
}
.part2 .part2_title,.part1 .part1_title
{
    border-bottom:solid 1px #dbdbdb;
    position:relative;
    height:10px;
    margin-bottom:20px;
}

/* css3 动画 */
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

/* fadeInUp */
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}
/* fadeInDown */
@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}
/* flipInX */
@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg)
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg)
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        -ms-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        -ms-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg)
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        -ms-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg)
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        -ms-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1
    }
}

.flipInX {
    -webkit-backface-visibility: visible!important;
    -ms-backface-visibility: visible!important;
    backface-visibility: visible!important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX
}
/* flipInY */
@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg)
    }

    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg)
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        -ms-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        -ms-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg)
    }

    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        -ms-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg)
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        -ms-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1
    }
}

.flipInY {
    -webkit-backface-visibility: visible!important;
    -ms-backface-visibility: visible!important;
    backface-visibility: visible!important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY
}
.nav-list a:hover{color:#ffffff;}

.baoming{background:#d1010b; height::65px;border-bottom:4px solid #d1010b}

.light{margin:17px auto 30px; overflow:hidden;}
.light ul{ list-style:none;}
.light ul li{margin:0 10px; background: url(../images/ld_bg.png) 0 0 no-repeat;padding-left:19px;line-height: 20px;font-family:simsun;font-size: 14px;color:#221815;margin-bottom: 10px;}

.jiabin {
  margin-right: -58px;
  padding-bottom: 30px;
}
.pad20 {
  padding-top: 20px;
}
.jiabin .model {
  width: 165px;
  float: left;
  font-size: 14px;
  margin-right: 24px;
  text-align: center;
  height: 240px;
  margin-top: 10px;
}
.jiabin .model p{
	font-size: 14px;
	line-height: 20px;
}
.jiabin .model h3{ font-size:14px; font-weight:bold;line-height: 20px;margin-top: 15px;}
.jiabin .model h6 {
  text-align: center;
}

.hunpaipic {
  height: 420px;
  overflow: hidden;
  float: left;
  display: inline;
  width: 1000px;
  position: relative;
  zoom: 1;
}
.margin20 {
  margin-top: 20px;
}

.hunpaipic dd.pic1 {
  top: 0;
  left: 0;
  width: 362px;
  height: 210px;
}
.hunpaipic dd {
  overflow: hidden;
  position: absolute;
}
.hunpaipic dd b {
  width: 100%;
  line-height: 30px;
  position: absolute;
  background: #000;
  opacity: 0.5;
  filter: alpha(opacity=50);
  bottom: 0;
  height: 30px;
}
.hunpaipic dd span {
  width: 100%;
  line-height: 30px;
  position: absolute;
  bottom: 0;
  text-align: center;
  color: #fff;
  font-size: 13px;
  z-index: 10;
  font-family: '微软雅黑','黑体';
}
.hunpaipic dd.pic2 {
  top: 212px;
  left: 0;
  width: 180px;
  height: 210px;
}
.hunpaipic dd.pic3 {
  top: 212px;
  left: 182px;
  height: 210px;
  width: 180px;
}
.hunpaipic dd.pic4 {
  top: 0;
  left: 364px;
  width: 272px;
  height: 156px;
}
.hunpaipic dd.pic5 {
  top: 158px;
  left: 364px;
  width: 272px;
  height: 156px;
}
.hunpaipic dd.pic6 {
  top: 316px;
  left: 364px;
  width: 272px;
  height: 105px;
}
.hunpaipic dd.pic7 {
  top: 316px;
  left: 501px;
  width: 135px;
  height: 105px;
}
.hunpaipic dd.pic8 {
  top: 0px;
  right: 182px;
  width: 180px;
  height: 210px;
}
.hunpaipic dd.pic9 {
  top: 0;
  right: 0px;
  width: 180px;
  height: 210px;
}
.hunpaipic dd.pic10 {
  top: 212px;
  right: 0px;
  width: 362px;
  height: 210px;
}
.fenxi{width:1000px; margin:30px auto 0px; overflow:hidden;}


.zixun {
  width: 100%;
  background:#2a2a2a;
  border-top:1px solid #7f7f7f;
  border-bottom: 1px solid #d4d4d4;
}
.part1_con .title {
  color: #124278;
  font: bold 24px/36px "Microsoft Yahei", "黑体";
}
.part1 .zixun_con {
  padding-top:14px;
}
.zixun_con .weixin02 {
  top: 8px;
  right: 170px;
}
.zixun_con .weixin {
  width: 168px;
  position: absolute;
  top: 8px;
  right: 0;
  color: #fff;
	text-align:center;
}
.zixun_con ul li {
  padding-right: 56px;
  float: left;
}
.zixun_con ul li p {
   float: left;
  color: #fff;
  line-height: 26px;
  font-size: 16px;
}
.zixun_con ul li h4 {
  font: bold 16px/26px "Microsoft Yahei","黑体";
  color: #666;
  color: #fff;
}
.weixin h6 img {
  width: 105px;
  height: 105px;
}
.weixin p img {
  padding-right: 5px;
}
.zixun_con .weixin p {
  color: #fff;
  padding-top: 2px;
}
.part1_con {
  width: 1000px;
  margin: 0 auto;
  padding: 28px 0 41px;
  
}
.zixun_con .weixin02 {
  top: 8px;
  right: 170px;
	text-align:center;
}

.huigu_table tr td {
    border: solid 1px #ddd;
    padding: 5px 8px;
    line-height: 22px;
}

.media-logo{ /*height:245px; overflow:hidden;*/}

.floatleft {
  float: left;
}
.line24, .line24 p {
  line-height: 24px;
	font-size:13px;
}
.zanzhu_list li{width:700px; margin:5px 0px; overflow:hidden;}
.pad20 {
  padding-top: 20px;
}


.news_list2 li{
	font-size: 14px;
	line-height: 26px;
	color:#000;
	
}

.jiabin_model {
    padding-bottom: 40px;
    overflow: hidden;
    *zoom:1;
}
.jiabin_model h4 {
    float: left;
}
.jiabin_model h4, .jiabin_model h4 img {
    width: 176px;
    height: 176px;
}
.jiabin_model .jiabin_right {
    margin-left: 200px;
}
.jiabin_model .jiabin_right h3, .jiabin_model .jiabin_right p {
    line-height: 24px;
    font-size: 14px;
}

.jiabin_model .jiabin_right h3{font-weight: bold;}

.address{overflow:hidden;}
.address dt{ font-size:18px; color:#00436e; margin-top:15px;}
.address dd{ margin-top:15px; line-height:24px;}
.map{overflow:hidden;}
.map img{width:100%;}

.whogo{margin:100px auto 50px;}
.whogo li{font:14px/27px simsun;color:#000; background:url(../images/wholist.gif) left center no-repeat; padding-left: 27px;}
.whogo p strong{font-weight: normal;font-size: 12px;line-height: 32px;color:#595757;}

.xufu_weixin
{
	position:fixed;
    bottom:0;
	display:none;
	z-index: 1111;
	left: 0;
	width: 106px;
	padding: 7px;
	background: #a62d64;
	text-align: center;
	font-size: 12px;
}
.xufu_weixin h3,.xufu_weixin p
{
	color: #fff;
}
.xufu_weixin h4,.xufu_weixin h4 img
{
	width: 105px;
	height: 105px;
}
.xufu_weixin p
{
	font-family: simsun;
	line-height: 16px;
	padding: 5px 0;
}
.xufu_weixin p img
{
	padding-right: 5px;
}
.xufu_weixin h3
{
	font: bold 15px/22px "Microsoft Yahei","黑体";
	padding-bottom: 5px;
}

.w-title {
font-weight: bold;
margin: 20px 0 5px;
font-size: 16px;
}
.w-list {
line-height: 1.8;
margin: 10px 0;
}
.w-subtitle {
font-weight: bold;
margin: 20px 0 5px;
font-size: 13px;
}
.w-list-dot .w-list-item {
padding-left: 15px;
background: url(http://www.ofweek.com/topic/2015/display/displayseminar/images/icon-dot.png) no-repeat 0 50%;
}

.yant {
overflow: hidden;
margin: 15px 0;
padding-bottom: 15px;
border-bottom: 1px dashed #ccc;
}
.yant .tup {
float: left;
}
.yant dl {
margin-left: 286px;
overflow: hidden;
}
.yant dt {
font-size: 14px;
color: #cc0000;
font-weight: bold;
}
.yant dd {
padding-top: 5px;
line-height: 20px;
overflow: hidden;
}
.yant dd a:hover{
color:#F00;
text-decoration:underline;
}

#lxwm{margin-top: 0;}
.anchdis{padding-top: 50px;}

.yycom-wrap,.media-logo{ height: 324px; overflow: hidden;}

.main-left{width:640px; float:left; overflow:hidden;}
.main-right{width:320px; float:right;}
.pd60{padding-top: 70px;}
.main-right p{font-size: 14px;line-height: 24px;}
.main-right .con{font-size: 14px;font-family: Simsun;color: #333;margin-top: 20px;line-height: 24px;}