@charset "UTF-8";
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: 1px dotted;
}

/* ==========================================================================
   字体和基础排版
   ========================================================================== */
/**
 * 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;
  background: #f9f9f9;
}

/**
 * 所有 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」
 */
body,
button,
input,
select,
textarea {
  font-family: 'helvetica neue',tahoma,'hiragino sans gb',stheiti,'wenquanyi micro hei',\5FAE\8F6F\96C5\9ED1,\5B8B\4F53,sans-serif;
  -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;
}

/* ==========================================================================
   HTML5 元素
   ========================================================================== */
/**
 * 修正未定义为「block」的元素
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * 1. 修正未定义为「inline-block」的元素
 * 2. 修正 Chrome、Firefox、Opera 中 「progress」元素 vertical-align 默认值不一致
 */
audio,
canvas,
video,
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * 1.防止现代浏览器将没有「controls」属性的 「audio」元素显示出来
 * 2.去掉 iOS 5 中多余的高度
 */
audio:not([controls]) {
  display: none;
  /* 1 */
  height: 0;
  /* 2 */
}

/**
 * 修复 IE 7/8/9，Firefox 3 和 Safari 4 中 「hidden」属性不起作用的问题
 * 在IE、Safari、Firefox 22- 中隐藏「template」元素
 */
[hidden], template {
  display: none;
}

/**
 * 为可拖动元素添加拖动的光标
 * http://jsbin.com/apavod/1/edit
 */
[draggable] {
  cursor: move;
}

/**
 * 居中 HTML5 dialog 元素
 * Chrome 31 支持，需开启 chrome://flags/#enable-experimental-web-platform-features
 * Chrome 28 之前、Firefox 中不支持 height:fit-content;
   https://src.chromium.org/viewvc/blink?revision=148314&view=revision
 * ::backdrop 定义遮罩样式
 * @demo: http://jsbin.com/iPACab/1
 */
dialog {
  border: 1px solid;
  padding: 0;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
}

dialog::backdrop {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

:focus {
  outline: 0;
}

.l {
  float: left;
  *display: inline;
}

.r {
  float: right;
  *display: inline;
}

.bg1 {
  background: #666;
}

.w {
  margin: 0 auto;
  width: 1000px;
  clear:both;
}

.mb14 {
  margin-bottom: 14px;
}

.w315 {
  width: 315px;
}

.w80 {
  width: 80px;
}

.area1 a.a1:hover p::after, .area1 a.a2:hover p::after, .area1 a.a3:hover p::after, .area1 a.a4:hover p::after, a.view-more::after, .a-tab-tt li.on::after, .time-arrow {
  content: "";
  height: 0;
  width: 0;
  overflow: hidden;
}

@-webkit-keyframes updown {
  from {
    -webkit-transform: translateY(-10px);
  }

  to {
    -webkit-transform: translateY(0);
  }
}

@-ms-keyframes updown {
  from {
    -ms-transform: translateY(-10px);
  }

  to {
    -ms-transform: translateY(0);
  }
}

@-moz-keyframes updown {
  from {
    -moz-transform: translateY(-10px);
  }

  to {
    -moz-transform: translateY(0);
  }
}

@keyframes updown {
  from {
    transform: translateY(-10px);
  }

  to {
    transform: translateY(0);
  }
}

@font-face {
  font-family: 'iconfont';
  src: url("../font/iconfont.eot");
  /* IE9*/
  src: url("../font/iconfont.eot?#iefix") format("embedded-opentype"), url("../font/iconfont.woff") format("woff"), url("../font/iconfont.ttf") format("truetype"), url("../font/iconfont.svg#uxiconfont") format("svg");
  /* iOS 4.1- */
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}

#top {
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  width: 100%;
  *zoom: 1;
  height: 93px;
  background: #f9f9f9;
}
#top:before, #top:after {
  content: '';
  display: table;
}
#top:after {
  clear: both;
}

.logo {
  float: left;
  width: 300px;
  height:93px;
}
.logo h1 {
  float: left;
  width:175px;
  height:93px;
  background:url(../images/logo.png) no-repeat left center;
}
.logo h1 a {
  display: block;
  width:160px;
  height:50px;
  font-size: 0;
  overflow: hidden;
}

.ma{
  float: left;
  width:72px;
  height:72px;
  margin:10px 0 0 20px;
}
.ma img{
	display:block;
	width:72px;
  height:72px;
	}
.ma a{
	display:block;
  	width:72px;
  height:72px;
  	position:relative;
	}
.ma a div{
	width:150px;
	height:150px;
	position:absolute;
	z-index:99999999999;
	background:#ff0000;
	left:-50px;
	top:-20px;
	display:none;
	 background:url(../images/bigewm.jpg) no-repeat;
	}
.ma a:hover div{
	width:150px;
	height:150px;
	position:absolute;
	z-index:99999999999;
	background:#ff0000;
	left:-50px;
	top:-20px;
	display: block;
	 background:url(../images/bigewm.jpg) no-repeat;
	}

.menu {
  float: left;
  margin-left:-10px;
  padding-top: 1px;
}
.menu a {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 100px;
  height: 104px;
  text-align: center;
  color: #666666;
  font-weight:bold;
  transition: all .3s ease;
}
.menu a:hover, .menu a.hover {
  background: url(../images/main.png) no-repeat -23px 0;
  color: #ffffff;
  transition: background .3s ease;
}
.menu a span{
	display:block;
  	font:"microsoft yahei";
  	font-size:16px;
	padding:35px 0 0 0;
	}
.menu a em{
	display:block;
	font-style:normal;
	font-size:12px;
	font-family:Arial, Helvetica, sans-serif;
	}

#tel {
  float: right;
  width:180px;
  margin-top: 20px;
}
#tel em {
	float:left;
  color: #2dbfbe;
  font-style: normal;
  font-size: 30px;
}
#tel div{
	float:left;
	width:142px;
	padding:8px 0 0 8px;
	}
#tel span {
	display:block;
  color: #333333;
  font-size:20px;
  line-height:30px;
  font-family:Arial, Helvetica, sans-serif;
}


#follow {
  position: fixed;
  left: 1px;
  bottom:50px;
  z-index: 999;
}
#follow a {
  margin-bottom: 1px;
  display: block;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  background: #555555;
  color: #ffffff;
  transition: all .3s ease;
  position:relative;
}
#follow a span {
  font-size: 30px;
}
#follow a:hover {
  background: #009999;
  transition: all .3s ease;
}
#follow a div{
	width:150px;
	height:150px;
	position:absolute;
	left:50px;
	background:#fff url(../images/bigewm.jpg) no-repeat;
	top:-105px;
	display:none;
	}
#follow a:hover div{
	display:block;
	}
	
#short {
  position: fixed;
  z-index: 999;
  top: 94px;
  left: 50%;
  width:300px;
  margin-left: 300px;
}
#short a {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;

}
#short a span.iconfont {
  transition: all .3s ease;
  color: #ffffff;
  font-size: 40px;
}
#short a:nth-child(1) {
  background: #2dbfbe;
}
#short a:nth-child(2) {
  background: #f2b636;
}
#short a:nth-child(3) {
  background: #ff6262;
}
#short a:nth-child(4) {
  background: #66ccff;
}
#short a:hover span.iconfont {
  color: #555;
  transition: all .3s ease;
}

.Superior_text{
	width:345px;
	height:64px;
	position: absolute;
	left:50%;
	margin:-180px 0 0 130px;
	background:url(../images/Superior_text.png) no-repeat;
	}
.area1 {
  position: relative;
  padding-top: 400px;
  width: 100%;
  height: 460px;
  background:#d0ddc4 url(../images/a1.png) no-repeat 50% 98%;
  font-size: 0;
  text-align:center;
}
.area1 a {
  position: relative;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 200px;
  height: 300px;
  transform: skew(-10deg);
  background: #ffffff;
  font-size: 14px;
  overflow: hidden;
}
.area1 a p {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: all .3s ease;
}
.area1 a p strong {
  display: block;
  transform: skew(10deg);
}
.area1 a p strong span {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  transition: all 1.2s ease;
  font-size: 100px;
  color: #ffffff;
  -webkit-text-stroke-width: 0px;
}
.area1 a.a1 {
  top: -60px;
}
.area1 a.a1 p {
  background: #2dbfbe;
}
.area1 a.a1:hover p::after {
  border-top: 5px solid #2dbfbe;
  border-left: 5px dashed transparent;
  border-right: 5px dashed transparent;
}
.area1 a.a1:hover .a-con {
  color: #2dbfbe;
}
.area1 a.a2 {
  top: -140px;
  left: 13px;
}
.area1 a.a2 p {
  background: #f2b636;
}
.area1 a.a2:hover p::after {
  border-top: 5px solid #f2b636;
  border-left: 5px dashed transparent;
  border-right: 5px dashed transparent;
}
.area1 a.a2:hover .a-con {
  color: #f2b636;
}
.area1 a.a3 {
  top: 0px;
  left: -12px;
}
.area1 a.a3 p {
  background: #ff6262;
}
.area1 a.a3:hover p::after {
  border-top: 5px solid #ff6262;
  border-left: 5px dashed transparent;
  border-right: 5px dashed transparent;
}
.area1 a.a3:hover .a-con {
  color: #ff6262;
}
.area1 a.a4 {
  left:-1px;
  top: -60px;
}
.area1 a.a4 p {
  background: #66ccff;
}
.area1 a.a4:hover p::after {
  border-top: 5px solid #66ccff;
  border-left: 5px dashed transparent;
  border-right: 5px dashed transparent;
}
.area1 a.a4:hover .a-con {
  color: #66ccff;
}
.area1 a:hover p {
  height: 70%;
  transition: all .3s ease;
}
.area1 a:hover p::after {
  position: absolute;
  content: '';
  bottom: -5px;
  left: 50%;
}
.area1 a:hover p span {
  transition: all 1.2s ease;
  transform: rotate(-360deg);
}

.a-con {
  position: absolute;
  transform: skew(10deg);
  width: 100%;
  text-align: center;
  z-index: 2;
  bottom: 10px;
  left: 0;
  color: #ffffff;
  transition: all .3s ease;
}
.a-con strong, .a-con span {
  display: block;
  line-height: 1.5;
  font-weight: normal;
}

.area2 {
  height: 800px;
  background: #cccccc;
}

.a2-banner {
  margin-bottom: 14px;
  padding-top: 120px;
  height: 200px;
}
.a2-banner h3 {
  color: #ffffff;
  font:600 31px/1.2 "microsoft yahei";
  float:left;
  padding:22px 0 0 0;
}
.a2-banner h4 {
  color: #ffffff;
  font:600 30px/1.5 "Arial";
  float:left;
  padding:18px 0 0 15px;
}

.a-tab {
  margin:67px auto 0 auto;
  width: 930px;
  height: 345px;
  background: #f0f0f0;
}

.a3-banner {
  padding-top: 40px;
  height: 140px;
}
.a3-banner h3 {
  font:600 31px/1.2 "microsoft yahei";
  float:left;
  padding:32px 0 0 0;
}
.a3-banner h4 {
  font:600 30px/1.5 "Arial";
  float:left;
  padding:29px 0 0 15px;
}

.custom-list {
  clear: both;
  overflow:hidden;
  padding:30px 0 15px 0;
}
.custom-list ul {
  width: 1100px;
  display:block;
  overflow:hidden;
}
.custom-list li {
  float: left;
  margin: 0 25px 15px 0;
  width: 180px;
  height:80px;
}
.custom-list li img {
  width: 180px;
  height:80px;
}

.area4 {
	background:#fff;
}

.about {
	height:300px;
	overflow:hidden;
  padding: 20px 480px 160px 0;
  background:url(../images/t2.jpg) no-repeat right top;
  color: #666666;
  font: 12px/2.5 "microsoft yahei";
}

.a-about {
  padding: 20px 0;
}

.contact {
  width: 500px;
}
.contact dd {
  height: 30px;
  line-height: 30px;
  color: #ffffff;
  font-family: "microsoft yahei";
}
.contact dd span {
  margin-right: 5px;
}

.mes dd {
  margin-bottom: 5px;
}
.mes dd input {
  height: 36px;
  line-height: 36px;
  padding-left: 5px;
  background: #868686;
  border: 1px solid #5b5b5b;
  color: #ffffff;
}
.mes dd textarea {
  padding: 5px;
  height: 50px;
  background: #868686;
  border: 1px solid #5b5b5b;
  color: #ffffff;
}
.mes dd img {
  vertical-align: middle;
  margin: 0 5px;
}
.mes dt {
  width: 315px;
  text-align: right;
}
.mes dt input {
  color: #ffffff;
  width: 60px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: #525252;
  border: none;
  border-bottom: 2px solid #868686;
  transition: all .3s ease;
}
.mes dt input:hover {
  background: #2dbfbe;
  transition: all .3s ease;
}

.share-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -50px 0 0 -100px;
  display:none;
}
.share-btn a {
  color: #ffffff;
  font-size: 40px;
  transition: all .3s ease;
}
.share-btn a:hover {
  color: #2dbfbe;
  transition: all .3s ease;
}

.con-view {
  *zoom: 1;
}
.con-view:before, .con-view:after {
  content: '';
  display: table;
}
.con-view:after {
  clear: both;
}
.con-view .w {
  position: relative;
  padding: 30px 40px;
  *zoom: 1;
}
.con-view .w:before, .con-view .w:after {
  content: '';
  display: table;
}
.con-view .w:after {
  clear: both;
}

.s-banner {
  height: 400px;
}

.s-desc {
  *zoom: 1;
  padding: 15px 0 30px;
}
.s-desc:before, .s-desc:after {
  content: '';
  display: table;
}
.s-desc:after {
  clear: both;
}
.s-desc h3, .s-desc h4 {
  font-weight: normal;
  font-size: 24px;
  color: #333333;
  line-height: 1.8;
}
.s-desc mark {
  background: #d1dec5;
  padding:5px 10px;
}
.videoTitle{
	display:block;
	clear:both;
	text-align:center;
	font-size:35px;
	font-family:"microsoft yahei";
	padding:0 0 15px 0;
	position:relative;
	margin:-20px 0 0 0;
	}
.s-btns {
  width: 1014px;
  overflow: hidden;
}
.s-btns ul {
  width: 1050px;
}
.s-btns ul li {
  position: relative;
  float: left;
  margin-right: 15px;
  width: 242px;
  height: 112px;
}
.s-btns ul li p {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.s-btns ul li p img {
  width: 100%;
  height: 100%;
}
.s-btns ul li span {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 31px;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  color: #ffffff;
  font: 14px/31px "microsoft yahei";
}

.s-text {
  *zoom: 1;
  padding-top: 30px;
  margin-bottom: 10px;
}
.s-text:before, .s-text:after {
  content: '';
  display: table;
}
.s-text:after {
  clear: both;
}
.s-text p {
  float: left;
  width: 740px;
  color: #666666;
  font: 12px/2.4 "microsoft yahei";
}

.s-tel {
  float: right;
  background: url(../images/sh2.jpg) no-repeat center bottom;
  width:242px;
  height:154px;
  padding:10px 0 13px 0;
}
.s-tel div{
	  width: 225px;
	  height: 154px;
	  background:#434343;
	  border-radius: 5px;
	  padding: 10px 15px 13px;
	}
.s-tel h5 {
  color: #ffffff;
  font: 300 18px/1.5 "microsoft yahei";
}
.s-tel h6 {
  color: #ffffff;
  font: 300 28px/1.5 "microsoft yahei";
}
.s-tel a {
  color: #ffffff;
  font: 300 18px/1.5 "microsoft yahei";
}

.imgtext {
  *zoom: 1;
  padding: 20px 0 30px 0;
  overflow: hidden;
}
.imgtext:before, .imgtext:after {
  content: '';
  display: table;
}
.imgtext:after {
  clear: both;
}

.i-list {
  width: 610px;
}
.i-list dd {
  margin-bottom: 20px;
}
.i-list dt {
  text-align: center;
}

.i-photo {
  width: 100%;
  height:240px;
  overflow: hidden;
}
.i-photo img {
  width: 100%;
  height: auto;
}

.i-tt {
  font: 24px/2 "microsoft yahei";
  color: #666666;
}

.i-desc {
  font: 14px/1.5 "microsoft yahei";
}

.mi-list {
  width: 348px;
}
.mi-list li {
  clear: both;
  overflow: hidden;
  padding: 0 10px 20px;
  margin-bottom: 20px;
  border-bottom: 1px dotted #cccccc;
}
.mi-list li p {
  float: left;
  width: 80px;
  height: 80px;
}
.mi-list li p img {
  width: 100%;
  height: 100%;
}

.mi-desc {
  float: right;
  width: 235px;
}
.mi-desc h3 {
  color: #666666;
  font: 300 14px/1.5 "microsft yahei";
}
.mi-desc span {
  display: block;
  font-size: 12px;
  color: #666666;
}

.mi-tt {
  margin-bottom: 15px;
  padding-left: 16px;
  height: 35px;
  line-height: 30px;
  background: #666666;
  border-top: 5px solid #999;
}
.mi-tt span {
  color: #ffffff;
  font-size: 14px;
}

.view-btn {
  padding: 10px 0;
  text-align: center;
  clear: both;
  overflow: hidden;
}

a.view-more {
  position: relative;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 112px;
  height: 38px;
  background: #000000;
  color: #ffffff;
  font: 14px/38px "microsoft yahei";
  animation: updown 1s linear infinite;
}
a.view-more::after {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 50%;
  margin: 0 0 0 -10px;
  border-top: 10px solid black;
  border-left: 10px dashed transparent;
  border-right: 10px dashed transparent;
}
a.view-more:hover {
  animation-play-state: paused;
}

.s-imglist {
  *zoom: 1;
  padding: 20px 0 30px;
}
.s-imglist:before, .s-imglist:after {
  content: '';
  display: table;
}
.s-imglist:after {
  clear: both;
}
.s-imglist ul {
  width: 1100px;
}
.s-imglist li {
  float: left;
  margin: 0 35px 35px 0;
  width: 310px;
  height: 220px;
}
.s-imglist li img {
  width: 100%;
  height: 100%;
}

#footer {
  position: relative;
  padding: 10px;
  background: #333333;
  color: #ffffff;
}
#footer p a {
  color: #ffffff;
}
#footer p a:hover {
  text-decoration: underline;
}

#rtop {
  position: absolute;
  left: 50%;
  top: -35px;
  width: 70px;
  padding-top: 5px;
  height: 30px;
  background: url(../images/rtop.png) no-repeat 0 0;
  text-align: center;
  line-height: 35px;
  color: #ffffff;
}
#rtop:hover {
  text-decoration: none;
  color: #2dbfbe;
}

.s-imglist2 {
  *zoom: 1;
  padding: 20px 0 30px;
}
.s-imglist2:before, .s-imglist2:after {
  content: '';
  display: table;
}
.s-imglist2:after {
  clear: both;
}
.s-imglist2 ul {
  width: 1100px;
}
.s-imglist2 li {
  float: left;
  margin: 0 0 25px 0;
  width: 320px;
  height: 280px;
  padding:0 25px 10px 0;
}
.s-imglist2 li img {
  width: 318px;
  height: 238px;
  border: 1px solid #cccccc;
}
.s-imglist2 li span {
  display: block;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #666666;
}

.video-list {
  *zoom: 1;
  padding: 20px 0 30px;
}
.video-list:before, .video-list:after {
  content: '';
  display: table;
}
.video-list:after {
  clear: both;
}
.video-list li {
	width:750px;
  margin-bottom: 28px;
  clear: both;
  overflow: hidden;
  padding:0 0 28px 0;
  background:url(../images/dashed-bg.png) repeat-x left bottom;
}

.v-desc {
  position: relative;
  width: 362px;
  height: 204px;
	transition: all 500ms linear;
	-webkit-transition: all 500ms linear;
}
.v-desc.active{
	width: 740px;
	height: 400px;
}
.v-desc img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.v-desc span {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  color: #555;
  cursor: pointer;
  transition: all .3s ease;
  display:block;
  width: 100% !important;
  height: 100% !important;
  background:url(../images/videoPlay.png) no-repeat center center;
}
.v-desc span:hover {
  color: #2dbfbe;
  transition: all .3s ease;
}

.v-intro {
  width:360px;
}
.v-intro p {
  line-height:2;
  color: #666666;
  display:block;
  height:120px;
  overflow:hidden;
  margin:0 0 8px 0;
  font-family:"宋体";
  font-size:12px;
}

.v-tt {
  width: 100%;
  width: 100%;
  overflow: hidden;
  word-break: break-all;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #333333;
  font: 16px/1.5 "microsoft yahei";
  font-weight:bold;
}

.v-time {
  display: block;
  color: #999;
  font: 14px/1.5 "microsoft yahei";
  padding:3px 0 0 0;
}

a.play-btn {
	padding:0 0 0 30px;
  color: #666666;
  font-size: 12px;
    font-weight:bold;
  background:url(../images/playBtn2-bg.png) no-repeat left center;
}
a.play-btn span {
  margin-right: 3px;
  font-size: 12px;
}
a.play-btn:hover {
  color: #2dbfbe;
}

.video-content {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#7f000000, endColorstr=#7f000000);
  z-index: 99999999;
}

.video-wrap {
  width: 710px;
  height: 400px;
  position: fixed;
  left: 50%;
  top: 50%;
  margin: -195px 0 0 -355px;
}

.video-content span {
  display: block;
  height: 40px;
  line-height: 40px;
  font-family: "microsoft yahei";
  font-size: 18px;
  color: #ff8040;
}

.start-play {
  width:710px;
  height:400px;
  background: #fff;
  padding: 10px;
  position: relative;
}

.video-close {
  cursor: pointer;
  display: block;
  width: 35px;
  height: 35px;
  background: url(../images/close.png) no-repeat 0 0;
  position: absolute;
  right: -18px;
  top: -18px;
  z-index: 999999;
}

.a4-banner {
  text-align: center;
  padding: 20px 0 30px;
}
.a4-banner h3 {
  text-align: left;
  color: #333333;
  font: 300 30px/2 "microsoft yahei";
}
.a4-banner h4 {
  padding: 10px 0;
}

.a-tab-tt {
  position: relative;
  z-index: 9999;
  height: 45px;
  background: #999999;
}
.a-tab-tt li {
  float: left;
  position: relative;
  width: 310px;
  height: 45px;
  text-align: center;
  font: 18px/45px "microsoft yahei";
  color: #ffffff;
  cursor: pointer;
}
.a-tab-tt li.on {
  height: 45px;
  background: #555555;
}
.a-tab-tt li.on::after {
  position: absolute;
  content: '';
  border-top: 10px solid #555555;
  border-left: 10px dashed transparent;
  border-right: 10px dashed transparent;
  left: 50%;
  bottom: -10px;
}

.time-w {
  height: 136px;
  background: #cccccc;
}

.time-line {
  position: relative;
  height: 136px;
  background: url(../images/p4.png) repeat-x center center;
}

.t-prev, .t-next {
  position: absolute;
  top: 62px;
  width: 12px;
  height: 13px;
  cursor: pointer;
}

.t-prev {
  left: -4px;
  background: url(../images/p3.png) no-repeat 0 0;
}

.t-next {
  right: -4px;
  background: url(../images/p5.png) no-repeat 0 0;
}

.times {
  position: relative;
  top: 22px;
  left: 26px;
  width: 954px;
  height: 93px;
  overflow: hidden;
}
.times ul {
  width: 9999px;
}
.times li {
  position: relative;
  float: left;
  margin-right: 37px;
  width: 104px;
  height: 93px;
  background: url(../images/c1.png) no-repeat 0 50%;
  cursor: pointer;
}
.times li span {
  display: block;
  margin-top: 15px;
  height: 20px;
  font: 12px/20px "microsoft yahei";
}
.times li strong {
  display: block;
  margin-top: 25px;
  font: 300 12px/1.5 "microsoft yahei";
}
.times li.on {
  background: url(../images/c2.png) no-repeat 0 50%;
}

.time-desc {
  position: absolute;
  top: -22px;
  width: 380px;
  padding: 5px;
  background: #d6d6d6;
  border-radius: 3px;
  font: 12px/1.5 "microsoft yahei";
  color: #339966;
}

.time-arrow {
  position: absolute;
  bottom: -10px;
  left: 20px;
  border-top: 10px solid #d6d6d6;
  border-left: 10px dashed transparent;
  border-right: 10px dashed transparent;
}

.protab-con {
  position: relative;
  padding:10px 50px;
}

.pro-show {
  float: left;
  width: 270px;
  height: 200px;
  padding:50px 0 0 0;
}

.pro-intro {
  float: right;
  width: 520px;
  padding:5px 0 0 0;
}
.pro-intro h3 {
  color: #333333;
  font: 300 24px/1.5 "microsoft yahei";
}

.sprev, .snext {
  position: absolute;
  top: 110px;
  font-size: 40px;
  color: #cccccc;
  cursor: pointer;
}
.sprev:hover, .snext:hover {
  color: #2dbfbe;
}

.sprev {
  left: 0;
}

.snext {
  right: 0;
}
#telx {
  width:200px;
  float: left;
  margin-left: 950px;
  margin-top: -84px;
  position:relative;
  left:130px;
}
#telx em {
 
  color: #2dbfbe;
  font-style: normal;
  font-size: 30px;
}
#telx span {
 
  color: #333333;
  font: 16px/1 "Arial";
}

.more{
	width:227px;
	height:50px;
	clear:both;
	margin:0 auto;
	color:#fff;
	cursor:pointer;
	display:block;
	background:url(../images/morecase-btn.gif) no-repeat
	}
.more span{
	display:block;
	clear:both;
	line-height:37px;
	height:37px;
	text-align:center;
	text-indent:-10000000px;
	}
.videoBanner{
	height:310px;
	clear:both;
	margin:88px 0 0 0;
	}
.testImgList{
	clear:both;
	overflow:hidden;
	}
.testImgList dd{
	display:block;
	clear:both;
	overflow:hidden;
	padding:0 0 20px 0;
	margin:0 0 20px 0;
	background:url(../images/dashed-bg.png) repeat-x left bottom;
	}
.testImgList dd p{
	width:540px;
	display:block;
	float:left;
	}
.testImgList dd img{
	width:540px;
	}
.testImgList_r{
	width:430px;
	float:right;
	display:inline;
	overflow:hidden;
	}
.testImgList_r h3{
	display:block;
	clear:both;
	font-size:16px;
	font-weight:bold;
	}
.testImgList_r div{
	display:block;
	clear:both;
	font-family:"宋体";
	padding:5px 0 0 0;
	}
.time_inro_s{ position:relative;}
.time-intro{ position:absolute; width:380px; padding:5px; left:-5px; bottom:0; background:#d6d6d6; border-radius:3px 3px 0 0; padding-bottom:0; line-height:22px;}

.articleTitle{
	line-height:30px;
	text-align:center;
	font-size:20px;
	}
.articleTime{
	clear:both;
	line-height:25px;
	text-align:center;
	padding:5px 0;
	}
.articleTitle{
	line-height:30px;
	clear:both;
	padding:20px 0;
	}
.articleBox{
	line-height:30px;
	padding:20px 0;
	}
	
/**********2017.5.11修改*************/
#newBridge .nb-invite-skin-0{ display:none !important} 
.videoBanner.bg1{background-position:left center !important}
.videoBanner.bg2{background-position:right center !important}
#telx{margin-left:780px !important;}
#newBridge .icon-right-center{top:515px !important;right:5px !important}