@charset "UTF-8";
@import url(../css/icon.css);

body,
dl,
dd,
ul,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
legend,
input,
textarea,
optgroup,
p,
blockquote,
figure,
hr,
menu,
dir,
thead,
tbody,
tfoot,
th,
td {
  margin: 0;
  padding: 0;
}

/**
 * 非大面积文字排版网站通常不需要列表项，如果需要可单独设置
 */
ul,
ol {
  list-style-type: none;
  list-style-image: none;
}

/* ==========================================================================
   链接
   ========================================================================== */
/**
 * 去除链接默认的下划线，提高文字可读性
 */
a {
  text-decoration: none;
}

/**
* 去掉 IE 10+ 点击链接时的灰色背景
*/
a:active {
  background-color: transparent;
}

/**
 * 去掉点击时的焦点框，同时保证使用键盘可以显示焦点框
 */
a:active,
a:hover {
  outline: 0 none;
}

/**
 * 统一 Chrome 和 Safari 的焦点框样式
 * Chrome 中 thin 关键字放大页面后焦点框不会放大 http://jsbin.com/ehakom/1
 * Firefox 中 box-shadow 会导致焦点框位置偏移，需用「outline-offset」修正
 * 关闭
 */
a:focus {
  outline: none;
}

/* ==========================================================================
   字体和基础排版
   ========================================================================== */
/**
 * 1.防止 iOS 横屏字号放大，同时保证在PC上 zoom 功能正常
 */
html {
  -ms-text-size-adjust: 100%;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 1 */
  text-size-adjust: 100%;
  font-size: 62.5%;
  /* 10/16=62.5% */
}

body {
  font-size: 14px;
  line-height: 1.8;
}

/**
 * 所有 font-family 小写，存在空格的字体名加单引号
 * @default-font: 'helvetica neue', tahoma, \5B8B\4F53, sans-serif;
 * @heading-font: 'helvetica neue', tahoma, 'hiragino sans gb', stheiti, 
    \5FAE\8F6F\96C5\9ED1, \5B8B\4F53, 'wenquanyi micro hei', sans-serif;
 * @code-font: monaco, menlo, consolas, monospace;
 */
/**
 * 中文优先使用冬青黑体简体(OS X)、微软雅黑(Windows)和文泉驿微米黑(Linux)
 * 西文使用 tahoma
 * 1. 防止元素中「font-family」不能继承
 * 2. 西文字体和 OS X 字体写在前面
 * 3. Opera 12.1 之前版本不支持中文字体的英文名称
 * 4. 微软雅黑「\5FAE\8F6F\96C5\9ED1」,中易宋体「\5B8B\4F53」
 */
.font,
body,
button,
input,
select,
textarea,
.sectionB .mod-data .mod-content ul li.title,
.sectionC .box-spec ul li .hover h4,
.sectionC .box-spec ul li .hover h6 {
  font-family: 'helvetica neue', tahoma, 'hiragino sans gb', stheiti, 'wenquanyi micro hei', \5FAE\8F6F\96C5\9ED1, \5B8B\4F53, sans-serif;
}

body,
button,
input,
select,
textarea {
  -ms-text-autospace: ideograph-alpha ideograph-numeric ideograph-parenthesis;
  /* 5 */
  text-autospace: ideograph-alpha ideograph-numeric ideograph-parenthesis;
  /* 5 */
}

/**
 * 中文小于 12px 可读性很差
 * 1. 统一 IE 6-7 中字体大小
 * 2. 统一 Firefox 4+，Safari 5 和 Chrome 中「section」和「article」内的字体大小
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 12px;
}

/**
 * 修正「abbr」元素在 Firefox 外其他浏览器没有下划线的问题
 * 添加问号光标，明确语义
 */
abbr,
acronym {
  border-bottom: 1px dotted;
  /* 1 */
  cursor: help;
  /* 2 */
}

/**
 * Firefox3+，Safari4/5 和 Chrome 中统一设置为粗体
 */
b,
strong {
  font-weight: bold;
}

/**
 * 修正 Safari5 和 Chrome 中没有样式的问题
 */
dfn {
  font-style: italic;
}

/**
 * 修正 Firefox 和其他浏览器之间的差异
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * 网页标记，荧光笔
 * 修正 IE6-11 中没有样式的问题
 */
mark {
  background-color: #D2E5FF;
  color: #000;
}

/**
 * 统一代码的字体设置
 * 字体要能明确区分数字 0 和字母 o
 * Mac 优先使用 Monaco，Windows 优先使用 Consolas
 * XP自带 Courier New
 * Windows 7开始自带的 Consolas
 * Mac上自带的Monaco，Osaka-Mono
 */
code,
kbd,
pre,
samp {
  font-family: monaco, menlo, consolas, 'courier new', courier, monospace;
}

/**
 * 增强所有浏览器中 pre 标签中文本的可读性
 * 1. IE 6-7 不支持 pre-wrap
 * 2. pre 标签应当包含滚溢出
 */
pre {
  white-space: pre;
  white-space: pre-wrap;
  /* 1 */
  word-wrap: break-word;
  overflow: auto;
}

/**
 * 行内引用
 * IE 6-7 不支持 quotes 属性
 * 现代浏览器去除 quotes 内容
 */
q {
  quotes: none;
}

/**
 * Safari 4 不支持<q>标签
 */
q:before,
q:after {
  content: '';
  content: none;
}

/**
 * 中文网页<small>元素字号小于 12px 不易阅读
 */
small {
  font-size: 85.7%;
  /* 12/14=0.8571428571 */
}

/**
 * 防止所有浏览器中的<sub>和<sup>影响行高
 * http://jsbin.com/usoyal/1/edit
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
   表格
   ========================================================================== */
/**
 * 合并单元格边框
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * 修复 IE 中 th 不能继承 text-align 的问题并统一左对齐
 * http://jsbin.com/evoxif/2/edit
 */
th {
  text-align: left;
}

/**
 * 单元格添加边框
 */
table th,
table td {
  border: 1px solid #ddd;
  padding: 8px 10px;
}

/**
 * 表头底部边框
 */
table th {
  font-weight: inherit;
  border-bottom-width: 2px;
  border-bottom-color: #ccc;
}

/* ==========================================================================
   嵌入元素
   ========================================================================== */
/**
 * 1. 去除 IE6-9 和 Firefox 3 中 a 内部 img 元素默认的边框
 * 2. 修正 IE8 图片消失bug
 * 3. 防止 img 指定「height」时图片高度不能按照宽度等比缩放，导致图片变形
      http://jsbin.com/aJoTUca/2
 * 4. 让图片支持响应式
 * 5. 去除现代浏览器图片底部的空隙
 * 6. 修复 IE7 图片缩放失真
 */
img {
  border: 0 none;
  /* 1 */
  width: auto\9;
  /* 2 */
  height: auto;
  /* 3 */
  max-width: 100%;
  /* 4 */
  vertical-align: top;
  /* 5 */
  -ms-interpolation-mode: bicubic;
  /* 6 */
}

/**
 * 修复 IE9 中的「overflow」的怪异表现
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   表单
   ========================================================================== */
/**
 * 定义一致的边框、外边距和内边距
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. 修正 IE 6-9 中颜色不能继承的问题
 * 2. 修正 Firefox3 中文字不换行的问题
 * 3. 修正 IE6-7 中怪异的对齐方式
 */
legend {
  border: 0 none;
  /* 1 */
  white-space: normal;
  /* 2 */
  *margin-left: -7px;
  /* 3 */
}

/**
 * 1. 修正所有浏览器中字体不继承的问题
 * 2. 修正所有浏览器中字号不继承的问题
 * 3. 修正 Firefox 3+， Safari5 和 Chrome 中外边距不同的问题
 * 4. 改善在所有浏览器下的垂直对齐方式
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
  vertical-align: baseline;
  /* 4 */
  *vertical-align: middle;
  /* 4 */
}

/**
 * 修正 IE7 随着字数增加边距不断增加的问题
 */
input,
button {
  *overflow: visible;
}

/**
 * 统一各浏览器「text-transform」不会继承的问题
 * http://jsbin.com/iqecic/1/edit
 * http://tjvantoll.com/2012/07/10/default-browser-handling-of-the-css-text-transform-property/
 */
button,
select {
  text-transform: none;
}

/**
 * 1. 避免 Android 4.0.* 中的 WebKit bug ，该bug会破坏原生的
   「audio」 和「video」的控制器
 * 2. 更正 iOS 中无法设置可点击的「input」的问题
 * 3. 统一其他类型的「input」的光标样式
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * 重置按钮禁用时光标样式
 */
button[disabled],
input[disabled] {
  cursor: default;
}

/**
 * 1. 修正 IE 8/9 box-sizing 被设置为「content-box」的问题
 * 2. 移除 IE 8/9 中多余的内边距
 * 3. 移除 IE7 中多余的内边距(IE6 中任然存在)
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */
}

/**
 * 1. 修正 Safari 5 和 Chrome 中「appearance」被设置为「searchfield」的问题
 * 2. 修正 Safari 5 和 Chrome 中「box-sizing」被设置为 「border-box」的问题
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * 1.移除 OS X 中 Safari5 和 Chrome 搜索框内侧的左边距
 * 2.如果需要隐藏清除按钮需要加上
   input[type="search"]::-webkit-search-cancel-button
 */
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 移除 Firefox 3+ 的内边距
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 修正 Chrome 中 input [type="number"] 在特定高度和 font-size 时,
 * 下面一个箭头光标变成「cursor: text」
 * @demo: http://jsfiddle.net/FFXEc/
 * 动画演示：http://gtms04.alicdn.com/tps/i4/T18kd8FCtaXXc_FhcF-330-350.gif
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. 移除 IE6-11 中默认的垂直滚动条
 * 2. 禁止水平拖动，防止破坏布局
 */
textarea {
  overflow: auto;
  /* 1 */
  resize: vertical;
  /* 2 */
}

/**
 * 修正 Chrome 30- option 中文字无法显示的问题
 * http://jsbin.com/avujas/1/edit 
 */
select:disabled option:checked,
option:disabled:checked {
  color: #D2D2D2;
}

/**
 * 修正 Safari 3+, Chrome 1+ Placeholder 居中问题
 */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input {
    line-height: normal !important;
  }
}

/**
 * 修正 Firefox 19+ Placeholder 设置了opacity 的问题
 */
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: darkGray;
  opacity: 1;
}

/**
 * label 元素给予手型，暗示此处可点击
 */
label {
  cursor: pointer;
}

/**
 * 统一 select 样式, Firefox 中有 padding:1px 0
 * http://jsbin.com/avujas/1/edit
 */
select[size],
select[multiple],
select[size][multiple] {
  border: 1px solid #AAA;
  padding: 0;
}

.font2,
.aside .mod-health .mod-content,
.aside .mod-health .mod-content ul li,
.aside .mod-service .mod-content,
.aside .mod-account .mod-content li,
.sectionA .mod-hotnews .tab a,
.sectionB .mod-job .content .job .intro p,
.sectionB .mod-data .mod-content ul li,
.sectionC .box-spec ul li,
.sectionC .box-spec ul li .hover,
.sectionD ul li .hover h4 {
  font-family: 'helvetica neue', tahoma, 'hiragino sans gb', stheiti, 'wenquanyi micro hei', "SimSun", sans-serif;
}

body {
  background: #f7f7f7 url(../images/home_bg.png?v1) no-repeat center 0;
}

.browser-waring {
  position: relative;
  z-index: 9999;
  background: #000;
  color: #fff;
  padding: 10px 0;
  text-align: center;
  width: 100%;
  font-size: 14px;
}

.browser-waring a {
  color: #F13C35;
}

.sprite {
  background-image: url(../images/icon.png);
}

.sprite.mod-hotnews {
  opacity: 0.92;
  background-image: url(../images/box_bg.png);
}

.hidden {
  display: none;
}

.center {
  margin: 0 auto;
  width: 1260px;
  height: 100%;
  position: relative;
}

.wrap,
header,
footer,
section {
  width: 100%;
  float: left;
}

section.sectionA {
  margin-top: 98px;
}

header {
  width: 100%;
  height: 90px;
  background: url("../images/nav-bg.png") 0 0 repeat-x;
}

header .logo {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 30;
  margin-left: -82px;
}

header .nav-main {
  border-bottom: 1px solid #1c0c04;
  width: 100%;
  height: 90px;
}

header .nav-main nav {
  margin: 0 auto;
  width: 1260px;
  height: 100%;
  position: relative;
  position: relative;
}

header .nav-main nav>a {
  float: left;
  display: block;
  width: 135px;
  height: 100%;
  background: url("../images/nav-split.png") right center no-repeat;
}

header .nav-main nav>a:last-child {
  background: none;
}

header .nav-main nav>a.nav-blank {
  margin-left: 180px;
}

header .nav-main nav>a em {
  margin: 25px 0 0 30px;
  background-image: url("../images/nav_icon.png?v=22");
}

header .nav-sub {
  position: absolute;
  z-index: 20;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  background: #000;
  opacity: 0.95;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=95);
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=95);
}

header .nav-sub .nav-m {
  position: absolute;
  left: 50%;
  margin-left: -58px;
  top: 95px;
}

header .nav-sub nav {
  margin: 0 auto;
  width: 1260px;
  height: 100%;
  position: relative;
}

header .nav-sub nav li {
  float: left;
  display: block;
  width: 135px;
  height: auto;
}

header .nav-sub nav li.nav-blank {
  margin-left: 180px;
}

header .nav-sub nav li ul {
  padding-top: 10px;
  background: url("../images/line-bg.gif") left center repeat-y;
  height: 235px;
}

header .nav-sub nav li ul li a {
  display: block;
  text-align: center;
  color: #925230;
  line-height: 32px;
  height: 32px;
}

header .nav-sub nav li ul li a:hover {
  color: #a72e0e;
  text-decoration: underline;
}

header .nav-sub nav li.item {
  margin-top: 10px;
}

header .nav-sub nav li.last-item {
  background: url("../images/line-bg.gif") right center repeat-y;
}

header .nav-sub .border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #910000;
}

.banner {
  height: 424px;
}

.banner a {
  display: block;
  width: 50%;
  height: 100%;
}

.banner .age-tips {
  position: absolute;
  top: 470px;
  right: 0;
}

.mod-down {
  float: left;
  width: 310px;
  height: 320px;
  background: url("../images/mod-down.png") 0 0 no-repeat;
}

.mod-down .down-link {
  display: block;
  width: 310px;
  height: 126px;
}

.mod-down .down-link:hover {
  background-image: url("../images/mod-down-hover.png");
}

.mod-down .down-links {
  display: block;
  width: 310px;
  height: 64px;
  line-height: 64px;
  color: #d38d5f;
  font-size: 16px;
}

.mod-down .down-links a {
  display: inline-block;
  width: 150px;
  height: 64px;
  text-align: center;
  color: #d38d5f;
}

.mod-down .down-links a:hover {
  color: #f0af85;
}

.mod-down .fast-tools {
  display: block;
  width: 310px;
  height: 130px;
}

.mod-down .fast-tools a {
  position: relative;
  float: left;
  display: block;
  width: 155px;
  height: 65px;
  border: none;
  line-height: 65px;
  text-indent: 60px;
  color: #d38d5f;
}

.mod-down .fast-tools a span {
  position: absolute;
  top: 18px;
  left: 26px;
}

.mod-down .fast-tools a:hover {
  color: #f0af85;
}

.mod-down .fast-tools a:hover span {
  transform: rotateY(360deg);
  transition: all 0.3s linear;
}

.boxs {
  overflow: hidden;
}

.boxs .box {
  position: absolute;
  top: 0;
  left: 100%;
}

.boxs .box.on {
  left: 0;
}

.mod-box .mod-title {
  width: 100%;
  height: 50px;
  line-height: 50px;
  position: relative;
}

.mod-box .mod-title a.more {
  position: absolute;
  font-size: 14px;
  color: #bbb;
  top: 0;
  right: 0;
}

.mod-box .mod-title a.more:hover {
  color: #333;
}

.mod-box .mod-content {
  position: relative;
}

.animate-3 {
  -webkit-transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.on .animate-3 {
  -webkit-transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
  -moz-transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
  -ms-transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
  -o-transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
}

@font-face {
  font-family: 'tel';
  src: url("../images/tel.eot");
  src: local("?"), url("../images/tel.woff") format("woff"), url("../images/tel.ttf") format("truetype"), url("../images/tel.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

.bg {
  display: none;
  background-color: #000;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  /*FF IE7*/
  filter: alpha(opacity=90);
  -moz-opacity: 0.9;
  opacity: 0.9;
  z-index: 1000;
  position: fixed;
  /*FF IE7*/
  _position: absolute;
  _height: expression(eval(document.documentElement.clientHeight));
  _top: expression(eval(document.documentElement.scrollTop));
}

.close_layer {
  position: absolute;
  width: 60px;
  height: 60px;
  right: 5px;
  top: 0px;
}

.hide {
  display: block;
  text-indent: -9999em;
  line-height: 999px;
  overflow: hidden;
}

.mydiv {
  display: none;
  z-index: 2000;
  width: 850px;
  height: 658px;
  left: 50%;
  /*FF IE7*/
  top: 50%;
  /*FF IE7*/
  margin-top: -329px;
  position: fixed;
  /*FF IE7*/
  _position: absolute;
  _top: expression(eval(document.documentElement.scrollTop)+(document.documentElement.clientHeight/2));
}

.video_A {
  background: #000;
  background: rgba(0, 0, 0, 0.7);
  width: 707px;
  height: 454px;
  margin-top: -240px;
  margin-left: -370px;
}

.video_A .close_layer {
  background: url("../images/v_close.gif") no-repeat;
  width: 48px;
  height: 48px;
  right: -48px;
  top: 0px;
}

.mydivWx {
  width: 267px;
  height: 300px;
  margin-left: -133px;
  margin-top: -150px;
  background: url(../images/mydivWx.png) no-repeat 0 0;
}

.mydivWx .close_layer {
  width: 48px;
  height: 48px;
  right: -25px;
  top: -25px;
  background: url(../images/close.png) no-repeat;
}

.myanswer {
  width: 455px;
  height: 455px;
  margin-top: -227px;
  margin-left: -227px;
}

.myanswer .close_layer {
  background: url(http://static.sdg-china.com/tt/pic/systemVote/pop_norepeat_bg.gif) no-repeat;
  width: 20px;
  height: 20px;
  overflow: hidden;
  position: absolute;
  right: 5px;
  top: 5px;
}

.aside {
  margin-top: 50px;
  padding: 50px 0 80px 0;
  background: #fff;
}

.aside .mod-box {
  width: 314px;
  height: 210px;
  border-right: 1px solid #efefef;
  float: left;
}

.aside .mod-box .mod-title {
  text-align: center;
  height: 32px;
  line-height: 22px;
  font-size: 22px;
  color: #444;
}

.aside .mod-health .mod-content {
  padding: 0 45px;
  font-size: 12px;
}

.aside .mod-health .mod-content ul {
  height: 110px;
  border-top: 1px solid #f7f7f7;
  border-bottom: 1px solid #f7f7f7;
  padding: 5px 0;
}

.aside .mod-health .mod-content ul li {
  width: 50%;
  float: left;
  line-height: 30px;
  font-size: 12px;
  color: #999;
  text-indent: 20px;
  line-height: 28px;
  background: url(../images/sign2.png) no-repeat 9px center;
}

.aside .mod-health .mod-content em {
  margin-top: 10px;
  display: inline-block;
  padding: 0 15px;
  margin-left: 18px;
  line-height: 26px;
  border-radius: 14px;
  background-color: #f7f7f7;
  font-style: normal;
  color: #999;
}

.aside .mod-interact .mod-content {
  padding: 20px 45px;
}

.aside .mod-interact .mod-content li {
  width: 50%;
  float: left;
  height: 75px;
}

.aside .mod-interact .mod-content li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.aside .mod-interact .mod-content li a span {
  display: block;
  margin: 0 auto;
}

.aside .mod-interact .mod-content li a em {
  display: block;
  font-style: normal;
  color: #999;
  line-height: 20px;
  text-align: center;
}

.aside .mod-service .mod-content {
  padding: 0 11px;
  font-size: 12px;
}

.aside .mod-service .mod-content em {
  display: block;
  width: 100%;
  height: 44px;
  line-height: 50px;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  font-family: 'tel';
  text-align: left;
  color: #cdcdcd;
  font-size: 30px;
}

.aside .mod-service .mod-content em span {
  vertical-align: middle;
  margin: 0 10px;
}

.aside .mod-service .mod-content i {
  display: block;
  width: 90%;
  margin: 0px auto;
  color: #ccc;
  font-style: normal;
  text-align: left;
  line-height: 2;
}

.aside .mod-service .mod-content i span {
  color: #999;
}

.aside .mod-service .mod-content li {
  color: #ccc;
  text-indent: 20px;
  background: url(../images/sign3.png) no-repeat 9px center;
  line-height: 24px;
}

.aside .mod-service .mod-content li a {
  color: #333;
}

.aside .mod-account {
  border-right: none;
}

.aside .mod-account .mod-content {
  padding: 0 15px;
}

.aside .mod-account .mod-content li {
  float: left;
  width: 120px;
  height: 40px;
  background-color: #fcfcfc;
  border: solid 1px #eee;
  background-image: -webkit-linear-gradient(bottom, #fdfdfd, #fefefe);
  background-image: -moz-linear-gradient(bottom, #fdfdfd, #fefefe);
  background-image: -o-linear-gradient(bottom, #fdfdfd, #fefefe);
  background-image: -ms-linear-gradient(bottom, #fdfdfd, #fefefe);
  background-image: linear-gradient(to top, #fdfdfd, #fefefe);
  margin-left: 15px;
  margin-bottom: 10px;
  transition: all 0.5s;
  font-size: 12px;
  line-height: 45px;
  text-align: center;
}

.aside .mod-account .mod-content li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #999;
}

.aside .mod-account .mod-content li:hover {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
}

.aside .mod-account .mod-content li a:hover {
  color: #333;
}

.mod-clearfix:after {
  content: "";
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
}

.mod-clearfix {
  zoom: 1;
}

.mod-fl {
  float: left;
}

.mod-fr {
  float: right;
}

.mod-lh24 {
  line-height: 24px;
}

.mod-mt20 {
  margin-top: 20px;
}

.mod-mtlr60 {
  margin: 0 60px;
}

.c8c8e8d {
  color: #8c8e8d;
}

.nbr {
  border-right: none !important;
}

.nbb {
  border-bottom: none !important;
}

.mt30 {
  margin-top: 30px;
}

.mt24 {
  margin-top: 24px;
}

.mt14 {
  margin-top: 14px;
}

.mt10 {
  margin-top: 10px;
}

.ml43 {
  margin-left: 43px;
}

.re {
  position: relative;
}

.w414 {
  width: 414px;
}

.w470 {
  width: 456px;
}

.w118 {
  width: 118px;
}

.w170 {
  width: 170px;
}

.w328 {
  width: 328px;
}

.Strong {
  font-weight: bold;
}

.Red {
  color: #cb5131 !important;
}

.RedStrong {
  font-weight: bold;
  color: #cb5131 !important;
}

.Blue {
  color: #5879a1 !important;
}

.BlueStrong {
  font-weight: bold;
  color: #5879a1 !important;
}

.main-left {
  width: 310px;
  height: 1000px;
  float: left;
}

.main-right {
  float: left;
  width: 950px;
  height: auto;
  border-bottom: 3px solid #eee;
  font-family: 'microsoft yahei';
  color: #666;
  background: #fff;
}

.main-right .mod-hd {
  height: 76px;
  background-color: #f2f2f2;
}

.main-right .mod-hd h2 {
  margin-left: 36px;
  height: 100%;
  width: 273px;
  background: url(../images/downtitle.png) no-repeat left center;
  text-indent: -9999px;
  float: left;
}

.main-right .mod-hd p {
  float: right;
  height: 76px;
  color: #999;
  padding-right: 22px;
  font: 12px/76px 'simsun';
}

.main-right .mod-hd p a {
  color: #999;
}

.sectionA .mod-focus {
  float: left;
  width: 585px;
  height: 320px;
  position: relative;
  overflow: hidden;
}

.sectionA .mod-focus .imgs {
  width: 100%;
  height: 100%;
}

.sectionA .mod-focus .imgs ul {
  width: 100%;
  height: 100%;
}

.sectionA .mod-focus .imgs ul li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  filter: alpha(opacity=0);
}

.sectionA .mod-focus .imgs ul li.on {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 3;
}

.sectionA .mod-focus .imgs ul li.fadeout {
  opacity: 0;
  filter: alpha(opacity=0);
  transform: scale(1.2);
  transition: all 1s linear;
  z-index: 5;
}

.sectionA .mod-focus .imgs ul li a,
.sectionA .mod-focus .imgs ul li a img {
  display: block;
  width: 100%;
  height: 100%;
}

.sectionA .mod-focus .focus-ctrl-l,
.sectionA .mod-focus .focus-ctrl-r {
  position: absolute;
  top: 120px;
  left: -45px;
  z-index: 8;
  opacity: 0.5;
  filter: alpha(opacity=50);
  transition: all .3s ease-in;
}

.sectionA .mod-focus .focus-ctrl-r {
  left: auto;
  right: -45px;
}

.sectionA .mod-focus:hover .focus-ctrl-l {
  left: 15px;
  opacity: 1;
  filter: alpha(opacity=100);
}

.sectionA .mod-focus:hover .focus-ctrl-r {
  right: 15px;
  opacity: 1;
  filter: alpha(opacity=100);
}

.sectionA .mod-focus .ctrl {
  position: absolute;
  top: 290px;
  left: 0px;
  z-index: 8;
  width: 100%;
  height: 10px;
  text-align: center;
}

.sectionA .mod-focus .ctrl a {
  display: inline-block;
  margin-right: 10px;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background: #fff;
  transition: width .3s linear;
}

.sectionA .mod-focus .ctrl a:hover,
.sectionA .mod-focus .ctrl a.on {
  background: #a72e0e;
  width: 32px;
}

.sectionA .mod-hotnews .more {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.sectionA .mod-hotnews .tab {
  width: 320px;
  height: 51px;
  margin: 10px 0 0 25px;
  line-height: 50px;
  border-bottom: 1px solid #444;
}

.sectionA .mod-hotnews .tab a {
  display: inline-block;
  width: 80px;
  height: 50px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #444;
}

.sectionA .mod-hotnews .tab a.on {
  border-bottom: 2px solid #a72e0e;
  color: #a72e0e;
}

.sectionA .mod-hotnews .boxs {
  position: relative;
  width: 320px;
  height: 230px;
  position: relative;
  margin: 10px 0 0 25px;
}

.sectionA .mod-hotnews .boxs .box {
  width: 320px;
  height: 230px;
  width: 320px;
}

.sectionA .mod-hotnews .boxs .box a {
  display: block;
  width: 100%;
  height: 32px;
  position: relative;
  color: #444;
  line-height: 32px;
}

.sectionA .mod-hotnews .boxs .box a .cat {
  color: #8e8d8d;
  margin-right: 6px;
}

.sectionA .mod-hotnews .boxs .box a .time {
  color: #8e8d8d;
  position: absolute;
  top: 0;
  right: 0;
}

.sectionA .mod-hotnews .boxs .box a:hover .detail-link {
  color: #a72e0e;
  text-decoration: underline;
}

.sectionB {
  margin-top: 80px;
}

.sectionB .mod-job {
  width: 620px;
  height: 380px;
  float: left;
}

.sectionB .mod-job .title {
  top: 10px;
  display: block;
  width: 320px;
  height: 44px;
  line-height: 43px;
  border-bottom: 1px solid #bfbfbf;
  position: absolute;
  left: 20px;
  z-index: 20;
}

.sectionB .mod-job .title li {
  width: 80px;
  height: 100%;
  float: left;
}

.sectionB .mod-job .title li.on a {
  font-weight: bold;
  color: #a72e0e;
  border-bottom: 2px solid #a72e0e;
}

.sectionB .mod-job .title li:last-child a {
  color: #aaa;
}

.sectionB .mod-job .title li a {
  width: 100%;
  display: block;
  height: 43px;
  text-align: center;
  color: #797979;
  font-size: 18px;
}

.sectionB .mod-job .content {
  position: relative;
  width: 618px;
  height: 328px;
  border: 1px solid #eee;
}

.sectionB .mod-job .content .job {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  overflow: hidden;
  z-index: 1;
}

.sectionB .mod-job .content .job .intro {
  width: 300px;
  height: 100%;
  position: relative;
  top: 0px;
  left: -300px;
  z-index: 2;
}

.sectionB .mod-job .content .job .intro h4 {
  padding-top: 60px;
  line-height: 80px;
  font-size: 49px;
  color: #555;
}

.sectionB .mod-job .content .job .intro p {
  color: #615e5c;
  font-size: 12px;
  line-height: 24px;
}

.sectionB .mod-job .content .job .intro p span {
  margin-right: 10px;
  display: inline-block;
  width: 70px;
  height: 20px;
  line-height: 20px;
  background-color: #999;
  color: #fff;
  text-align: center;
  border-radius: 2px;
}

.sectionB .mod-job .content .job .intro .more {
  display: block;
  width: 90px;
  height: 30px;
  line-height: 30px;
  border: solid 1px #eee;
  position: absolute;
  bottom: 25px;
  left: 0;
  border-radius: 2px;
  background-color: #fcfcfc;
  background-image: linear-gradient(to top, #fafafa, #fefefe);
  text-align: center;
  color: #333;
}

.sectionB .mod-job .content .job .intro .more i {
  padding-left: 5px;
  font-style: normal;
}

.sectionB .mod-job .content .job .intro .more:hover {
  background: #e94729;
  color: #fff;
}

.sectionB .mod-job .content .job .role {
  width: 618px;
  height: 328px;
  position: absolute;
  top: 1px;
  right: -300px;
  z-index: 1;
  opacity: 0;
  filter: alpha(opacity=0);
}

.sectionB .mod-job .content .job.on {
  z-index: 10;
}

.sectionB .mod-job .content .job.on .intro {
  left: 25px;
}

.sectionB .mod-job .content .job.on .role {
  right: 0px;
  opacity: 1;
  filter: alpha(opacity=100);
}

.sectionB .mod-data {
  width: 620px;
  height: 380px;
  float: right;
}

.sectionB .mod-data .mod-content ul {
  width: 618px;
  height: 328px;
  border-left: 1px solid #eee;
  border-top: 1px solid #eee;
}

.sectionB .mod-data .mod-content ul li {
  float: left;
  position: relative;
  display: block;
  width: 122px;
  height: 108px;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
  background-color: #fff;
  background-image: linear-gradient(to top, #fafafa, #fefefe);
}

.sectionB .mod-data .mod-content ul li a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
  cursor: pointer;
}

.sectionB .mod-data .mod-content ul li a em {
  font-style: normal;
  color: #333;
  line-height: 20px;
  display: block;
}

.sectionB .mod-data .mod-content ul li.title em {
  margin-top: 33px;
  font-size: 18px;
  color: #444;
}

.sectionB .mod-data .mod-content ul li.title span {
  display: inline-block;
  margin-top: 0;
  font-size: 10px;
  height: 14px;
  line-height: 14px;
  padding: 0 5px;
  border: 1px solid #eee;
  color: #bbb;
  border-radius: 7px;
}

.sectionB .mod-data .mod-content ul li.title:hover em,
.sectionB .mod-data .mod-content ul li.title:hover span {
  color: #a72e0e;
}

.sectionB .mod-data .mod-content ul li.icon span {
  display: inline-block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 20px;
  left: 36px;
}

.sectionB .mod-data .mod-content ul li.icon em {
  position: absolute;
  width: 100%;
  top: 73px;
  font-size: 14px;
  color: #bbb;
  left: 0px;
}

.sectionB .mod-data .mod-content ul li.icon:hover em {
  color: #333;
}

.sectionB .mod-data .mod-content ul li.icon:hover span {
  background-image: url(../images/icon_on.png);
  transform: rotateY(180deg);
  transition: all 0.3s linear;
}

.sectionB .mod-data .mod-content ul li:hover {
  color: #fff;
}

.sectionC {
  margin-top: 35px;
}

.sectionC .mod-content {
  border: 1px solid #eee;
  position: relative;
}

.sectionC .mod-content a.next {
  position: absolute;
  top: 105px;
  right: 0;
}

.sectionC .mod-content a.prev {
  position: absolute;
  top: 105px;
  left: 0;
}

.sectionC .box-spec {
  position: relative;
  margin: 20px auto;
  width: 1130px;
  height: 255px;
  overflow: hidden;
}

.sectionC .box-spec ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 2000px;
  height: 255px;
  overflow: hidden;
}

.sectionC .box-spec ul li {
  position: relative;
  float: left;
  margin-right: 27px;
  width: 260px;
  height: 253px;
  border: 1px solid #eee;
  overflow: hidden;
}

.sectionC .box-spec ul li .normal img {
  display: block;
  width: 260px;
  height: 150px;
}

.sectionC .box-spec ul li .normal h4 {
  width: 230px;
  height: 32px;
  line-height: 32px;
  border-bottom: 1px solid #eee;
  overflow: hidden;
  margin: 0 auto;
  text-align: left;
  color: #444;
}

.sectionC .box-spec ul li .normal p {
  font-size: 12px;
  width: 227px;
  margin: 0 auto;
  padding: 6px 0;
  height: 40px;
  overflow: hidden;
  color: #999;
}

.sectionC .box-spec ul li .hover {
  position: absolute;
  top: 257px;
  left: 0;
  width: 220px;
  height: 225px;
  padding: 15px 20px;
  background-color: #e94729;
  background-color: rgba(233, 71, 41, 0.9);
  font-size: 12px;
  color: #fff;
  transition: top 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.sectionC .box-spec ul li .hover h4 {
  font-size: 24px;
  line-height: 48px;
}

.sectionC .box-spec ul li .hover h5 {
  line-height: 30px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.sectionC .box-spec ul li .hover h6 {
  position: absolute;
  left: 55px;
  bottom: 15px;
  width: 150px;
  height: 40px;
  border: 1px solid #eee;
  border-radius: 20px;
  text-align: center;
  font-size: 16px;
  line-height: 40px;
}

.sectionC .box-spec ul li .hover h6 i {
  font-style: normal;
  padding-left: 5px;
}

.sectionC .box-spec ul li:hover .hover {
  top: 0;
}

.sectionD {
  margin-top: 35px;
}

.sectionD .mod-content {
  position: relative;
}

.sectionD ul li {
  position: relative;
  float: left;
  width: 25%;
  height: 178px;
  overflow: hidden;
}

.sectionD ul li .media-more {
  position: absolute;
  top: 0;
  right: 0;
}

.sectionD ul li .normal img {
  display: block;
  width: 100%;
  height: 100%;
}

.sectionD ul li .hover {
  position: absolute;
  top: 100%;
  left: 0;
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.5);
}

.sectionD ul li .hover .swrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.sectionD ul li .hover .media-view {
  position: absolute;
  top: 64px;
  left: 132px;
}

.sectionD ul li .hover .media-view1 {
  cursor: pointer;
  width: 46px;
  height: 46px;
  background: url(../images/play_index.png?v=0) no-repeat;
}

.sectionD ul li .hover h4 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.5);
  line-height: 40px;
  font-size: 14px;
  color: #fff;
  text-align: center;
}

.sectionD ul li:hover .hover {
  top: 0;
}

/*# sourceMappingURL=home.css.map */