/*banner背景图片动画*/
@-webkit-keyframes scale-bg {
  from {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale-bg {
  from {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*banner */

.bannerBox {
  position: relative;
  margin-top: 0px;
}
.bannerBox .index_banner .item {
  background-size: cover;
  -webkit-background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  position: relative;
}
.bannerBox .index_banner .item.slick-current .scaleBg {
  visibility: visible;
  -webkit-animation: scale-bg 6s linear forwards;
  animation: scale-bg 6s linear forwards;
}
.bannerBox .index_banner .items {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.bannerBox .index_banner .items:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0);
}
.bannerBox .index_banner .item .inner .block_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -40%);
  -webkit-transform: translate(-50%, -40%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 84%;
}
.bannerBox .index_banner .item.active .inner .block_txt {
  opacity: 1;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
}

.bannerBox .index_banner .item .inner .block_txt h2 {
  width: 100%;
  margin-bottom: 30px;
  color: #fff;
  font-size: 72px;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
  text-shadow: 1px 1px 0px #333;
  font-family: "MyFont";
}

.bannerBox .index_banner .item .inner .block_txt h4 {
  color: #fff;
  font-size: 32px;
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0px;
  text-shadow: 1px 1px 1px #333;
  /* text-transform: uppercase; */
}

.bannerBox .index_banner .item .inner .block_txt a {
  display: block;
  width: 260px;
  height: 60px;
  font-size: 18px;
  color: #fff;
  line-height: 60px;
  text-align: center;
  margin: 120px auto 0;
  font-weight: 100;
  border-radius: 6px;
  letter-spacing: 0px;
  background-color: #a40303;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bannerBox .index_banner .item .inner .block_txt a img {
  margin-left: 14px;
}
.bannerBox .index_banner .item .inner .block_txt h3 span {
  display: block;
  font-weight: bold;
  margin-bottom: 0.2rem;
}
.bannerBox .index_banner .item .inner .block_txt .more {
  margin-top: 4rem;
}
.bannerBox .index_banner .item .inner .block_txt .more a {
  display: inline-block;
  padding: 0.6rem 2.5rem;
  color: #fff;
  border-left: 1px solid #ffffff75;
  border-right: 1px solid #ffffff75;
}
.bannerBox .slick_txt {
  width: 14%;
  height: 100%;
  background-color: transparent;
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  font-size: 0;
  outline: none;
  border: 0;
}
.bannerBox .left {
  left: 0;
}
.bannerBox .right {
  right: 0;
}
.bannerBox .slick_txt:hover .slick_arrow {
  opacity: 1;
  visibility: visible;
}
.bannerBox .slick_txt .slick_arrow {
  width: 20px;
  height: 36px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: -18px;
  position: absolute;
  top: 50%;
  cursor: pointer;
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
}
.bannerBox .slick_txt .prev {
  background-image: url(../images/ban_prev.png);
  left: 60px;
}
.bannerBox .slick_txt .next {
  background-image: url(../images/ban_next.png);
  right: 60px;
}
.bannerBox .slick_txt .prev:hover {
  background-image: url(../images/ban_prev_hover.png);
}
.bannerBox .slick_txt .next:hover {
  background-image: url(../images/ban_next_hover.png);
}
.bannerBox .number {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: table;
  padding: 0 20px;
  width: auto;
  text-align: center;
}
.bannerBox .number span {
  font-family: "Myriad Pro", "Microsoft YaHei";
  font-size: 14px;
  color: #fff;
  margin-right: 200px;
  display: inline-block;
  cursor: pointer;
  position: relative;
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
}

.bannerBox .number span:last-child {
  margin-right: 0;
}
.bannerBox .number span:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  bottom: -20px;
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
}
.bannerBox .number span.active:after {
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.bannerRightTxt {
  position: absolute;
  right: 8%;
  bottom: 0;
  background-image: url(/images/bannerTextBg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 691px;
  height: 179px;
}
.bannerRightTxt {
  display: flex;
  justify-content: center;
  align-items: center;
}
.bannerRightTxt .b_r_img {
  margin-right: 30px;
}
.bannerRightTxt .b_r_img img {
  width: initial;
}
.bannerRightTxt .b_r_txt h3 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  text-align: left;
  line-height: 1;
  margin-bottom: 14px;
}
.bannerRightTxt .b_r_txt p {
  font-size: 24px;
  color: #fff;
  text-align: left;
  line-height: 1;
  font-weight: 100;
  letter-spacing: 1px;
}
@media only screen and (max-width: 1600px) {
  .bannerBox .index_banner .item .inner .block_txt h4 {
    font-size: 18px;
  }
  .bannerBox .index_banner .item .inner .block_txt h2 {
    font-size: 58px;
  }
  .bannerBox .index_banner .item .inner .block_txt h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1440px) {
  .bannerBox .index_banner .item .inner .block_txt h4 {
    font-size: 24px;
  }
  .bannerBox .index_banner .item .inner .block_txt h2 {
    font-size: 56px;
    margin-bottom: 20px;
  }
  .bannerBox .index_banner .item .inner .block_txt h3 {
    font-size: 18px;
    margin-top: 5px;
  }
  .bannerRightTxt {
    height: 100px;
    width: 520px;
  }
  .bannerRightTxt .b_r_txt h3 {
    font-size: 20px;
  }
  .bannerRightTxt .b_r_txt p {
    font-size: 16px;
  }
  .bannerRightTxt .b_r_img img {
    width: 60px;
  }
  .bannerBox .index_banner .item .inner .block_txt a {
    width: 240px;
    height: 54px;
    line-height: 54px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 1366px) {
  .bannerBox .index_banner .item .inner .block_txt h4 {
    font-size: 22px;
  }
  .bannerBox .index_banner .item .inner .block_txt h2 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  .bannerBox .index_banner .item .inner .block_txt h3 {
    font-size: 18px;
    margin-top: 5px;
  }
  .bannerRightTxt {
    height: 100px;
    width: 520px;
  }
  .bannerRightTxt .b_r_txt h3 {
    font-size: 20px;
  }
  .bannerRightTxt .b_r_txt p {
    font-size: 16px;
  }
  .bannerRightTxt .b_r_img img {
    width: 60px;
  }
  .bannerBox .index_banner .item .inner .block_txt a {
    width: 240px;
    height: 54px;
    line-height: 54px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 1300px) {
}
@media only screen and (max-width: 1199px) {
  .bannerBox .index_banner .item .inner .block_txt h4 {
    font-size: 18px;
  }
  .bannerBox .index_banner .item .inner .block_txt h2 {
    font-size: 22px;
  }
  .bannerBox .index_banner .item .inner .block_txt h3 {
    font-size: 14px;
  }
}
@media only screen and (max-width: 992px) {
  .bannerBox {
    margin-top: 50px;
  }
  .bannerBox .index_banner .item {
    height: 30vh;
  }
  .bannerBox .slick_txt {
    display: none;
  }
  .bannerBox .index_banner .item .inner .block_txt {
    left: 50%;
    right: 0;
    margin: 0 auto;
    padding: 0 20px;
    top: 48%;
  }
  .bannerBox .index_banner .slick-arrow {
    display: none !important;
  }
  .bannerBox .index_banner .slick-dots {
    position: absolute;
    bottom: 12px;
  }
  .bannerBox .index_banner .slick-dots li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
  }
  .bannerBox .index_banner .slick-dots li button {
    display: none;
  }
  .bannerBox .index_banner .slick-dots li.slick-active {
    background: #fff;
  }
  .bannerBox .number {
    bottom: 12%;
    display: none;
  }
  .bannerBox .number span {
    margin-right: 22px;
  }
  .bannerBox .number span:after {
    bottom: -14px;
  }
  .bannerBox .index_banner .item .inner .block_txt a i {
    font-size: 36px;
  }
  .bannerBox .index_banner .item .inner .block_txt h2 {
    margin-bottom: 30px;
  }
  .bannerRightTxt {
    display: none;
  }
  .bannerBox .index_banner .item .inner .block_txt a img {
    width: 20px;
  }
  .bannerBox .index_banner .item .inner .block_txt a {
    display: none;
  }
  .bannerBox .index_banner .item .inner .block_txt h2 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 767px) {
}
@media only screen and (max-width: 340px) {
}
@media only screen and (max-width: 320px) {
}

@media screen and (min-resolution: 120dpi) and (max-resolution: 140dpi) {
  /* 调整布局以适应125%缩放 */
  .bannerBox .index_banner .item .inner .block_txt h4 {
    font-size: 24px;
  }
}

@media screen and (min-resolution: 140dpi) and (max-resolution: 160dpi) {
  .bannerBox .index_banner .item .inner .block_txt h4 {
    font-size: 30px;
  }
}
