/* CSS Document*/
/* @font-face {
  font-family: 'HWMC';
  src:url('../fonts/huiwenmincho.woff') format('woff');
  font-weight: normal;
  font-style: normal;
} */
* {
  padding: 0px;
  margin: 0px;
  outline: 0 none;
}

a {
  text-decoration: none;
  color: #666;
  transition: all 0.5s ease 0s;
}

a:focus {
  outline: none;
}

a:hover {
  color: #b11116;
  text-decoration: none;
}

::selection {
  background-color: #b11116;
  /* 选中的背景色 */
  color: #fff;
  /* 选中的文本颜色 */
}

ul {
  list-style-type: none;
  margin-bottom: 0px;
}

li {
  vertical-align: bottom;
  zoom: 1;
}

img {
  border: 0px;
}

select {
  font-family: Arial, Helvetica, sans-serif;
  color: #666;
  font-size: 12px;
}

textarea {
  font-family: Arial, Helvetica, sans-serif;
  color: #666;
  font-size: 12px;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0px;
}

th,
td {
  padding: 0;
}

input {
  vertical-align: middle;
  outline: none;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
  overflow: hidden;
}

.clearfix {
  zoom: 1;
}

.clearfix:after {
  clear: both;
}

.hidden {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: inherit;
  margin: 0px;
}

p {
  margin: 0px;
}

em,
i {
  font-style: normal;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
  -webkit-appearance: none;
}

input::-webkit-input-placeholder {
  color: #999;
}

input::-moz-input-placeholder {
  color: #999;
}

input::-ms-input-placeholder {
  color: #999;
}

textarea::-webkit-input-placeholder {
  color: #999;
}

textarea::-moz-input-placeholder {
  color: #999;
}

textarea::-ms-input-placeholder {
  color: #999;
}

.center {
  text-align: center;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: #666;
  font-size: 12px;
  min-width: 1200px;
}

.container {
  margin: 0px auto;
  width: 100%;
  max-width: 1300px;
}

.top {
  height: 90px;
  position: fixed;
  z-index: 999;
  top: 0px;
  width: 100%;
  transition: all 0.5s ease 0s;
  box-sizing: border-box;
  background: #b11116;
}

.top_g {
  height: 90px;
}

.top .container {
  display: flex;
  justify-content: space-between;
}

.top .logo {
  width: 180px;
}

.top .logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.top .logo img {
  height: auto;
  width: 100%;
}

.nav {
  z-index: 10;
  display: flex;
  align-items: center;
  height: 90px;
  position: relative;
  width: calc(100% - 410px);
  padding: 0px 15px;
  box-sizing: border-box;
}

.nav .nLi {
  height: 100%;
  position: relative;
  flex: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav .nLi h3 {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav .nLi h3 a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  line-height: 38px;
  font-size: 16px;
  position: relative;
  color: #fff;
  text-transform: capitalize;

  border-radius: 6px;
}

.top .nav .nLi.on h3 a {
  font-weight: bold;
}


.top .nav .nLi:hover h3 a {
  font-weight: bold;
}

.nav .nLi .sub {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translate(-50%, 0%);
  background: #fff;
  display: none;
  padding-bottom: 10px;
  min-width: 200px;
  overflow: hidden;
}


.nav .nLi:hover .sub {
  display: block;
}

.nav .nLi .sub a {
  display: block;
  text-align: center;
  line-height: 1.2;
  padding: 10px;
  font-size: 14px;
  color: #666;
}

.nav .nLi .sub a:hover {
  color: #b03722;
}

.top .tel {
  color: #fff;
  font-weight: bold;
  font-size: 28px;
  width: 250px;
  height: 90px;
  display: flex;
  align-items: center;
}

.top .tel i {
  color: #b03722;
  margin-right: 6px;
}

.phone_btn {
  float: right;
  display: none;
}

.menu_box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: rgba(0, 0, 0, 0.7);
  transform: translateX(-100%);
  transition: all 0.3s ease;
}

.menu_box.into {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

.menu_cot {
  width: 70%;
  height: 100%;
  background: #fff;
  transform: translateX(-100%);
  transition: all 0.3s ease;
}

.menu_box.into .menu_cot {
  transform: translateX(0);
  transition: all 0.3s 0.2s ease;
}

.menu_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
}

.menu_close img {
  width: 40px;
}

.menu_close a {
  padding: 10px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  box-sizing: border-box;
}

.in_banner {
  height: auto;
}

.in_banner .swiper-slide .bj {
  width: 100%;
  height: auto;
}

.in_banner .swiper-slide .bj img {
  width: 100%;
  height: auto;
}

.in_banner .swiper-slide .bj .pc_img {
  height: 400px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.in_banner .swiper-slide .nr {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0px;
  left: 0px;
}

.in_banner .swiper-slide .video {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
}

.in_banner .swiper-slide .video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.in_banner .swiper-slide .nr .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 80%;
}


.in_banner .swiper-slide .nr .container h3 {
  font-size: 40px;
  color: #fff;
  font-weight: bold;
}


.in_banner .swiper-slide .nr .container p {
  color: #fff;
  font-size: 20px;
  padding: 3% 0px;
}

.in_banner .swiper-slide .nr .container span {
  display: flex;
}

.in_banner .swiper-slide .nr .container span a {
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  background: linear-gradient(rgb(79, 0, 0) 0%, rgb(127, 28, 28) 100%);
  border-radius: 6px;
  padding: 10px 30px;
}

.in_banner .swiper-slide .nr .container span a i {
  margin-left: 8px;
}


.in_banner .swiper-slide .nr .container span a:hover {
  transform: translatey(-5px);
}

.in_banner .swiper-pagination {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  left: auto;
  bottom: 20px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.in_banner .swiper-pagination span {
  width: 15px;
  height: 15px;
  background: #fff;
  opacity: 1;
}

.in_banner .swiper-pagination span.swiper-pagination-bullet-active {
  background: #b03722;
}

.in_big {
  padding: 50px 0px;
  display: flex;
  flex-wrap: wrap;
  margin: 0px -10px;
}

.in_box {
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  padding: 25px;
  width: calc(33.3% - 20px);
  margin: 0px 10px;
  margin-bottom: 20px;
}

.in_box .img {
  height: 140px;
}

.in_box .img a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.in_box .img a img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.in_box .nr {
  height: 190px;
  overflow-x: auto;
}

.in_box .nr h2 {
  font-size: 30px;
  text-align: center;
  padding: 10px 0px;
  color: #333;
}

.in_box .nr p {
  font-size: 16px;
  line-height: 1.25rem;
}

.in_box .more {
  display: block;
  text-align: center;
  padding-top: 15px;
}

.in_box .more a {
  background: linear-gradient(to bottom, #949494 11%, #3d3d3d 100%);
  border: 1px solid #999;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  padding: 6px 30px;
}

.in_box ul {
  height: 190px;
  overflow-x: auto;
}

.in_box ul li {
  display: flex;
  justify-content: space-between;
  margin: 10px 0px;
}

.in_box ul li .time {
  width: 55px;
  background-image: linear-gradient(#fff, #fff 1em, #eaeaea);
  font-size: 14px;
  text-align: center;
  border-radius: 5px;
  overflow: hidden;
}

.in_box ul li .time h2 {
  background: #b11116;
  color: #fff;
}

.in_box ul li .time h3 {
  font-size: 24px;
  font-weight: bold;
}

.in_box ul li .jj {
  width: calc(100% - 65px);
}

.in_box ul li .jj a span {
  background: #b11116;
  color: #Fff;
  border-radius: 15px;
  padding: 2px 10px;
  margin-right: 5px;
}

.in_box ul li .jj a {
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 限制显示的行数为3行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-top: 3px;
  line-height: 2;
}

.di {
  background: #999;
  padding: 20px 0px;
}

.di ul {
  display: flex;
}

.di ul li {
  flex: 1;
  font-size: 14px;
  box-sizing: border-box;
  padding: 0px 10px;
}

.di ul li h2 {
  color: #fff;
  font-size: 16px;
  padding-bottom: 10px;
}

.di ul li a {
  display: block;
  color: #fff;
  padding: 5px 0px;
}

.di1 {
  background: #999;
  text-align: center;
  font-size: 12px;
  color: #fff;
  padding: 10px 0px;
}

.ny_banner {
  height: 230px;
  background-size: cover;
  background-position: center center;
}

.ny_banner .container {
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.ny_banner h2 {
  font-size: 50px;
}

.ny_banner p {
  font-size: 30px;
}

.ny_nr {
  padding: 50px 0px;
  display: flex;
  justify-content: space-between;
}

.ny_nr_l {
  width: calc(100% - 340px);
}

.ny_nr_l .bt {
  font-size: 34px;
  color: #333;
}

.ny_nr_l .bt p{
  font-size: 18px;
  padding-top: 15px;
}

.ny_nr_l .nr {
  padding: 30px 0px;
  line-height: 1.8;
  font-size: 16px;
}

.ny_nr_l .nr p {
  padding-bottom: 15px;
}

.ny_nr_l .nr img,.ny_nr_l .nr video {
  max-width: 100%;
  width: auto;
  height: auto;
}

.ny_nr_l .nr1{
  display: flex;
  justify-content: space-between;
}

.ny_nr_l .nr1 .left{
  width: 200px;
}

.ny_nr_l .nr1 .right{
  width: calc(100% - 250px);
}

.ny_nr_r {
  width: 260px;
}

.ny_nr_r a {
  display: block;
  padding: 15px 0px;
  font-size: 16px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin-top: -1px;
  color: #b11116;
  font-weight: 300;
}

.ny_nr_r a.on {
  font-weight: bold;
}

.accordion .bt {
  font-size: 30px;
  color: #333;
  padding-bottom: 30px;
}

.accordion .bt img {
  width: 60px;
  height: auto;
  margin-right: 10px;
}

.accordion-item {
  margin-bottom: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.accordion-header {
  padding: 12px 16px;
  background: linear-gradient(#d9d9d9 0%, #ffffff 100%);
  cursor: pointer;
  font-weight: 500;
  font-size: 20px;
}

.accordion-content {
  max-height: 0;
  padding: 0 16px;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 16px;
}

.accordion-content a {
  display: block;
  font-size: 16px;
  color: #b11116;
  padding: 10px 0px;
  font-weight: 500;
}

.accordion-content a:hover {
  font-weight: bold;
}

.download{
  padding: 50px 0px;
  display: flex;
  justify-content: space-between;
}

.download_box{
  border: 1px solid #ddd;
  width: calc(50% - 30px);
  border-radius: 10px;
  box-sizing: border-box;
  padding: 30px;
}

.download_box .bt{
  font-size: 30px;
  color: #333;
  padding-bottom: 20px;
}

.download_box .nr a{
  position: relative;
  display: block;
  font-size: 16px;
  padding: 10px 0px;
  padding-left: 20px;
}

.download_box .nr a::after{
  content: '';
  width: 5px;
  height: 5px;
  position: absolute;
  left: 5px;
  top: 15px;
  border-radius: 50%;
  background: #333;
}

.fenl{
  border-bottom: 1px solid #ddd;
  display: flex;
}

.fenl a{
color: #b11116;
padding: 10px 20px;
font-size: 16px;
display: block;
}

.fenl a.on{
  background: #b11116;
  color: #fff;
}

.news ul li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 40px 0px;
}

.news ul li .time {
  width: 55px;
  background-image: linear-gradient(#fff, #fff 1em, #eaeaea);
  font-size: 14px;
  text-align: center;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.news ul li .time h2 {
  background: #b11116;
  color: #fff;
}

.news ul li .time h3 {
  font-size: 24px;
  font-weight: bold;
}

.news ul li .jj {
  width: calc(100% - 90px);
}

.news ul li .jj a {
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 限制显示的行数为3行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  color: #b11116;
}

.news ul li .jj h3{
  padding: 8px 0px;
}

.news ul li .jj h3 span {
  background: #b11116;
  color: #Fff;
  border-radius: 15px;
  padding: 2px 10px;
  margin-right: 5px;
}

.fanye{
  text-align: center;
}

.management ul{
  display: flex;
  flex-wrap: wrap;
  padding: 40px 0px;
}

.management ul li{
  width: 25%;
  box-sizing: border-box;
  padding: 10px;
  margin-bottom: 20px;
}

.management ul li .img{
  width: 100%;
  height: auto;
  border-radius: 5px;
  overflow: hidden;
  padding-top: 140%;
  position: relative;
  margin-bottom: 10px;
}

.management ul li .img img{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.management ul li h2{
  font-size: 16px;
  color: #333;
}

.management ul li p{
  font-size: 14px;
  padding: 10px 0px;
}

.management ul li span a{
  background: linear-gradient(to bottom, #949494 11%, #3d3d3d 100%);
    border: 1px solid #999;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    padding: 6px 30px;
    display: inline-block;
}