﻿/*===========================
    1. COMMON css 
===========================*/

@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Roboto:wght@300;400;500;700;900&display=swap");
body {
    font-family: "宋体", sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #333;
    overflow-x: hidden;
    /* -webkit-filter:grayscale(100%);
    -moz-filter:grayscale(100%);
    -ms-filter:grayscale(100%);
    -o-filter:grayscale(100%);
    filter:grayscale(100%);
    filter:gray; */
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/*
img {
  max-width: 100%; }
*/

a {
    color: #333
}

a:focus,
input:focus,
textarea:focus,
button:focus {
    text-decoration: none;
    outline: none;
}

a:focus,
a:hover {
    text-decoration: none;
    color: #b50108
}

i,
span,
a {
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "宋体", sans-serif, "Abril Fatface", cursive;
    font-weight: 400;
    color: #990000;
    margin: 0px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

ul,
ol {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #333;
    margin: 0px;
}

.bg_cover {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.slick-slide {
    outline: 0;
}


/*===== All Button Style =====*/


/*.main-btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 0px;
  padding: 0 50px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 74px;
  border-radius: 0px;
  color: #1b1f2e;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background-color: #29f0b4;
  position: relative; }
  .main-btn::before {
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    height: 17px;
    width: 17px;
    background: #1b1f2e;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    z-index: -1; }
  .main-btn:hover {
    background-color: #1b1f2e;
    color: #fff; }
    .main-btn:hover::before {
      width: 100%;
      height: 100%; }
  .main-btn.main-btn-2 {
    background-color: #1b1f2e;
    color: #fff; }
    .main-btn.main-btn-2::before {
      background: #fff; }
    .main-btn.main-btn-2:hover {
      background-color: #fff;
      color: #1b1f2e; }

.section-title {
  padding-bottom: 32px; }
  .section-title span {
    font-size: 18px;
    color: #674df0;
    text-transform: capitalize;
    padding-left: 16px;
    position: relative; }
    .section-title span::before {
      position: absolute;
      content: '';
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      height: 6px;
      width: 6px;
      background: #29f0b4; }
  .section-title .title {
    font-size: 60px;
    font-weight: 400;
    padding-top: 6px; }
    @media only screen and (min-width: 992px) and (max-width: 1400px) {
      .section-title .title {
        font-size: 50px; } }
    @media (max-width: 767px) {
      .section-title .title {
        font-size: 28px; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .section-title .title {
        font-size: 40px; } }
  .section-title.section-title-2 span {
    color: #fff; }
  .section-title.section-title-2 .title {
    color: #fff; }
*/


/*===========================
    2.HEADER css 
===========================*/

.header-area {
    background: url(../images/indexYmBg01.jpg) center center no-repeat;
    /*background:#a40007;*/
    background-size: cover;
    height: 160px;
}

.header-area .header-top {
    height: 50px;
    /*border-bottom: 1px solid #e9e9ee;*/
}

@media (max-width: 767px) {
    .header-area .header-top {
        display: none;
    }
}

.header-area .header-top .header-info ul li {
    display: inline-block;
    padding: 0 10px
}

.header-area .header-top .header-info ul li a {
    color: #fff;
}

.header-area .header-top .header-info ul li a i {
    padding-right: 6px;
    color: #674df0;
}

.header-area .header-top .social ul li {
    display: inline-block;
}

.header-area .header-top .social ul li a {
    color: #838694;
    margin-left: 26px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.header-area .header-top .social ul li a:hover {
    color: #674df0;
}


/*
.header-area.header-2-area .main-header {
  top: 0px;
  background: transparent;
  padding: 0; }
  .header-area.header-2-area .main-header.sticky {
    top: 0;
    background: #1b1f2e; }
  .header-area.header-2-area .main-header::before {
    display: none; }
  .header-area.header-2-area .main-header .main-header-item {
    padding: 0 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
    @media only screen and (min-width: 1400px) and (max-width: 1600px) {
      .header-area.header-2-area .main-header .main-header-item {
        padding: 0px 15px; } }
    @media only screen and (min-width: 992px) and (max-width: 1400px) {
      .header-area.header-2-area .main-header .main-header-item {
        padding: 0px 15px; } }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .header-area.header-2-area .main-header .main-header-item {
        padding: 30px 15px; } }
    @media (max-width: 767px) {
      .header-area.header-2-area .main-header .main-header-item {
        padding: 30px 10px; } }
    .header-area.header-2-area .main-header .main-header-item .header-info .info::before {
      background: rgba(255, 255, 255, 0.15); }
      @media only screen and (min-width: 1400px) and (max-width: 1600px) {
        .header-area.header-2-area .main-header .main-header-item .header-info .info::before {
          left: -20px; } }
      @media only screen and (min-width: 992px) and (max-width: 1400px) {
        .header-area.header-2-area .main-header .main-header-item .header-info .info::before {
          left: -15px; } }
      @media (max-width: 767px) {
        .header-area.header-2-area .main-header .main-header-item .header-info .info::before {
          height: 110px;
          display: none; } }
      @media only screen and (min-width: 576px) and (max-width: 767px) {
        .header-area.header-2-area .main-header .main-header-item .header-info .info::before {
          height: 110px;
          display: block; } }
    .header-area.header-2-area .main-header .main-header-item .header-info .info .title {
      color: #fff; }
    .header-area.header-2-area .main-header .main-header-item .header-info .info span {
      color: #fff; }
	 .header-area .header-top .social a {
		 float: right;
		 background: url(../images/icon_search01.png) center center no-repeat #a40007;
		 height: 28px;
		 width: 28px;
	 }
    .header-area.header-2-area .main-header .main-header-item .header-info .social {
      margin-right: 102px;
      position: relative; }
      @media only screen and (min-width: 1400px) and (max-width: 1600px) {
        .header-area.header-2-area .main-header .main-header-item .header-info .social {
          display: block;
          margin-right: 50px; } }
      @media only screen and (min-width: 992px) and (max-width: 1400px) {
        .header-area.header-2-area .main-header .main-header-item .header-info .social {
          display: none; } }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .header-area.header-2-area .main-header .main-header-item .header-info .social {
          display: none; } }
      @media (max-width: 767px) {
        .header-area.header-2-area .main-header .main-header-item .header-info .social {
          display: none; } }
      .header-area.header-2-area .main-header .main-header-item .header-info .social::before {
        position: absolute;
        content: '';
        right: -52px;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 110px;
        background: rgba(255, 255, 255, 0.15); }
        @media only screen and (min-width: 1400px) and (max-width: 1600px) {
          .header-area.header-2-area .main-header .main-header-item .header-info .social::before {
            right: -13px; } }
        @media (max-width: 767px) {
          .header-area.header-2-area .main-header .main-header-item .header-info .social::before {
            width: 0;
            left: -30px; } }
        @media only screen and (min-width: 576px) and (max-width: 767px) {
          .header-area.header-2-area .main-header .main-header-item .header-info .social::before {
            height: 78px;
            width: 1px; } }
      .header-area.header-2-area .main-header .main-header-item .header-info .social ul li {
        display: inline-block; }
        .header-area.header-2-area .main-header .main-header-item .header-info .social ul li a {
          color: #fff;
          margin-right: 26px;
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -ms-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
          transition: all 0.3s ease-out 0s; }
          .header-area.header-2-area .main-header .main-header-item .header-info .social ul li a:hover {
            color: #674df0; }
    .header-area.header-2-area .main-header .main-header-item .main-header-menus .header-logo {
      position: relative; }
      .header-area.header-2-area .main-header .main-header-item .main-header-menus .header-logo::before {
        position: absolute;
        content: '';
        right: -80px;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 110px;
        background: rgba(255, 255, 255, 0.15); }
        @media only screen and (min-width: 992px) and (max-width: 1400px) {
          .header-area.header-2-area .main-header .main-header-item .main-header-menus .header-logo::before {
            right: -50px; } }
        @media only screen and (min-width: 768px) and (max-width: 991px) {
          .header-area.header-2-area .main-header .main-header-item .main-header-menus .header-logo::before {
            display: none; } }
        @media (max-width: 767px) {
          .header-area.header-2-area .main-header .main-header-item .main-header-menus .header-logo::before {
            display: none; } }
    @media only screen and (min-width: 1400px) and (max-width: 1600px) {
      .header-area.header-2-area .main-header .main-header-item .main-header-menus .header-info .search {
        padding-right: 50px; } }
    @media only screen and (min-width: 992px) and (max-width: 1400px) {
      .header-area.header-2-area .main-header .main-header-item .main-header-menus .header-info .search {
        padding-right: 50px; } }
    .header-area.header-2-area .main-header .main-header-item .main-header-menus .header-info .search a {
      color: #fff; }
    .header-area.header-2-area .main-header .main-header-item .main-header-menus .header-info .toggle-btn i {
      color: #fff; }
    .header-area.header-2-area .main-header .main-header-item .main-header-menus .header-menu ul li > a {
      color: #fff; }
      @media only screen and (min-width: 1400px) and (max-width: 1600px) {
        .header-area.header-2-area .main-header .main-header-item .main-header-menus .header-menu ul li > a {
          margin: 0 10px; } }
      @media only screen and (min-width: 992px) and (max-width: 1400px) {
        .header-area.header-2-area .main-header .main-header-item .main-header-menus .header-menu ul li > a {
          margin: 0 25px 0 0; } }
      .header-area.header-2-area .main-header .main-header-item .main-header-menus .header-menu ul li > a.active {
        color: #29f0b4; }
    .header-area.header-2-area .main-header .main-header-item .main-header-menus .header-menu ul li:hover > a {
      color: #29f0b4; }
    .header-area.header-2-area .main-header .main-header-item .main-header-menus .header-menu ul li .sub-menu > li a {
      color: #1b1f2e;
      margin: 0; }
.header-area.header-3-area {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 99; }
  .header-area.header-3-area .header-top {
    background: #674df0;
    padding: 0 40px;
    border-bottom: 0; }
    .header-area.header-3-area .header-top .header-info ul li a {
      color: #fff; }
      .header-area.header-3-area .header-top .header-info ul li a i {
        color: #29f0b4; }
    .header-area.header-3-area .header-top .social ul li a {
      color: #fff; }
  .header-area.header-3-area .main-header {
    background-color: transparent;
    padding: 0; }
    .header-area.header-3-area .main-header.sticky {
      background: #fff; }
    .header-area.header-3-area .main-header .main-header-item {
      background: #fff;
      padding: 0 40px; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .header-area.header-3-area .main-header .main-header-item {
          padding: 31px 20px; } }
      @media (max-width: 767px) {
        .header-area.header-3-area .main-header .main-header-item {
          padding: 31px 20px; } }
      .header-area.header-3-area .main-header .main-header-item .header-menu ul li > a {
        margin: 0 20px; }
        @media only screen and (min-width: 992px) and (max-width: 1400px) {
          .header-area.header-3-area .main-header .main-header-item .header-menu ul li > a {
            margin: 0 6px; } }
      .header-area.header-3-area .main-header .main-header-item .header-menu ul li .sub-menu > li a {
        margin: 0; }
*/

.main-header {
    background: url(../images/indexYmBg03.jpg) center center no-repeat;
    position: absolute;
    left: 0;
    /* top: 50px; */
    right: 0;
    z-index: 999;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-header {
        padding: 31px 0;
    }
}

@media (max-width: 767px) {
    .main-header {
        top: 0;
        padding: 15px 10px;
    }
    .header-area {
        height: 80px;
    }
}

.main-header .main-header-item .header-btn a {
    background: #29f0b4;
    line-height: 70px;
    padding: 0 60px 0 85px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    border-right: 10px solid #fff;
    white-space: nowrap;
    z-index: 5;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1400px) {
    .main-header .main-header-item .header-btn a {
        padding: 0 30px 0 55px;
    }
}

@media (max-width: 767px) {
    .main-header .main-header-item .header-btn a {
        padding: 0 20px;
    }
}

.main-header .main-header-item .header-btn a::before {
    position: absolute;
    content: '';
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    width: 15px;
    background: #fff;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1400px) {
    .main-header .main-header-item .header-btn a::before {
        left: 30px;
    }
}

@media (max-width: 767px) {
    .main-header .main-header-item .header-btn a::before {
        display: none;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .main-header .main-header-item .header-btn a::before {
        display: block;
    }
}

.main-header .main-header-item .header-btn a:hover {
    color: #fff;
    background: #192437;
}

.main-header .main-header-item .header-btn a:hover::before {
    background: #fff;
}

.main-header .main-header-item .header-menu ul {
    padding: 0 0px 0 30px;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .main-header .main-header-item .header-menu ul {
        padding: 0 0 0 37px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1400px) {
    .main-header .main-header-item .header-menu ul {
        padding: 0 15px;
    }
}

.main-header .main-header-item .header-menu ul li {
    display: inline-block;
    position: relative;
    padding: 0 15px
}

.main-header .main-header-item .header-menu ul li>a {
    line-height: 110px;
    font-size: 16px;
    color: #f7d9d9;
    text-transform: capitalize;
    font-weight: 400;
    /*margin: 0  31px;*/
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1400px) {
    .main-header .main-header-item .header-menu ul li>a {
        margin: 0 15px;
    }
}

.main-header .main-header-item .header-menu ul li>a.active {
    color: #fff;
    font-weight: 500;
}

.main-header .main-header-item .header-menu ul li .sub-menu {
    position: absolute;
    left: 30px;
    top: 110%;
    width: 450px;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    z-index: 99;
    -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
    border-top: 4px solid red;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .main-header .main-header-item .header-menu ul li .sub-menu {
        left: 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1400px) {
    .main-header .main-header-item .header-menu ul li .sub-menu {
        left: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-header .main-header-item .header-menu ul li .sub-menu {
        position: relative !important;
        width: 100% !important;
        left: 0 !important;
        top: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
        right: auto;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-transition: all 0s ease-out 0s;
        -moz-transition: all 0s ease-out 0s;
        -ms-transition: all 0s ease-out 0s;
        -o-transition: all 0s ease-out 0s;
        transition: all 0s ease-out 0s;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        text-align: left;
        border-top: 0;
    }
}

@media (max-width: 767px) {
    .main-header .main-header-item .header-menu ul li .sub-menu {
        position: relative !important;
        width: 100% !important;
        left: 0 !important;
        top: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
        right: auto;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-transition: all 0s ease-out 0s;
        -moz-transition: all 0s ease-out 0s;
        -ms-transition: all 0s ease-out 0s;
        -o-transition: all 0s ease-out 0s;
        transition: all 0s ease-out 0s;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        text-align: left;
        border-top: 0;
    }
}

.main-header .main-header-item .header-menu ul li .sub-menu>li {
    position: relative;
    display: block;
}

.main-header .main-header-item .header-menu ul li .sub-menu>li a {
    display: block;
    padding: 10px 24px;
    margin: 0;
    position: relative;
    color: #222;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border-radius: 0;
    margin: 0 0;
    line-height: 30px;
    /*border-top: 1px solid red; */
}

.main-header .main-header-item .header-menu ul li .sub-menu>li a::before {
    display: none;
}

.main-header .main-header-item .header-menu ul li .sub-menu>li a i {
    float: right;
    font-size: 14px;
    margin-top: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-header .main-header-item .header-menu ul li .sub-menu>li a i {
        display: none;
    }
}

@media (max-width: 767px) {
    .main-header .main-header-item .header-menu ul li .sub-menu>li a i {
        display: none;
    }
}

.main-header .main-header-item .header-menu ul li .sub-menu>li .sub-menu {
    right: auto;
    left: 100%;
    top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-header .main-header-item .header-menu ul li .sub-menu>li .sub-menu {
        padding-left: 30px;
    }
}

@media (max-width: 767px) {
    .main-header .main-header-item .header-menu ul li .sub-menu>li .sub-menu {
        padding-left: 30px;
    }
}

.main-header .main-header-item .header-menu ul li .sub-menu>li .sub-menu li:hover .sub-menu {
    top: 0 !important;
}

.main-header .main-header-item .header-menu ul li .sub-menu>li:hover .sub-menu {
    top: 0%;
    opacity: 1;
    visibility: visible;
}

.main-header .main-header-item .header-menu ul li .sub-menu .sub-menu-3>li:hover>a {
    /*background-color: #1b1f2e;*/
    color: red !important;
}

.main-header .main-header-item .header-menu ul li:hover>a {
    color: #fff;
    font-weight: 500;
}

.main-header .main-header-item .header-menu ul li:hover>a::before {
    opacity: 1;
}

.main-header .main-header-item .header-menu ul li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.main-header .main-header-item .header-menu ul li:last-child a {
    margin-right: 0 !important;
}

.main-header .main-header-item .header-info {
    position: relative;
}

.main-header .main-header-item .header-info .search {
    padding-right: 100px;
}

@media only screen and (min-width: 992px) and (max-width: 1400px) {
    .main-header .main-header-item .header-info .search {
        padding-right: 70px;
    }
}

@media (max-width: 767px) {
    .main-header .main-header-item .header-info .search {
        padding-right: 50px;
    }
}

.main-header .main-header-item .header-info .search a {
    color: #838694;
}

.main-header .main-header-item .header-info .info {
    padding-left: 62px;
    position: relative;
}

.main-header .main-header-item .header-info .info::before {
    position: absolute;
    content: '';
    left: -52px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 110px;
    background: #e9e9ee;
}

@media (max-width: 767px) {
    .main-header .main-header-item .header-info .info::before {
        width: 0;
        left: -30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .main-header .main-header-item .header-info .info::before {
        height: 78px;
        width: 1px;
    }
}

.main-header .main-header-item .header-info .info span {
    font-size: 14px;
    color: #838694;
}

.main-header .main-header-item .header-info .info .title {
    font-size: 20px;
    font-family: "Roboto", sans-serif;
}

.main-header .main-header-item .header-info .info img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.main-header .main-header-item .header-info .toggle-btn {
    font-size: 24px;
    color: #fff;
    display: none;
    cursor: pointer;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-header .main-header-item .header-info .toggle-btn {
        display: block;
    }
}

@media (max-width: 767px) {
    .main-header .main-header-item .header-info .toggle-btn {
        display: block;
    }
}


/*	  
  .main-header.sticky {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 999;
    animation: sticky  1.2s;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.04); }
    .main-header.sticky .main-header-item .header-logo {
      margin-top: 0; }
@-webkit-keyframes sticky {
  0% {
    top: -200px; }
  100% {
    top: 0; } }
@keyframes sticky {
  0% {
    top: -200px; }
  100% {
    top: 0; } }
	*/

.off_canvars_overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    cursor: crosshair;
    background: #232323;
    top: 0;
}

.off_canvars_overlay.active {
    opacity: .5;
    visibility: visible;
}

.offcanvas_menu {
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .offcanvas_menu {
        display: block;
    }
}

@media (max-width: 767px) {
    .offcanvas_menu {
        display: block;
    }
}

.offcanvas_menu_wrapper {
    width: 290px;
    position: fixed;
    background: #fff;
    z-index: 9999;
    top: 0;
    height: 100vh;
    transition: .5s;
    left: 0;
    margin-left: -300px;
    padding: 50px 15px 30px;
    overflow-y: auto;
}

.offcanvas_menu_wrapper.active {
    margin-left: 0;
}

.offcanvas_menu_wrapper .slinky-theme-default {
    background: inherit;
    min-height: 300px;
    overflow-y: auto;
}

.offcanvas_menu_wrapper .header-btn {
    margin-bottom: 30px;
}

.offcanvas_menu_wrapper .header-btn a {
    color: #222;
}

.offcanvas_menu_wrapper .header-btn a:hover {
    color: #222;
}

.offcanvas_main_menu li {
    position: relative;
}

.offcanvas_main_menu li:last-child {
    margin: 0;
}

.offcanvas_main_menu li span.menu-expand {
    position: absolute;
    right: 0;
}

.offcanvas_main_menu li a {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    display: block;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ededed;
    color: #222;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.offcanvas_main_menu li a:hover {
    color: #BA2F2C;
}

.offcanvas_main_menu li ul.sub-menu {
    padding-left: 20px;
}

.offcanvas_footer {
    margin-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}

.offcanvas_footer span a {
    font-size: 14px;
    color: #222;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.offcanvas_footer span a:hover {
    color: #29f0b4;
}

.canvas_close {
    position: absolute;
    top: 10px;
    right: 13px;
}

.canvas_close a {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    width: 32px;
    height: 32px;
    display: block;
    text-align: center;
    line-height: 30px;
    border: 1px solid #ededed;
    border-radius: 50%;
    color: #222;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.canvas_close a:hover {
    background: #eee;
    border-color: #eee;
    color: #fff;
}

.canvas_open a {
    font-size: 26px;
    width: 50px;
    height: 42px;
    display: block;
    line-height: 39px;
    text-align: center;
    border: 1px solid #232323;
    color: #222;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.canvas_open a:hover {
    color: #29f0b4;
    border-color: #29f0b4;
}

.offcanvas-social {
    margin-bottom: 40px;
}

.offcanvas-social ul li {
    display: inline-block;
}

.offcanvas-social ul li a {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    color: #BA2F2C;
    border: 1px solid #eaeaea;
    border-radius: 50%;
    margin: 0 5px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.offcanvas-social ul li a:hover {
    background: #29f0b4;
    border-color: #29f0b4;
    color: #fff;
}

.navigation {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.header-logo {
    width: 380px;
}

.header-top .social input {
    border-radius: 20px;
    border: none;
    outline: none;
    font-size: 14px;
    padding: 5px 10px;
}


/*===========================
    3.HEADER css 
===========================*/


/*
.page-title-area {
  margin-top: 110px; }
  @media (max-width: 767px) {
    .page-title-area {
      margin-top: 16px; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .page-title-area {
      margin-top: 28px; } }
  .page-title-area .page-title-content {
    height: 330px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media (max-width: 767px) {
      .page-title-area .page-title-content {
        display: block;
        padding-top: 90px; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .page-title-area .page-title-content {
        display: flex;
        padding-top: 0; } }
    .page-title-area .page-title-content::before {
      position: absolute;
      content: '';
      left: 0;
      bottom: 0;
      height: 37px;
      width: 37px;
      background: #29f0b4; }
    .page-title-area .page-title-content .title {
      font-size: 60px;
      color: #fff; }
      @media (max-width: 767px) {
        .page-title-area .page-title-content .title {
          padding-bottom: 20px;
          font-size: 40px; } }
      @media only screen and (min-width: 576px) and (max-width: 767px) {
        .page-title-area .page-title-content .title {
          padding-bottom: 0px;
          font-size: 40px; } }
    .page-title-area .page-title-content nav {
      display: inline-block; }
      .page-title-area .page-title-content nav ol {
        background-color: transparent;
        padding: 0;
        margin: 0; }
        .page-title-area .page-title-content nav ol li {
          font-size: 18px;
          font-weight: 500;
          color: #fff; }
          .page-title-area .page-title-content nav ol li a {
            color: #fff;
            padding: 0; }

.breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
  content: "."; }
  */


/*===========================
    轮播大图 
===========================*/

.slideBox {
    width: 1400px;
    height: 510px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    background: #eeeeee;
}

.slideBox .hd {
    height: 15px;
    overflow: hidden;
    position: absolute;
    right: 10px;
    bottom: 18px;
    z-index: 1;
}

.slideBox .hd ul {
    overflow: hidden;
    zoom: 1;
    float: left;
}

.slideBox .hd ul li {
    float: left;
    margin-right: 10px;
    width: 12px;
    height: 12px;
    line-height: 14px;
    text-align: center;
    background: #fff;
    cursor: pointer;
    border-radius: 20px;
}

.slideBox .hd ul li.on {
    background: #ba2f2c;
    color: #fff;
}

.slideBox .bd {
    /*position:relative;*/
    z-index: 0;
    height: 510px;
    overflow: hidden;
}

.slideBox .bd li {
    zoom: 1;
    vertical-align: middle;
}

.slideBox .bd img {
    display: block;
    object-fit: fill;
    width: 100%;
}

.slideBox .bd div {
    position: absolute;
    color: #ba2f2c;
    font-size: 15px;
}

#slideBox .bd li a {
    position: relative;
    display: block;
}

#slideBox .bd li a div {
    position: absolute;
    bottom: 0px;
    left: 0;
    color: #fff;
    width: 1400px;
    padding: 20px;
    background: url(../images/banner-bg.png);
}


/*===========================
    校（院）头条一栏 
===========================*/

.headline {
    color: #fff;
    margin: auto;
    height: 95px;
    width: 1400px;
    background: url(../images/headlineBg01.jpg);
}

.headlineTitle {
    width: 15%;
    height: 42px;
    text-align: center;
    line-height: 40px;
    background: url(../images/headlineTitleBd.png) no-repeat;
    background-position: center;
    display: block;
    float: left;
    margin: 22px 80px 18px 80px;
}

.headlineList {
    width: 60%;
    float: left;
    margin-top: 17px;
}

.headlineList ul li {
    padding-left: 29px;
    background: url(../images/headlineListBg.jpg) no-repeat 3px center;
    line-height: 30px;
    height: 30px;
}

.headlineList ul li a {
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.headlineMore {
    float: right;
    display: block;
    margin: 48px 40px 0 0;
}

.headlineMore a {
    color: #ffb800;
    font-size: 14px;
}


/*===========================
    校院新闻一栏 
===========================*/

.indexXW {
    width: 1400px;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: auto;
    margin-top: 20px;
    background: url(../images/bg_xyxw02.png);
}


/*
.indexXWTitle {
	height: 46px;
    line-height: 46px;
    border-bottom: 1px solid #c3bebd;
}
.indexXWTitle span{
	color: #b80e15 !important;
	font-size: 20px;
    display: block;
    float: left;
    height: 45px;
    position: relative;
    top: 1px;
    z-index: 10;
    line-height: 38px;
    border-bottom: 1px solid #c96f73;
}
.indexXWTitle a{
	float: right;
    color: #a5a5a5;
    font-size: 12px;
}*/

.indexXW1 {
    width: 31%;
    text-align: left;
    margin-right: 48px;
}

.indexXW1 .hd {
    height: 30px;
    line-height: 30px;
    padding: 0 20px;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.indexXW1 .hd ul {
    float: left;
    position: absolute;
    left: 20px;
    top: -1px;
    height: 32px;
}

.indexXW1 .hd ul li {
    float: left;
    padding: 0 15px;
    cursor: pointer;
}

.indexXW1 .hd ul li.on {
    color: #cf000a;
    font-size: 20px;
    height: 30px;
    background: #fff;
    border-bottom: 2px solid red;
}

.indexXW1 .hd a {
    float: right;
    color: #a5a5a5;
    font-size: 12px;
}

.indexXW1 .bd ul {
    padding: 15px;
    zoom: 1;
}

.indexXW1 .bd li {
    height: 78px;
    line-height: 24px;
    padding: 8px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrop;
    /*border-bottom:1px solid #fff;*/
}

.indexXW1 .bd li a {
    color: #333333;
}

.indexXW1 .bd li a:hover {
    color: #b10004;
}

.indexXW1 .bd li .date {
    float: right;
    color: #999;
}

.LsitTime1 {
    color: #b38484;
    font-size: 12px;
    padding-right: 12px;
    float: left;
}


/*===========================
    专题一栏 
===========================*/

.indexZT {
    width: 1400px;
    text-align: center;
    display: flex;
    flex-direction: row;
    /*justify-content:center; */
    margin: auto;
    margin-top: 20px;
}

.indexZT img {
    margin-right: 5px;
}


/*===========================
    习中心等栏目一栏 
===========================*/

.forBG {
    width: 100%;
    background: url(../images/indexXZXBG03.png) no-repeat;
    background-size: 100% 100%;
    padding-top: 48px;
}

.indexXZX {
    width: 1400px;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: auto;
    margin-top: 20px;
    background: url(../images/indexBgTm_03.png);
    padding-top: 10px;
}

.indexXZXBox {
    display: flex;
    flex-direction: row;
    /*justify-content:center; */
    /*-ms-flex-wrap: wrap;*/
    flex-wrap: wrap;
}

.indexXZXimg img {
    margin-right: 5px;
}

.indexXZX1 {
    width: 90%;
    text-align: left;
}

.indexXZX1 .hd {
    height: 30px;
    line-height: 30px;
    padding: 0 20px;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.indexXZX1 .hd ul {
    float: left;
    position: absolute;
    left: 20px;
    top: -1px;
    height: 32px;
}

.indexXZX1 .hd ul li {
    float: left;
    padding: 0 15px;
    cursor: pointer;
}

.indexXZX1 .hd ul li {
    color: #cf000a;
    font-size: 20px;
    height: 30px;
    border-bottom: 2px solid red;
}

.indexXZX1 .hd a {
    float: right;
    color: #a5a5a5;
    font-size: 12px;
}

.indexXZX1 .bd ul {
    padding: 15px;
    zoom: 1;
}

.indexXZX1 .bd li {
    height: 56px;
    line-height: 24px;
    padding: 8px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrop;
    /*border-bottom:1px solid #fff;*/
}

.indexXZX1 .bd li a {
    color: #333333;
}

.indexXZX1 .bd li a:hover {
    color: #b10004;
}

.indexXZX1 .bd li .date {
    float: right;
    color: #999;
}


/*===========================
    师资库等链接一栏 
===========================*/

.picScroll-szk {
    width: 1400px;
    margin: auto;
    overflow: hidden;
    position: relative;
    /*border:1px solid #ccc; */
}

.picScroll-szk .hd {
    overflow: hidden;
    height: 30px;
    padding: 0 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.picScroll-szk .hd .prev,
.picScroll-szk .hd .next {
    display: block;
    width: 5px;
    height: 9px;
    float: right;
    margin-right: 5px;
    margin-top: 10px;
    overflow: hidden;
    cursor: pointer;
    background: url("../images/arrow.png") no-repeat;
}

.picScroll-szk .hd .next {
    background-position: 0 -50px;
}

.picScroll-szk .hd .prevStop {
    background-position: -60px 0;
}

.picScroll-szk .hd .nextStop {
    background-position: -60px -50px;
}

.picScroll-szk .hd ul {
    float: right;
    overflow: hidden;
    zoom: 1;
    margin-top: 10px;
    zoom: 1;
}

.picScroll-szk .hd ul li {
    float: left;
    width: 9px;
    height: 9px;
    overflow: hidden;
    margin-right: 5px;
    text-indent: -999px;
    cursor: pointer;
    background: url("../images/icoCircle.gif") 0 -9px no-repeat;
}

.picScroll-szk .hd ul li.on {
    background-position: 0 0;
}

.picScroll-szk .bd {
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.picScroll-szk .bd ul {
    overflow: hidden;
    zoom: 1;
}

.picScroll-szk .bd ul li {
    margin: 0 8px;
    float: left;
    _display: inline;
    overflow: hidden;
    text-align: center;
}

.picScroll-szk .bd ul li .pic {
    text-align: center;
}

.picScroll-szk .bd ul li .pic img {
    height: 100%;
    display: block;
    padding: 2px;
    /*border:1px solid #ccc;*/
}

.picScroll-szk .bd ul li .pic a:hover img {
    border-color: #999;
}

.prev img:hover {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.next img:hover {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}


/*
		.picScroll-left .bd .prev,.picScroll-left .bd .next{ display:block;  width:5px; height:9px; float:right; margin-right:5px; margin-top:10px;  overflow:hidden;
			 cursor:pointer; background:url("../images/icoLeft1.png") no-repeat;}
		.picScroll-left .bd .next{ background-position:0 -50px;  }
		.picScroll-left .bd .prevStop{ background-position:-60px 0; }

*/


/*===========================
    学员天地等栏目一栏 
===========================*/

.indexXYTD {
    width: 1400px;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: auto;
    margin-top: 20px;
    /*background:url(../images/bg_xyxw.png);*/
}

.indexXYTD1 {
    width: 35%;
    text-align: left;
    margin-right: 48px;
}

.indexXYTD1 .hd {
    height: 30px;
    line-height: 30px;
    padding: 0 20px;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.indexXYTD1 .hd ul {
    float: left;
    position: absolute;
    left: 20px;
    top: -1px;
    height: 32px;
}

.indexXYTD1 .hd ul li {
    float: left;
    padding: 0 15px;
    cursor: pointer;
}

.indexXYTD1 .hd ul li {
    color: #cf000a;
    font-size: 20px;
    height: 30px;
    background: #fff;
    border-bottom: 2px solid red;
}

.indexXYTD1 .hd a {
    float: right;
    color: #a5a5a5;
    font-size: 12px;
}

.indexXYTD1 .bd ul {
    padding: 15px;
    zoom: 1;
}

.indexXYTD1 .bd li {
    height: 48px;
    line-height: 24px;
    padding: 8px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrop;
    /*border-bottom:1px solid #fff;*/
}

.indexXYTD1 .bd li a {
    color: #333333;
}

.indexXYTD1 .bd li a:hover {
    color: #b10004;
}

.indexXYTD1 .bd li .date {
    float: right;
    color: #999;
}

.indexXYTD2 {
    width: 33%;
    text-align: left;
    margin-right: 48px;
}

.indexXYTD2 .hd {
    height: 30px;
    line-height: 30px;
    padding: 0 20px;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.indexXYTD2 .hd ul {
    float: left;
    position: absolute;
    left: 20px;
    top: -1px;
    height: 32px;
}

.indexXYTD2 .hd ul li {
    float: left;
    padding: 0 15px;
    cursor: pointer;
}

.indexXYTD2 .hd ul li {
    color: #cf000a;
    font-size: 20px;
    height: 30px;
    background: #fff;
    border-bottom: 2px solid red;
}

.indexXYTD2 .hd a {
    float: right;
    color: #a5a5a5;
    font-size: 12px;
}

.indexXYTD2 .bd ul {
    padding: 15px;
    zoom: 1;
}

.indexXYTD2 .bd li {
    height: 78px;
    line-height: 24px;
    padding: 8px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrop;
    /*border-bottom:1px solid #fff;*/
}

.indexXYTD2 .bd li a {
    color: #333333;
}

.indexXYTD2 .bd li a:hover {
    color: #b10004;
}

.indexXYTD2 .bd li .date {
    float: right;
    color: #999;
}

.indexXYTD3 {
    width: 25%;
    text-align: left;
}

.indexXYTD3 .hd {
    height: 30px;
    line-height: 30px;
    padding: 0 20px;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.indexXYTD3 .hd ul {
    float: left;
    position: absolute;
    left: 20px;
    top: -1px;
    height: 32px;
}

.indexXYTD3 .hd ul li {
    float: left;
    padding: 0 15px;
    cursor: pointer;
}

.indexXYTD3 .hd ul li {
    color: #cf000a;
    font-size: 20px;
    height: 30px;
    border-bottom: 2px solid red;
}

.indexXYTD3 .hd a {
    float: right;
    color: #a5a5a5;
    font-size: 12px;
}


/*===========================
    校院剪影一栏 
===========================*/

.picMarquee-left .hd {
    height: 30px;
    line-height: 30px;
    padding: 0 20px;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.picMarquee-left .hd ul {
    float: left;
    position: absolute;
    left: 20px;
    top: -1px;
    height: 32px;
}

.picMarquee-left .hd ul li {
    float: left;
    padding: 0 15px;
    cursor: pointer;
}

.picMarquee-left .hd ul li {
    color: #cf000a;
    font-size: 20px;
    height: 30px;
    background: #fff;
    border-bottom: 2px solid red;
}

.picMarquee-left {
    margin: auto;
    width: 1400px;
    overflow: hidden;
    position: relative;
}

.picMarquee-left .hd {
    overflow: hidden;
    height: 30px;
    padding: 0 10px;
}

.picMarquee-left .hd .prev,
.picMarquee-left .hd .next {
    display: block;
    width: 5px;
    height: 9px;
    float: right;
    margin-right: 5px;
    margin-top: 10px;
    overflow: hidden;
    cursor: pointer;
    background: url("../images/arrow.png") no-repeat;
}

.picMarquee-left .hd .next {
    background-position: 0 -50px;
}

.picMarquee-left .hd .prevStop {
    background-position: -60px 0;
}

.picMarquee-left .hd .nextStop {
    background-position: -60px -50px;
}

.picMarquee-left .bd {
    padding: 10px;
}

.picMarquee-left .bd ul {
    overflow: hidden;
    zoom: 1;
}

.picMarquee-left .bd ul li {
    margin: 0 8px;
    float: left;
    _display: inline;
    overflow: hidden;
    text-align: center;
}

.picMarquee-left .bd ul li .pic {
    text-align: center;
}

.picMarquee-left .bd ul li .pic img {
    width: 360px;
    height: 240px;
    display: block;
    padding: 2px;
    border: 1px solid #ccc;
}

.picMarquee-left .bd ul li .pic a:hover img {
    border-color: #999;
}

.picMarquee-left .bd ul li .title {
    line-height: 24px;
}


/*===========================
    部门链接一栏 
===========================*/

.indexBMLJ .hd {
    height: 30px;
    line-height: 30px;
    padding: 0 20px;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.indexBMLJ .hd ul {
    float: left;
    position: absolute;
    left: 20px;
    top: -1px;
    height: 32px;
}

.indexBMLJ .hd ul li {
    float: left;
    padding: 0 15px;
    cursor: pointer;
}

.indexBMLJ .hd ul li {
    color: #cf000a;
    font-size: 20px;
    height: 30px;
    background: #fff;
    border-bottom: 2px solid red;
}

.indexBMLJ {
    margin: auto;
    width: 1400px;
    overflow: hidden;
    position: relative;
}

.indexBMLJ .hd {
    overflow: hidden;
    height: 30px;
    padding: 0 10px;
}

.indexBMLJColumn {
    width: 100%;
    display: flex;
    flex-direction: column;
    /*justify-content:center; */
    margin: auto;
    margin-top: 20px;
}

.indexBMLJRow {
    display: flex;
    flex-direction: row;
    /*justify-content:center; */
}

.indexBMLJP4 {
    width: 50%;
}

.indexBMLJP4 a {
    color: #333333;
}

.indexBMLJP4 a:hover {
    color: #b10004;
}

.red {
    color: #b10004;
}


/*===========================
    部门链接一栏 
===========================*/

.footer {
    display: flex;
    flex-direction: row;
    margin-top: 50px;
    height: 369px;
    position: relative;
    width: 100%;
    background: url(../images/bg-footer.jpg) no-repeat center;
}

.footerLogo {
    width: 40%;
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
}

.footerLogo p {
    font-size: 14px;
}

.footerLogo a {
    color: #7B7A77;
}

.footerLogoImg img {
    width: 200px;
    margin-bottom: 20px;
}

.footerTab {
    width: 70%;
    text-align: left;
    margin-top: 40px;
    font-size: 14px;
}

.footerTab .hd {
    height: 30px;
    line-height: 30px;
    padding: 0 20px;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.footerTab .hd ul {
    float: left;
    position: absolute;
    left: 20px;
    top: -1px;
    height: 32px;
}

.footerTab .hd ul li {
    float: left;
    padding: 0 15px;
    cursor: pointer;
    margin-right: 20px;
}

.footerTab .hd ul li.on {
    color: #cf000a;
    font-size: 16px;
    height: 30px;
    border-bottom: 1px solid red;
}

.footerTab .hd a {
    float: right;
    color: #a5a5a5;
    font-size: 12px;
}

.footerTab .bd ul {
    padding: 15px;
    zoom: 1;
}

.footerTab .bd li {
    line-height: 24px;
    padding: 8px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    /*border-bottom:1px solid #fff;*/
    margin-right: 20px;
    display: block;
    display: inline-block;
}

.footerTab .bd li a {
    color: #7B7A77;
}

.footerTab .bd li a:hover {
    color: #b10004;
}

.footerTab .bd li .date {
    float: right;
    color: #999;
}

.forRow li {
    margin-right: 20px;
    display: block;
    display: inline-block;
}


/*===========================
    学术着作 
===========================*/

.slideBox.xszz {
    width: 100%;
    height: 350px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    background: #fff;
}

.slideBox.xszz .hd {
    height: 20px;
    overflow: hidden;
    position: absolute;
    left: 38%;
    bottom: 6px;
    z-index: 1;
    border-bottom: none;
}

.slideBox.xszz .hd ul {
    overflow: hidden;
    zoom: 1;
    float: left;
    padding: 0;
    top: 0;
    left: 0;
}

.slideBox.xszz .hd ul li {
    float: left;
    margin-right: 10px;
    width: 12px;
    height: 12px;
    line-height: 14px;
    text-align: center;
    background: #d2d2d2;
    cursor: pointer;
    border-radius: 20px;
    border-bottom: none;
    padding: 0;
}

.slideBox.xszz .hd ul li.on {
    background: #ba2f2c;
    color: #fff;
}

.slideBox.xszz .bd {
    /*position:relative;*/
    z-index: 0;
    height: 100%;
    overflow: hidden;
}

.slideBox.xszz .bd ul {
    margin: 0;
    padding: 0;
}

.slideBox.xszz .bd li {
    zoom: 1;
    vertical-align: middle;
    height: 100%;
    ;
    overflow: hidden;
}

.slideBox.xszz .bd img {
    width: 60%;
    display: inline;
    margin-top: 15px;
}

.slideBox.xszz .bd div {
    position: absolute;
    color: #ba2f2c;
    font-size: 15px;
}

.slideBox.xszz .bd li a {
    position: relative;
    display: block;
    text-align: center;
    width: 100%;
}

.slideBox.xszz .bd li a div {
    position: relative;
    bottom: 0;
    color: #333;
    width: 100%;
    padding: 20px;
}

.indexXZXBox {
    align-content: center;
}

.indexXZXimg {
    width: 50%;
    text-align: center;
    margin: 2px 0;
}

.indexXZXimg img {
    width: 98%;
    margin-right: 0;
}

.indexXW {
    background-position: bottom right;
    background-repeat: no-repeat;
}

.indexZT div {
    width: 25%;
    text-align: center;
}

.indexZT div img {
    width: 98%;
}

.picScroll-szk .bd li img {
    width: 100%;
}

@media(max-width:992px) { 
    .slideBox {
        width: 100%;
        height: 380px;
        margin-top: 0px;
    }
}


/*===========================
    手机适配追加 
===========================*/

@media (max-width: 767px) {
    .header-logo img {
        width: 80%;
    }
    .slideBox {
        width: 100%;
        height: 200px;
        margin-top: 0px;
    }
    .slideBox .bd img {
        width: 100%;
    }
    #slideBox .bd li a div {
        padding: 5px;
        width: 100%;
    }
    .slideBox .hd {
        bottom: 6px;
    }
    .container {
        padding: 0;
    }
    .indexXW {
        width: 100%;
    }
    .indexZT {
        width: 100%;
    }
    .indexXW {
        flex-direction: column;
    }
    .indexXW1 {
        width: 100%;
    }
    .indexZT img {
        width: 95%;
    }
    .indexXZX {
        width: 100%;
        flex-direction: column;
    }
    .indexXZXBox {
        width: 100%;
        margin-bottom: 10px;
        flex-wrap: unset;
    }
    .indexXZXimg img {
        width: 95%
    }
    .indexXZX1 {
        width: 100%;
    }
    .indexSZKColumn {
        background: none;
    }
    .indexSZKColumn {
        width: 100%;
    }
    .indexSZKRow {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        ustify-content: center;
    }
    .indexXYTD {
        width: 100%;
        flex-direction: column;
    }
    .indexXYTD1,
    .indexXYTD2 {
        width: 100%;
    }
    .indexBMLJ {
        width: 100%;
    }
    .indexBMLJColumn {
        width: 100%;
    }
    .indexBMLJRow {
        flex-direction: column;
    }
    .indexBMLJP4 {
        width: 100%;
    }
    .indexBMLJP4 p {
        padding: 10px;
    }
    .indexBMLJP4 span {
        padding: 10px;
    }
    .footer {
        width: 100%;
        min-width: 100%;
        flex-direction: column;
    }
    .footerLogo {
        width: 100%;
    }
    .footerTab {
        width: 100%;
        text-align: center;
    }
    .footerTab .hd ul li.on {
        font-size: 14px;
    }
    .picScroll-szk {
        width: 100%;
    }
    .picScroll-szk .bd li img {
        width: 100%;
    }
    .picMarquee-left {
        width: 100%;
    }
    .footerTab {
        background-color: #ebe8e3;
    }
    .footerLogo {
        background-color: #ebe8e3;
        margin-top: 0px;
    }
    .footerTab .hd {
        padding: 0;
    }
    .footerTab .hd ul {
        display: flex;
        flex-direction: row;
        left: 0;
    }
    .footerTab .hd ul li {
        margin-right: 5px;
        max-width: 84px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .footerTab .bd {
        margin: auto;
        margin-top: 20px;
    }
    .slideBox.xszz .hd {
        left: 40%;
    }
    .headline {
        width: 100%;
        height: 200px;
    }
    .headlineTitle,
    .headlineList {
        width: 100%;
    }
    .headlineTitle {
        margin: 22px auto;
    }
    .headlineList {
        margin-top: 0;
    }
    .headlineList ul {
        width: 90%;
        margin: 0 auto;
    }
    .headlineList ul li a {
        width: 95%;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        display: block;
        color: #fff;
    }
    .headlineMore {
        margin-top: 10px;
        margin-right: 15px
    }
    .forBG {
        padding-top: 0px;
    }
    .indexZT {
        margin-top: 0;
    }
    .indexXZXBox {
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
    }
    .indexXZXimg {
        width: 50%;
        text-align: center;
        margin: 2px 0;
    }
    .indexXZXimg img {
        width: 98%
    }
    .indexZT {
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
    }
    .indexZT div {
        width: 50%;
        margin: 2px 0;
        text-align: center;
    }
    .indexZT img {
        width: 98%;
        margin: 0;
    }
}

@media(max-width:1400px) {
    .header-logo {
        width: 360px;
    }
    .header-logo img {
        width: 100%;
    }
    .header-area .container {
        width: 100%;
        max-width: 100%;
    }
    .main-header .main-header-item .header-menu ul li {
        padding: 0;
    }
    .main-header .main-header-item .header-menu ul li>a {
        margin: 0 10px;
    }
    .headline {
        width: 100%;
    }
    .slideBox {
        width: 100%;
        margin: 0 auto;
    }
}

@media(max-width:1270px) {
    .header-logo {
        width: 320px;
    }
}

@media(max-width:1230px) {
    .header-logo {
        width: 250px;
    }
}

@media(max-width:1155px) {
    .header-logo {
        width: 200px;
    }
}

@media(max-width:992px) {
    .picScroll-szk .bd ul li {
        width: 50%;
    }  
}

@media (min-width: 992px) {
    .container {
        max-width: 1000px;
    }
}

@media(min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media(min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

.picScroll-szk,
.indexXW,
.indexXZX,
.indexZT,
.indexXYTD,
.picMarquee-left,
.indexBMLJ {
    width: 100%;
}


/*首页更多按钮调整*/

.indexXW1 .bd ul {
    position: relative;
}

.indexXW1 .bd ul a.more {
    position: absolute;
    top: -25px;
    right: 20px;
    color: #a5a5a5;
    font-size: 12px;
}


/*首页火狐适配调整*/

.picScroll-szk {
    width: 100%;
}

.picScroll-szk .bd ul li {
    margin: 0;
    width: 25%;
}

.slideBox.xszz .bd img {
    height: 250px;
    width: auto;
}


/*适配调整*/

.main-header .main-header-item .header-menu ul li .sub-menu>li ul li {
    width: 33%;
    float: left;
}

.main-header .main-header-item .header-menu ul li .sub-menu>li a {
    width: 100%;
    padding: 10px 0;
}

@media only screen and (min-width: 992px) {
    .main-header .main-header-item .header-menu ul li.nav-last .sub-menu {
        left: -300px;
    }
}

.main-header .main-header-item .header-menu ul {
    padding: 0 0 0 37px;
}

.indexXYTD1 .bd li {
    height: 56px;
}


.doc_img{
    text-align: center;
}

.doc_list_title{
    width: 70px;
    /* height: 40px;
    line-height: 40px;  */
    text-align: justify;
}

.doc_personimg{
    width: 220px;
}

