/*
 * 初始化页面样式
 * 适用所有页面
 */
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 {
  margin: 0;
  padding: 0;
  list-style: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block
}

address,
cite,
dfn,
em,
var {
  font-style: normal
}

input,
textarea {
  outline: none;
  resize: none;
}

a {
  color: #333;
  text-decoration: none;
  outline: none;
}

a:hover,
a:focus {
  color: #E63D3A;
  text-decoration: none;
  outline: none;
}

img {
  vertical-align: middle;
}

body {
  font-family: "Microsoft YaHei", Arial, sans-serif;
  font-size: 14px;
  color: #333;
}

/*渐显动画*/
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
  }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@-webkit-keyframes run {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@-moz-keyframes run {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@-o-keyframes run {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes run {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.pure-g {
  font-family: "Microsoft YaHei", Arial, sans-serif;
  letter-spacing: 0;
}

.wrap {
  min-width: 1200px;
  width: 1200px;
  margin: 0 auto;
  position: relative;
}

.gray {
  color: #999;
}

.red {
  color: #F43B3B;
}

.blue {
  color: #69AFEA;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.tl {
  text-align: left;
}

.tc {
  text-align: center;
}

.tr {
  text-align: right;
}

/**
 * 清除活动 .g-cf
 * 全局容器 .g-o
 */
.clear {
  *zoom: 1
}

.clear:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: '\20'
}


/*header*/
.header {
  width: 100%;
  min-width: 1200px;
  margin: 0 auto;
  /* height: 138px; */
}

.header .fl,
.header .fr {
  height: 70px;
}

.header .fl.top {
  height: 50px;
  background-color: #26292B;
  color: #FEFEFF;
}

.header .logo {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 150px;
  height: 70px;
}

.header .site {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  height: 70px;
  position: relative;
  margin-right: 15px;
}

.header .tel {
  font-size: 20px;
  font-weight: 400;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: #333333;
}

.header .site .get-site {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  cursor: pointer;
  padding: 3px 10px;
  border: solid 1px #cacaca;
  border-radius: 3px;
}

.header .site .get-site i {
  position: relative;
  top: -2px;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 0;
  width: 10px;
  height: 6px;
  background: url(../images/jt.png) no-repeat;
  margin-left: 10px;
}

.header .site.active .get-site i {
  background: url(../images/jt-hover.png)no-repeat;
}

.header .site .site-pop {
  position: absolute;
  top: 26px;
  left: 0;
  padding: 5px;
  width: 240px;
  min-height: 80px;
  background: #fff;
  border: solid 1px #cacaca;
  border-radius: 3px;
  display: none;
}

.header .site .site-pop a {
  margin: 5px;
}

.header .site .site-pop a.active {
  color: #f43b3b;
}

.menu li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  height: 50px;
  font-size: 16px;
}

.menu li a {
  display: block;
  margin-right: 40px;
  font-size: 16px;
  font-weight: 400;
  border-bottom: solid 2px transparent;
  color: #FFFFFF;
  line-height: 50px;
}

.menu li.active a {
  color: #f43b3b;
  border-color: #f43b3b;
}

.menu li.i-user a {
  background: url(../images/i-user.png) left 23px no-repeat;
  padding-left: 20px;
  margin-right: 0;
}

.menu li.i-user a:hover {
  color: #333;
}

.search {
  position: relative;
  width: 680px;
  height: 60px;
  margin: 20px auto;
  background: #fff;
  border-radius: 5px;
}

.search input {
  float: left;
  width: 500px;
  height: 40px;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  border: none;
  outline: none;
}

.search button {
  float: right;
  width: 130px;
  height: 50px;
  margin: 5px;
  font-size: 16px;
  border-radius: 5px;
  border: none;
  outline: none;
  background: #f43b3b;
  color: #fff;
}

.search h2 {
  position: absolute;
  top: -50px;
  left: 0;
  font-size: 30px;
  color: #fff;
}

.search h3 {
  position: absolute;
  top: 10px;
  right: -120px;
  font-size: 26px;
  font-weight: normal;
  color: #fff;
}

.footer {
  background: #323748;
  padding: 30px 0;
}

.footer .link-a {
  border-bottom: solid 1px #6B7186;
  padding-bottom: 15px;
}

.footer .link-a a {
  font-size: 16px;
  color: #fff;
  margin-right: 20px;
}

.footer .qcode-r {
  padding-top: 20px;
  text-align: right;
  display: none;
}

.footer .qcode-r img {
  margin: 0 15px;
}

.footer .foot-l {
  padding: 15px 0;
  overflow: hidden;
}

.footer .foot-l .lin {
  float: left;
  width: 180px;
  display: block;
}

.footer .foot-l .foot-r {
  padding-left: 180px;
  color: #8d909b;
  line-height: 30px;
}

.footer .foot-l .foot-r img {
  margin-right: 10px;
  position: relative;
  top: -2px;
}

.footer .newf li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  margin-right: 20px;
  cursor: pointer;
}

.footer .newf li a {
  color: #8d909b;
  padding: 2px 7px;
  font-size: 16px;
  border-radius: 3px;
}

.footer .newf li.active a {
  background: #7c7e84;
  color: #fff;
}

.footer .newf-con {
  padding: 15px 0 30px 0;
}

.footer .newf-con p {
  display: none;
  -webkit-animation: fadein .2s linear;
  animation: fadein .2s linear;
}

.footer .newf-con a {
  color: #8d909b;
  margin-right: 20px;
}

.footer .copy-txt {
  font-size: 14px;
  color: #8d909b;
}

.dialog {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 10;
  display: none;
}

.Modal-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  background: #fff;
  border-radius: 20px;
  z-index: 12;
}

.loginM {
  width: 600px;
  height: 420px;
  margin-top: -210px;
  margin-left: -300px;
}

.RegM {
  width: 600px;
  height: 610px;
  margin-top: -305px;
  margin-left: -300px;
}

.m-head {
  position: relative;
}

a.close {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.m-head h2 {
  padding: 40px 40px 30px 40px;
  font-size: 20px;
}

.m-head h2 a {
  float: right;
  font-size: 16px;
  padding: 2px 5px;
  font-weight: normal;
  border: 1px solid rgba(237, 237, 237, 1);
  border-radius: 4px;
}

.m-body {
  padding: 0 40px;
}

.login-form li {
  position: relative;
  border: 2px solid rgba(237, 237, 237, 1);
  background: #fff;
  height: 48px;
  border-radius: 4px;
  margin-bottom: 30px;
}

.login-form li.error {
  border-color: #F24747;
}

.login-form li i {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  float: left;
  width: 26px;
  height: 26px;
  margin: 11px 10px;
}

.login-form li i.icon-phone {
  background: url(../images/phone.png)no-repeat;
}

.login-form li i.icon-lock {
  background: url(../images/lock.png)no-repeat;
}

.login-form li i.icon-dun {
  background: url(../images/dun.png)no-repeat;
}

.login-form li input {
  float: left;
  border: none;
  width: 410px;
  height: 48px;
  line-height: 48px;
  outline: none;
  font-size: 14px;
}

.login-form li em.xin {
  position: absolute;
  top: 16px;
  right: 16px;
  display: block;
  width: 14px;
  height: 14px;
  background: url(../images/xin.png)no-repeat;
}

.remember a {
  font-size: 14px;
}

.remember a.lost {
  float: right;
}

.remember a.savea i,
.reg-xy a i {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  border: solid 2px #eee;
  background: #fff;
  margin-right: 10px;
  position: relative;
  top: 3px;
}

.remember a.savea.active i:after,
.reg-xy a.active i:after {
  content: '\00a0';
  display: block;
  border: 2px solid #F24747;
  border-top-width: 0;
  border-right-width: 0;
  width: 12px;
  height: 6px;
  -webkit-transform: rotate(-50deg);
  transform: rotate(-50deg);
  position: absolute;
  top: 2px;
  left: 1px;
}

.loginsub {
  margin: 30px 0;
}

.loginsub button {
  font-size: 18px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  background: #F24747;
  border: none;
  outline: none;
  width: 100%;
  text-align: center;
  cursor: pointer;
  border-radius: 4px;
}

.r-logo {
  text-align: center;
  padding: 50px 0 30px;
}

.reg-xy {
  text-align: right;
}

/*分页*/
.page {
  text-align: center;
  padding: 10px 0;
}

ul.pagination {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

ul.pagination li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  margin: 0 5px;
}

ul.pagination li a {
  color: black;
  float: left;
  padding: 8px 16px;
  border-radius: 3px;
  text-decoration: none;
  transition: background-color .3s;
  background: #F0F2F5;
}

ul.pagination li a.active {
  background-color: #f43b3b;
  color: #fff;
  pointer-events: none;
}

ul.pagination li a.disabled {
  background: #f5f5f5;
  pointer-events: none;
}

ul.pagination li a:hover:not(.active) {
  background-color: #f43b3b;
  color: #fff;
}
