@charset "utf-8";
* {
  padding: 0;
  margin: 0;
  font-family: "microsoft yahei";
}
/* 防止用户自定义背景颜色对网页的影响，添加让用户可以自定义字体 */
html {
  background: #fff;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  color: #919191;
  font-size: 14px;
}
/* 内外边距通常让各个浏览器样式的表现位置不同 */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
iframe {
  margin: 0;
  padding: 0;
  outline: none;
}
/* 重设 HTML5 标签, IE 需要在 js 中 createElement(TAG) */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
/* HTML5 媒体文件跟 img 保持一致 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
/* 要注意表单元素并不继承父级 font 的问题 */
input,
select,
textarea {
  font-size: 100%;
  font-family: "microsoft yahei";
}
/* 解决firefox chrome下 textarea能自动拉伸的问题*/
textarea {
  resize: none;
}
/* 去掉各Table cell 的边距并让其边重合 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* IE bug fixed: th 不继承 text-align*/
th {
  text-align: inherit;
}
/* 去除默认边框 */
fieldset,
img {
  border: 0;
}
/* ie6 7 8(q) bug 显示为行内表现 */
iframe {
  display: block;
}
/* 去掉 firefox 下此元素的边框 */
abbr,
acronym {
  border: 0;
  font-variant: normal;
}
/* 一致的 del 样式 */
del {
  text-decoration: line-through;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: 500;
}
/* 去掉列表前的标识, li 会继承 */
ol,
ul {
  list-style: none;
}
/* 对齐是排版最重要的因素, 别让什么都居中 */
caption,
th {
  text-align: left;
}
/* 来自yahoo, 让标题都自定义, 适应多个系统应用 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 500;
}
q:before,
q:after {
  content: '';
}
/* 统一上标和下标 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* 正常链接 未访问 */
a:link {
  /*color: #08c;*/
}
/* 鼠标悬停 */
a:hover {
  color: #08c;
  text-decoration: none;
  cursor: pointer;
}
/* 默认不显示下划线，保持页面简洁 */
ins,
a {
  text-decoration: none;
}
/* 清除firefox下点击后虚线 */
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
select::-moz-focus-inner {
  border: 0;
  outline: 0;
}
/* 清理浮动 */
.fn-clear:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.fn-clear {
  zoom: 1;
  /* for IE6 IE7 */
}
html,
body {
  height: 100%;
  background-color: #ffffff;
}
/* 隐藏, 通常用来与 JS 配合 */
body .fn-hide,
.hidden {
  display: none;
}
/* 设置内联, 减少浮动带来的bug */
.fn-left,
.fn-right {
  display: inline;
}
.fn-left {
  float: left;
}
.fn-right {
  float: right;
}
/* 单行文字溢出时出现省略号，需设定宽度 */
.fn-text-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 简单的渐变 */
.fn-linear {
  background: -webkit-gradient(linear, left top, left bottom, from(#fcfcfc), to(#f1f1f1));
  background: -moz-linear-gradient(top, #fcfcfc, #f1f1f1);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfcfc', endColorstr='#f1f1f1');
  background: -o-linear-gradient(top, #fcfcfc, #f1f1f1);
  background: linear-gradient(top, #fcfcfc, #f1f1f1);
}
/* 浅色的渐变 */
.fn-linear-light {
  background: -webkit-gradient(linear, left top, left bottom, from(#fcfcfc), to(#f9f9f9));
  background: -moz-linear-gradient(top, #fcfcfc, #f9f9f9);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfcfc', endColorstr='#f9f9f9');
  background: -o-linear-gradient(top, #fcfcfc, #f9f9f9);
  background: linear-gradient(top, #fcfcfc, #f9f9f9);
}
/* 人民币符号 */
.fn-rmb {
  font-family: arial;
  font-style: normal;
  padding-right: 4px;
}
/* chrome 下字体过小的问题 */
.fn-webkit-adjust {
  -webkit-text-size-adjust: none;
}
/* 清除浮动*/
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.clearfix {
  height: 1%;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
/*---------------------------------input-placeholder-style-----------------------------------------------------*/
input::-webkit-input-placeholder {
  color: #919191 ;
  /*WebKit browsers*/
  font-size: 12px;
}
input::-moz-placeholder {
  color: #919191 ;
  /*Mozilla Firefox 4 to 18 */
  font-size: 12px;
}
input::-moz-placeholder {
  color: #919191 ;
  /*Mozilla Firefox 19+ */
  font-size: 12px;
}
input::-ms-input-placeholder {
  color: #919191 ;
  /*Internet Explorer 10+*/
  font-size: 12px;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}
/*---------------------layer 样式覆盖---------------------------------------------------*/
.layui-form-select dl dd.layui-this {
  background-color: #1e9fff;
  color: #fff;
}
.layui-form-select .layui-input {
  padding-right: 0px;
}
.layui-form-radio i:hover,
.layui-form-radioed i {
  color: #1e9fff;
}
.layui-btn-normal {
  background-color: #1E9FFF;
  opacity: .8;
  filter: alpha(opacity=80);
}
.layui-btn:hover {
  opacity: 1;
}
/*checkbox*/
/*---------------------------BackgroundColor--------------------------------------------*/
.bgcolorGreen {
  background-color: #81cf29;
}
.bgcolorDarkgreen {
  background-color: #1fb129;
}
.bgcolorBlue {
  background-color: #5da4fb;
}
.bgcolorRed {
  background-color: #f83a3a;
}
.bgcolorOrange {
  background-color: #f67129;
}
.bgcolorGray {
  background-color: #f1f2f7;
}
.bgcolorWhite {
  background-color: #ffffff;
}
/*头部颜色*/
.topBackgroundColor {
  background-color: #1f80f7;
}
/*内容颜色*/
/*content-left*/
.leftTopTitleBackground {
  background-color: #4d556a;
}
/*底部颜色*/
.bottomBackgroundColor {
  background-color: #4d556a;
}
.bottomFontColor {
  color: #a2a6b1;
}
/*--------------------------------------------font_color-----------------------------------*/
.white {
  color: #fff;
}
.blue {
  color: #1e9fff;
}
.darkgreen {
  color: #1fb129;
}
.orange {
  color: #f67129;
}
.red {
  color: #f83a3a;
}
.darkgray {
  color: #919191;
}
.blank {
  color: #474747;
}
/*------------------------------------button--------------------------------------------------*/
/*登陆按钮*/
.landing {
  width: 100%;
  height: 30px;
  text-align: center;
  font-size: 14px;
  border: none;
  border-radius: 2px;
  background: -webkit-gradient(linear, 0% 50%, 0% 50%, from(#228cf8), to(#1c75f6));
  background: -moz-linear-gradient(to bottom, #228cf8, #1c75f6);
  background: linear-gradient(to bottom, #228cf8, #1c75f6) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#228CF8', endColorstr='#1C75F6') !important;
  margin-top: 20px;
  color: #fff;
}
.disabled {
  background: #ccc!important;
  cursor: not-allowed;
  color: #fff;
}
/*登陆按钮颜色*/
.landingBackgroundColor {
  background: -webkit-gradient(linear, 0% 50%, 0% 50%, from(#228cf8), to(#1c75f6));
  background: -moz-linear-gradient(to bottom, #228cf8, #1c75f6);
  background: linear-gradient(to bottom, #228cf8, #1c75f6) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#228CF8', endColorstr='#1C75F6') !important;
}
.landingBackgroundColor:hover {
  background: -webkit-gradient(linear, 0% 50%, 0% 50%, from(#1883ef), to(#146beb));
  background: -moz-linear-gradient(to bottom, #1883ef, #146beb);
  background: linear-gradient(to bottom, #1883ef, #146beb) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1883ef', endColorstr='#146beb') !important;
}
/*自适应按钮 */
.OrdinaryButton {
  padding: 5px 15px;
  text-align: center;
  font-size: 14px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}
/*宽度为80的按钮*/
.Button80 {
  width: 80px;
  height: 30px;
  text-align: center;
  font-size: 14px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}
/*-------------------------input-text--------------------------*/
input,
select {
  color: #333;
}
.personaltext {
  width: 235px;
  border-radius: 2px;
  border: 1px solid #e6e8eb;
  height: 30px;
  padding-left: 5px;
  line-height: 30px;
}
.personaltextError {
  border: 1px solid #f83a3a;
}
.textarea {
  width: 240px;
  border: 1px solid #d1d1e3;
  border-radius: 2px;
}
/*---------------------------border----------------------------------*/
.bordeblue {
  border: 1px solid #1e9fff;
}
/*---------------------------h1-h6----------------------------------*/
h1 {
  font-size: 24px;
}
h2 {
  font-size: 18px;
}
h3 {
  font-size: 16px;
}
h4 {
  font-size: 12px;
}
.f12 {
  font-size: 12px;
}
.f-bold {
  font-weight: bold;
}
/*------------------------------width-------------------------------------*/
.width240 {
  width: 240px !important;
}
.width70 {
  width: 70px !important;
}
.mgleft5 {
  margin-left: 5px;
}
.mgleft10 {
  margin-left: 10px;
}
.mgbottom5 {
  margin-bottom: 5px;
}
/*------------------------------height-------------------------------------*/
.mgtop10 {
  margin-top: 10px;
}
.mgtop20 {
  margin-top: 20px;
}
/*------------------------------ vertical-align:-------------------------------------*/
.vaTop {
  vertical-align: top;
}
.vaBottom {
  vertical-align: bottom;
}
.vaMiddle {
  vertical-align: middle;
}
/*-------------------------------text-------------------------------*/
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.pdl75 {
  padding-left: 75px;
}
.pdl70 {
  padding-left: 70px;
}
.pdl110 {
  padding-left: 110px;
}
.pdl350 {
  padding-left: 350px;
}
.pdl320 {
  padding-left: 320px;
}
.bold {
  font-weight: bold;
}
/*------------------------------page---------------------------------------*/
.box {
  min-width: 1000px;
  width: 100%;
}
/*top*/
.top {
  width: 100%;
  height: 100px;
  min-width: 1300px;
}
.top .header {
  width: 1000px;
  height: 100px;
  color: #ffffff;
  margin: 0 auto;
  overflow: hidden;
  line-height: 100px;
}
.top .header .logo {
  display: inline-block;
  vertical-align: top;
}
.top .header .logo img {
  margin: 22px 0;
  vertical-align: middle;
}
.top .header .logo span {
  vertical-align: middle;
  font-size: 24px;
}
.top .header .nav {
  display: inline-block;
  vertical-align: middle;
  width: 60%;
}
.top .header .nav ul {
  float: right;
}
.top .header .nav ul li {
  float: left;
  margin: 29px 0 29px 20px;
  font-size: 18px;
}
.top .header .nav ul li a {
  width: 80px;
  text-align: center;
  display: block;
  height: 42px;
  line-height: 42px;
  color: #fff;
}
.top .header .nav ul li .active {
  border-bottom: 2px solid #ffffff;
}
.rightAccount {
  margin: 29px 10px;
  font-size: 18px;
  height: 42px;
  line-height: 42px;
}
.rightAccount .esc {
  margin-left: 20px;
  color: #ffffff !important;
}
/*content*/
.content {
  width: 1000px;
  margin: 20px auto;
  overflow: hidden;
  font-size: 14px;
}
.content2 {
  overflow: hidden;
}
.content2 .mgtop20 {
  margin-top: 20px;
}
.content2 .registCon {
  position: relative;
  width: 920px;
  overflow: hidden;
  margin: 45px auto;
  padding: 20px 40px;
  font-size: 12px;
  background-color: #fff;
  -moz-box-shadow: 5px 5px 0px #dedfe4;
  -webkit-box-shadow: 5px 5px 0px #dedfe4;
  box-shadow: 5px 5px 0px #dedfe4;
}
.content2 .registCon .conrightbottom {
  position: absolute;
  right: 0;
  bottom: 0;
}
/*bottom*/
.box {
  min-height: 100%;
  margin-bottom: -100px;
}
.bottom {
  width: 100%;
  height: 100px;
  min-width: 1300px;
  font-size: 12px;
}
.bottom,
.empty {
  height: 100px;
}
.bottom .bottomCon {
  width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 29px 0;
}
.bottom .bottomCon .ptop {
  margin-top: 10px;
}
/*账号登陆*/
.step-box {
  padding: 20px;
  text-align: center;
}
.step-box ul {
  display: block;
  width: 500px;
  margin: 0 auto;
  height: 24px;
  padding-top: 12px;
  text-align: center;
}
.step-box ul .w90 {
  width: 88px;
  padding-left: 12px;
}
.step-box ul .mgl5 {
  margin-left: -5px;
}
.step-box ul .active {
  color: #1fb129;
}
.step-box ul li {
  width: 100px;
  line-height: 28px;
  float: left;
}
.step-box ul.vStep {
  width: 600px;
}
.layui-input,
.layui-select,
.layui-textarea {
  height: 32px;
  line-height: 32px;
}
.layui-btn {
  height: 32px;
  line-height: 32px;
}
.laydate_box {
  -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2) !important;
  -moz-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2) !important;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2) !important;
  padding-bottom: 6px!important;
}
.laydate_body .laydate_chprev cite {
  border-right-color: #d1d1e3 !important;
}
.laydate_body .laydate_chdown cite,
.laydate_body .laydate_ym label {
  border-top-color: #d1d1e3 !important;
}
.laydate_body .laydate_chnext cite {
  border-left-color: #d1d1e3 !important;
}
.laydate_body .laydate_chtop cite {
  border-bottom-color: #d1d1e3 !important;
}
.laydate_body .laydate_y .laydate_yms .laydate_chdown {
  border-top: none!important;
}
.laydate_body .laydate_y .laydate_yms a {
  border-bottom: none!important;
}
.laydate_body .laydate_bottom {
  display: none;
  border-bottom: none;
}
.laydate_body .laydate_bottom #laydate_hms,
.laydate_body .laydate_bottom .laydate_btn a,
.laydate_body .laydate_box,
.laydate_body .laydate_table,
.laydate_body .laydate_table td,
.laydate_body .laydate_time,
.laydate_body .laydate_ym,
.laydate_body .laydate_ym .laydate_yms {
  border: none!important;
}
.laydate_body .laydate_table thead th {
  border-bottom: none!important;
}
.laydate_body .laydate_chprev,
.laydate_body .laydate_choose {
  border: none!important;
}
.laydate_body .laydate_bottom .laydte_hsmtex,
.laydate_body .laydate_choose,
.laydate_body .laydate_table thead,
.laydate_body .laydate_y .laydate_yms a {
  background-color: #fff!important;
}
#lgUser {
  cursor: pointer;
}
.iframe {
  width: 100%;
  height: 100px;
  overflow: hidden;
}
html,
body {
  height: 100%;
  background-color: #f1f2f7;
}
.CHEprocess {
  overflow: hidden;
}
.CHEprocess .CHEprocessCon {
  position: relative;
  width: 1000px;
  overflow: hidden;
  margin: 20px auto;
  font-size: 12px;
  padding: 30px 0;
  background-color: #fff;
  -moz-box-shadow: 5px 5px 0px #dedfe4;
  -webkit-box-shadow: 5px 5px 0px #dedfe4;
  box-shadow: 5px 5px 0px #dedfe4;
}
.CHEprocess .CHEprocessCon .conrightbottom {
  position: absolute;
  right: 0;
  bottom: 0;
}
.CHEprocess .CHEprocessCon .textCon {
  color: #333333;
  margin: 30px 30px 60px 30px;
  line-height: 25px;
  border-top: 1px solid #ccc;
  padding: 20px 0;
}
.CHEprocess .CHEprocessCon .textCon .instructions {
  margin: 5px 0 0 20px;
}
.CHEprocess .CHEprocessCon .textCon .img {
  width: 100%;
  overflow: hidden;
  margin: 5px 0;
}
.CHEprocess .CHEprocessCon .textCon .img img {
  width: 100%;
}
.CHEprocess .gobak {
  text-align: right;
  margin: 10px 40px;
  font-size: 14px;
}
/*policy*/
#policy {
  width: 900px;
  margin: 0 auto;
  border: none;
}
#policy #policy-list {
  display: block;
  width: 100%;
  height: 100px;
  padding: 0;
  margin: 0;
  list-style: none;
}
#policy #policy-list li {
  float: left;
  height: 100px;
  margin-right: 10px;
}
#policy #policy-list a:link {
  display: block;
  text-decoration: none;
  text-align: center;
  height: 80px;
  width: 180px;
  padding: 10px;
  color: #303030;
  border: 1px solid #ccc;
}
#policy #policy-list .policyactive {
  color: #1e9fff !important;
  border: 1px solid #1e9fff !important;
}
#policy #policy_con {
  width: 100%;
  border-top: none;
  padding: 10px;
}
#policy #policy_con .policy_tag {
  position: relative;
  width: 100%;
  background-color: #FBF7FC;
  padding-top: 30px;
}
.table {
  border-collapse: collapse;
}
.table td {
  border: 1px solid #ccc;
  padding: 10px;
}
