/*
 * Swiper 2.7.0
 * Mobile touch slider and framework with hardware accelerated transitions
 *
 * http://www.idangero.us/sliders/swiper/
 *
 * Copyright 2010-2014, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 *
 * Licensed under GPL & MIT
 *
 * Released on: August 30, 2014
*/
/* ===============================================================
Basic Swiper Styles 
================================================================*/
.swiper-container {
	margin:0 auto;
	position:relative;
	overflow:hidden;
	-webkit-backface-visibility:hidden;
	-moz-backface-visibility:hidden;
	-ms-backface-visibility:hidden;
	-o-backface-visibility:hidden;
	backface-visibility:hidden;
	/* Fix of Webkit flickering */
	z-index:1;
}
.swiper-wrapper {
	position:relative;
	width:100%;
	-webkit-transition-property:-webkit-transform, left, top;
	-webkit-transition-duration:0s;
	-webkit-transform:translate3d(0px,0,0);
	-webkit-transition-timing-function:ease;
	
	-moz-transition-property:-moz-transform, left, top;
	-moz-transition-duration:0s;
	-moz-transform:translate3d(0px,0,0);
	-moz-transition-timing-function:ease;
	
	-o-transition-property:-o-transform, left, top;
	-o-transition-duration:0s;
	-o-transform:translate3d(0px,0,0);
	-o-transition-timing-function:ease;
	-o-transform:translate(0px,0px);
	
	-ms-transition-property:-ms-transform, left, top;
	-ms-transition-duration:0s;
	-ms-transform:translate3d(0px,0,0);
	-ms-transition-timing-function:ease;
	
	transition-property:transform, left, top;
	transition-duration:0s;
	transform:translate3d(0px,0,0);
	transition-timing-function:ease;

	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
.swiper-free-mode > .swiper-wrapper {
	-webkit-transition-timing-function: ease-out;
	-moz-transition-timing-function: ease-out;
	-ms-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto;
}
.swiper-slide {
	float: left;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
	-ms-touch-action: pan-y;
}
.swiper-wp8-vertical {
	-ms-touch-action: pan-x;
}

/* ===============================================================
Your custom styles, here you need to specify container's and slide's
sizes, pagination, etc.
================================================================*/
.swiper-container {
	/* Specify Swiper's Size: */

	/*width:200px;
	height: 100px;*/
}
.swiper-slide {
	/* Specify Slides's Size: */
	
	/*width: 100%;
	height: 100%;*/
}
.swiper-slide-active {
	/* Specific active slide styling: */
	
}
.swiper-slide-visible {
	/* Specific visible slide styling: */	

}
/* ===============================================================
Pagination Styles
================================================================*/
.swiper-pagination-switch {
	/* Stylize pagination button: */	

}
.swiper-active-switch {
	/* Specific active button style: */	
	
}
.swiper-visible-switch {
	/* Specific visible button style: */	
	
}
/*********css重置——基本basic——html(包括html5)***********/
html,
body,
div,
span,
input,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}
/*********css重置——基本basic——html5(用js控制针对IE6,7等不兼容)***********/
article,
aside,
audio,
bdi,
canvas,
command,
datalist,
details,
dialog,
embed,
figcaption,
figure,
footer,
header,
keygen,
mark,
meter,
nav,
output,
progress,
rp,
rt,
ruby,
section,
source,
summary,
time,
track,
video,
wbr {
  display: block;
}
/*
    颜色配置
    减少饱和度：desaturate(@red, 10%);
 */
.orange {
  background-color: #fe7b23;
}
.green {
  background-color: #2fae11;
}
.blue {
  background-color: #027dcb;
}
.pink {
  background-color: #ff639e;
}
.yellow {
  background-color: #ffae00;
}
.white {
  background-color: #ffffff;
}
.black {
  background-color: #000000;
}
/*
    宽高,上下左右
 */
/*
 * 背景
 */
/*
 * border
 */
/*
 * margin
 */
/*
 * padding
 */
/*
 * 圆角
 */
/*
 * 阴影
 */
/*
 * 已知高度居中
 */
.container-center {
  margin: 0 auto;
}
.vertical-center {
  display: table-cell;
  vertical-align: middle;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.boxSize {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
/*
 * 浮动设置以及清除浮动
 */
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear {
  clear: both;
}
.clearoflow {
  overflow: hidden;
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  zoom: 1;
}
/*
    图片设置
 */
.img {
  max-width: 100%;
  width: auto !important;
  width: 100%;
  height: auto;
  border: none;
}
/*
 * block,inline,inline-block,none
 */
.db {
  display: block;
}
.di {
  display: inline;
}
.dib {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
.dn {
  display: none;
}
.dbox {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -o-box;
  display: box;
}
/*inshadow内阴影*/
.inshadow {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 0, 0, 0.4);
  -ms-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 0, 0, 0.4);
  -o-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 0, 0, 0.4);
}
/*
 * A标签设置
 */
a {
  cursor: pointer;
  text-decoration: none;
  color: black;
  outline: medium;
}
a:active,
a:focus {
  outline: none;
}
a.tdNoneA {
  ext-decoration: none;
}
a.tdNoneA:link,
a.tdNoneA:visited,
a.tdNoneA:hover,
a.tdNoneA:active {
  ext-decoration: none;
}
/*
 * 其他
 */
ul,
li {
  list-style: none;
}
q:before,
q:after {
  content: '';
}
sup,
sub {
  vertical-align: baseline;
}
input,
button,
textarea,
select,
optgroup,
option {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
input:focus {
  outline: none;
}
.user-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
/*
 * 绝对定位
 */
.biaozhun {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
/*
 * 隐藏显示
 */
.hide {
  display: none;
}
.show {
  display: block;
}
/*线条*/
.border-top {
  border-top: 1px solid #dadada;
}
.border-right {
  border-right: 1px solid #dadada;
}
.border-bottom {
  border-bottom: 1px solid #dadada;
}
.border-left {
  border-left: 1px solid #dadada;
}
.cell-1 {
  width: 1%;
}
.cell-2 {
  width: 2%;
}
.cell-3 {
  width: 3%;
}
.cell-4 {
  width: 4%;
}
.cell-5 {
  width: 5%;
}
.cell-6 {
  width: 6%;
}
.cell-7 {
  width: 7%;
}
.cell-8 {
  width: 8%;
}
.cell-9 {
  width: 9%;
}
.cell-10 {
  width: 10%;
}
.cell-11 {
  width: 11%;
}
.cell-12 {
  width: 12%;
}
.cell-13 {
  width: 13%;
}
.cell-14 {
  width: 14%;
}
.cell-15 {
  width: 15%;
}
.cell-16 {
  width: 16%;
}
.cell-17 {
  width: 17%;
}
.cell-18 {
  width: 18%;
}
.cell-19 {
  width: 19%;
}
.cell-20 {
  width: 20%;
}
.cell-21 {
  width: 21%;
}
.cell-22 {
  width: 22%;
}
.cell-23 {
  width: 23%;
}
.cell-24 {
  width: 24%;
}
.cell-25 {
  width: 25%;
}
.cell-26 {
  width: 26%;
}
.cell-27 {
  width: 27%;
}
.cell-28 {
  width: 28%;
}
.cell-29 {
  width: 29%;
}
.cell-30 {
  width: 30%;
}
.cell-31 {
  width: 31%;
}
.cell-32 {
  width: 32%;
}
.cell-33 {
  width: 33%;
}
.cell-34 {
  width: 34%;
}
.cell-35 {
  width: 35%;
}
.cell-36 {
  width: 36%;
}
.cell-37 {
  width: 37%;
}
.cell-38 {
  width: 38%;
}
.cell-39 {
  width: 39%;
}
.cell-40 {
  width: 40%;
}
.cell-41 {
  width: 41%;
}
.cell-42 {
  width: 42%;
}
.cell-43 {
  width: 43%;
}
.cell-44 {
  width: 44%;
}
.cell-45 {
  width: 45%;
}
.cell-46 {
  width: 46%;
}
.cell-47 {
  width: 47%;
}
.cell-48 {
  width: 48%;
}
.cell-49 {
  width: 49%;
}
.cell-50 {
  width: 50%;
}
.cell-51 {
  width: 51%;
}
.cell-52 {
  width: 52%;
}
.cell-53 {
  width: 53%;
}
.cell-54 {
  width: 54%;
}
.cell-55 {
  width: 55%;
}
.cell-56 {
  width: 56%;
}
.cell-57 {
  width: 57%;
}
.cell-58 {
  width: 58%;
}
.cell-59 {
  width: 59%;
}
.cell-60 {
  width: 60%;
}
.cell-61 {
  width: 61%;
}
.cell-62 {
  width: 62%;
}
.cell-63 {
  width: 63%;
}
.cell-64 {
  width: 64%;
}
.cell-65 {
  width: 65%;
}
.cell-66 {
  width: 66%;
}
.cell-67 {
  width: 67%;
}
.cell-68 {
  width: 68%;
}
.cell-69 {
  width: 69%;
}
.cell-70 {
  width: 70%;
}
.cell-71 {
  width: 71%;
}
.cell-72 {
  width: 72%;
}
.cell-73 {
  width: 73%;
}
.cell-74 {
  width: 74%;
}
.cell-75 {
  width: 75%;
}
.cell-76 {
  width: 76%;
}
.cell-77 {
  width: 77%;
}
.cell-78 {
  width: 78%;
}
.cell-79 {
  width: 79%;
}
.cell-80 {
  width: 80%;
}
.cell-81 {
  width: 81%;
}
.cell-82 {
  width: 82%;
}
.cell-83 {
  width: 83%;
}
.cell-84 {
  width: 84%;
}
.cell-85 {
  width: 85%;
}
.cell-86 {
  width: 86%;
}
.cell-87 {
  width: 87%;
}
.cell-88 {
  width: 88%;
}
.cell-89 {
  width: 89%;
}
.cell-90 {
  width: 90%;
}
.cell-91 {
  width: 91%;
}
.cell-92 {
  width: 92%;
}
.cell-93 {
  width: 93%;
}
.cell-94 {
  width: 94%;
}
.cell-95 {
  width: 95%;
}
.cell-96 {
  width: 96%;
}
.cell-97 {
  width: 97%;
}
.cell-98 {
  width: 98%;
}
.cell-99 {
  width: 99%;
}
.cell-100 {
  width: 100%;
}
.mt5 {
  margin-top: 5px;
}
.mt10 {
  margin-top: 10px;
}
.mt15 {
  margin-top: 15px;
}
.mt20 {
  margin-top: 20px;
}
.mt25 {
  margin-top: 25px;
}
.mt30 {
  margin-top: 30px;
}
.mt35 {
  margin-top: 35px;
}
.mt40 {
  margin-top: 40px;
}
.mt45 {
  margin-top: 45px;
}
.mt50 {
  margin-top: 50px;
}
.mr5 {
  margin-right: 5px;
}
.mr10 {
  margin-right: 10px;
}
.mr18 {
  margin-right: 18px;
}
.mr20 {
  margin-right: 20px;
}
.ml5 {
  margin-left: 5px;
}
.ml10 {
  margin-left: 10px;
}
.ml20 {
  margin-left: 20px;
}
.mb5 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb25 {
  margin-bottom: 25px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb35 {
  margin-bottom: 35px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb45 {
  margin-bottom: 45px;
}
.mb50 {
  margin-bottom: 50px;
}
.footer-small-icon {
  width: 37px;
  height: 37px;
  background-image: url("resources/images/icon/footer_small_icon.png");
  background-repeat: no-repeat;
  vertical-align: middle;
}
.footer-small-icon-wb {
  background-position: 0 0;
}
.footer-small-icon-wx {
  background-position: -114px 0;
}
.footer-small-icon-logo {
  background-position: -228px 0;
}
.icon-home {
  width: 18px;
  height: 18px;
  background-image: url("resources/images/icon/home.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  vertical-align: text-top;
}
.icon-triangle {
  width: 3px;
  height: 6px;
  background-image: url("resources/images/icon/triangle.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
/* 2016年10月25日16:30:18-邓焯文 */
.icon-black-star {
  width: 12px;
  height: 12px;
  background-image: url("resources/images/icon/black-star.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.icon-video-triangle {
  width: 18px;
  height: 18px;
  background-image: url("resources/images/icon/video-triangle.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.icon-search {
  width: 20px;
  height: 20px;
  background-image: url("resources/images/icon/search.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
/* 2016年10月25日16:30:18-邓焯文 end */
body {
  font-family: "微软雅黑", "microsoft yahei", arial;
}
.wrap {
  width: 1132px;
  margin: 0 auto;
}
.container {
  width: 100%;
  max-width: 1680px;
  min-width: 1280px;
  margin: 0 auto;
  position: relative;
}
/* 页首-导航 */
#header {
  height: 80px;
}
#header .logo {
  width: 107px;
  height: 37px;
  margin-top: 24px;
}
#header .logo a.dib {
  font-size: 0;
}
#header .logo a.db {
  position: absolute;
  top: 27px;
  z-index: -1;
  text-indent: -9999px;
}
#header .nav {
  height: 100%;
  font-size: 12px;
  font-weight: bold;
  font-family: "Microsoft yahei";
}
#header .nav li.nav-li {
  float: left;
  line-height: 80px;
}
#header .nav li.nav-li a.nav-href {
  padding: 0 15px;
}
#header .nav li.nav-li:hover {
  background-color: #b63d32;
}
#header .nav li.nav-li:hover a.nav-href {
  color: #ffffff;
}
#header .nav li.nav-li:hover .nav-corses,
#header .nav li.nav-li:hover .nav-corses-ul {
  display: block;
}
#header .nav li.nav-li.active {
  background-color: #b63d32;
}
#header .nav li.nav-li.active a {
  color: #ffffff;
}
#header .nav li.nav-li .nav-corses {
  position: absolute;
  display: none;
  height: 60px;
  background-color: #4c4a4f;
  z-index: 2;
  top: 80px;
  width: 100%;
  left: 0;
}
#header .nav li.nav-li .nav-corses-ul {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  display: none;
}
#header .nav li.nav-li .nav-corses-ul li {
  line-height: 60px;
}
#header .nav li.nav-li .nav-corses-ul li a {
  color: #ffffff;
  padding: 0 15px;
}
#header .nav li.nav-li .nav-corses-ul li a:hover {
  text-decoration: underline;
}
#header .nav li.lang {
  float: left;
  line-height: 80px;
  font-weight: normal;
}
#header .nav li.lang a.nav-href {
  color: #666666;
  width: 20px;
  display: inline-block;
  text-align: center;
}
#header .nav li.lang a.nav-href.active,
#header .nav li.lang a.nav-href:hover {
  font-weight: bold;
  color: #b63d32;
}
/*banner广告*/
.banner {
  width: 100%;
  min-height: 200px;
  margin: 0 auto;
  position: relative;
  font-size: 0;
}
.banner .banner-title {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  margin-top: -37px;
  text-align: center;
  font-weight: bold;
  color: #ffffff;
}
.banner .banner-title .banner-title-level-1 {
  font-size: 16px;
}
.banner .banner-title .banner-title-level-2 {
  font-size: 46px;
  font-family: helvetica;
  text-transform: uppercase;
}
.banner .banner-line {
  position: absolute;
  right: 0;
  top: 68%;
  left: 50%;
  margin-left: -29px;
  height: 4px;
  line-height: 4px;
  text-align: center;
}
.banner .banner-line .innerLine {
  width: 58px;
  background-color: #ffffff;
  height: 4px;
}
/*二级导航*/
#subNav {
  height: 78px;
  font-size: 12px;
  border-bottom: 1px solid #dadada;
}
#subNav ul li {
  height: 78px;
  line-height: 78px;
}
#subNav .subNav-left ul li {
  margin-left: 10px;
}
#subNav .subNav-left ul li:first-child {
  margin-left: 0;
}
#subNav .subNav-left ul li i {
  margin-right: 5px;
}
#subNav .subNav-right ul li {
  margin-left: 30px;
}
#subNav .subNav-right ul li:first-child {
  margin-left: 0;
}
#subNav .subNav-right ul li.active {
  border-bottom: 2px solid #b63d32;
  /*
                a {
                    color: @black;
                }
                */
}
#subNav .subNav-right ul li:hover {
  border-bottom: 2px solid #b63d32;
}
#subNav .subNav-right ul li:hover a {
  color: #000000;
}
/*二级导航 end*/
/*标题*/
.title-level-1 {
  font-size: 66px;
  font-family: helvetica;
  text-transform: uppercase;
  color: #f2f2f2;
  font-weight: 400;
  padding-top: 15px;
}
.title-level-2 {
  font-size: 26px;
  color: #b63d32;
  font-weight: 400;
  margin-top: -13px;
}
.title-level-3 {
  font-weight: 400;
  font-size: 16px;
}
.title-level-3 .titlte-level-sub-3 {
  font-family: arial;
  text-transform: uppercase;
}
/*内容左边*/
.wrap-left {
  width: 810px;
}
/*内容右边*/
.wrap-right {
  width: 322px;
}
/*线条*/
.line {
  height: 2px;
  background-color: #dadada;
  width: 100%;
  margin: 0 auto;
}
/*底部*/
#footer {
  position: relative;
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 12px;
}
#footer .footer-left {
  /* 微信二维码显示 效果 modified by zyy 2016.11.13 */
}
#footer .footer-left ul li {
  margin-right: 25px;
}
#footer .footer-left ul li:last-child {
  margin-right: 0;
}
#footer .footer-left ul li a span {
  margin-left: 5px;
}
#footer .footer-left .wrap-weixin .code-wx {
  position: absolute;
  top: -120px;
  left: 154px;
  width: 114px;
  height: 159px;
  display: none;
  border: 10px solid rgba(0, 0, 0, 0.7);
  z-index: 999;
}
#footer .footer-left .wrap-weixin:hover .code-wx {
  display: block;
}
#footer .footer-right ul li {
  margin: 0 5px;
}
#footer .footer-right ul li:last-child {
  margin-right: 0;
}
/*段落文字*/
.section {
  text-indent: 26px;
  line-height: 2em;
  letter-spacing: 1px;
  font-size: 12px;
}
/* 2016年10月25日16:30:18-邓焯文 */
.flex-vc {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
/* 页码 */
.pagenavi {
  font-size: 0;
  line-height: 16px;
  text-align: center;
  color: #aaaaaa;
}
.pagenavi .pageli {
  font-size: 12px;
  line-height: 16px;
  display: inline-block;
  margin: 0 6px;
  text-align: center;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
}
.pagenavi .s {
  font-size: 12px;
  line-height: 16px;
  display: inline-block;
}
.pagenavi .num {
  color: inherit;
  background-color: #fff;
}
.pagenavi .num:hover,
.pagenavi .num.active {
  color: #b63d32;
}
.pagenavi .num.quiet {
  cursor: no-drop !important;
  color: #aaaaaa !important;
}
.pagenavi .prevest,
.pagenavi .prev,
.pagenavi .next,
.pagenavi .nextest {
  font-size: 0;
  color: #ffffff;
  height: 16px;
  width: 16px;
  background-color: #aaaaaa;
}
.pagenavi .prevest:hover,
.pagenavi .prev:hover,
.pagenavi .next:hover,
.pagenavi .nextest:hover {
  color: #b63d32;
}
.pagenavi .prevest.quiet,
.pagenavi .prev.quiet,
.pagenavi .next.quiet,
.pagenavi .nextest.quiet {
  cursor: no-drop !important;
  color: #ffffff !important;
}
.pagenavi .prevest:after,
.pagenavi .prevest:before,
.pagenavi .prev:before,
.pagenavi .next:before,
.pagenavi .nextest:before,
.pagenavi .nextest:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 3px transparent solid;
  border-bottom: 3px transparent solid;
  margin: 5px 0;
}
.pagenavi .prevest:after,
.pagenavi .prevest:before,
.pagenavi .prev:before {
  border-right: 6px #ffffff solid;
}
.pagenavi .next:before,
.pagenavi .nextest:before,
.pagenavi .nextest:after {
  border-left: 6px #ffffff solid;
}
/* 页码 end */
/* 按钮  复制自pc.css */
.ui-btn {
  display: inline-block;
  border-radius: 2px;
  height: 40px;
  line-height: 40px;
  padding: 0 30px;
  cursor: pointer;
  color: #333;
  background: #f8f8f8;
  border: 1px solid #ddd;
  text-align: center;
  font-size: 12px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.ui-btn:hover,
.ui-btn:focus {
  color: #333;
  background: #fcfcfc;
  border-color: #ccc;
}
.ui-btn-blue {
  color: #fff;
  background: #07d;
  border-color: #006cc9;
}
.ui-btn-blue:hover,
.ui-btn-blue:focus {
  color: #fff;
  background: #0080ed;
  border-color: #0066be;
}
.ui-btn-green {
  color: #fff;
  background: #4b0;
  border-color: #3da900;
}
.ui-btn-green:hover,
.ui-btn-green:focus {
  color: #fff;
  background: #49c800;
  border-color: #399f00;
}
.ui-btn-red {
  color: #fff;
  background: #b63d32;
  border-color: #b63d32;
}
.ui-btn-red:hover,
.ui-btn-red:focus {
  color: #fff;
  background: #ce584d;
  border-color: #ce584d;
}
.ui-btn-white {
  color: #333;
}
.ui-btn-white:hover,
.ui-btn-white:focus {
  color: #333;
}
.ui-btn-black {
  color: #FFFFFF;
  background: #686868;
  border-color: #686868;
}
.ui-btn-black:hover,
.ui-btn-black:focus {
  color: #FFFFFF;
  background: #4f4f4f;
  border-color: #4f4f4f;
}
/* 按钮 复制自pc.css end */
/* 旧版弹窗 */
.popup {
  position: fixed;
  background: transparent;
  z-index: 9999;
  display: none;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
}
.popup ul {
  position: absolute;
  width: 30%;
  background: rgba(0, 0, 0, 0.5);
  left: 35%;
  top: 50%;
  color: #fff;
  margin-top: -45px;
  font-size: 18px;
  line-height: 45px;
  text-align: center;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  box-shadow: 0 0 2px #999;
}
.popup ul li {
  line-height: 45px;
}
.popup ul #pop-buttons input {
  border: #cccccc 1px solid;
  font-size: 15px;
  line-height: 30px;
  height: 30px;
  background-color: #ffffff;
  color: #333333;
  text-align: center;
  padding: 0 10px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  margin-right: 10px;
}
.popup ul #pop-buttons input#bun-ok {
  margin-right: 10px;
}
.popup ul #pop-buttons input#bun-order {
  margin-right: 10px;
}
.loading {
  position: fixed;
  background: transparent;
  z-index: 9999;
  display: none;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
}
.loading .innerloading {
  position: absolute;
  width: 57px;
  left: 50%;
  top: 50%;
  margin-top: -25px;
  margin-left: -28px;
}
.loading .innerloading img {
  display: inlinc-block;
  width: 100%;
}
/* 旧版弹窗 end */
/* 2016年10月25日16:30:18-邓焯文 end */
.indexPage .banner {
  margin-bottom: 24px;
}
.indexPage .banner .pagination {
  position: absolute;
  z-index: 20;
  bottom: 20px;
  width: 100%;
  height: 0;
  text-align: center;
}
.indexPage .banner .swiper-pagination-switch {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #222;
  margin-right: 5px;
  opacity: 0.8;
  border: 1px solid #fff;
  cursor: pointer;
}
.indexPage .banner .swiper-visible-switch {
  background: #aaa;
}
.indexPage .banner .swiper-active-switch {
  background: #fff;
}
.indexPage .classifyNav {
  background-color: #e0e2e4;
  height: 166px;
}
.indexPage .classifyNav a.dib,
.indexPage .classifyNav li {
  font-size: 0;
}
.indexPage .classifyNav .news {
  position: relative;
  width: 277px;
  height: 166px;
}
.indexPage .classifyNav .news .pagination {
  position: absolute;
  z-index: 20;
  bottom: 20px;
  width: 277px;
  height: 166px;
  text-align: center;
}
.indexPage .classifyNav .news .swiper-pagination-switch {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #222;
  margin-right: 5px;
  opacity: 0.8;
  border: 1px solid #fff;
  cursor: pointer;
}
.indexPage .classifyNav .news .swiper-visible-switch {
  background: #aaa;
}
.indexPage .classifyNav .news .swiper-active-switch {
  background: #fff;
}
.indexPage .classifyNav .news .newsbox {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28px;
}
.indexPage .classifyNav .news .newsbox p {
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  height: 28px;
  line-height: 28px;
}
.indexPage .classifyNav .news .newsbox .newsicon {
  width: 28px;
  height: 28px;
  background-color: #d70c19;
  background-image: url("resources/images/index/eye.png");
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center;
}
.indexPage .wrap-logo {
  margin-top: 35px;
  margin-bottom: 35px;
}
.indexPage .wrap-logo .logo-list a.dib,
.indexPage .wrap-logo .logo-list li {
  font-size: 0;
}
.indexPage .wrap-logo .logo-list li {
  outline: 1px solid #000000;
  margin-left: 42px;
}
.indexPage .wrap-logo .logo-list li:first-child {
  margin-left: 3px;
}
.indexPage .wrap-logo .logo-list li:hover {
  outline: 1px solid #b63d32;
}
.indexPage .wrap-logo .logo-list .logo-dib {
  display: inline-block;
  width: 104px;
  height: 50px;
  text-align: center;
}
.indexPage .wrap-logo .logo-list .logo-dib img {
  vertical-align: middle;
}
.indexPage .wrap-logo .logo-list .logo-dib .lable {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
/*
 * 英文版调整用样式
 * 覆盖中文原版样式使用
 * by:邓焯文
 */
#header .nav li.nav-li a.nav-href {
  padding: 0 13px;
}
.section {
  text-indent: 0;
}
.celucasnBrand #content .panel-ct .watermark {
  letter-spacing: initial;
  word-spacing: 20px;
}
#subNav .subNav-right ul li {
  margin-left: 15px;
}
.investment .wrap-investment .investment-listbox .list-item .investment-first-section {
  width: 930px;
}
.join-page .page-adv .adv-content .adv-caption .caption {
  width: 100%;
  padding-top: 0;
}
.join-page .section {
  letter-spacing: 0px;
  word-spacing: -1px;
}
