* {
  border: 0;
  padding: 0;
  box-sizing: border-box;
  margin: 0;
 font-family: Microsoft YaHei;
}
@font-face {
  font-family: 'MyFont';   /*字体名称*/
  src: url('../font/SourceHanSerifCN-SemiBold.otf');       /*字体源文件*/
}
body {
  min-width: 1500px;
}
  a, a:hover{
    text-decoration: none;
  }
.other{
height: 65px;
      line-height: 65px;
      text-align: center;
      font-size: 20px;
      color: #fff;
      border-bottom: 2px solid transparent;
      font-weight: 400;
}

.nav {
  height: 65px;
  background: #920f15;

  .content_width {
    display: flex;
    justify-content: space-between;

    div {
      height: 65px;
      line-height: 65px;
      text-align: center;
      font-size: 20px;
      color: #fff;
      border-bottom: 2px solid transparent;
      font-weight: 400;
    }

    .active {
      border-color: #fff;
    }
  }
}
   .content_width >a {
      border-color: #fff;
height: 65px;
      line-height: 65px;
      text-align: center;
      font-size: 20px;
      color: #fff;
      border-bottom: 2px solid transparent;
      font-weight: 400;
    }
.t1 {
  height: 120px;
  background: url("../image/index_top_bg.jpg") center no-repeat;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

img {
  display: block;
}

.content_width {
  width: 1400px;
  margin: 0 auto;
}

.t4 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.t3 {
  background: url("../image/index_bg.jpg") center no-repeat;
  background-size: 100% 100%;
  margin: 40px 0;
  padding-bottom: 80px;
}
.box1 {
  width: 680px;
  font-family: Source Han Serif CN;
}
.img1 {
  position: relative;
}
.bak {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  .img_bottom {
    position: absolute;
    width: 100%;
    padding: 20px;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
  }
}

.circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #aab0b9;
  margin: 0 15px 0 10px;
}
.circle2 {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #a11319;
  margin: 0 15px 0 10px;
  border: 2px solid #f8babc;
  position: relative;
  z-index: 10;
}
.line {
  position: absolute;
  height: 84%;
  width: 1px;
  left: 131px;
  background: rgba(179, 178, 178, 0.28);
  top: 30px;
  z-index: 0;
}
.box3 {
  width: 342px;
  height: 126px;
  background: #fff;
  border: 1px solid #e6e6e6;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 23px 34px;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
}
.t6 {
  background: #a11319;
  .content_width {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: start;
    color: #fff;
    gap: 20px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 20px;
  }
  .box4 {
    background: rgba(255, 255, 255, 0.15);
    text-align: center;
    height: 60px;
    width: 208px;
    line-height: 60px;
    font-weight: 400;
    opacity: 0.9;
  }
}
.t7 {
  text-align: center;
  height: 60px;
  width: 100%;
  line-height: 60px;
  font-weight: 400;
  background: #bb1d23;
  color: rgba(255, 255, 255, 0.8);
}
n-items: center;
    justify-content: start;
    color: #fff;
    gap: 20px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 20px;
  }
  .box4 {
    background: rgba(255, 255, 255, 0.15);
    text-align: center;
    height: 60px;
    width: 208px;
    line-height: 60px;
    font-weight: 400;
    opacity: 0.9;
  }
}
.t7 {
  text-align: center;
  height: 60px;
  width: 100%;
  line-height: 60px;
  font-weight: 400;
  background: #bb1d23;
  color: rgba(255, 255, 255, 0.8);
}

/* 轮播样式 */
.lunbo {
  position: relative;
  overflow: hidden;
  height: 490px;
  
  .slides {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    
    &.active {
      opacity: 1;
    }
  }
  
  .carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
  }
  
  .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
    
    &.active {
      background-color: #fff;
      width:30px;
      border-radius: 5px;
    }
  }
}