@charset "UTF-8";
body {
  margin: 0;
  background-color: #eef1f1;
  font-family: 'Microsoft YaHei';
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

div {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  max-height: 100%;
}

a,
a:hover {
  text-decoration: none;
  color: #424242;
}

input,
button {
  outline: none;
}

button {
  cursor: pointer;
}

.content {
  width: 1370px;
  min-width: 1370px;
  margin: 0 auto;
  padding: 0 15px;
}

.clearfix:after {
  content: '';
  display: block;
  clear: both;
}

.layui-badge {
  position: relative;
  display: inline-block;
  top: -10px;
  left: -5px;
  padding: 0 6px;
  font-size: 12px;
  text-align: center;
  background-color: #FF5722;
  color: #fff;
  border-radius: 18px !important;
}

::-webkit-scrollbar {
  width: 2px;
  height: 2px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: #c8c8c8;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1368px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  z-index: 999999;
  transition: top .4s linear;
}
.header.hiddened {
  top: -60px;
}
.header.showed {
  top: 0;
}
.header .header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 30px;
}
.header .header-wrap .logo-wrap,
.header .header-wrap .login-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.header .header-wrap .nav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin-right: 80px;
}
.header .header-wrap .logo {
  width: auto;
  height: 35px;
  font-size: 0;
  font-weight: bold;
  color: #424242;
}
.header .header-wrap .logo img {
  height: 35px;
}
.header .header-wrap .sub {
  margin-left: 30px;
  font-size: 14px;
  color: #999;
}
.header .header-wrap .nav-item {
  position: relative;
  height: 100%;
  line-height: 60px;
  margin: 0 15px;
  border-bottom: 3px solid transparent;
}
.header .header-wrap .nav-item.cur, .header .header-wrap .nav-item:hover {
  border-bottom: 3px solid #465161;
}
.header .header-wrap .nav-item.cur .lk, .header .header-wrap .nav-item:hover .lk {
  color: #465161;
}
.header .header-wrap .nav-item .lk {
  padding: 6px 20px;
  font-size: 14px;
  color: #424242;
  border-radius: 5px;
}
.header .header-wrap .spa .lk {
  padding: 6px 20px;
  color: #999;
}
.header .header-wrap .search {
  position: relative;
  height: 40px;
}
.header .header-wrap .search input {
  display: block;
  width: 100%;
  height: 100%;
  padding-left: 35px;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.header .header-wrap .search .iconfont {
  position: absolute;
  top: 12px;
  left: 12px;
}
.header .header-wrap .login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  margin-left: 30px;
}
.header .header-wrap .login .lk {
  margin-left: 15px;
  padding: 2px 15px;
  box-sizing: border-box;
  border-radius: 5px;
}
.header .header-wrap .login .lk:nth-child(1) {
  background: #465161;
  color: #fff;
  border: none;
}
.header .header-wrap .login .lk:nth-child(2) {
  border: 1px solid #424242;
}
.header .header-wrap .logged-in {
  display: none;
  position: relative;
  height: 100%;
}
.header .header-wrap .logged-in .name {
  font-size: 16px;
  margin-left: 5px;
  color: #333;
}
.header .header-wrap .logged-in .portrait {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  align-items: center;
  height: 100%;
  cursor: pointer;
}
.header .header-wrap .logged-in .portrait img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.header .header-wrap .logged-in .portrait:hover .por-list {
  display: block;
}
.header .header-wrap .logged-in .por-list {
  display: none;
  position: absolute;
  top: 60px;
  right: -18px;
  width: 100px;
  background: #fff;
  border-top: 1px solid #666;
}
.header .header-wrap .logged-in .por-list .item {
  height: 40px;
}
.header .header-wrap .logged-in .por-list .lk {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 40px;
  color: #424242;
}
.header .header-wrap .logged-in .por-list .lk:hover {
  color: #465161;
}

.login-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: rgba(0, 0, 0, 0.5);
}
.login-container.cur {
  display: block;
}
.login-container .login-dawp {
  display: flex;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -300px;
  margin-left: -500px;
  width: 1000px;
  height: 600px;
  background: #fff;
  border-radius: 15px;
  z-index: 999;
  overflow: hidden;
}
.login-container .login-dawp .close-login {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #666;
  cursor: pointer;
}
.login-container .login-dawp .close-login:hover {
  color: #000;
}
.login-container .login-msg {
  display: inline-block;
  width: 50%;
}
.login-container .login-type-wrap {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(100% - 60px);
}
.login-container .login-type {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 60px;
}
.login-container .login-type .item {
  width: 50px;
  text-align: center;
}
.login-container .login-type .item .icon {
  width: 20px;
  height: 20px;
  margin: 0 auto;
}
.login-container .login-type .item .icon img {
  width: 100%;
  height: 100%;
}
.login-container .login-type .item .i-tit {
  padding-top: 5px;
  font-size: 12px;
  color: #666;
}
.login-container .login-ewm {
  position: relative;
  display: inline-block;
  width: 50%;
  height: 100%;
}
.login-container .login-ewm .login-main {
  width: 100%;
}
.login-container .login-ewm .login-main .main-item {
  display: none;
}
.login-container .login-ewm .login-main .main-item .main-tit {
  font-size: 24px;
  color: #424242;
  font-weight: bold;
}
.login-container .login-ewm .login-main .main-item .isRegister {
  display: inline-block;
  font-size: 14px;
  color: #999;
}
.login-container .login-ewm .login-main .main-item .isRegister span {
  color: #006cda;
  cursor: pointer;
}
.login-container .login-ewm .login-main .main-item.active {
  display: block;
}
.login-container .login-ewm .login-main .main-item .tips {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  color: #999;
}
.login-container .login-ewm .login-main .main-item .tips .agreement span {
  color: #006cda;
}
.login-container .login-ewm .login-main .main-item .tips .fing-password {
  cursor: pointer;
}
.login-container .login-ewm #login-code {
  width: 300px;
  height: 400px;
  margin: 0 auto;
}

.af-left {
  float: left;
}

.af-right {
  float: right;
}

.slider {
  position: relative;
  width: 100%;
  min-width: 1368px;
  height: 520px;
  /*   .pagitation {
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 10px;

    span {
      padding: 5px;
      margin: 0 5px;
      border-radius: 50%;
      background: #fff;

      &.cur {
        background-color: #d12a49;
      }
    }
  } */
}
.slider .slider-list {
  height: 100%;
  margin-top: 60px;
}
.slider .slider-list .slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s;
}
.slider .slider-list .slider-item img {
  width: 100%;
  height: 100%;
}
.slider .slider-list .slider-item.fade {
  opacity: 1;
}
.slider .btn-group .iconfont {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}
.slider .btn-group .icon-xiangzuo {
  left: 5%;
}
.slider .btn-group .icon-xiangyou {
  right: 5%;
}

.tip {
  position: relative;
  width: 100%;
  height: 385px;
}
.tip .tip-pos {
  position: absolute;
  top: -38px;
  left: 0;
  right: 0;
  margin: auto;
  width: 1368px;
}
.tip .tip-pos .tip-wrap {
  width: 100%;
  padding: 30px 15px;
  height: 375px;
  background-color: #f4f4f4;
  border-radius: 20px;
  box-sizing: border-box;
  background-color: #fff;
  border-bottom: 9px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  /*background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, #4cb1fe, #465161);*/
  /*box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.1);*/
}
.tip .tip-pos .tip-wrap:after {
  content: '';
  display: block;
  clear: both;
}
.tip .tip-pos .tip-wrap .tip-item {
  float: left;
  width: 20%;
  margin-top: 20px;
  border-right: 1px solid #ddd;
  transition: all .3s linear;
}
.tip .tip-pos .tip-wrap .tip-item i {
  position: absolute;
  bottom: 40px;
  color: #999;
  font-size: 24px;
  margin-left: 40px;
  transition: bottom .3s linear;
}
.tip .tip-pos .tip-wrap .tip-item:last-child {
  border-right: 0;
  padding-right: 0;
}
.tip .tip-pos .tip-wrap .tip-item .slogan-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}
.tip .tip-pos .tip-wrap .tip-item .tip-tit {
  margin-top: 15px;
  font-size: 24px;
  color: #333;
  text-align: center;
  font-weight: bold;
}
.tip .tip-pos .tip-wrap .tip-item .sup {
  margin-top: 10px;
  font-size: 16px;
  color: #666;
  text-align: center;
}
.tip .tip-pos .tip-wrap .tip-item .list {
  margin-top: 30px;
  padding: 0 25px;
}
.tip .tip-pos .tip-wrap .tip-item .item {
  margin-bottom: 10px;
  font-size: 14px;
  margin-left: 10px;
  color: #999;
}
.tip .tip-pos .tip-wrap .tip-item .item::before {
  content: '●';
  display: inline-block;
  color: #465161;
  margin-right: 10px;
  opacity: .5;
  font-size: 10px;
}
.tip .tip-pos .tip-wrap .tip-tit {
  font-size: 16px;
  color: #666;
}
.tip .tip-pos .tip-wrap .tip-tit .tip-num {
  padding: 0 5px;
  font-weight: bold;
  color: #424242;
  box-sizing: border-box;
}

.app-wrap {
  width: 100%;
  min-width: 1378px;
  padding-bottom: 50px;
  background-color: #f4f4f4;
}
.app-wrap.mt {
  margin-top: 110px;
}
.app-wrap.bg-white {
  padding: 40px 0 40px;
  background: #fff;
}
.app-wrap .public--wrap {
  width: 100%;
  text-align: center;
}
.app-wrap .public--wrap .tit {
  font-size: 32px;
  color: #424242;
  font-weight: bold;
}
.app-wrap .public--wrap .tit span {
  color: #424242;
  font-weight: 300;
}
.app-wrap .public--wrap .sup {
  font-size: 18px;
  color: #465161;
  margin-top: 15px;
}
.app-wrap .area {
  position: relative;
  top: 50px;
}
.app-wrap .area .info:after {
  content: '';
  display: block;
  clear: both;
}
.app-wrap .area .area-left {
  float: left;
}
.app-wrap .area .area-left .list {
  height: 510px;
}
.app-wrap .area .area-left .list .item {
  position: relative;
  height: 50px;
  line-height: 50px;
  margin-bottom: 15px;
  padding-left: 15px;
  font-size: 18px;
  color: #666;
}
.app-wrap .area .area-left .list .item:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  display: table;
  margin-top: -10px;
  width: 4px;
  height: 20px;
  background: #465161;
}
.app-wrap .area .area-left .list .item span {
  color: #424242;
  font-weight: bold;
}
.app-wrap .area .area-left .list .block-item {
  position: relative;
  margin-bottom: 30px;
  padding-left: 15px;
  font-size: 18px;
  color: #666;
}
.app-wrap .area .area-left .list .block-item h2 {
  font-size: 18px;
  font-weight: bold;
  color: #424242;
}
.app-wrap .area .area-left .list .block-item:after {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  display: table;
  width: 4px;
  height: 20px;
  background: #465161;
}
.app-wrap .area .area-left .list .block-item p {
  color: #333;
  /*  font-weight: 200; */
  font-size: 14px;
  margin-top: 10px;
}
.app-wrap .area .area-right {
  float: right;
  position: absolute;
  top: 55px;
  right: 0;
  z-index: 2;
}
.app-wrap .area .area-right img {
  width: 654px;
  height: 470px;
}
.app-wrap .area .area-right .img-tit {
  text-align: center;
  color: #fff;
}
.app-wrap .area .free-use {
  position: absolute;
  bottom: -35px;
  left: 50%;
  width: 105%;
  transform: translate(-50%, 0);
  height: 80px;
  font-size: 16px;
  line-height: 80px;
  background: linear-gradient(to bottom, #4cb1fe, #465161);
  border-radius: 60px;
  z-index: 1;
  box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.3);
}
.app-wrap .area .free-use.small {
  height: 50px;
  line-height: 50px;
  bottom: 30px;
}
.app-wrap .area .free-use .f-btn {
  background-color: #fff;
  color: #465161;
  padding: 10px 40px;
  margin-left: 25px;
  border-radius: 40px;
  border: none;
  outline: none;
}
.app-wrap .area .free-use .tip {
  color: #fff;
  margin-left: 30px;
}
.app-wrap .area .new-list {
  width: 100%;
  margin: 50px 0;
}
.app-wrap .area .new-list .news-item {
  float: left;
  width: 32%;
  margin-right: 26px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 5px;
  transition: all .3s linear;
}
.app-wrap .area .new-list .news-item:hover {
  margin-top: -15px;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
}
.app-wrap .area .new-list .news-item:last-child {
  margin-right: 0;
}
.app-wrap .area .new-list .news-item img {
  width: 100% ；;
}
.app-wrap .area .new-list .news-item .bod {
  padding: 30px 40px;
  box-sizing: border-box;
}
.app-wrap .area .new-list .news-item .bod .tit {
  color: #333;
  font-size: 20px;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.app-wrap .area .new-list .news-item .bod .new-info {
  margin: 20px 0 0;
  height: 80px;
  color: #999;
  font-size: 14px;
  line-height: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.app-wrap .area .new-list .news-item .bod .time {
  display: block;
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #999;
}
.app-wrap .tools {
  width: 100%;
  margin: 50px 0 0;
}
.app-wrap .tools .tools-item {
  position: relative;
  top: 0;
  float: left;
  width: 302px;
  height: 400px;
  margin: 0 33px 33px 0;
  border-radius: 5px;
  background-size: cover;
  transition: all .3s ease-out;
}
.app-wrap .tools .tools-item:hover {
  box-shadow: 0 0 20px #ccc;
}
.app-wrap .tools .tools-item:nth-child(4n) {
  margin-right: 0;
}
.app-wrap .tools .tools-item:nth-child(1) {
  background-image: url("/static/img/home_img_mp1.png");
}
.app-wrap .tools .tools-item:nth-child(2) {
  background-image: url("/static/img/home_img_hb2.png");
}
.app-wrap .tools .tools-item:nth-child(3) {
  background-image: url("/static/img/home_img_hc3.png");
}
.app-wrap .tools .tools-item:nth-child(4) {
  background-image: url("/static/img/home_img_wjj.png");
}
.app-wrap .tools .tools-item:nth-child(5) {
  background-image: url("/static/img/home_img_hs.png");
}
.app-wrap .tools .tools-item:nth-child(6) {
  background-image: url("/static/img/home_img_pyq.png");
}
.app-wrap .tools .tools-item:nth-child(7) {
  background-image: url("/static/img/home_img_xm.png");
}
.app-wrap .tools .tools-item:nth-child(8) {
  background-image: url("/static/img/home_img_cp.png");
}
.app-wrap .tools .tools-item:nth-child(9) {
  background-image: url("/static/img/home_img_al.png");
}
.app-wrap .tools .tools-item:nth-child(10) {
  background-image: url("/static/img/home_img_xw.png");
}
.app-wrap .tools .tools-item:nth-child(11) {
  background-image: url("/static/img/home_img_wz.png");
}
.app-wrap .tools .tools-item:nth-child(12) {
  background-image: url("/static/img/home_img_mbzx.png");
}
.app-wrap .tools .tools-item .tit {
  margin-top: 45px;
  color: #fff;
  font-size: 24px;
  text-align: center;
}
.app-wrap .tools .tools-item .tit-info {
  position: absolute;
  bottom: 120px;
  left: 30px;
  right: 30px;
  text-align: center;
  color: #fff;
  font-size: 16px;
}
.app-wrap .tools .tools-item .use-btn {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: auto;
  background: none;
  border: 1px solid #fff;
  width: 120px;
  height: 40px;
  color: #fff;
  line-height: 40px;
  border-radius: 5px;
}
.app-wrap .more {
  display: block;
  width: 240px;
  height: 40px;
  margin: 10px auto 30px;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  background: #c8000b;
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.2);
}
.app-wrap .pp {
  margin-top: 50px;
}
.app-wrap .pp img {
  width: 100%;
}

/* side */
.side {
  display: none;
  position: fixed;
  width: 54px;
  height: 275px;
  right: 15px;
  bottom: 290px;
  z-index: 100;
}
.side.cur {
  display: block;
}
.side li {
  width: 54px;
  height: 54px;
  float: left;
  position: relative;
}
.side li .sidebox {
  position: absolute;
  width: 54px;
  height: 54px;
  top: 0;
  right: 0;
  transition: all 0.3s;
  color: #fff;
  font: 14px/54px "微软雅黑";
  overflow: hidden;
}
.side li:first-child .sidebox {
  background: url("/static/img/vip.png") no-repeat top center;
}
.side li:nth-child(2) .sidebox {
  background: url("/static/img/weixin-h.png") no-repeat top center;
}
.side li:nth-child(3) .sidebox {
  background: url("/static/img/weixin.png") no-repeat top center;
}
.side li:nth-child(4) .sidebox {
  background: url("/static/img/fankui.png") no-repeat top center;
}
.side li:last-child .sidebox {
  background: url("/static/img/top.png") no-repeat top center;
}
.side li:first-child:hover .sidebox {
  background: url("/static/img/vip-se.png") no-repeat top center;
}
.side li:nth-child(2):hover .sidebox {
  background: url("/static/img/weixin-h-se.png") no-repeat top center;
}
.side li:nth-child(3):hover .sidebox {
  background: url("/static/img/weixin-se.png") no-repeat top center;
}
.side li:nth-child(4):hover .sidebox {
  background: url("/static/img/fankui-se.png") no-repeat top center;
}
.side li:last-child:hover .sidebox {
  background: url("/static/img/top-se.png") no-repeat top center;
}
.side li .show-ewm {
  display: none;
  position: absolute;
  top: 0;
  left: -255px;
  width: 240px;
  height: 240px;
  border: 1px solid #eee;
}
.side li:nth-child(2) .show-ewm {
  top: -40px;
}
.side li:nth-child(3) .show-ewm {
  top: -94px;
}
.side li:hover .show-ewm {
  display: block;
}

.side ul li .sidetop {
  width: 54px;
  height: 54px;
  line-height: 54px;
  display: inline-block;
  transition: all 0.3s;
}

.footer {
  width: 100%;
  min-width: 1378px;
  text-align: left;
  background-color: #25282D;
}
.footer .footer-u {
  padding: 28px 0;
  overflow: hidden;
}
.footer .footer-u .footer-wrap {
  padding: 0 90px 0 15px;
  border-right: 1px solid #3B3E43;
}
.footer .footer-u .footer-wrap:nth-child(3) {
  border-right: none;
}
.footer .footer-u .footer-wrap.no-p {
  border: none;
}
.footer .footer-u .footer-wrap h4 {
  font-size: 18px;
  font-weight: bold;
  color: #AAAAAC;
  margin-top: 0;
}
.footer .footer-u .footer-wrap ul {
  margin-top: 15px;
}
.footer .footer-u .footer-wrap li {
  padding: 6px 0;
}
.footer .footer-u .footer-wrap li a {
  color: #626061;
}
.footer .footer-u .footer-wrap li a:hover {
  text-decoration: underline;
  color: #f2f2f2;
}
.footer .footer-u .footer-share {
  position: relative;
  border-left: 1px solid #3B3E43;
  padding-left: 17px;
  padding-bottom: 17px;
}
.footer .footer-u .footer-share .footer-contact {
  color: #626061;
  text-align: left;
  position: relative;
  display: inline-block;
  margin-right: 17px;
  font-size: 13px;
  line-height: 18px;
}
.footer .footer-u .footer-share .footer-contact li {
  font-size: 16px;
  margin-top: 5px;
  padding: 2px 0;
}
.footer .footer-u .footer-share .footer-contact .xcy {
  color: #AAAAAC;
  font-size: 20px;
  padding-bottom: 8px;
}
.footer .footer-d {
  background-color: #1C1D21;
  color: #5F6160;
  text-align: center;
  font-size: 13px;
  line-height: 24px;
  padding: 10px 0;
}
.footer .footer-d a {
  color: inherit;
}
.footer .footer-d a:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=index.css.map */
