@charset "UTF-8";
:root {
  --main-color: #b90c0c;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-column {
  flex-direction: column;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-center {
  align-items: center;
}

.align-items-end {
  align-items: flex-end;
}

.flex-grow {
  flex-grow: 1;
}

.flex-shrink {
  flex-shrink: 0;
}

.w1300 {
  margin: 0 auto;
}

@media (min-width: 1401px) {
  .w1300 {
    width: 1300px;
  }
}

@media (min-width: 768px) {
  .w1300 {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .w1300 {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .w1300 {
    width: 1170px;
  }
}

ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

a:hover {
  text-decoration: none;
}

.d-none {
  display: none;
}

.overflow-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* 超出部分隐藏 */
  text-overflow: ellipsis;
}

.i-title {
  display: flex;
  align-items: center;
}

.i-title .sqr {
  width: 13px;
  height: 13px;
  background: var(--main-color);
}

.i-title .text {
  font-size: 22px;
  font-weight: bold;
  margin-left: 10px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

header .top {
  background: url(./images/n-header-img.jpg) no-repeat center;
  background-size: cover;
  height: 225px;
}

header .header {
  width: 100%;
  background: var(--main-color);
}

header .header .w1300 {
  display: flex;
  justify-content: space-between;
  height: 95px;
  transition: all 1s;
}

header .header .logo {
  flex-shrink: 0;
  transition: all 1s;
}

header .header .logo img {
  display: block;
  width: 246px;
}

header .header .logo p {
  color: #fff;
  line-height: 1;
  margin: 0;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #fff;
  font-size: 24px;
}

header .header .webNav {
  margin-bottom: 0;
  height: 100%;
}

header .header .webNav .one-menu {
  position: relative;
}

header .header .webNav .one-menu > a {
  font-size: 14px;
  line-height: 95px;
  color: #fff;
  transition: all 1s;
}

header .header .webNav .one-menu > a:hover {
  text-decoration: none;
}

header .header .webNav .one-menu:not(:last-child) {
  margin-right: 1.875rem;
}

header .header .webNav .one-menu:hover .subMenu {
  opacity: 1;
  pointer-events: all;
}

header .header .webNav .subMenu {
  opacity: 0;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 95px;
  width: 100vw;
  transition: all 1s;
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  transition: opacity 1s ease-in-out;
  z-index: 9999;
}

header .header .webNav .subMenu li a {
  color: #fff;
}

header .header .webNav .subMenu li:not(:last-child) {
  margin-right: 30px;
}

header.fixed .header .w1300 {
  height: 60px;
}

header.fixed .header .logo {
  transform: scale(0.8);
}

header.fixed .header .webNav .one-menu > a {
  line-height: 60px;
}

header.fixed .header .subMenu {
  top: 60px;
}

.c-banner {
  height: 610px;
  margin-top: 95px;
}

.c-banner .swiper-slide {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.c-banner .swiper-button-prev1 {
  left: 5%;
  background: url(./images/red_z.png) center center no-repeat #fff;
  border-radius: 4px;
  width: 35px;
  height: 60px;
  margin-top: -30px;
  opacity: 0.35;
  transition: all 0.3s;
}

.c-banner .swiper-button-prev1:hover {
  opacity: 1;
}

.c-banner .swiper-button-next1 {
  right: 5%;
  background: url(./images/red_z.png) center center no-repeat #fff;
  border-radius: 4px;
  transform: rotate(180deg);
  width: 35px;
  height: 60px;
  margin-top: -30px;
  opacity: 0.35;
  transition: all 0.3s;
}

.c-banner .swiper-button-next1:hover {
  opacity: 1;
}

.sec1 {
  margin-top: 40px;
}

.sec1 .left {
  width: 45%;
  margin-left: 0;
}

.sec1 .left img {
  display: block;
  width: 100%;
}

.sec1 .left .swiper-pagination {
  text-align: right;
  padding-right: 20px;
}

.sec1 .left .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 0;
  border: 1px solid #fff;
  background: none;
}

.sec1 .left .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--main-color);
  border: var(--main-color);
}

.sec1 .right {
  width: 50%;
}

.sec1 .right .tabBtn {
  padding-bottom: 4px;
  border-bottom: 2px solid var(--main-color);
}

.sec1 .right .tabBtn .tabBtn-item {
  width: 49%;
  height: 45px;
  background: #dedede;
  text-align: center;
  line-height: 45px;
  font-size: 16px;
  color: #151515;
  transition: all .3s ease-in-out;
}

.sec1 .right .tabBtn .tabBtn-item.active {
  background: var(--main-color);
  color: #fff;
}

.sec1 .right .tabBtn .tabBtn-item:hover {
  background: var(--main-color);
  color: #fff;
}

.sec1 .right .tabBox ul {
  margin-bottom: 0;
  padding-left: 0;
  margin-top: 16px;
  display: none;
}

.sec1 .right .tabBox ul li a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 16px;
  color: #000;
}

.sec1 .right .tabBox ul li a:hover {
  color: var(--main-color);
}

.sec1 .right .tabBox ul li a .time {
  flex-shrink: 0;
}

.sec1 .right .tabBox ul li:not(:last-child) {
  margin-bottom: 20px;
}

.sec1 .right .tabBox ul.active {
  display: block;
}

.sec1 .right .tabBox ul .more {
  font-size: 18px;
  text-align: right;
}

.sec1 .right .tabBox ul .more a {
  color: var(--main-color);
}

.sec2 {
  margin-top: 25px;
}

.sec2 .w1300 {
  background: #ede8e0;
  padding: 1.25rem 1.5rem 1.25rem 1rem;
}

.sec2 .box {
  margin-top: 13px;
  background: #fff;
  padding: 1.25rem 1.875rem;
  display: flex;
}

.sec2 .box .item {
  border-right: 1px dotted #ccc;
}

.sec2 .box .boxStyle1 {
  display: block;
  width: 218px;
  height: 90px;
  border: solid 2px var(--main-color);
  border-radius: 12px;
  overflow: hidden;
  color: var(--main-color);
  margin-right: 1.25rem;
}

.sec2 .box .boxStyle1 .top {
  width: 100%;
  height: calc(100% - 32px);
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 1px;
  display: flex;
}

.sec2 .box .boxStyle1 .top span {
  margin: auto;
}

.sec2 .box .boxStyle1 .bot {
  height: 32px;
  background: #ff4b5a;
  display: flex;
  color: #fff;
}

.sec2 .box .boxStyle1 .bot span {
  margin: auto;
}

.sec2 .box .item2 {
  border-right: 1px dotted #ccc;
}

.sec2 .box .itemCode {
  padding: 0 1.25rem;
}

.sec2 .box .itemCode .imgBox img:nth-child(1) {
  display: block;
  width: 48px;
}

.sec2 .box .itemCode .imgBox img:nth-child(2) {
  display: block;
  width: 70px;
  margin-left: 15px;
}

.sec2 .box .itemCode .text {
  margin-top: 6px;
  font-size: 13px;
  text-align: center;
}

.sec2 .box .item3 {
  display: flex;
  padding-left: 1.25rem;
}

.sec2 .box .item3 .itemCode {
  padding: 0;
}

.sec2 .box .item3 .itemCode:first-child {
  margin-right: 1.875rem;
}

.sec3 {
  margin-top: 75px;
  height: 535px;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 50px;
  position: relative;
}

.sec3 .sec3Box {
  width: 1145px;
  margin: auto 3.125rem auto 6.5625rem;
}

.sec3 .sec3Box .title {
  text-align: center;
  font-size: 37px;
  letter-spacing: 2px;
  color: #fdd955;
  line-height: 1;
}

.sec3 .sec3Box .sec3Box-box {
  width: 100%;
  height: 320px;
  background: url(./images/n-sec3-bg-bg.png) no-repeat center;
  background-size: cover;
  margin-top: 40px;
  padding: 30px 30px 30px 155px;
  display: flex;
  align-items: center;
}

.sec3 .sec3Box .sec3Box-box ul {
  width: 550px;
  flex-wrap: wrap;
  align-items: flex-start;
  z-index: 20;
}

.sec3 .sec3Box .sec3Box-box ul li a {
  display: flex;
  width: 130px;
  height: 70px;
  border-radius: 8px;
  border: solid 2px #fdd955;
}

.sec3 .sec3Box .sec3Box-box ul li a span {
  margin: auto;
  color: #fdd955;
}

.sec3 .sec3Box .sec3Box-box ul li:not(:nth-child(4n)) {
  margin-right: 10px;
}

.sec3 .sec3Box .sec3Box-box ul li:nth-child(-n+4) {
  margin-bottom: 25px;
}

.sec3 .sec3Box .sec3Box-box .videoBox {
  width: 380px;
  display: flex;
}

.sec3 .sec3Box .sec3Box-box .videoBox video {
  margin: auto;
}

.sec3 .leftImg {
  display: block;
  width: 38.39%;
  position: absolute;
  bottom: -35px;
  left: 0;
  z-index: 1;
}

.sec4 {
  margin-top: 85px;
}

.sec4 .left {
  width: 45%;
}

.sec4 .left img {
  display: block;
  width: 100%;
}

.sec4 .right {
  width: 53%;
}

.sec4 .right .imgList {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}

.sec4 .right .imgList li {
  width: 22.5%;
}

.sec4 .right .imgList li a {
  display: block;
  width: 100%;
}

.sec4 .right .imgList li img {
  display: block;
  width: 100%;
}

.sec4 .right .contentBox {
  margin-top: 25px;
  color: #ae1e23;
  font-size: 14px;
  line-height: 1.4;
  padding-bottom: 15px;
  border-bottom: 2px dotted #ae1e23;
  display: block;
}

.sec4 .right .content {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  color: #2f2e2e;
  text-indent: 2em;
  line-height: 1.4;
}

.sec5 {
  margin-top: 50px;
}

.sec5 .w1300 {
  background: rgba(235, 229, 230, 0.2);
  padding: 20px;
}

.sec5 .left {
  width: calc((100% - 30px)/2);
}

.sec5 .left .list {
  margin-top: 40px;
}

.sec5 .left .list li {
  height: 155px;
  background: rgba(174, 30, 35, 0.09);
  padding: 20px 30px;
}

.sec5 .left .list li a {
  display: flex;
  height: 100%;
  color: #434141;
  font-size: 16px;
}

.sec5 .left .list li a .time {
  padding-right: 14px;
  border-right: 2px solid rgba(67, 65, 65, 0.5);
}

.sec5 .left .list li a .time .day {
  font-size: 24px;
}

.sec5 .left .list li a .text {
  flex-grow: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 10px;
}

.sec5 .left .list li a .text .title {
  font-size: 20px;
  line-height: 1.2;
}

.sec5 .left .list li a .text .content {
  font-size: 14px;
  line-height: 1.5;
}

.sec5 .left .list li a .text .content p {
  margin-bottom: 0;
}

.sec5 .left .list li:not(:last-child) {
  margin-bottom: 10px;
}

.sec5 .right {
  width: calc((100% - 30px)/2);
}

.sec5 .right .imgList {
  margin-top: 40px;
  justify-content: space-between;
}

.sec5 .right .imgList img {
  display: block;
  width: calc((100% - 2px)/2);
}

.sec5 .right .list {
  margin-top: 20px;
}

.sec5 .right .list li a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 16px;
  color: #000;
}

.sec5 .right .list li a:hover {
  color: var(--main-color);
}

.sec5 .right .list li a .time {
  flex-shrink: 0;
}

.sec5 .right .list li:not(:last-child) {
  margin-bottom: 15px;
}

.sec6 {
  margin: 35px 0;
}

.sec6 .w1300 {
  background: #ede8e0;
  padding: 20px;
}

.sec6 .sec6Swiper {
  width: 100%;
  margin: 50px auto 0;
}

.sec6 .sec6Swiper .swiper-slide .imgPos {
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 53.57%;
  position: relative;
  width: 100%;
}

.sec6 .sec6Swiper .swiper-slide .imgBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(67, 65, 65, 0.2);
}

@media (max-width: 767px) {
  .footer {
    padding-top: 0px !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer {
    padding-top: 0px !important;
  }
}

/*底部css*/
.footer {
  padding-top: 30px;
  background: #083386;
}

.footer .col-md-10 .caption h5 a {
  font-size: 16px;
  color: #fff;
  margin-right: 15px;
  text-decoration: none;
}

.footer .col-md-10 .caption p {
  color: #fff;
  float: left;
  line-height: 30px;
}

.footer .col-md-10 .caption p a {
  color: #fff;
  padding: 0 15px;
}

.footer .col-md-10 .caption .form-group {
  margin: 10px 0;
}

.footer .col-md-10 .caption .form-group label {
  height: 30px;
  margin-right: 10px;
  line-height: 30px;
  color: #fff;
  float: left;
  font-weight: normal;
}

.footer .col-md-10 .caption .form-group select {
  width: 220px;
  height: 30px;
  line-height: 30px;
  color: #333;
  background: none;
  background: #fff;
  border-left: none;
  outline: none;
}

.footer .col-md-10 .caption .form-group select option {
  color: #333;
}

.footer .col-md-2 .ft_ewm p {
  text-align: center;
  color: #fff;
  margin-top: 5px;
  opacity: 0.5;
  font-size: 12px;
}

.footer_di {
  padding: 10px 0;
  color: #c6c6c6;
  margin-top: 15px;
  background: #d93643;
  border-top: 1px solid #505050;
}

.footer_di a {
  float: right;
  color: #c6c6c6;
}

/*底部css*/
.san {
  position: relative;
  width: 30px;
  height: 20px;
  margin-top: 20px;
  cursor: pointer;
}

.s_zhong, .c-banner {
  margin-top: 95px;
}

@media screen and (max-width: 1401px) {
  .sec3 .leftImg {
    width: 30.39%;
  }
}

@media screen and (max-width: 1300px) {
  .sec3 .sec3Box {
    width: 100%;
    margin: 0;
  }
  .sec3 .sec3Box .sec3Box-box {
    padding: 30px;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 992px) {
  .d-lg-flex {
    display: flex !important;
  }
  .menu {
    width: 25px;
    flex-direction: column;
    cursor: pointer;
  }
  .menu span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
  }
  .menu span:not(:last-child) {
    margin-bottom: 6px;
  }
  header .top {
    display: none;
  }
  header .header .w1300 {
    height: 60px;
  }
  header .header .w1300 .logo {
    height: 80%;
  }
  header .header .w1300 .logo img {
    width: auto;
    height: 100%;
  }
  header .header .w1300 .logo p {
    display: none;
  }
  header .header .w1300 .webNavBox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ab0614 !important;
    z-index: 500;
  }
  header .header .w1300 .webNavBox .closeBtn {
    position: absolute;
    top: 0;
    right: 30px;
    display: block;
    width: 50px;
  }
  header .header .w1300 .webNavBox .webNav {
    width: 100%;
    height: 100%;
    display: block;
    margin-top: 60px;
  }
  header .header .w1300 .webNavBox .webNav .one-menu {
    width: 100%;
    padding: 8px 0;
    text-align: center;
    margin-bottom: 5px;
  }
  header .header .w1300 .webNavBox .webNav .one-menu > a {
    line-height: 1.6;
  }
  header .header .w1300 .webNavBox .webNav .subMenu {
    display: none !important;
  }
  header.fixed .header .logo {
    transform: scale(1);
  }
  .c-banner {
    height: 300px;
  }
  .sec1 .w1300 {
    flex-wrap: wrap;
  }
  .sec1 .left {
    width: 100%;
  }
  .sec1 .right {
    width: 100%;
    margin-top: 40px;
  }
  .sec2 .box {
    flex-wrap: wrap;
  }
  .sec2 .box .item {
    width: 100%;
    border-right: 0;
    justify-content: center;
    margin-bottom: 15px;
  }
  .sec2 .box .itemCode {
    width: 50%;
    margin-right: 0 !important;
    padding: 0;
    border-right: 0;
  }
  .sec2 .box .itemCode .imgBox {
    justify-content: center;
  }
  .sec2 .box .item3 {
    width: 100%;
    padding-left: 0;
    margin-top: 15px;
  }
  .sec3 {
    height: auto;
    padding: 25px 0;
  }
  .sec3 .sec3Box .sec3Box-box {
    padding: 15px;
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
  }
  .sec3 .sec3Box .sec3Box-box ul {
    order: 2;
    margin-top: 15px;
    justify-content: space-between;
  }
  .sec3 .sec3Box .sec3Box-box ul li {
    margin-right: 0;
  }
  .sec3 .sec3Box .sec3Box-box ul li a {
    width: 120px;
    height: 50px;
  }
  .sec3 .sec3Box .title {
    font-size: 24px;
  }
  .sec4 .w1300 {
    flex-wrap: wrap;
  }
  .sec4 .left {
    width: 100%;
    order: 2;
    margin-top: 10px;
  }
  .sec4 .right {
    width: 100%;
  }
  .sec5 .w1300 {
    flex-wrap: wrap;
  }
  .sec5 .w1300 .left {
    width: 100%;
  }
  .sec5 .w1300 .left .list {
    margin-top: 10px;
  }
  .sec5 .w1300 .right {
    width: 100%;
    margin-top: 40px;
  }
  .sec5 .w1300 .right .imgList {
    margin-top: 10px;
  }
  .s_zhong, .c-banner {
    margin-top: 60px;
  }
}

@media screen and (max-width: 768px) {
  .w1300 {
    width: 100%;
    padding: 0 15px;
  }
  .c-banner {
    height: 180px;
  }
}

@media screen and (max-width: 640px) {
  .sec2 .box .boxStyle1 .top {
    font-size: 20px;
  }
  .sec3 .sec3Box .sec3Box-box ul {
    width: 100%;
  }
  .sec3 .sec3Box .sec3Box-box ul li {
    margin-right: 0 !important;
    margin-bottom: 20px;
  }
  .sec5 .left .list li a .text .title {
    font-size: 16px;
  }
}

.ny_left ul li.active a {
  color: var(--main-color);
}

.bg_color {
  background: var(--main-color);
  color: #fff !important;
}
