:root {
  --ideal-viewport-width: 1920;
}

/* 整体 1200 */
.contnet {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* :end */
/* 预定义样式开始 */
body,
div,
ol,
ul,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p,
form,
fieldset,
legend,
input {
  margin: 0;
  padding: 0;
}

h1,
h2,
h6 {
  font-size: 100%;
}

ol,
ul {
  list-style: none;
}

img,
fieldset {
  border: 0 none;
  display: block;
}

* {
  padding: 0rem;
  margin: 0rem;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

em {
  font-style: normal;
}

/*清除浮动*/
.clr:after {
  content: ".";
  clear: both;
  display: block;
  height: 0;
  visibility: hidden;
}

.clr {
  zoom: 1;
}

.fl {
  float: left
}

.fr {
  float: right
}

body {
  font: 14px/1.5;
  background-color: #fff;
  font-size: 16px;
  font-family: Microsoft YaHei, Microsoft YaHei-Regular;
  min-width: 1200px;
}

i {
  font-style: normal;
}


.cont_o {
  width: 1200px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.cont_o ul {
  display: flex;
  align-items: center;
  height: 60px;
  width: 1200px;
}

.cont_o ul span {
  font-size: 14px;
  font-weight: 400;
  color: #999999;
  margin: 0 2px;
}

.cont_o ul li a {
  font-size: 14px;
  font-weight: 400;
  color: #999999;
}

.cont_o ul li a:hover {
  color: #DB0000;
}

/* 视频 */
.video-pop {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: all .5s;
}

.video-pop.show {
  visibility: visible;
  opacity: 1;
}

.video-pop .pop-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
}

.video-pop .pop-box {
  width: 1020px;
  height: 575px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  background: #000;
  box-sizing: border-box;
}

.video-pop .pop-box .video {
  width: 100%;
  height: 100%;
  outline: none
}

.video-pop .close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: -40px;
  right: 0;
  background: url(../icon/close_01.png) no-repeat;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  transition: all .3s ease
}

.video-pop .close:hover {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg)
}

/* 分页 */
.paging_box {
  width: 100%;
  text-align: center;
  user-select: none;
  padding: 40px 0 80px;
}

.pagination {
  margin: 0 auto;
  clear: both;
  font-size: 14px;
  text-align: center;
}

.pagination span, .pagination a {
  display: inline-block;
  padding: 0 12px;
  height: 30px;
  line-height: 30px;
  margin: 0 2px;
  *zoom: 1;
  color: #666666;
  border: 1px solid #dddddd;
  border-radius: 3px;
}

/*.pagination a:hover {*/
/*  background: #DB0000;*/
/*  border: 1px solid #DB0000;*/
/*  color: #ffffff;*/
/*  text-decoration: none;*/
/*}*/

.pagination a:active {
  color: #fff;
}

.pagination .disabled {
  cursor: default;
  color: #666666;
  background: #dedede;
  border: 1px solid #dedede;
}

.pagination .current {
  background: #DB0000;
  color: #fff;
  border: 1px solid #DB0000;
}

.pagination-right {
  text-align: right;
}

.pagination-left {
  text-align: left;
}

.pagination i {
  margin: 0 4px;
}

.paging_input {
  width: 30px;
  height: 30px;
  margin: 0 4px;
  text-align: center;
  line-height: 30px;
  border: 1px solid #dddddd;
  display: inline-block;
  background: #f3f3f3;
}

.paging_but {
  width: 60px;
  height: 30px;
  margin: 0 4px;
  text-align: center;
  line-height: 30px;
  border: 1px solid #dddddd;
  display: inline-block;
  background: #f3f3f3;
  cursor: pointer;
}

/* 字数裁剪 */
.line_ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  -moz-text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.two_line_ellipsis {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.three_line_ellipsis {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}


html {
  min-width: 1200px;
}

html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /*font: 12px PingFangSC-Light, "PingFang SC", "Microsoft YaHei", "Arial Narrow", "SimSun", HELVETICA;*/
  background: #FAFAFA;
}

div, p, h1, h2, h3, h4, h5, h6, ul, ol, li, dl, dd, dt, table, tr, th, td, form, input, textarea, select, i, button, img, header, footer, section, label {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

ul, ol, li {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  box-sizing: border-box;
}

input, textarea {
  font-size: 14px;
  color: #333;
  border: none;
  outline: none;
}

input:focus, textarea:focus {
  /*border: 1px solid rgba(77, 132, 255, 0.6)!important;
	box-shadow: 0 0 5px rgba(77, 132, 255, 0.6);*/
}

input::-webkit-input-placeholder {
  color: #999;
}

input::-moz-input-placeholder {
  color: #999;
}

input::-ms-input-placeholder {
  color: #999;
}

a {
  text-decoration: none;
  color: #424242;
  box-sizing: border-box;
}

a:hover {
  text-decoration: none
}

.transition {
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -o-transition: all .3s linear;
  -ms-transition: all .3s linear;
  transition: all .3s linear;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.lf {
  padding-top: 0 !important;
  padding-left: 0 !important;
}

.rf {
  padding-top: 0 !important;
  padding-left: 0 !important;
}

.fb {
  font-weight: bold;
}

.font-active {
  color: #32D693 !important;
}

.font-warn {
  color: #F96C3C;
}

.clearfloat:after {
  zoom: 1;
}

.clearfloat:after {
  display: block;
  content: "";
  clear: both;
}

.tl {
  text-align: left;
}

.tr {
  text-align: right;
}

.tc {
  text-align: center;
}

.container {
  margin: 20px auto 20px;
}

.container:after {
  content: '';
  display: block;
  clear: both;
}

.marginTop30 {
  margin-top: 30px;
}

.marginRight30 {
  margin-right: 30px;
}

.marginRight40 {
  margin-right: 40px;
}

.marginRight53 {
  margin-right: 53px;
}

.marginRight107 {
  margin-right: 107px;
}

.marginRight108 {
  margin-right: 108px;
}

.marginBottom5 {
  margin-bottom: 5px;
}

#kxlogo a {
  display: block !important;
  margin: 0 auto;
}

.select2-dropdown {
  z-index: 99999 !important;
}

@font-face {
  font-family: Bebas;
  src: url(../font/BEBAS__.TTF);
}

@font-face {
  font-family: fangti;
  src: url(../font/fangti.TTF);
}
@font-face {
  font-family: din;
  src: url(../font/cs.TTF);
}


.header_v4 {
  position: relative;
  top: 0;
  z-index: 999;
  width: 100%;
  background-color: #fff;
  height: 165px;
}

.header_v4_hidden {
  position: fixed;
  z-index: 9998;
  top: 0;
  height: 0;
  overflow: hidden;
}

.header_v4_hidden.transition {
  transition: all 0.2s linear;
}

.header_v4 .header_container {
  width: 1200px;
  margin: 0 auto;
}

.header_v4 .header_top {
  width: 100%;
  height: 34px;
  background: #2E3130;
}

.header_v4 .header_top .header_container>ul {
  float: left;
  width: 50%;
  height: 100%;
}

.header_v4 .header_top ul.right {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header_v4 .header_top .header_container>ul>li {
  position: relative;
  display: inline-block;
  line-height: 34px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.header_v4 .header_top ul li.h_code:hover .dropdown_box {
  width: 164px;
  height: 172px;
}

.header_v4 .header_top ul li.h_home:hover .dropdown_box {
  height: 410px;
}

.header_v4 .header_top ul li.rt_bd {
  margin-right: 10px;
  padding-right: 11px;
}

.rt_st {
  width: 90px;
  height: 24px;
  background: #6d6f6f;
  border-radius: 12px;
}

.header_v4 .header_top ul li.rt_bd:not(:first-child):after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: '';
  display: block;
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.25);
}

.header_v4 .header_top ul li.pd25 {
  padding-left: 25px;
}

.header_v4 .header_top ul li img.icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.header_v4 .header_top ul li img.header_dropdown {
  float: right;
  margin: 10px 0 10px 6px;
}

.header_v4 .header_top ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.header_v4 .header_top ul li a:hover {
  color: #FFF;
}

.userInfo {
  position: relative;
  display: inline-block;
}

.header_v4 .header_top ul li div.dropdown_box,
.userInfo .dropdown_box {
  position: absolute;
  top: 45px;
  left: -50px;
  z-index: 999;
  width: 0;
  height: 0;
  transition: all 0.3s linear;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #F40000;
  background: #FFFFFF;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
}

.h_swith {
  width: 90px;
  height: 24px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding-right: 0 !important;
  margin-right: 20px !important;
  box-sizing: border-box;
  position: relative;
}

.h_swith a {
  width: 90px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.log_blcok {
  width: 100%;
  padding-top: 20px;
}

.log_blcok .log_cont {
  width: 1200px;
  margin: 0 auto;
  height: 45px;
  display: flex;
  align-items: center;
}

.log_blcok .log_cont .log_img {
  display: flex;
  align-items: center;
  width: 376px;
}

.log_blcok .log_cont .log_img img {
  width: 177px;
  height: 37px;
}

.log_blcok .log_cont .log_input {
  position: relative;
  width: 360px;
  height: 40px;
  margin: 3px 0 3px 73px;
  border: 1px solid #F40000;
  border-radius: 23px;
  display: flex;
}

.log_blcok .log_cont .log_input .search_input {
  width: 280px;
  height: 100%;
  padding-left: 47px;
  background: url('../image/icon_search.png') 20px center / 20px 20px no-repeat;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  border-top-left-radius: 23px;
  border-bottom-left-radius: 23px;
}

.log_blcok .log_cont .log_input .search {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 79px;
  height: 40px;
  line-height: 40px;
  background: #F40000;
  margin-top: 0;
  color: #FFF;
  font-weight: bold;
  border-top-right-radius: 23px;
  border-bottom-right-radius: 23px;
}

.log_blcok .log_cont .log_input .btn_a {
  display: block;
  font-size: 16px;
  text-align: center;
  border: none;
  margin: 0;
  font-weight: 400;
}

.log_blcok .log_cont .log_input .btn_a:hover {
  background-color: #DB0000;
}

.log_blcok .log_cont .customized {
  width: 125px;
  height: 40px;
  background: #f40000;
  border-radius: 21px;
  margin: 0;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  line-height: 40px;
  margin-left: 25px;
}

.log_blcok .log_cont .customized:hover {
  background-color: #DB0000;
}

.log_blcok .log_cont .log_login {
  display: flex;
  align-items: center;
  margin-left: 117px;
}

.log_blcok .log_cont .log_login a {
  font-size: 16px;
  font-weight: 400;
  color: #050505;
}

.log_blcok .log_cont .log_login a:hover {
  color: #F40000 !important;
}

.log_blcok .log_cont .log_login span {
  display: block;
  margin: 0 12px;
}

.nav_taber {
  width: 100%;
  padding-top: 34px;
}

.nav_taber .nav_tabcont {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}


.nav_taber .nav_tabcont a {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #050505;
  position: relative;
  margin-right: 70px;
}

.nav_taber .nav_tabcont a:hover {
  color: #F40000 !important;
}

.activerrst {
  color: #F40000 !important;
}

.activerrst::after {
  position: absolute;
  bottom: -11px;
  width: 100%;
  height: 3px;
  background: #F40000;
  content: "";
  display: block;
}

.Final {
  width: 100%;
  background: url(../image/Final.png) no-repeat;
  background-size: cover;
}

.Final .FinalCont {
  width: 1200px;
  margin: 0 auto;
}

.Final .FinalCont .Find_top {
  width: 100%;
  height: 101px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
}

.Final .FinalCont .Find_top ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 101px;
}

.Final .FinalCont .Find_top ul li a {
  font-size: 16px;
  text-align: left;
  color: rgba(255, 255, 255, 0.5);
}

.Final .FinalCont .Find_top ul li a:hover {
  color: #fff;
}

.Final .FinalCont .Find_top ul li:nth-child(1) a {
  color: #fff;
}

.Final .FinalCont .FinalBotm {
  width: 100%;
  padding-top: 46px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #626262;
  padding-bottom: 45px;
}

.Final .FinalCont .FinalBotm .Final01 img {
  width: 168px;
  height: 42px;
}

.Final .FinalCont .FinalBotm .Final01 span {
  padding-top: 36px;
  display: block;
  width: 378px;
  font-size: 14px;
  font-weight: 400;
  color: #999999;
  line-height: 25px;
}

.Final .FinalCont .FinalBotm .Final02 span {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  display: block;
}

.Final .FinalCont .FinalBotm .Final02 i {
  font-size: 30px;
  font-family: Microsoft YaHei, Microsoft YaHei-Bold;
  font-weight: 700;
  font-style: italic;
  color: #ffffff;
  display: block;
  margin-top: 34px;
  margin-bottom: 26px;
}

.Final .FinalCont .FinalBotm .Final02 p {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 26px;
}

.Final .FinalCont .FinalBotm .Final03 {
  display: flex;
  /*padding-top: 30px;*/
  flex-wrap: wrap;
  width: 238px;
  justify-content: space-between;
}

.Final .FinalCont .FinalBotm .Final03 .Fin_ma {
  /*width: 120px;*/
  height: auto;
  /*margin-right: 32px;*/
  margin-bottom: 15px;
}

.Final .FinalCont .FinalBotm .Final03 .Fin_ma img {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.Final .FinalCont .FinalBotm .Final03 .Fin_ma span {
  display: block;
  margin-top: 17px;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
}

.Final .FinalCont .FinalBotm .Final03 .Fin_ma:last-child {
  margin-right: 0;
}

.Final .FinalCont .Finlilast {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 93px;
}

.Final .FinalCont .Finlilast span {
  font-size: 14px;
  font-weight: 400;
  color: #9e9e9e;
}

.Final .FinalCont .Finlilast span a {
  font-size: 14px;
  font-weight: 400;
  color: #9e9e9e;
}

.Final .FinalCont .Finlilast span a:hover {
  color: #fff;
}

.Final .FinalCont .Finlilast p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.1);
  display: block;
  margin-left: 92px;
}

.Final .FinalCont .Finlilast p a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.1);
}

.Final .FinalCont .Finlilast p a:hover {
  color: #fff;
}



.FullcaHead {
  width: 100%;
  background: #ffffff;
  padding-bottom: 25px;
}

.FullcaHead .FullCont {
  width: 1200px;
  margin: 0 auto;
}

.FullcaHead .FullCont .Fu_nav ul {
  display: flex;
  padding-top: 33px;
}

.FullcaHead .FullCont .Fu_nav ul li a {
  font-size: 14px;
  font-weight: 400;
  color: #333;
}

.FullcaHead .FullCont .Fu_nav ul li:first-child a {
  color: #999;
}

.FullcaHead .FullCont .Fu_nav ul span {
  font-size: 14px;
  font-weight: 400;
  color: #999999;
  display: block;
  margin: 0 5px;
}

.FullcaHead .FullCont .Fu_nav i {
  font-size: 24px;
  font-weight: 400;
  color: #050505;
  display: block;
  padding-top: 24px;
}

.nav_table ul li.active {
  background-color: #fff;
}

.nav_tabler {
  width: 710px;
  padding-left: 34px;
  background: #fff;
}

.nav_tabler {
  width: 980px;
  padding-left: 34px;
  background: #fff;
}

.nav_tabler ul {
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
}

.nav_tabler ul li {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  margin-bottom: 10px;
  width: 162px;
  text-align: center;
  float: left;
}

.nav_tabler ul li:hover {
  color: red;
}
.zz_hover:hover.nav_tabs{
  display: block !important;
}
.zz_hover:hover .nav_tabs {
  display: block;
  position: relative;
}
.nav_taber .nav_tabcont a:hover .nav_tabs{

  display: block;
}
.nav_tabs {
  width: 1200px;
  /*height: 432px;*/
  background-color: #FFFFFF;
  position: absolute !important;
  top: 165px;
  /*bottom: 0;*/
  left: 50%;
  transform: translate(-50%,0);
  display: none;
  z-index: 999999;

}

.nav_table {
  width: 220px;
  background: #f5f6fa;
  padding-bottom: 20px;


}

.nav_table ul {
  padding-top: 20px;


}

.nav_table ul li {
  width: 220px;
  height: 49px;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  color: #333333;
  line-height: 49px;
}

.nav_table ul li:hover {
  background-color: #fff;
}
.nav_topa:hover .erweima{
  display: block;
}
.activered {
  background: #fff !important;
}

.nav_topa .erweima {
  width: 200px;
  height: 137px;
  background: url(../image/bar2.png) no-repeat;
  background-size: cover;
  position: absolute;
  left: -190px;
  display: none;
}
.nav_topa .erweima img {
  /*width: 80px;*/
  height: 80px;
  margin: 0 auto;
  /*margin-top: 20px;*/
}
.nav_topa.erweima span {
  font-size: 14px;
  text-align: left;
  color: #666666;
  display: block;
  margin-bottom: 5px;
}
.t_rar p{
  font-size: 14px;
  font-weight: 400;
  color: #666666;
}

.nav_topa .erweima {
  width: 187px;
  height: 128px;
  background: url(../image/bar2.png) no-repeat;
  background-size: cover;
  position: absolute;
  left: -199px;
  display: none;
}

.er_tart {
  display: flex;
  padding-left: 22px;
  padding-top: 21px;
}
.art_ren{
  margin-left: 20px;
}
.er_tart .art_ren i {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
}

.er_tart .art_ren p {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
}