/*
 * 这是oray公用样式
 * 应用范围：Oray主站，商城，控制台以及相同风格的其他站点
 * 页面适应宽度: 1240/990
 * @author CuTe_CuBe
 */

/** 清除内外边距 **/
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
pre, /* text formatting elements 文本格式元素 */
form, fieldset, legend, button, input, textarea, /* form elements 表单元素 */ 
dl,dt,dd,ul,ol,li /* list elements 列表类元素 */{
    margin: 0;
    padding: 0;
}
ul,ol,dl{
	list-style:none;
}
a img{
	border:none;
}
/** 字体设置 **/
body,
button, input, select, textarea /* for ie */ {
    font:14px/1.6 arial,"Microsoft Yahei","Hiragino Sans GB",sans-serif;
    color:#6a6a6a;
}
h1, h2, h3, h4, h5, h6 { font-size: 100%; font-weight:normal;}
address, cite, dfn, em, var, i { font-style: normal; } /* 将斜体扶正 */
code, kbd, pre, samp { font-family: courier new, courier, monospace; } /* 统一等宽字体 */
small { font-size: 12px; } /* 小于 12px 的中文很难阅读，让 small 正常化 */
html ,body{
	height:100%;
}
label, a{
	cursor:pointer;
}
.f12 {
    font-size: 12px;
}
.f14 {
	font-size: 14px;
}
.f16 {
    font-size: 16px;
}
.red {
    color: #ff0042;    /* 所有红色字体通用 */
}
.fl{
	float:left;
}
.fr{
	float:right;
}
.dark {
    color: #333; /* 深色字体 */
}
.green{
	color:#67dd1c;
}
.gray{
	color:#b2b2b2;
}
.udl{
	text-decoration:underline;
}
.link{
	color:#529dd2;
}
.link:hover{
	color:#4482ae;
}
/** 通用链接样式 **/
a{
    color:#6a6a6a;
    text-decoration:none;
}
a:focus{
    outline:thin dotted #333;
    outline:5px auto -webkit-focus-ring-color;
    outline-offset:-2px
}
a:hover, a:active{
    outline:0;
    color:#ff0042;
}
a.red:hover {
	color:#e7003c;
}
/** 重置表单元素 **/
legend { color: #000; } /* for ie6 */
fieldset, img { border: 0; } /* img 搭车：让链接里的 img 无边框 */
button, input, select, textarea { font-size: 100%; vertical-align:baseline; *vertical-align:middle; } /* 使得表单元素在 ie 下能继承字体大小 */


button,input {
    line-height:normal
}
button,html input[type="button"],input[type="reset"],input[type="submit"] {
    -webkit-appearance:button;
    cursor:pointer;
    *overflow:visible
}
button[disabled],html input[disabled] {
    cursor:default
}
input[type="checkbox"],input[type="radio"] {
    box-sizing:border-box;
    padding:0;
    *height:13px;
    *width:13px;
	box-sizing:border-box;
}

/* 清除浮动 */
.clear:after {
  content: '\20';
  display: block;
  height: 0;
  clear: both;
}
.clear {
  *zoom: 1;
}
.clearfix:after {content: "."; display: block; height:0; clear:both; visibility: hidden;}
.clearfix { *zoom:1; }
/*=== 顶部提示信息 ===*/
.msg{
	text-align:center;
	position:fixed;
	top:0;
	left:0;
	z-index:9999;
	width:100%;
	padding-top:2px;
}
.msg span{
	display:inline-block;
	background-color:#0b8b00;
	color:#fff;
	line-height:20px;
	padding:0 2em;
}
.msg span.error{
	background-color:#ee3123;
}
/* 顶部提示信息 for IE6*/
.msg{
	*position:absolute;
    *top:expression(documentElement.scrollTop + "px"); 
}
/*=== end 顶部提示信息 ===*/

/*==== 消息提示框 ====*/
.msgbox{
	background-color:#fffee5;
	border:1px solid #f7dea3;
	margin:20px 0;
	padding:20px 20px 20px 70px;
	position:relative;
	zoom:1;
}
.msgbox .if-smile{
	color:#ff7200;
	position:absolute;
	top:50%;
	left:20px;
	margin-top:-20px;
	font-size:30px;
}
.msgbox .if-close{
	color:#ff7200;
	position:absolute;
	top:5px;
	right:10px;
}
/*==== /消息提示框 ====*/

/** 按钮 button btn **/
.btn{
    display:inline-block;
    *display:inline;
    *zoom:1;
    margin-bottom:0;
    font-size:14px;
    height:38px;
    line-height:38px;
    text-align:center;
    cursor:pointer;
    background-color:#fff;
    border:1px solid #ff0042;
    color:#ff0042;
    padding:0;
    width:128px;
}
input.btn,button.btn /* 修复input,button边框大小*/{
    height:40px;
    width:130px;
}
.btn-small{
    height:30px;
    line-height:30px;
    width:118px;
    font-size:14px
}
.btn-big{
	width:230px;
	height:50px;
	line-height:50px;
	font-size:20px;
}
input.btn-big, button.btn-big{
    height:50px;
    width:230px;
}
input.btn-small,button.btn-small{
    height:32px;
	width:120px;
}
.btn:hover,.btn:focus{
    color:#fff;
    outline:0;
    text-decoration:none;
    background-color:#ff0042;
}
.btn.active,.btn:active{
    outline:0;
    background-color:#ff0042;
    -webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15);
    -moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15);
    box-shadow:inset 0 2px 4px rgba(0,0,0,.15);
}
.btn[disabled],.btn-disabled,
.btn[disabled]:hover,.btn-disabled:hover,
.btn[disabled]:focus,.btn-disabled:focus{
    cursor:default;
    -webkit-box-shadow:none;
    -moz-box-shadow:none;
    box-shadow:none;
    color:#fff;
    background:#d9d9d9;
    border-color:#d9d9d9;
}
.btn-block, button.btn-block, input.btn-block{
    display:block;
    width:100% !important;
    padding-left:0;
    padding-right:0;
    -webkit-box-sizing:content-box;
    -moz-box-sizing:content-box;
    box-sizing:content-box
}
.btn-primary{
    background-color:#ff0042;
    border-color:#ff0042;
    color:#fff;
}
.btn-primary:hover,.btn-primary:focus,.btn-primary.active,.btn-primary:active{
    color:#fff;
    border-color:#e7003c;
    background-color:#e7003c;
}
.icon{
    display:inline-block;
    zoom:1;
    *display:inline;
    width:20px;
    height:20px;
    background:url(../img/icon_140506.png) no-repeat;
    _background-image:url(../img/icon_140506.gif);
    vertical-align:middle
}
.icon-account{background-position:-40px -20px}
.icon-logout{background-position:0 0}

@font-face {font-family: 'iconfont';
    src: url('../iconfont/iconfont.eot?1113'); /* IE9*/
    src: url('../iconfont/iconfont.eot?1113#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../iconfont/iconfont.woff?1113') format('woff'), /* chrome、firefox */
    url('../iconfont/iconfont.ttf?1113') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
    url('../iconfont/iconfont.svg?1113#iconfont') format('svg'); /* iOS 4.1- */
}

.iconfont {
    font-family:"iconfont" !important;
    font-size:18px;
    font-style:normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
}

.arrow{
    width:0;
    height:0;
    line-height:0;
    font-size:0;
    border: 5px solid;
    border-color: #ff0042 transparent transparent transparent;
    border-style:solid dashed dashed dashed;
    cursor:pointer;
}

/** 容器 **/
.container {
    width: 1240px;
    margin: 0 auto;
}
.main-ct {
    margin: 25px auto;
}
.main-body {
    margin-left: 225px;
    width: auto;
    *width:1012px;
}
/** top-nav **/
.common-top-nav{
	background-color:#333;
	font-size:12px;
	min-width:990px;
	position:relative;
	height:40px;
	z-index:67;
}
.common-top-nav-inner{
	background-color:#333;
	height:40px;
	line-height:40px;
	font-size:14px;
}
.common-top-nav ul{
	margin:0;
	padding:0;
	list-style:none;
	width:auto;
	display:inline-block;
	float:left;
	*display:inline;
	*zoom:1;
}
.common-top-nav .common-top-nav-right{
	float:right;
}
.common-top-nav-right span{
	display: inline-block;
    padding: 0 13px;
    float: left;	
}
.common-top-nav li{
	display:inline-block;
	padding:0 13px;
	float:left;
	*display:inline;
	*zoom:1;
}
.common-top-nav a{
	color:#b0b0b0;
}
.common-top-nav a:hover{
	color:#fafafa;
}
/** end top-nav **/
/*nav-2015改版*/
.nav-oray{
	display:inline-block;
	width:41px;
	height:12px;
	*margin-top:12px;
	background-image:url(../img/nav_2015oray.jpg);
	background-repeat:no-repeat;
	background-position:left top;
	position:relative;
	top:2px;
}
.nav-oray:hover{
	background-position:left bottom;
}
.top-nav .pdt1{
	padding-top:1px;
}
/** header 页头 **/
.header {
	border-bottom:#f5f5f5 solid 1px;
    width:100%;
    min-width:990px;
	box-sizing:border-box;
}
.header-red{
    border-bottom: 1px solid #ff0042;
    box-shadow: 0 1px 0 0 #f1f4f6;
}
.header-inner {
    height: 80px;
    margin: 0 auto;
    position: relative;
    z-index:10;
}
.logo {
    top: 17px;
    position: absolute;
    left:0;
    line-height: 0;
}
.logo strong{
	font-size:40px;
	font-weight:normal;
	color:#ff0042;
	line-height:46px;
}
/*.nav {
    position: absolute;
    top: 0;
    right: 120px;
}*/
.nav {
    position: absolute;
    top: 0;
    right: 0px !important;
}
.nav ul, .nav-menu ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.nav-item {
    float: left;
    width: 130px;
}
.nav-item a {
    font-size: 18px;
    color: #6a6a6a;
    display: block;
    height: 80px;
    line-height: 80px;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.nav-item .num {
    display: none;
    vertical-align: middle;
    font-size: 12px;
    line-height: 12px;
    padding: -8px 2px 4px 2px;
    margin: 0 2px;
    background: #ff0042;
    color: #fff;
    border-radius: 4px 4px 4px 0;
    -webkit-border-radius: 4px 4px 4px 0;
    -moz-border-radius: 4px 4px 4px 0;
    position:absolute;
    top:50%;
}

.nav a:hover, .nav-active a, .nav-active .user-name, .nav-current .user-name {
    background-color: #eaeaea;
    color: #ff0042;
}
.nav .current a{
    color: #ff0042;
}

.user-infobox{
	float:right;
	height:40px;
	line-height:40px;
}
.user-infobox a{
    display: block;
	padding: 0 13px;
	height:40px;
	line-height:40px;
	float:left;
	text-align:center
}
.user-item{
	width: 100px;
    text-align: center;
	white-space:nowrap;
}
.user-infobox .tar{
	width:156px;
	text-align:right;
}
.user-namebox{
	white-space:nowrap;
}
.user-infobox .user-message{
	border-left:1px solid #555;
	height: 20px;
    line-height: 20px;
	margin-top:8px;
}
.user-infobox a:hover {
	color: #fafafa;
	background-color:transparent;
}

/* 顺序需要.nav a, .user-info a 放.nav-menu a前面 */

.nav-menu {
    position: absolute;
    z-index:10;
    width:130px;
	overflow:hidden;
}
.nav-menu li{
    border-bottom:1px solid rgba(0,0,0,0.3);
    z-index:10;
}
.nav-menu a {
    display:block;
    line-height: 40px;
    height: 40px;
    background: rgba(102, 102, 102, 0.8) !important;
    background: #969696\9;  /* IE6-8 */
    font-size: 14px;
    color: #fff;
    z-index:10;
 }
.nav-item .nav-menu a{
    color: #fff;
}
.nav-menu a:hover {
    background: rgba(102, 102, 102, 0.9) !important;
    background: #505050\9; /* IE6-8 */
    color: #fff;
}

.user-info{
    display: block;
    height: 90px;
    line-height: 90px;
	*line-height:40px;
    width:70px;
    padding:0 28px 0 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align:center;
    cursor:pointer;
    color: #6a6a6a;
    font-weight:normal;
	text-align:right;
}
.user-info .arrow{
    border-color: #6a6a6a transparent transparent transparent;
    border-style:solid dashed dashed dashed;
    cursor:pointer;
    position:absolute;
    top:44px;
    right:14px;
}
.nav-current .arrow, .nav-active .arrow{
    /*-moz-transform:rotate(180deg);
    -webkit-transform:rotate(180deg);*/
    border-color:transparent transparent #6a6a6a transparent;
    border-style:dashed dashed solid dashed;
    top:40px !important;
}
.user-info .nav-menu {
    width: 210px;
    right:0;
	text-overflow:ellipsis;
	white-space:nowrap; 
	overflow:hidden;
}
.user-info .nav-menu a {
    text-align: left;
    padding: 0 12px;
}
.user-info .nav-menu li .icon{
    margin-right:8px;
}

/** promise **/
.promise {
    margin: 40px auto;
    *padding-right:1px;
}
.promise ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    border-right:1px dashed #d8d8d8;
    *margin-right:-1px;
}
.promise li {
    float: left;
    width: 20%;
    height: 135px;
    font-size: 18px;
    border-left: 1px dashed #d8d8d8;
    margin-right:-1px; /*抵消20%+1px的border差*/
    text-align: center;
}
.promise em{
    display:block;
    font-size:12px;
    color:#999;
}
.promise p {
    line-height: 24px;
}
.promise .iconfont {
    color: #ff0042;
    font-size: 61px;
}
.promise-gray .iconfont{
	color:#999;
}
/** footer **/
.footer {
    width:100%;
    min-width:990px;
}
.footer-link {
    background:#f9f9f9;
    border-bottom:2px solid #fff;
    position:relative;
}
.footer-link-inner{
    margin:0 auto;
}
.footer-link a {
    color:#999;
    font-size:14px;
    text-decoration:none;
}
.footer-link a:hover{
    color:#ff0042;
}
.footer-link dl{
 	float: left;
    margin: 0;
    padding: 25px 0 0;
	height:105px;
}
.footer-link dt{
    margin:0;
    padding:0 0 10px 0;
    color:#333;
    font-size:16px;
}
.footer-link dd{
    margin:0;
    padding:0 30px 0 0;
    float:left;
	line-height:24px;
	color:#999;
}
.footer-link dl.about{
    padding-left:3%;
}

.footer dl.phone {
    padding-left: 3%;
}
.footer .phone dd{
	font-size:12px;
}
.footer .phone dd strong {
    color: #ff0042;
    font-size: 18px;
    font-weight: normal;
}
.footer-link dl.follow{
    float:right;
    position:relative;
}
.footer-link dl.follow dt {
    text-align:right;
}
.footer-link dl.follow dd {
    text-align:right;
    padding:0 0 0 40px;
}
.footer-link dl.follow span{
    display:none;
}
.footer-link dl.follow img{
    display:none;
}
.footer-link dl.follow a:hover img{
    display:block;
}

.footer-link .icon{
    background: url(../img/icon_focus_140427.png) no-repeat;
    _background-image: url(../img/icon_focus_140427.gif);
    width:24px;
    height:24px;
}
.footer-link .icon-weibo{
    background-position: -48px 0;
}
.footer-link .icon-weixin{
    background-position: -24px 0;
}
.footer-link .icon-forum{
    background-position: 0 0;
}
.footer-link .icon-weibo:hover{
    background-position: -48px -24px;
}
.footer-link .icon-weixin:hover{
    background-position: -24px -24px;
}
.footer-link .icon-forum:hover{
    background-position: 0 -24px;
}
.footer-link .icon-weixin img{
    position:absolute;
    right:-2px;
    bottom:72px;
}

.footer-info {
    background: #ff0042;
    height: 32px;
    line-height: 32px;
    color: #fff;
    font-size: 12px;
}
.footer-info a {
    color: #fff;
    text-decoration: none;
}
.footer-info-inner {
    margin: 0 auto;
    position: relative;
}
.copyright {
    text-align:right;
    margin-top: -32px;
    /*
    position: absolute;
    right: 0;
    top: 0;
    height: 37px;
    line-height: 37px;
    text-align: right;*/
}

/** 各种标题 **/
.section{
	margin-bottom:25px;
}
.main-title {
    font-size: 22px;
    font-weight: normal;
}
.section-title {
    height: 48px;
    line-height: 48px;
    position: relative;
    font-size: 20px;
    padding-top:8px;
}
.section-title img{
    margin-bottom: -1px;
}
.section-title .section-title-ext,
.section-title .ext{
    position:absolute;
    top:5px;
    right:0;
	font-size:14px;
}
.section-tab{
	height:48px;
	line-height:48px;
	border-bottom:1px solid #e5e5e5;
	position: relative;
	zoom:1;
}
.section-tab .ext{
	position:absolute;
	top:0;
	right:0;
}
.section-tab ul{
	margin:0;
	padding:0;
	list-style:none;
}
.section-tab li{
	float:left;
	display:inline-block;
	padding:0 30px 0 0;
	margin-right:15px;
	font-size:16px;
}
.section-tab .current a{
	color:#ff0042;
}
.section-item{
	margin-top:20px;
}
.section-last{
	margin-bottom:0;
}
/** 侧边栏 **/
.side-menu {
    width: 156px;
    padding: 0 22px;
    background-color: #f2f2f2;
    min-height: 500px;
    *height: 500px;
    float: left;
    font-size: 16px;
}
.side-menu ul {
    list-style-type: none;
    padding: 0 0 0 30px;
    margin: 0;
}
.side-menu a {
    display: block;
    height: 40px;
    line-height: 40px;
    text-decoration: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.side-menu a:hover, .side-menu .current a, .side-menu a.current {
    color: #ff0042;
}


/** 表单 **/
.fm-text, .fm-textarea, .fm-select {
    border: 1px solid #dfdfdf;
    outline: none;
    padding: 3px 5px;
    line-height: 24px;
    width: 320px;
    height: 24px;
    box-sizing:content-box;
}
.fm-text:focus, .fm-textarea:focus, .fm-select:focus {
    border-color: #ff0042;
}
.fm-error{
	color:#ff0042;
	margin-left: 8px;
}
.fm-textarea{
    height:auto;
	resize:none;
	overflow-y:auto;
}
.fm-need{
	color:#ff0042;
	display:inline-block;
	width:20px;
	text-align:center;
	vertical-align:middle;
}
.fm-check{
    vertical-align:-2px;
}
label .fm-check {
    margin-right: 5px;
}
.fm-select{
    width:auto;
}
.fm-wrapper .fm-item{
    padding: 5px 0;
    display: block;
}
.fm-label{
    display: inline-block;
    zoom: 1;
    *display: inline;
    width:30%;
    padding: 0 10px;
    height: 32px;
    line-height: 32px;
    text-align: right;
	vertical-align:middle;
	text-overflow:ellipsis;
	overflow:hidden;
	white-space:nowrap;
}

/** 列表 **/
.table-list {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    empty-cells: show;
	margin-top:-1px;
}
.table-list th{
    background:#f6f6f6;
    height:32px;
    line-height:32px;
    padding:0 12px;
    border-top:1px solid #dfdfdf;
}
.table-list td{
	padding:10px 15px;
	line-height:1.8em;
	border-bottom:1px solid #e5e5e5;
	height:48px;
}
.td-width{
    width:100px;
}
.table-list th{
	color:#333;
	font-weight:normal;
	height:32px;
	line-height:32px;
	padding:0 15px;
	background-color:#fafafa;
}
.table-list .current td{
	color:#ff0042;
}
.table-fixed {
    table-layout: fixed;
}
.table-fixed th, .table-fixed td {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.table-noborder td{
	border-bottom:0;
}
.table-noborder .hover td{
	background-color:#fafafa;
}
/*=== 弹出层 window ===*/
.mask{
    z-index:8000;
    position:absolute;
    /*position:fixed;*/
    top:0;
    left:0;
    -moz-opacity:0.5;
    opacity:.50;
    filter:alpha(opacity=50);
    background-color:#000;
    width:100%;
    height:100%;
    zoom:1;
}
.window-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    padding: 8px;
    background-color: rgba(223, 223, 223, 0.5);
    _background-color: #3a3a3a;
    display: none;  /* 默认就设为不可见 */
    z-index: 9000;
	min-width:550px;
}
.window {
    position: relative;
    border: 1px solid #dfdfdf;
    height:100%;
    min-height: 100px;
    background-color: #fff;
    margin: 0;
}
.window-opt {
    position: absolute;
    top: 10px;
    right: 10px;
    line-height: 14px;
    z-index: 100;
}
.window-header {
    font-size: 16px;
    padding: 5px 20px;
	background-color:#f9f9f9;
}
.window-body {
    padding: 20px;
}
.window-footer{
	padding:0 20px 20px;
}
.window .fm-label{
	width:90px;
}
body{
    _height:100%; /* for ie6 */
}
/*=== /弹出层 window ===*/
/*导航栏管理中心下拉*/
.slide-down{
	width:1240px;
	height:260px;
	position:absolute;
	background-color:rgba(68,68,68,0.95);
	*background-color:#4c4c4c;
	background-color:#4c4c4c\9;
	z-index:66;
	left:50%;
	margin-left:-620px;
	top:40px;
	padding-top:60px;
	display:none;
	zoom:1;
}
.top-nav .slide-down a{
	color:#ddd;
}
.top-nav .slide-down a:hover{
	color:#fff;
}
.slide-down a{
	color:#ddd;
	font-size:16px;
}
.slide-down a:hover{
	color:#fff;
}
.down-left{
	width:236px;
	height:200px;
	float:left;
	padding:0px 0 0 120px;
}
.down-left dt{
	font-size:28px;
	color:#ddd;
	margin-bottom:25px;
}
.down-left dd{
	font-size:16px;
	color:#ddd;
	height:36px;
}
.down-center{
	width:200px;
	height:200px;
	float:left;
	padding:0px 90px 0 124px;
	border-left:1px solid #999;
	border-right:1px solid #999;
}
.down-center dt,.down-right dt{
	font-size:28px;
	color:#ddd;
	margin-bottom:25px;
}
.down-center dd,.down-right dd{
	width:90px;
	font-size:16px;
	color:#ddd;
	height:36px;
	float:left;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
} 
.down-center dd{
	width:100px;
}
.down-center dd .red{
	font-size:14px;
	vertical-align:top;
}
.down-right dd{
	width:109px;
}
.down-right dd a{
	display:block;
	width:105px;
	height:36px;
	padding-left:4px;
	font-size:16px;
}
.down-right{
	width:218px;
	height:200px;
	float:left;
	padding:0px 104px 0 144px;
}
.admin{
	background-color:#555;
	height:40px;
	line-height:40px;
	float:right;
	padding: 0 13px;
}
.admin a{
	display:inline-block;
	height:40px;
	line-height:40px;
	text-align:center;
}
.r0{right:0px;}
.pr{
	position:relative;
}
.user-item ul{
	position:absolute;
	top:38px;
	right:0px;
	z-index:15;
	display:none;
}
.user-item ul li{
	background-color:#333;
	color:#b0b0b0;
	text-align:center;
}
.user-item li a{
	width:156px;
	padding:0 13px;
	background-color:#333;
	color:#b0b0b0;
	text-align:center;
}
.user-item li a:hover{
	color:#fff;
}
.user-item ul li:hover{
	color:#fff;
}
.common-top-nav .pdl0{
	padding-left:0px;
}
.f20{
	font-size:20px;
}
.common-top-nav li:hover .qrcode-wrapper{
	display:block;
}
.qrcode-wrapper{
	width:184px;
	height:236px;
	background-image:url(../img/qrcode_20151210.png);
	background-repeat:no-repeat;
	position:absolute;
	top:31px;
	left:-52px;
	display:none;
	*top:32px;
	*left:-3px;
	*background-image:url(../img/qrcode_20151210_1024.png);
	top:32px \9;
	left:-3px \9;
	background-image:url(../img/qrcode_20151210_1024.png) \9;
}
.icon-lh22{line-height:22px;}
/** 宽度适应 **/
@media (max-width:1260px) {
	body{
		min-width:1010px;
	
	}
    .container {
        width: 990px;
    }

    /* 其实没用 */
    .main-body {
        *width:765px;
    }
	
	.footer-link .footer-link-inner,
	.footer-info .footer-info-inner{
		width:990px;
	}
	.footer dl.about,
	.footer dl.other,
	.footer dl.phone{
		padding-left:0;
		width:25%;
	}
	.slide-down{
		width:990px;
		margin-left:-495px;
	}
	.down-left{
		width:196px;
		padding:0px 0 0 105px;
	}
	.down-center{
		padding:0px 45px 0 79px;
	}
	.down-right{
		padding:0px 60px 0 85px;
	}
	.down-center dd{
		width:100px;
	}
	.down-right dd{
		width:100px;
	}
	.user-item{
		width:80px;
	}
    .fm-text{
        width:155px;
    }
	.qrcode-wrapper{
		top:32px;
		left:-3px;
		background-image:url(../home/img/qrcode_20151210_1024.png);
	}
}
