@charset "UTF-8";

/**************************************
    Basic Styles
***************************************/
body {
	font-family: "微软雅黑";
	font-style: normal;
	font-weight: 300;
	margin: 0px;
	min-width: 1200px;
}
img {border: 0px;}
/**
 * Reset Styels
 */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#htmUrl {display: none;}
.wrapper { 
	width: 28px;
	float: right;
	z-index: 1005;
	margin-right: 5px;
	
}

.dispn {display: none;}
html,button,input,select,textarea {
  font-family: "微软雅黑 Light";
  outline: none;
}
cfmspan {font-size: 22px;}
input:-moz-placeholder,textarea:-moz-placeholder{
color: #ff0000;
}

input:-ms-input-placeholder,textarea:-ms-input-placeholder{
color: #ff0000;
}

input:-webkit-input-placeholder,textarea::-webkit-input-placeholder{
color: #ff0000;
}

a {
  text-decoration: none;
}

a:focus {
  outline: thin dotted;
}

a:active,a:hover {
  outline: 0;
}

a:hover {
  text-decoration: underline;
}

menu,ol,ul {
  margin: 16px 0;
  padding: 0 0 0 40px;
}

ul {
  list-style-type: square;
}

nav ul,nav ol {
  list-style: none;
  list-style-image: none;
}

li > ul,li > ol {
  margin: 0;
}


a {
  -webkit-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

menu,ol,ul{
  margin: 0;
  margin-bottom: 15px;
}

/*a:hover,a:focus,a:active {
  text-decoration: none;
  outline: none;
}

a:link:hover {
  color: #000000;
}
*/
button,select,textarea {
  background: transparent;
  border: 1px solid #e5e5e5;
  -webkit-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  color: #333333;
}

/*****************************************/
/*>>>>>>>>>>>>>(导航菜单开始)<<<<<<<<<<<<<<*/
/*****************************************/
/*
 * Header
 */
.header-logo {
  line-height: 1;
}

.header-logo a {
  display: inline-block;
}

.header-navigation-trigger {
  float: right;
  display: inline-block;
  width: 28px;
  height: 28px;
  margin: 0px;
  border: 0;
  outline: 0;
  padding: 6px 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.header-navigation-trigger::after {
  content: "";
  clear: both;
  display: table;
}

.header-navigation-trigger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #FF2828; /*菜单键颜色*/
  float: right;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}

.header-navigation-trigger span + span {
  margin-top: 5px;
}

.header-navigation-trigger span:last-child {
  width: 75%;
}

.header-navigation-trigger:hover span, .header-navigation-trigger.active span {
  width: 100%;
}

.header-navigation-trigger.is-active {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}

.header-navigation-trigger.is-active span:first-child {
  -webkit-transform: rotate(90deg) translateX(7px);
  -ms-transform: rotate(90deg) translateX(7px);
  transform: rotate(90deg) translateX(7px);
}

.header-navigation-trigger.is-active span:last-child {
  width: 100%;
  -webkit-transform: rotate(90deg) translateX(-7px);
  -ms-transform: rotate(90deg) translateX(-7px);
  transform: rotate(90deg) translateX(-7px);
}

.header-navigation {
  position: relative;
}

.header-navigation .main-navigation {
	
  position: absolute;
  right: 100%;
  z-index: 1005;
  width: 700px; /*菜单总宽度*/
  top: 0px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: auto;
  text-align: right;
}

.header-navigation .main-navigation > ul {
  text-align: left;
  display: inline-block;
  margin-right: 5px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center right;
  -ms-transform-origin: center right;
  transform-origin: center right;
  -webkit-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.header-navigation .main-navigation.is-visible > ul {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 0px; /*菜单位置*/
  margin-top: 25px;

	
}


/**
 * Navigation
 */
nav.main-navigation > ul > li a {
  position: relative;
  padding: 5px 18px;  /*菜单项目间隔*/
}

nav.main-navigation > ul > li a::before {
  content: "";
  position: absolute;
  left: 20px; /*鼠标经过下划线位置*/
  top: calc(50% + 12px);
  width: calc(100% - 40px);
  height: 1px;
  background: #D31C1F;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

nav.main-navigation > ul > li:hover a::before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

nav.main-navigation ul {

  padding-left: 0;
  margin-bottom: 0;
  font-size: 0;
}

nav.main-navigation ul li {
  display: inline-block;
  font-size: 20px;
}

nav.main-navigation ul li a {
  display: inline-block;
  line-height: 24px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 300;
  color: #fc2828; /*菜单字体颜色*/
  letter-spacing: 1px;
}

nav.main-navigation ul li:hover a {
  color: #fc2828;
}


/* Dropdown Styles */
nav.main-navigation ul li {
  position: relative;
}

nav.main-navigation ul li ul {
  border-top: 3px solid #ff0000;
  position: absolute;
  left: 20px;
  width: 150px; /*子菜单宽度*/
  top: 32px;
  background: #f1f1f1; /*菜单框背景颜色*/
  text-align: left;
  padding: 5px 10px; /*菜单内容*/
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  visibility: hidden;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  z-index: 1010;
}
nav.main-navigation hr {
    border: 0;
    height: 1px;
    background-color: #ccc;
}
nav.main-navigation ul li ul li {
  display: block;
}

nav.main-navigation ul li ul li a {
  display: block;
  padding: 3px 10px;
	
  color: #fc2828;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
}

nav.main-navigation ul li ul li a::before { /*下拉菜单子项目之前的-号*/
  content: "";
  position: absolute;
  left: -2px;
  top: 50%;
  height: 2px;
  width: 7px;
  border-radius: 100px;
  background: #fc2828;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

nav.main-navigation ul li ul li a:hover {/*下拉菜单经过颜色*/
  color: #DD3030;
    text-decoration: underline;
}

nav.main-navigation ul li ul li a:hover::before {
  opacity: 1;
}

nav.main-navigation ul li ul li ul {
  left: calc(100% + 1px);
  top: 0;
}

nav.main-navigation ul li:hover > ul {
  visibility: visible;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}

/**
 * Hero Slider
 */
.hero-area-inner {

  position: relative;
  min-height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  border-bottom: 1px solid #f1f1f1;
  z-index: 1005;
}

.hero-area-text {
  padding: 120px 0;
}

/*****************************************/
/*>>>>>>>>>>>>>>>(THE END)<<<<<<<<<<<<<<<*/
/*****************************************/
	.side-bar a,.chat-tips t {} 
	.side-bar {width: 66px; position: fixed; bottom: 50px; right: 25px; z-index: 100;} 
	.side-bar a, a:active, a:visited {font-size: 36px; width: 66px; height: 66px; display: inline-block; padding-top: 15px; background-color: #e74c3c; margin-bottom: 2px;/* -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);*/} 
	.side-bar a:hover {background-color: #fc2828; color: #fff;} 
	.side-bar .col {color: #fff;}
	.side-bar .icon-qq {text-align: center; line-height: 66px;}
	.side-bar .icon-chat {text-align: center; line-height: 66px;} 
	/*.side-bar .icon-blog {background-position: 0 -198px;} */
	.side-bar .icon-mail {text-align: center; line-height: 66px;} 
	.side-bar .gototop {text-align: center; line-height: 66px;}
	.side-bar .icon-chat:hover .chat-tips {display: block;} 
	.chat-tips {padding: 10px; border: 1px solid #d1d2d6; position: absolute; right: 78px; top: -15px; background-color: #fff; display: none;} 
	.chat-tips t {width: 9px; height: 16px; display: inline-block; position: absolute; right: -9px; top: 80px;} 
	.chat-tips img {width: 138px;height: 138px;}
	.chat-tips span {font-size: 12px; line-height: 14px;}
	.facol {color: #fc2828;}
	.topline {width: 100%; height: 3px; background: #fc2828;}
	.topline .topl {width: 1140px; height :3px; margin: 0px auto; background: #fc2828;}
	.topNav {width: 100%; height: 22px; border-bottom: 1px solid #eaeaea; font-size: 14px; background: #FFF;}
	.topNav .tpnv {width: 1140px; height: 22px; margin: 0px auto; border-bottom: 1px solid #eaeaea;}
	.topNav .tpnv .pic {width: 18px; height: 18px; margin-top: 3px; float: right; color: #fc2828;}
	.topNav .tpnv .ads {width: 62px; height: 22px; float: right; line-height: 22px;}
	.topNav .tpnv .tel {width: 100px; height: 22px; float: right; line-height: 22px; text-align: right;}
.topNav .tpnv .QQ {width: 70px; height: 22px; float: left; margin: 0px 10px 0px; cursor: pointer;}
.topNav .tpnv .login {width: 100px; height: 22px; float: left; line-height: 22px; font-weight: 500; cursor: pointer;}
	.toptitle {width: 100%; height: 110px;border-bottom: 1px solid #eaeaea; margin: 2px auto; background: #FFF}
	.toptitle .stname {width: 1140px; height: 110px; border-bottom: 1px solid #eaeaea; margin: 0px auto;}
	.toptitle .stname .sitelogo {width: 73px; height: 57px; margin: 7px 5px;}
	.toptitle .stname .sitename {height: 71px; font-size: 57px; line-height: 71px; color: #FC2828; text-align: left; padding-bottom: 2px;}
	.toptitle .stname .exname {padding-left: 5px; height: 24px; margin: 0px auto; font-size: 16px; font-weight: 300; line-height: 24px; color: #9B9B9B; text-align: left; font-family: "微软雅黑 Light"}
	.toptitle .stname .nv {width: 245px; height: 24px; position: relative; left: 900px; top: -65px;}
	.toptitle .stname .nv .nvt {width: 50px; height: 20px; margin: 2px 15px; float: left; text-align: center; font-size: 16px; line-height: 20px; background: #fc2828; border-radius: 4px; color: #FFF;}
	.toptitle .stname .nv .nvt2 {width: 50px; height: 20px; margin: 2px 15px; float: left; text-align: center; font-size: 16px; line-height: 20px; color: #fc2828;}
	.siteinfoarea {width: 100%; height: 340px; margin: 10px auto; border-top: 1px solid #ebebeb;}
	.siteinfo {width: 1140px; height: 350px; margin: 0px auto;}
	.siteinfo .about {float: left; position: relative; width: 275px; height: 300px;}
	.siteinfo .atit {height: 45px; font-size: 20px; padding-left: 5px; border-bottom: 1px dotted #ebebeb; line-height: 45px; font-weight: 300; text-align: left; margin-bottom: 10px;}
	.siteinfo .acont {height: 25px; font-size: 16px; line-height: 25px; font-weight: 300; text-align: center;}
	.siteinfo .acont a, a:active, a:visited {color: #000;}
	.siteinfo .acont a:hover {color: #fc2828;}
	.siteinfo .acont:hover {border-bottom: 1px dotted #fc2828; cursor: pointer;}
	.siteinfo .qrcode {float: left; position: relative; width: 300px; height: 300px;}
	.siteinfo .aqrcode {width: 230px; height: 230px; background: url(/image/ma_wechat.jpg); background-size: 100% 100%; margin: 10px auto;}
	.siteinfo .footlogo {width: 505px; float: left; position: relative; height: 300px;}
	.siteinfo .footlogo .logoimg {width: 480px; height: 225px; background: url(/app/img/app_foot.jpg) no-repeat; background-size: 100% 100%; margin: 12px 0px 5px 25px;}
	.wxsch {background: url(/app/img/wd_btxcx.jpg) no-repeat; transition: opacity 1s; background-size: 100% 100%; box-shadow: 0px 0px 5px #9b9b9b inset; margin: 0px; width: 480px; height: 225px; opacity: 0;}
	.wxschh {opacity: 1;}

	.footarea {width: 100%; height: 40px; background: #c3c3c3;}
	.footarea .Nav {width: 1140px; height: 40px; margin: 0px auto; background: #c3c3c3;}
	.footarea .Nav .text {width: 300px; float: left; height: 30px; margin: 5px 2px; font-size: 14px; line-height: 30px; font-weight: 300;}
	.footarea .Nav .icp {width: 145px; float: right; height: 30px; margin: 5px 2px; font-size: 14px; line-height: 30px; font-weight: 300; text-align: right; text-decoration-line: underline; cursor: pointer;}
	.footarea .Nav .trstwb {width: 80px; float: right; height: 30px; margin: 5px 2px; font-size: 14px; line-height: 30px; font-weight: 300;}
	.footarea .Nav .icp a, a:hover, a:active, a:visited {color: #000; text-decoration: none;}
	#sechbox {width: 310px; height: 48px; position: relative; left: -5px; top: 20px;}
	#fsechbox {width: 310px; height: 48px; margin: 0px 0px 0px 105px;}
	.searchbox {width: 300px; height: 44px; background:url("../image/serchbox1.png") no-repeat; margin: 5px 2px; position: relative;}
	.searchtxt {width: 160px; height: 30px; margin: 5px 0px 5px 35px; font-size: 20px; font-weight: 300; line-height: 30px; float: left; background: #FFFFFF; border: none;}
	.searchbut {width: 84px; height: 25px; outline: 0px; background: rgba(255, 255, 255, 0); margin: 11px 0px 5px 12px; float: left; border: 1px; cursor: pointer; }