@charset "UTF-8";

html,
body {
  width: 100%;
  height: 100%;
  background-color: #f6f6f6;
}

@media screen and (min-width:1200px) {
  header {
    height: 200px;
    background-image: url("../assets/images/bg.jpg");
    background-size: cover;
  }

  .index_content {
    background-image: url(../assets/images/indexbg.jpg);
    background-repeat: repeat-y;
    background-size: 100%;
  }


  header div {
    height: 100%;
    align-items: center;
    display: flex;
    justify-content: space-between;
  }

  header div img {
    height: 100px;
  }

  header div .dh1 {
    position: absolute;
    right: 0;
  }

  /* 手机端图片隐藏 */
  header div .dh2 {
    display: none;
  }

  .NavBtnDiv {
    display: none;
  }

  .Header2 {
    display: none;
  }


  .nav {
    width: 100%;
    background: #c22b25;
    height: 70px;
  }

  .nav .nav_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav .firstNav {
    height: 100%;
    padding: 20px 23px;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 20px;
  }

  .nav .firstNav:hover {
    background: #980600;
  }

  .nav .firstNav:hover .d-firstDrop {
    display: block !important;
  }



  .nav .firstNav:hover a {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 20px;
    color: #FFC66A;
    text-align: left;
    font-style: normal;
    text-transform: none;

  }

  .nav .firstNav a {
    color: #FFFFFF;
    text-align: left;
    font-style: normal;
    text-transform: none;
    box-sizing: border-box;
    cursor: pointer;
  }


  .nav input {
    width: 160px;
    height: 40px;
    padding-left: 12px;
    box-sizing: border-box;
  }
  .nav-right input {
    width: 160px;
    height: 40px;
    padding-left: 12px;
    box-sizing: border-box;
  }

  .nav-right button {
    width: 84px;
    height: 40px;
    background: #BC9C69;
    border-radius: 0px 3px 3px 0px;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    font-style: normal;
    text-transform: none;
  }

  .nav-right button img {
    width: 16px;
  }

  .nav button {
    width: 84px;
    height: 40px;
    background: #BC9C69;
    border-radius: 0px 3px 3px 0px;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    font-style: normal;
    text-transform: none;
  }

  .nav button img {
    width: 16px;
  }

  .nav_active {
    background: #980600;
  }

  .nav_active a {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 20px;
    color: #FFC66A !important;
    text-align: left;
    font-style: normal;
    text-transform: none;
  }

  .content {
    margin-top: 30px;
  }

  .content h2 {
    max-width: 1200px;
    margin: 0 auto;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 28px;
    color: #C22B25;
    line-height: 40px;
    text-align: center;
    font-style: normal;
    text-transform: none;
  }

  .content h3 {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 10px;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 20px;
    color: #C22B25;
    text-align: left;
    font-style: normal;
    text-transform: none;
    text-align: center;
    margin-bottom: 30px;
  }

  .content-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
  }

  .carousel-item {
    /* position: absolute; */
    /* top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    flex: 0 0 100%; */
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
  }
  

  /* 右侧内容样式 */
  .c_card_right {
    position: relative;
  }

  .carousel-right {
    position: relative;
    overflow: hidden;
    height: 100%;
  }

  .right-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .right-slide.active {
    opacity: 1;
  }

  .carousel-item-content{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
  }

  

  .carousel-item-left{
    width: 675px;
    height: 419px;
  }
  .carousel-item-right{
    width: calc(100% - 675px);
    height: 419px;
    padding: 30px;
    /* margin-top: 30px; */
  }


  .carousel-item a img {
    width: 100%;
    height: 419px;
  }

  .carousel-indicator-pagination{
    /* width: 180px !important;
    height: 48px;
    line-height: 48px;
    z-index: 999; */
    position: absolute;
    bottom: 16px;
    right: 5px;
    left: auto;
    text-align: right;
  }

  /* 自定义分页器的样式 */
  .swiper-pagination-bullet {
      width: 20px !important; /* 设置分页器的宽度 */
      height: 10px !important; /* 设置分页器的高度 */
      background-color: #000; /* 设置分页器的背景颜色 */
      opacity: 1; /* 设置分页器的透明度 */
      border-radius: 0 !important; /* 设置分页器的圆角为0，即矩形 */
      margin: 0 5px; /* 设置分页器之间的间距 */
  }

  /* 当前激活的分页器样式 */
  .swiper-pagination-bullet-active {
      background-color: #c22b25 !important; /* 设置当前激活分页器的背景颜色 */
      width: 30px; /* 设置当前激活分页器的宽度 */
      height: 8px; /* 设置当前激活分页器的高度 */
  }

  /* .carousel-item.active {
    opacity: 1;
    z-index: 1;
  } */

  .ellipsis_1{
    white-space: nowrap;
        /* 禁止换行 */
        overflow: hidden;
        /* 隐藏溢出内容 */
        text-overflow: ellipsis;
        /* 显示省略号 */
        width: 100%;
        /* 需要指定宽度 */
  }

  .carousel-item h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
  }

  .carousel-item p {
    font-size: 18px;
    color: #666;
    max-width: 78%;
    line-height: 1.6;
  }

  .carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
  }

  .carousel-control img {
    width: 38px;
    height: 62px;
  }

  .carousel-control.prev {
    left: -6px;
  }

  .carousel-control.next {
    right: -6px;
  }

  .carousel-indicators {
    height: 62px;
    width: 675px;
    padding: 0 22px;
    box-sizing: border-box;
    position: absolute;
    bottom: 0px;
    /* left: 50%;
    transform: translateX(-50%); */
    display: flex;
    gap: 10px;
    z-index: 10;
    align-items: center;
    justify-content: space-between;
    /* display: none; */
  }

  .carousel-indicators p {
    /* width: 420px; */
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 20px;
    color: #FFFFFF;
    text-align: left;
    font-style: normal;
    text-transform: none;
  }
  .carousel-indicators p a{
    color: #ffffff;
  }

  .carousel-indicators .bg {
    background-color: rgba(0, 0, 0, 0.5);
    /* 黑色，50%透明度 */
    width: 100%;
    height: 100%;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
  }

  .carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 8px;
  }

  .carousel_home {
    position: absolute;
    display: flex;
    z-index: 99;
    bottom: 5%;
    right: 20px;
    /* display: none; */
  }

  .carousel-indicator.active {
    background-color: #c22b25;
  }

  .c_card_1,
  .c_card_5{
    display: flex;
  }

  .c_card_1 .c_1_left,
  .c_card_5 .c_1_left {
    width: 675px;
    height: 419px;
    border-radius: 0px 0px 0px 0px;
    /* margin-top: 30px; */
  }

  .c_card_1 .c_1_right{
    width: 525px;
    height: 419px;
    background: #ffffff;
    padding: 30px;
  }

  .c_card_right_content_time{
    margin-top: 20px;
    color: #484848;
  }

  .c_card_right_content_text{
    margin-top: 20px;
    color: #555555;
    line-height: 26px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .c_card_right_content_footer{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    bottom: 30px;
  }

  .c_card_right_content_title{
    font-size: 22px;
    display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  }
  .c_card_right_footer_item{
    width: calc(100% - 675px - 30px);
    display: flex;
    justify-content: space-between;
  }

  .card_carousel{
    display: flex;
    margin-top: 9%;
    margin-right: 30px;
  }

  .c_card_right_content_footer .carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #D0D0D0;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 8px;
  }

  .c_card_right_content_footer .carousel-indicator.active {
    background-color: #c22b25;
  }

  .c_card_right_content_button{
    width: 100px;
    height: auto;
    margin-top: 20px;
    background: #C22B25;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    border-radius: 2px;
  }
  .c_card_right_content_button a{
      color: #fff;
      text-decoration: none;
  }


  .c_card_5 .c_1_right {
    width: 561px;
    height: 419px;
    background: #FFFFFF;
    border-radius: 0px 0px 0px 0px;
    padding: 30px;
    overflow: hidden;
  }
  .c_card_1 .c_card_right{
    width: 561px;
    height: 419px;
    background: #FFFFFF;
    border-radius: 0px 0px 0px 0px;
    /* padding: 32px 30px; */
    padding: 30px;
    position: relative;
  }

  .zkyj_card .c_1_right {
    width: 492px;
    height: 419px;
    background: #FFFFFF;
    border-radius: 0px 0px 0px 0px;
    padding: 32px 30px;
  }

  .c_card_1 .c_card_right .c_r_top,
  .c_card_5 .c_1_right .c_r_top {
    width: 100%;
    height: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .c_card_1 .c_1_right .c_r_top,
  .c_card_5 .c_1_right .c_r_top {
    width: 100%;
    height: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }


  .c_card_1 .c_1_right .top_l,
  .c_card_5 .c_1_right .top_l {
    display: flex;
    justify-content: space-between;
  }

  .c_1_right .c_r_top .top_l .c_1_active a {
    color: #c22b25;
  }

  .c_card_1 .c_1_right .more,
  .c_card_5 .c_1_right .more {
    /*background: rgba(255, 255, 255, 0);
    border-radius: 3px 3px 3px 3px;*/
    /*border: 1px solid #C22B25;*/
    width: 49px;
    height: 22px;
    /*font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 12px;
    color: #C22B25;
    text-align: center;
    font-style: normal;
    text-transform: none;*/
  }

  .c_card_1 .c_1_right .more img,
  .c_card_5 .c_1_right .more img {
    width: 49px;
  }

  .c_card_1 .c_1_right h4,
  .c_card_5 .c_1_right h4 {
    margin-right: 36px;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 22px;
    color: #484848;
    line-height: 40px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    position: relative;
  }

  .c_card_1_home .c_1_right h4:nth-child(3):before {
    position: absolute;
    content: "";
    width: 2px;
    height: 25px;
    background: #e2e2e2;
    top: 10px;
    left: -18px;
  }

  .c_card_1 .c_1_right h4:nth-child(2):before,
  .c_card_5 .c_1_right h4:nth-child(2):before {
    position: absolute;
    content: "";
    width: 2px;
    height: 25px;
    background: #e2e2e2;
    top: 10px;
    left: -18px;
  }

  .c_card_1 .c_1_right h4:hover,
  .c_card_5 .c_1_right h4:hover {
    color: #c22b25;
  }

  .c_card_1 .c_1_right .c_r_center h5,
  .c_card_5 .c_1_right .c_r_center h5 {
    margin-top: 25px;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-size: 18px;
    color: #323232;
    text-align: left;
    font-style: normal;
    text-transform: none;
    font-weight: bold;
  }

  .c_card_1 .c_1_right .c_r_center h5:hover,
  .c_card_5 .c_1_right .c_r_center h5:hover {
    color: #c22b25;
  }

  .c_card_1 .c_1_right .c_r_text,
  .c_card_5 .c_1_right .c_r_text {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 14px;
    color: #555555;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-top: 18px;
  }

  .c_card_1 .c_1_right .c_r_text:hover,
  .c_card_5 .c_1_right .c_r_text:hover {
    color: #C22B25;
  }


  .zkyj_card .c_card_1 .c_1_right .divide,
  .c_card_5 .c_1_right .divide {
    margin-top: 18px;
    margin-bottom: 18px;
    width: 100%;
    height: 2px;
    border-bottom: 1px dashed #6e6e6e;
  }

  .c_card_1 .c_1_right .list,
  .c_card_5 .c_1_right .list {
    width: 100%;
  }

  .c_card_1 .c_1_right .list .list_left,
  .c_card_5 .c_1_right .list .list_left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 350px;
  }

  .c_card_1 .c_1_right .list .list_left p a,
  .c_card_5 .c_1_right .list .list_left p a {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    line-height: 20px;
    text-align: left;
    font-style: normal;
    text-transform: none;
  }

  .c_card_1 .c_1_right .list .list_left p a:hover,
  .c_card_5 .c_1_right .list .list_left p a:hover {
    color: #C22B25;
  }

  .c_card_1 .c_1_right .list li,
  .c_card_5 .c_1_right .list li {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 13px;
  }

  .c_card_1 .c_1_right .list li .radio,
  .c_card_5 .c_1_right .list li .radio {
    width: 7px;
    height: 6px;
    border: 2px solid #D5BC8D;
    border-radius: 50px;
    margin-right: 5px;
  }


  .c_card_1 .c_1_right .list li .timer,
  .c_card_5 .c_1_right .list li .timer {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 14px;
    color: #9F9F9F;
    text-align: right;
    font-style: normal;
    text-transform: none;
  }

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

  .c_card_2 .c_r_center,
  .c_card_2 .c_r_center_2,
  .c_card_5 .c_r_center {
    margin-top: 18px;
  }

  .c_card_2 .list li {
    margin-bottom: 25px;
  }

  .c_card_2 .c_1_right {
    width: 49%;
    height: 278px;
    background: #FFFFFF;
    border-radius: 0px 0px 0px 0px;
    /* padding: 32px 30px; */
    padding: 30px;
  }

  .c_card_2 .c_1_right_item {
    width: 49%;
    height: 278px;
    background: #FFFFFF;
    border-radius: 0px 0px 0px 0px;
    /* padding: 32px 30px; */
    padding: 30px;
  }

  .c_card_2 .c_1_right .c_r_top {
    width: 100%;
    height: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .c_card_2 .c_1_right .top_l {
    display: flex;
    justify-content: space-between;
  }

  .c_card_2 .c_1_right .more,
  .c_card_2 .c_1_right .more_2 {
    /*background: rgba(255, 255, 255, 0);
    border-radius: 3px 3px 3px 3px;*/
    /*border: 1px solid #C22B25;*/
    width: 49px;
    height: 22px;
    /*font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 12px;
    color: #C22B25;
    text-align: center;
    font-style: normal;
    text-transform: none;*/
  }

  .c_card_2 .c_1_right .more img,
  .c_card_2 .c_1_right .more_2 img {
    width: 49px;
    height: 22px;

  }

  .c_card_2 .c_1_right h4 {
    margin-right: 36px;
    position: relative;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 24px;
    color: #484848;
    line-height: 40px;
    text-align: left;
    font-style: normal;
    text-transform: none;
  }

  .c_card_2 .c_1_right h4:nth-child(2):before {
    position: absolute;
    content: "";
    width: 2px;
    height: 25px;
    background: #e2e2e2;
    top: 10px;
    left: -18px;
  }

  .c_card_2 .c_1_right h4:hover {
    color: #c22b25;
  }

  .c_card_2 .c_1_right .c_r_center .c_r_center_2 h5 {
    margin-top: 30px;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 18px;
    color: #323232;
    text-align: left;
    font-style: normal;
    text-transform: none;
  }

  .c_card_2 .c_1_right .c_r_center .c_r_center_2 h5:hover {
    color: #c22b25;
  }

  .c_card_2 .c_1_right .c_r_text {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 14px;
    color: #555555;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-top: 18px;
  }

  .c_card_2 .c_1_right .c_r_text:hover {
    color: #C22B25;
  }

  .c_card_2 .c_1_right .divide {
    margin-top: 18px;
    margin-bottom: 18px;
    width: 100%;
    height: 2px;
    border-bottom: 1px dashed #6e6e6e;
  }

  .c_card_2 .c_1_right .list {
    width: 100%;
  }

  .c_card_2 .c_1_right .list .list_left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 350px;
  }

  .c_card_2 .c_1_right .list .list_left p a {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    line-height: 20px;
    text-align: left;
    font-style: normal;
    text-transform: none;
  }

  .c_card_2 .c_1_right .list .list_left p a:hover {
    color: #C22B25;
  }

  .c_card_2 .c_1_right .list a:hover {
    color: #C22B25;
  }

  .c_card_2 .c_1_right .list li {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
  }

  .c_card_2 .c_1_right .list li .radio {
    width: 7px;
    height: 6px;
    border: 2px solid #D5BC8D;
    border-radius: 50px;
    margin-right: 5px;
  }

  .c_card_2 .c_1_right .list li .timer {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 14px;
    color: #9F9F9F;
    text-align: right;
    font-style: normal;
    text-transform: none;
  }

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

  .c_card_3 .card_3_item {
    width: 380px;
    height: 164px;
    background: #fdefd3;
    border-radius: 4px 4px 4px 4px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .c_card_3 .card_3_item .window {
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .c_card_3 .card_3_item .window:hover {
    transform: scale(1.05);
  }

  .c_card_3 .card_3_item img {
    width: 123px;
    margin-right: 25px;
  }

  .c_card_3 .card_3_item .c_3_right {
    width: 180px;
    float: right;
    text-align: center;
  }

  .c_card_3 .card_3_item .c_3_right strong {
    text-align: center;
    margin-top: 10px;
    display: block;
  }

  .c_card_3 .card_3_item .c_3_right p {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 30px;
    color: #333333;
    line-height: 40px;
    text-align: left;
    font-style: normal;
    text-transform: none;
  }

  .c_card_3 .card_3_item .c_3_right span {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 12px;
    color: #572B00;
    text-align: center;
    font-style: normal;
    text-transform: none;
  }

  .c_card_3 .card_3_item .c_3_right button {
    width: 97px;
    height: 31px;
    background: rgba(255, 225, 168, 0);
    border: 1px solid #D42D27;
    background: transparent;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: bold;
    font-size: 12px;
    color: #D42D27;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.08);
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin-top: 16px;
    border-radius: 3px;
    display: block;
  }

  .card_3_item:hover {
    color: #D42D27 !important;
  }

  .card_3_item:hover button {
    color: #D42D27 !important;
    border: 1px solid #D42D27 !important;
  }

  .card_3_item:hover strong {
    color: #D42D27 !important;
  }

  .card_3_item:hover p {
    color: #D42D27 !important;
  }

  .card_3_item:hover span {
    color: #D42D27 !important;
  }

  .c_card_4 {
    margin-top: 30px;
  }

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

  .c_card_4 .c_4_title_1 {
    display: none;
  }

  .c_card_4 .c_4_title img {
    height: 12px;
  }

  .c_card_4 .c_4_title h3 {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: bold;
    font-size: 30px;
    color: #C22B25;
    line-height: 40px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin-left: 16px;
    margin-right: 16px;
    margin-top: -10px;
    margin-bottom: 0;
  }

  .c_card_4 .c4_content {
    display: flex;
    margin-top: 30px;
    justify-content: space-between;
  }

  .c_card_4 .c4_item {
    width: 380px;
    height: 217px;
    border-radius: 6px;
    transition: all 0.3;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }

  .c_card_4 .c4_item h2 {
    font-weight: 500;
    font-size: 40px;
    color: #FFFFFF;
    text-align: center;
    font-style: normal;
    text-transform: none;
    /* padding-top: 45px; */
  }

  .c_card_4 .c4_item p {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    height: 30px;
  }

  .c_card_4 .c4_item button {
    width: 120px;
    height: 38px;
    border: 1px solid #FFFFFF;
    display: block;
    background: transparent;
    font-size: 16px;
    color: #FFFFFF;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.08);
    font-weight: bold;
    margin: 0 auto;
    margin-top: 20px;
    border-radius: 3px;
  }

  .c_card_4 .c4_item:nth-child(1) {
    background: url("../assets/images/c4_3.jpg");
    background-size: 100%;
    background-position: center;
    transition: background-size 0.5s ease-in-out;
    /* 过渡效果 */
  }

  .c_card_4 .c4_item:nth-child(2) {
    background: url("../assets/images/c4_1.jpg");
    background-size: 100%;
    background-position: center;
    transition: background-size 0.5s ease-in-out;
    /* 过渡效果 */
  }

  .c_card_4 .c4_item:nth-child(3) {
    background: url("../assets/images/c4_2.jpg");
    background-size: 100%;
    background-position: center;
    transition: background-size 0.5s ease-in-out;
    /* 过渡效果 */
  }

  .c_card_4 .c4_item:hover {
    background-size: 115%;
  }

  .c_card_4 .c4_item:hover h2,
  .c_card_4 .c4_item:hover button,
  .c_card_4 .c4_item:hover p {
    color: #FFFFFF;
  }



  .c_card_4 .c4_item:nth-child(1):hover h2,
  .c_card_4 .c4_item:nth-child(1):hover button,
  .c_card_4 .c4_item:nth-child(1):hover p {
    color: #FFFFFF !important;
  }

  .c_card_4 .c4_item:hover button {
    border-color: #FFFFFF;
  }

  .c_card_4 .c4_item:nth-child(1):hover button {
    border-color: #FFFFFF !important;
  }

  .c_card_4 .c4_item:hover:nth-child(1) h2,
  .c_card_4 .c4_item:hover:nth-child(1) button,
  .c_card_4 .c4_item:hover:nth-child(1) p {
    color: #fff;
  }

  .c_card_4 .c4_item:hover:nth-child(1) button {
    border-color: #fff;
  }

  .c_1_active {
    color: #c22b25 !important;
  }

  .c_2_active {
    margin-right: 36px;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 24px;
    /* color: #484848; */
    line-height: 40px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    position: relative;
    color: #c22b25;
  }
  .c_2_active a{
    color: #c22b25;
  }

  .c_card_5 {
    margin-top: 30px;
    justify-content: space-between;
  }

  .c_card_5 .c_1_right {
    width: 49%;
    height: 278px;
    background: #FFFFFF;
    border-radius: 0px 0px 0px 0px;
    justify-content: space-between;
  }

  .c_card_5 .c_r_center h5 {
    font-weight: bold !important;
  }

  .c_card_5 .c_r_center .list_left {
    /* width: 580px !important; */
  }

  .c_card_5 .c_5_timer {
    font-size: 14px;
    color: #9F9F9F;
    font-style: normal;
    text-transform: none;
    margin-top: 5px;
  }

  .c_card_5 .c_r_text {
    font-size: 14px;
    color: #555555 !important;
    line-height: 25px;
    margin-top: 5px !important;
  }

  .c_card_5 .c_5_right {
    width: 49%;
    height: 395px;
    background: #FFFFFF;
    border-radius: 0px 0px 0px 0px;
    box-sizing: border-box;
    padding: 30px;
  }

  .c_card_5 .c_5_right .c_5_title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 24px;
    color: #C22B25;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin-bottom: 30px;
  }

  .c_card_5 .c_5_right .c_5_title img {
    height: 12px;
    margin: 0 15px;
  }

  .c_card_5 .c_5_right .c_5_content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .c_card_5 .c_5_right .c_5_content .c_5_item {
    width: 49%;
    height: 89px;
    background: #DEB778;
    border-radius: 0px 0px 0px 0px;
    margin-bottom: 10px;
    transition: all 0.5s;
  }
  .c_card_5 .c_5_right .c_5_content .c_5_item a{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .c_card_5 .c_5_right .c_5_content .c_5_item img {
    width: 50px;
    transition: all 0.2s;
    margin-right: 10px;
  }

  .c_card_5 .c_5_right .c_5_content .c_5_item p {
    font-size: 18px;
    color: #FFFFFF;
    line-height: 20px;
    margin-top: 10px;
    text-align: center;
    font-style: normal;
    text-transform: none;
  }

  .c_card_5 .c_5_right .c_5_content .c_5_item:hover img {
    transform: rotate(360deg);
  }

  .c_card_5 .c_5_right .c_5_content .c_5_item:nth-child(1) {
    background: #DEB778;
  }

  .c_card_5 .c_5_right .c_5_content .c_5_item:nth-child(2) {
    background: #D5BC8D;
  }

  .c_card_5 .c_5_right .c_5_content .c_5_item:nth-child(3) {
    background: #D5BC8D;
  }

  .c_card_5 .c_5_right .c_5_content .c_5_item:nth-child(4) {
    background: #DEB778;
  }

  .c_card_5 .c_5_right .c_5_bottom {
    width: 100%;
    height: 82px;
    background: #C22B25;
    border-radius: 0px 0px 0px 0px;
    overflow: hidden;
  }

  .c_card_5 .c_5_right .c_5_bottom .window {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    height: 82px;
    transition: all 0.3S;
  }

  .c_card_5 .c_5_right .c_5_bottom .window:hover {
    transform: scale(1.05);
  }

  .c_card_5 .c_5_right .c_5_bottom img {
    width: 56px;
    margin-right: 10px;
  }

  .c_card_5 .c_5_right .c_5_bottom h5 {
    font-size: 22px;
    color: #FFFFFF;
    line-height: 40px;
    text-align: center;
  }

  .c_card_5 .c_5_right .c_5_bottom p {
    font-size: 12px;
    color: #FFFFFF;
    line-height: 18px;
    text-align: center;
  }

  .c_card_6,
  .c_card_7 {
    width: 100%;
    min-height: 300px;
    margin-top: 30px;
  }

  .c_card_6 .c_6_title,
  .c_card_7 .c_6_title {
    background: url("../assets/images/banner.jpg");
    background-size: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    line-height: 70px;
  }

  .c_card_6 .c_6_title h3,
  .c_card_7 .c_6_title h3 {
    font-weight: bold;
    font-size: 30px;
    color: #C22B25;
    margin: 0;
  }

  .c_card_6 .c_6_content,
  .c_card_7 .c_6_content {
    position: relative;
    width: 1200px;
    margin: 0 auto;
    margin-top: 30px;
  }

  .c_card_6 .c_6_content .carousel-container_6,
  .c_card_7 .c_6_content .carousel-container_6 {
    width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    display: flex;
  }

  .c_card_6 .c_6_content .carousel-track_6,
  .c_card_7 .c_6_content .carousel-track_6 {
    display: flex;
    transition: transform 0.5s ease;
  }

  .c_card_6 .c_6_content .carousel-item_6,
  .c_card_7 .c_6_content .carousel-item_6 {
    flex: 0 0 386px;
    box-sizing: border-box;
    margin-right: 20px;
  }

  .c_card_6 .c_6_content .carousel-item_6 img,
  .c_card_7 .c_6_content .carousel-item_6 img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
  }

  .c_card_6 .c_6_content .carousel-nav_6,
  .c_card_6 .c_6_content .carousel-nav_7,
  .c_card_7 .c_6_content .carousel-nav_6,
  .c_card_7 .c_6_content .carousel-nav_7 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: transparent;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
  }

  .c_card_6 .c_6_content .carousel-nav_6 img,
  .c_card_6 .c_6_content .carousel-nav_7 img,
  .c_card_7 .c_6_content .carousel-nav_6 img,
  .c_card_7 .c_6_content .carousel-nav_7 img {
    width: 100%;
  }

  .c_card_6 .c_6_content .carousel-prev_6,
  .c_card_7 .c_6_content .carousel-prev_6 {
    left: -45px;
  }

  .c_card_6 .c_6_content .carousel-next_6,
  .c_card_7 .c_6_content .carousel-next_6 {
    right: -45px;
  }

  .c_card_6 .c_6_content .carousel-prev_7,
  .c_card_7 .c_6_content .carousel-prev_7 {
    left: -45px;
  }

  .c_card_6 .c_6_content .carousel-next_7,
  .c_card_7 .c_6_content .carousel-next_7 {
    right: -45px;
  }

  .c_card_6 .c_6_content .carousel-prev_7_1,
  .c_card_7 .c_6_content .carousel-prev_7_1 {
    display: none;
  }

  .c_card_6 .c_6_content .carousel-next_7_1,
  .c_card_7 .c_6_content .carousel-next_7_1 {
    display: none;
  }

  .c_card_7 {
    position: relative;
    /* 轮播轨道 */
  }

  .c_card_7 .carousel-container_7 {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    height: 185px;
    max-width: 1200px;
  }

  .c_card_7 .carousel-container_7_1 {
    display: none;
  }

  .c_card_7 .carousel-track_7 {
    display: flex;
    /* transition: transform 0.5s ease; */
    /* will-change: transform; */
  }

  .swiper-slide {
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    will-change: transform;
  }

  .swiper-slide_ll {
    height: auto;
  }

  .carousel-track_7 a {
    display: block;
    flex: 0 0 218px;
    width: 216px;
    height: 173px;
    background: #FFFFFF;
    box-shadow: 0px 0px 25px 1px rgba(0, 0, 0, 0.08);
    border-radius: 0px 0px 0px 0px;
    padding: 0 10px;
    box-sizing: border-box;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    /*color: #fff;*/
    color: #484848;
    padding-top: 32px;
    margin-right: 27px;
  }

  .c_card_7 .carousel-item_7 {
    width: 100%;
    height: 100%;
    /* flex: 0 0 218px;
    width: 216px;
    height: 173px;
    background: #FFFFFF;
    box-shadow: 0px 0px 25px 1px rgba(0, 0, 0, 0.08);
    border-radius: 0px 0px 0px 0px;
    padding: 0 50px;
    box-sizing: border-box;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    /*color: #fff;*/
    /* color: #484848;
  
    padding-top: 32px;
    margin-right: 27px; */
  }

  .c_card_7 .carousel-item_7 img {
    width: 50px !important;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .c_card_7 .carousel-nav_7 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: transparent;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
  }

  .c_card_7 .carousel-nav_7 img {
    width: 100%;
  }

  .c_card_7 .carousel-item_7 img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
  }

  .card_8 {
    width: 1200px;
    min-height: 145px;
    background: #FFFFFF;
    border-radius: 0px 0px 0px 0px;
    margin-top: 30px;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 0;
  }

  .card_8_item {
    width: 360px;
    height: 85px;
    background: #FFFFFF;
    border-radius: 0px 0px 0px 0px;
    border: 1px solid #c1c1c1;
    margin-bottom: 30px;
    overflow: hidden;
  }

  .card_8_item .window {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
    margin-left: 0;
  }

  .card_8_item .window:hover {
    transform: scale(1.1);
  }

  .card_8_item img {
    width: 50px;
    height: 50px;
  }

  .card_8_item div {
    margin-left: 15px;
  }

  .card_8_item p {
    font-weight: bold;
    font-size: 17px;
    /*color: #fff;*/
    color: #484848;
    text-align: center;
    font-style: normal;
  }

  .footer {
    width: 100%;
    height: auto;
    background: #C22B25;
    border-radius: 0px 0px 0px 0px;
    margin-top: 30px;
    display: flex;
    padding-top: 30px;
    box-sizing: border-box;
  }

  .footer .container {
    display: flex;
    justify-content: space-between;
  }

  .footer .f_left {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 40px;
    text-align: left;
    font-style: normal;
    text-transform: none;
  }

  .footer .f_right {
    display: flex;
  }

  .footer .f_right .f_item {
    margin-left: 30px;
  }

  .footer .f_right p {
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin-top: 5px;
  }

  .footer .f_right img {
    width: 120px;
  }

  /* 导航栏容器 */
  .navbar {
    background: #c22b25;
    border-radius: 4px;
  }

  /* 主菜单样式 */
  .nav-menu {
    list-style: none;
    display: flex;
    position: relative;
    align-items: center;
    height: 70px;
  }

  .nav-menu>li {
    position: relative;
    height: 100%;
  }

  .nav-menu>li>a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 15px 17px;
    transition: all 0.3s ease;
    font-size: 16px;
    white-space: nowrap;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 16px;
  }

  .nav-right{
    display: flex;
    position: relative;
  }

  .nav-right-btn{
    width: 16px;
    position: absolute;
    right: 98px;
    top: 10px;
    display: none;
  }

  .nav-menu>li>a:hover {
    /* background: #34495e; */
    background: #980600;
  }

  /* 二级菜单样式 */
  .submenu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #980600;
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  .nav-menu>li:hover>.submenu {
    opacity: 1;
    visibility: visible;
  }

  .submenu li {
    position: relative;
    border-bottom: 1px solid #980600;
  }

  .submenu li:last-child {
    border-bottom: none;
  }

  .submenu li a {
    display: block;
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .submenu li a:hover {
    background: #980600;
    color: #FFC66A;
    padding-left: 25px;
  }

  /* 三级菜单样式 */
  .submenu .third-level {
    list-style: none;
    position: absolute;
    left: 100%;
    top: 0;
    background: #980600;
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  }

  .submenu li:hover>.third-level {
    opacity: 1;
    visibility: visible;
  }

  .third-level li a {
    padding: 10px 15px;
    border-bottom: 1px solid #980600;
  }

  .third-level li:last-child a {
    border-bottom: none;
  }

  /* 当前页面高亮样式 - 这些类可以通过PHP动态添加 */
  .current>a,
  .current-parent>a {
    background: #980600;
    color: #FFC66A !important;
  }

  ul {
    list-style: none !important;
  }


  .s_1_ellipsis {
    display: block;
  }

  .window_content {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    height: 110px;
    transition: all 0.3S;
  }

  .window_content_text{
    margin-right: 30px;
  }
  .phone_content_text{
    display: none;
  }

  .scroller-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    position: relative;
  }

  .scroller-container {
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .scroller-track {
    display: flex;
    will-change: transform;
    padding: 0 60px;
    /* 为箭头留出空间 */
  }

  .scroller-item {
    flex: 0 0 377px;
    margin: 0 10px;
    transition: transform 0.3s ease;
  }

  .scroller-item:hover {
    transform: scale(1.05);
  }

  .scroller-item a {
    display: block;
    width: 100%;
    height: 100%
  }

  .scroller-item a img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: block;
  }

  .scroller-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .scroller-nav:hover {
    background: rgba(0, 0, 0, 0.9);
  }

  .scroller-prev {
    left: 10px;
  }

  .scroller-next {
    right: 10px;
  }

  .carousel-nav_1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: transparent;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;

    img {
      width: 100%;
    }
  }

  .carousel-prev_1 {
    left: -5px;
  }

  .carousel-next_1 {
    right: -5px;
  }

  /*# sourceMappingURL=index.css.map */

  .footer_banner{
    position: fixed;
    bottom: 28%;
    right: 0;
    width: 70px;
    height: auto;
    min-height: 1px;
    z-index: 6666;
  }
  .footer_banner img{
    width: 100%;
  }

  .float_qq {
    position: fixed;
    bottom: -70px;
    right: 0;
    width: 70px;
    height: 320px;
    min-height: 1px;
    z-index: 6666;
  }

  .float_qq li {
    z-index: 20;
    margin-bottom: 4px;
    display: block;
    height: 60px;
    background-color: #c22b25;
    border-radius: 4px 0 0 4px;
  }

  .float_qq li a p {
    display: block;
    width: 70px;
    height: 60px;
    overflow: hidden;
    float: left;
  }

  .float_qq li a p img {
    height: 18px;
    display: block;
    margin: 0px auto;
    margin-top: 15px;
  }

  .float_qq li a p span {
    color: #fff;
    font-size: 12px;
    display: block;
    text-align: center;
  }

  .float_qq li a span {
    color: #fff;
    font-size: 12px;
    display: block;
    text-align: center;
  }

  .float_qq5_img {
    display: none;
    position: absolute;
    right: 70px;
    /* 位于按钮左侧 */
    top: 0;
    width: 120px;
    /* 设置图片容器宽度 */
    height: 120px;
    /* 设置图片容器高度 */
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 30;
  }

  .float_qq5_img img {
    width: 100%;
    height: 100%;
    display: block;
  }

  /* 当鼠标悬停在p标签上时显示图片 */
  .float_qq li a p:hover+.float_qq5_img,
  .float_qq li a:hover .float_qq5_img {
    display: block;
  }

  .float_qq7_img {
    display: none;
    position: absolute;
    right: 70px;
    /* 位于按钮左侧 */
    top: 0;
    width: 120px;
    /* 设置图片容器宽度 */
    height: 120px;
    /* 设置图片容器高度 */
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 30;
  }

  .float_qq7_img img {
    width: 100%;
    height: 100%;
    display: block;
  }

  /* 当鼠标悬停在p标签上时显示图片 */
  .float_qq li a p:hover+.float_qq7_img,
  .float_qq li a:hover .float_qq7_img {
    display: block;
  }


  .float_qq5 {
    position: absolute;
    top: 0px;
    left: 0;
  }

  .float_qq7 {
    position: absolute;
    top: 64px;
    left: 0;
  }

  .float_qq4 {
    position: absolute;
    top: 127px;
    left: 0;
  }

  .float_qq8 {
    position: absolute;
    top: 191px;
    left: 0;
  }

  .float_qq3 {
    position: absolute;
    top: 254px;
    left: 0;
    width: 172px;
    transition: 0.6s;
  }

  .float_qq3:hover {
    left: -110px;
  }

  .float_qq1 {
    position: absolute;
    top: 318px;
    left: 0;
  }

  .float_shwx {
    position: absolute;
    top: -190px;
    left: -220px;
    width: 220px;
    height: 240px;
    padding-bottom: 9px;
    display: none;
    background: #fff;
  }

  .float_shwx img {
    display: block;
    padding: 14px;
    background-color: #FFF;
    width: 188px;
    height: 188px;
  }

  .float_shwx p {
    line-height: 20px;
    text-align: center;
    font-size: 16px;
    color: #5c5c5c;
  }

  .float_shwx1 {
    position: fixed;
    bottom: 60%;
    right: 60px;
    z-index: 1;
    display: none;
    width: 125px;
    height: auto;
    min-height: 1px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.16);
    padding: 5px 2px;
  }

  .float_shwx1 img {
    width: 106px;
    border: 2px solid #fff;
    display: block;
    margin: 0 auto;
  }

  .float_shwx1 span {
    display: block;
    text-align: center;
    color: #8e8e8e;
    font-size: 14px;
    margin-top: 3px;
    margin-bottom: 3px;
  }

  .float_l {
    position: fixed;
    bottom: 14%;
    left: 0;
    width: 100px;
    z-index: 1;
  }

  .float_l img {
    width: 100%;
  }

  .float_r {
    position: fixed;
    bottom: 14%;
    right: 0;
    width: 100px;
    z-index: 1;
  }

  .float_r img {
    width: 100%;
  }

  .float_rczp {
    width: 130px;
    position: fixed;
    bottom: 3%;
    right: 0;
    z-index: 1;
  }

  .float_rczp img {
    width: 100%;
  }

  .float_l p {
    width: 22px;
    height: 14px;
    font-size: 12px;
    background-color: #e0e0e0;
    color: #484848;
    text-align: center;
    float: right;
    cursor: pointer;
  }

  .float_l p span {
    transform: scale(0.5);
    width: 24px;
    transform: scale(0.6);
    display: block;
    margin-top: -1px;
  }

  .float_r p {
    width: 22px;
    height: 14px;
    font-size: 12px;
    background-color: #e0e0e0;
    color: #484848;
    text-align: center;
    float: left;
    cursor: pointer;
  }

  .float_r p span {
    transform: scale(0.5);
    width: 24px;
    transform: scale(0.6);
    display: block;
    margin-top: -1px;
  }

  .float_rczp p {
    width: 22px;
    height: 14px;
    font-size: 12px;
    background-color: #e0e0e0;
    color: #484848;
    text-align: center;
    float: left;
    cursor: pointer;
  }

  .float_rczp p span {
    transform: scale(0.5);
    width: 24px;
    transform: scale(0.6);
    display: block;
    margin-top: -1px;
  }

  /* 新增图片区域 */
  .c_card_img,
  .c_card_img_2{
    width: 1200px;
    margin: 20px auto;
  }
  .c_card_img img,
  .c_card_img_2 img{
    width: 100%;
  }
  .phone_img{
    display: none;
  }
  .c_card_img_3{
    display: none;
  }

  /* 隐藏手机端新增图片 */
  .c_card_9{
    display: none;
  }

  /* 隐藏手机端显示的要闻 */
  .carousel_home_phone{
    display: none;
  }


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

  .c_card_1_c .c_1_left {
  width: 678px;
  height: 419px;
  border-radius: 0px 0px 0px 0px;
}

.c_card_1_c .c_1_right {
  width: 561px;
  height: 419px;
  background: #FFFFFF;
  border-radius: 0px 0px 0px 0px;
  padding: 32px 30px;
}

.c_card_1_c .c_1_right .c_r_top {
  width: 100%;
  height: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c_card_1_c .c_1_right .top_l {
  display: flex;
  justify-content: space-between;
}

/* .c_card_1_c .c_1_right .more img {
  width: 12px;
} */
.c_card_1_c  .c_1_right h4 {
  margin-right: 36px;
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: 500;
  font-size: 24px;
  color: #484848;
  line-height: 40px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  position: relative;
}
.c_card_1_c .c_1_right h4:nth-child(2):before {
  position: absolute;
  content: "";
  width: 2px;
  height: 25px;
  background: #e2e2e2;
  top: 10px;
  left: -18px;
}

.c_card_1_c .c_1_right h4:hover {
  color: #c22b25;
}

.c_card_1_c .c_1_right .c_r_center {
  margin-top: 25px;
}

.c_card_1_c .c_1_right .c_r_center h5:hover {
  color: #c22b25;
}

.c_card_1_c .c_1_right .c_r_text {
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: 400;
  font-size: 14px;
  color: #555555;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-top: 18px;
}

.c_card_1_c .c_1_right .c_r_text:hover {
  color: #C22B25;
}

.c_card_1_c .c_1_right .divide {
  margin-top: 18px;
  margin-bottom: 18px;
  width: 100%;
  height: 2px;
  border-bottom: 1px dashed #6e6e6e;
}

.c_card_1_c .c_1_right .list {
  width: 100%;
}

.c_card_1_c .c_1_right .list .list_left{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 350px;
}

.c_card_1_c .c_1_right .list .list_left p a{
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  line-height: 20px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  cursor: pointer;
}

.c_card_1_c .c_1_right .list .list_left p a:hover {
  color: #C22B25;
}

.c_card_1_c .c_1_right .list li {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.c_card_1_c  .c_1_right .list li .radio{
  width: 7px;
  height: 6px;
  border: 2px solid #D5BC8D;
  border-radius: 50px;
  margin-right: 5px;
}

.c_card_1_c .c_1_right .list li .timer {
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: 400;
  font-size: 14px;
  color: #9F9F9F;
  text-align: right;
  font-style: normal;
  text-transform: none;
}

.c_card_1_c .carousel-control.next{
  right: -6px;
}

  /* 手机端轮播取消 */
  .phone_carousel-container_6{
    display: none;
  }

  .carousel-container_6 .swiper-slide:first-child {
  margin-left: 10px !important;
}

/* 模块8底部新增搜索部分开始 */
.card_8_search{width: 100%;height: auto;margin: 30px 0;display: flex;align-items: center;justify-content: space-between;}
.card_8_search img{margin: 0 10px; width: 30%;}
.card_8_search select{width: 360px; height: 40px; margin: 0 10px; border: 1px solid #ccc; border-radius: 5px;padding: 0 10px;background: #F5F5F5;}
/* 模块8底部新增搜索部分结束 */

.c_card_img_phone{
  display: none;
}
}

/* 中等屏幕适配（如平板） */
@media screen and (min-width: 1200px)and (max-height: 950px) {
  .footer_banner {
    position: fixed;
    bottom: 30%;
    right: 0;
    width: 60px;
    height: auto;
    min-height: 1px;
    z-index: 6666;
  }
  
  .float_qq {
    width: 60px;
    height: 280px;
  }
  .float_qq li a p{
    display: block;
    width: 60px;
    height: 60px;
    overflow: hidden;
    float: left;
  }
}

/*# sourceMappingURL=index.css.map */