@charset "UTF-8";

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: #333333
}

a:focus {
  outline: none
}

a:focus {
  border: none
}

img {
  border: 0;
}

input,
button {
  vertical-align: middle;
  border: none;
}

textarea {
  resize: none;
}

input,
textarea {
  box-sizing: content-box;
  background: 0 0;
  font-family: "Microsoft YaHei"
}

input {
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #acacac;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #acacac;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #acacac;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #acacac;
}

.rt {
  float: right;
}

.lf {
  float: left;
}

body {
  color: #000;
  font-family: "Microsoft YaHei";
}

/*清除浮动*/
.clearfix {
  *zoom: 1;
}

* {
  /* box-sizing: border-box;*/
  /*  -moz-box-sizing: border-box;*/
  /* Firefox */
  /* -webkit-box-sizing: border-box;*/
  /* Safari */
}

/* 针对IE7 hack，触发IE7的haslayout，以清除浮动 */
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
  line-height: 0;
}

.clearfix:after {
  clear: both;
}

table tr td,
table {
  border-collapse: collapse;
}

/****************************************动画****************************************/
/*
*1、鼠标经过图片逐渐放大：
*（可自行修改）
*/
.act-big a {
  overflow: hidden;
}

.act-big a img {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.act-big a:hover img {
  -webkit-transform: translate3d(0, 0, 0px) scale(1.05);
  -moz-transform: translate3d(0, 0, 0px) scale(1.05);
  -ms-transform: translate3d(0, 0, 0px) scale(1.05);
  -o-transform: translate3d(0, 0, 0px) scale(1.05);
  transform: translate3d(0, 0, 0px) scale(1.05);
}

/*
*2、鼠标经过抖动动画：
*（可自行修改）
*/
.act-rotate a:hover img {
  animation: myrotate 0.5s;
  -moz-animation: myrotate 0.5s;
  -webkit-animation: myrotate 0.5s;
  -o-animation: myrotate 0.5s;
}

@keyframes myrotate {
  0% {
    transform: rotate(10deg);
  }

  20% {
    transform: rotate(-10deg);
  }

  40% {
    transform: rotate(10deg);
  }

  60% {
    transform: rotate(-10deg);
  }

  80% {
    transform: rotate(10deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@-moz-keyframes myrotate

  /* Firefox */
{
  0% {
    transform: rotate(10deg);
  }

  20% {
    transform: rotate(-10deg);
  }

  40% {
    transform: rotate(10deg);
  }

  60% {
    transform: rotate(-10deg);
  }

  80% {
    transform: rotate(5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@-webkit-keyframes myrotate

  /* Safari 和 Chrome */
{
  0% {
    transform: rotate(10deg);
  }

  20% {
    transform: rotate(-10deg);
  }

  40% {
    transform: rotate(10deg);
  }

  60% {
    transform: rotate(-10deg);
  }

  80% {
    transform: rotate(5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@-o-keyframes myrotate

  /* Opera */
{
  0% {
    transform: rotate(10deg);
  }

  20% {
    transform: rotate(-10deg);
  }

  40% {
    transform: rotate(10deg);
  }

  60% {
    transform: rotate(-10deg);
  }

  80% {
    transform: rotate(5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/*图片hover 透明度*/
.act-imgop a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

/****************************************功能类****************************************/
.f-otw {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.f-oh {
  overflow: hidden;
}

.f-csp {
  cursor: pointer;
}

.f-ib {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

.f-dn {
  display: none;
}

.f-db {
  display: block;
}

.f-pr {
  position: relative;
}

.f-fwn {
  font-weight: normal;
}

.f-fwb {
  font-weight: bold;
}

.f-tal {
  text-align: left;
}

.f-tac {
  text-align: center;
}

.f-tar {
  text-align: right;
}

/****************************************组件类****************************************/
/****************************************模块类****************************************/
/*tab切换*/
.tabContent {
  overflow: hidden;
}

.tabItem {
  display: none;
}

.tabPanel1 {
  height: 29px;
  font-size: 0;
  border-bottom: 2px solid #d4d4d4;
}

.tabPanel1 .panel {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  height: 29px;
  margin-left: 30px;
  line-height: 16px;
  font-size: 16px;
  color: #666666;
  border-bottom: 2px solid transparent;
}

.tabPanel1 .panel:first-child {
  margin-left: 0;
}

.tabPanel1 .panel.cur {
  color: #ea3b43;
  border-bottom-color: #ea3b43;
}

.tabPanel2 .panel {
  position: relative;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  height: 40px;
  padding: 0 10px;
  margin-left: 7px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  color: #666;
  background: #fff;
}

.tabPanel2 .panel:first-child {
  margin-left: 0;
}

.tabPanel2 .panel.cur {
  color: #fff;
  background: #ea3b43;
}

.tabPanel2 .panel .icon {
  display: none;
  position: absolute;
  width: 15px;
  height: 8px;
  left: 50%;
  margin-left: -8px;
  bottom: -8px;
  background: url('../images/kt_index-icon2.png') no-repeat center;
}

.tabPanel2 .panel.cur .icon {
  display: block;
}

.tabPanel3 {
  height: 35px;
  background: url('../images/kt_index-bg05.png');
}

.tabPanel3 .panel {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 90px;
  height: 100%;
  line-height: 35px;
  text-align: center;
  font-size: 14px;
  color: #333;
}

.tabPanel3 .panel.cur {
  color: #fff;
  background-color: #ea3b43;
}

/* 轮播 */
.banner {
  position: relative;
}

.banner-img {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.banner-img > a,
.banner-img img {
  display: block;
}

.banner-img > a,
.banner-img > li {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
}

.banner-img > li {
  list-style: none;
}

.banner-img > a:first-child,
.banner-img > li:first-child {
  display: block;
}

.banner-tools {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
}

.banner-text {
  padding-right: 145px;
  padding-left: 15px;
  overflow: hidden;
}

.banner-text p,
.banner-text p a {
  color: #fff;
}

.banner-text p {
  display: none;
}

.banner-text p:first-child {
  display: block;
}

.banner-text p:hover,
.banner-text p:hover a {
  color: #ed3e45;
}

.banner-text p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.banner-btn {
  position: absolute;
  font-size: 0;
  bottom: 21px;
  right: 22px;
}

.banner-btn span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 9px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
}

.banner-btn span.cur {
  background: #ea3b43;
}

.banner-arrow .btn {
  position: absolute;
  top: 50%;
  margin-top: -20px;
  width: 19px;
  height: 39px;
  background: #fff;
  border: 1px solid #e5e5e5;
  cursor: pointer;
}

.banner-arrow .btn:hover {
  background-color: #ea3b43;
  border-color: #ea3b43;
}

.banner-arrow .btn-lf {
  left: 0;
  background: #fff url('../images/sx_index-arrow2.png') no-repeat center;
}

.banner-arrow .btn-lf:hover {
  background-image: url('../images/sx_index-arrow2-1.png');
}

.banner-arrow .btn-rt {
  right: 0;
  background: #fff url('../images/sx_index-arrow1.png') no-repeat center;
}

.banner-arrow .btn-rt:hover {
  background-image: url('../images/sx_index-arrow1-1.png');
}

/*新闻列表*/
.m-news-list li {
  height: 32px;
  line-height: 32px;
  text-align: right;
  font-size: 13px;
  color: #999;
}

.m-news-list li a {
  float: left;
  padding-left: 11px;
  max-width: 330px;
  font-size: 14px;
  color: #555;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: url('../images/kt_list-icon2.png') no-repeat left center;
}

.m-news-list li a:hover {
  color: #ea3b43;
}

.m-news-list1 li a {
  padding-left: 13px;
  background: url('../images/kt_list-icon1.png') no-repeat left center;
}

.m-news-list2 li a {
  padding-left: 6px;
  font-size: 13px;
  color: #333;
  background: url('../images/kt_list-icon3.png') no-repeat left center;
}

.m-news-list3 li a {
  padding-left: 16px;
  font-size: 13px;
  color: #666;
  background: url('../images/kt_list-icon4.png') no-repeat left center;
}

.m-news-list4 li {
  height: 33px;
  line-height: 33px;
  font-size: 14px;
  border-bottom: 1px dashed #8e8e8e;
}

.m-news-list4 li a {
  padding-left: 12px;
  color: #444;
  background: url('../images/kt_list-icon5.png') no-repeat left center;
}

/*菜单*/
.m-menu {
  font-size: 0;
}

.m-menu a {
  display: inline-block;
  padding: 0 18px;
  margin-left: 8px;
  margin-top: 8px;
  height: 35px;
  line-height: 35px;
  font-size: 14px;
  color: #666;
  text-align: center;
  background: #fff;
}

.m-menu a:hover {
  color: #fff;
  background-color: #ed4242;
}

/*上面图标/图片 下面文字*/
.m-picitem a {
  position: relative;
  float: left;
  text-align: center;
}

.m-picitem a .txt {
  text-align: left;
  color: #555;
  font-size: 13px;
  line-height: 19px;
}

.m-picitem a:hover .txt {
  color: #ea3b43;
}

.m-picitem-lf img {
  float: left;
}

.m-middle-txt {
  display: table;
}

.m-middle-txt .inner {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
}

/*表格*/
.m-table-fixed {
  width: 100%;
  table-layout: fixed;
}

/*友情链接*/
.m-links .select {
  position: relative;
  float: left;
  width: 270px;
  height: 30px;
  margin-left: 20px;
  line-height: 30px;
  background: #fff url('../images/kt_index-icon10.png') no-repeat 251px center;
  border: 1px solid #d2d2d2;
  cursor: pointer;
}

.m-links .select:first-child {
  margin-left: 0;
}

.m-links .label {
  padding-left: 32px;
  font-size: 14px;
  color: #666;
  background: url('../images/kt_index-icon11.png') no-repeat 18px center;
}

.m-links .list {
  display: none;
  position: absolute;
  width: 100%;
  height: 90px;
  background-color: #fff;
  z-index: 1;
  overflow: auto;
}

.m-links .list li a {
  display: block;
  height: 30px;
  padding-left: 32px;
  line-height: 30px;
  color: #666;
  font-size: 13px;
}

/*标题模块*/
.m-headtt {
  position: relative;
  height: 28px;
}

.m-headtt .title {
  width: 91px;
  height: 28px;
  padding-left: 12px;
  line-height: 28px;
  font-size: 16px;
  color: #ea3e47;
  border-left: 4px solid #ea3e47;
}

.m-headtt .bg {
  position: absolute;
  right: 0;
  left: 95px;
  top: 50%;
  height: 1px;
  background: url('../images/kt_leader-icon2.png') repeat-x 200px center;
}

/*当前位置*/
.m-local {
  height: 31px;
  padding-left: 23px;
  line-height: 31px;
  font-size: 13px;
  color: #333;
  background: url(kt_gl-local.png) no-repeat left center;
}

.m-local .a1 {
  margin-right: 3px;
}

.m-local .a1:hover {
  color: #ea3e47;
}

.m-local .s1 {
  color: #c00505;
}

/*分页*/
.m-page {
  height: 22px;
  line-height: 22px;
  font-size: 0;
  color: #666;
  text-align: center;
}

.m-page .s {
  font-size: 14px;
}

.m-page .b {
  margin: 0 6px;
  color: #dc252c;
}

.m-page .a1 {
  margin-left: 28px;
  margin-right: 11px;
}

.m-page .s1 {
  display: inline-block;
  background: #fff;
  text-align: center;
  border-radius: 3px;
  border: 1px solid #d2d2d2;
}

.m-page .s1.cur,
.m-page .s1:hover {
  color: #fff;
  border-color: #dc252c;
  background: #dc252c;
}

.m-page .s2 {
  width: 60px;
  margin-right: 6px;
  margin-left: 10px;
}

.m-page .s3 {
  width: 23px;
  margin-left: 7px;
}

.m-page .s4 {
  margin-left: 12px;
  margin-right: 18px;
}

.m-page .ipt {
  width: 17px;
  height: 14px;
  padding: 3px;
  margin: 0 5px;
  line-height: 14px;
  font-size: 12px;
  background: #fff;
  vertical-align: middle;
  border-radius: 2px;
}

.m-page .btn {
  width: 45px;
  height: 23px;
  margin-left: 18px;
  line-height: 23px;
  color: #fff;
  background: #dc252c;
  text-align: center;
  vertical-align: top;
  border-radius: 3px;
  cursor: pointer;
}

.BreadcrumbNav {
  font-size: 14px;
  color: #666;
  padding-left: 15px;
  padding-top: 20px;
}

.BreadcrumbNav a {
  color: #666;
}

/*列表页*/
.list_l {
  width: 248px;
}

.list_lt {
  background: #d52429;
  min-height: 70px;
  line-height: 70px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  padding-left: 35px;
}

.list_nav li {
  background: url(../images/public/i110.png) no-repeat 205px center;
  min-height: 50px;
  line-height: 50px;
  font-size: 16px;
  border-bottom: 1px dashed #ccc;
}

.list_nav li.active {
  background: url(../images/public/i109.png) no-repeat 205px center;
}

.list_nav li.active a {
  color: #c02a2e;
}

.list_r {
  padding-left: 40px;
  width: 860px;
  border-left: 1px solid #ccc;
  margin-left: 15px;
}

.coloumtitle {
  font-size: 22px;
  height: 43px;
  font-weight: bold;
}

.list_rtit {
  color: #bc2b2f;
  background: url(../images/public/i111.png) repeat-x bottom;
}

.list_rtit span {
  background: url(../images/public/i112.png) repeat-x bottom;
  display: inline-block;
  height: 43px;
}

.list_r_con {
  margin-top: 20px;
}

.list_r_con li {
  line-height: 35px;
  font-size: 16px;
}

.list_r_con li a {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 80%;
  width: calc(100% - 55px);
}

.list_r_con li span {
  float: right;
  color: #919496;
}

.line {
  border-bottom: 1px dashed #ccc;
  margin-bottom: 10px;
}

/* .list_r_con .more{ height: 35px;} */
.list_r_con .more a {
  width: 80px;
  height: 35px;
  line-height: 35px;
  margin: 15px auto;
  background: #bc2b2f;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  display: block;
  color: #fff;
}

.dhwz {
  width: 200px;
  display: block;
  line-height: 25px;
  padding: 10px 0;
}


.m-show {
  display: none;
}

/****************************************公共部分****************************************/
.kt-content {
  background: rgba(255, 255, 255, 0.94);
}

/****************************************页面公用部分****************************************/
.kt-container {
  width: 1200px;
  margin: 0 auto;
}

.kt-wrap {
  position: relative;
  min-width: 1432px;
  min-height: 680px;
  overflow: hidden;
}

/****************************************细览****************************************/
.kt-xl-main {
  padding: 40px;
  /* margin-bottom: 215px; */
}

.kt-xl-sec1 {
  padding-top: 35px;
  margin-top: 23px;
  border-top: 1px solid #e3e3e3;
}

.kt-xl-sec1 .title {
  text-align: center;
  color: #333;
  font-size: 30px;
  padding-bottom: 10px;
}

.kt-xl-sec1 .fz {
  margin-left: 8px;
}

.kt-xl-sec1 .xl-tips {
  font-size: 13px;
  color: #666;
  text-align: center;
  line-height: 23px;
  padding: 0 110px;
}

.kt-xl-sec1 .xl-tips .s {
  margin-left: 16px;
  cursor: pointer;
}

.kt-xl-sec1 .xl-tips .s1 {
  margin-left: 10px;
}

.kt-xl-sec1 .xl-tips .s3 {
  margin-right: 5px;
}

.kt-xl-sec1 .ct1 {
  /*max-height: 420px;*/
  margin-top: 32px;
  padding-top: 26px;
  padding-bottom: 20px;
  border-top: 1px dashed #aaa;
  /*overflow: auto;*/
}

.kt-xl-sec1 .ct1 p {
  text-indent: 2em;
  line-height: 25px;
  font-size: 16px;
  color: #333;
}

.kt-xl-sec1 .ct2 {
  margin-top: 45px;
}

.kt-xl-sec1 .ct2 p {
  box-sizing: border-box;
  width: 48%;
  line-height: 23px;
  font-size: 13px;
  color: #333;
  text-decoration: underline;
}

.kt-xl-sec1 .ct2 p:hover a {
  color: #ed3e45;
}

.kt-xl-sec1 .ct2 .p1 {
  padding-right: 62px;
}

.kt-xl-sec1 .ct2 .p2 {
  text-align: right;
  padding-left: 30px;
  padding-right: 33px;
}

.kt-xl-sec1 .ct1 p {
  text-indent: 0em;
}

.kt-xl-sec1 .ct1 {
  /*max-height: 3000px;*/
}