/* 基础样式保持不变 */
body{
  font-size: 0.8rem;
  margin:0;
  padding:0;
  overflow-x: hidden; /* 防止水平滚动 */
}
.flex-ct{
  display: flex;
  flex-wrap: wrap;
}
.wd100{
  width: 100%;
}
.flex-sort{
  justify-content: space-between;
  align-items: center;
}
.logo img{
  filter: brightness(0) invert(1);
  height: 60px;
}

.wrapper{
  position: relative;
  width: 100%;
  height: auto; /* 改为自动高度 */
  min-height: 900px; /* 至少占满屏幕高度 */
  
}
.slider{
  position: absolute;
  top: 0;
  left: 0;
  z-index: -99;
}
.slider img{
  width: 100%;
  height: auto;
}
.nav{
  color:#fff;
  width: 90%; /* 改为百分比宽度 */
  max-width: 1920px; /* 最大宽度限制 */
  margin: 0 auto;
  padding: 10px 0; /* 添加内边距 */
}
.menu{
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap; /* 小屏幕时允许换行 */
}
.nav a{
  color: #fff;
  margin-right: 15px; /* 减小间距 */
  margin-bottom: 10px; /* 添加底部间距 */
  text-decoration: none;
  font-size: 14px; /* 减小字体大小 */
}

.bc{
  margin: 20px 0; /* 减小外边距 */
}
.section-title{
  font-size: 2rem; /* 使用相对单位 */
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2; /* 使用相对行高 */
  color: rgba(40, 50, 47, 1);
  text-align: left;
  width: 100%; /* 改为全宽 */
  max-width: 510px; /* 最大宽度限制 */
  padding: 0 15px; /* 添加内边距 */
  box-sizing: border-box;
}

.sc1{
  position: relative;
  align-items: start;
  flex-direction: column; /* 默认垂直排列 */
}
.sc1-left{
  padding: 0 15px; /* 减小内边距 */
  display: inline-flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* 改为全宽 */
  box-sizing: border-box;
}
.sc1-right{
  width: 100%; /* 改为全宽 */
  box-sizing: border-box;
  padding-top: 30px; /* 减小内边距 */
  height: 1020px;
}
.sc1-left {
  width: 55%; /* 恢复50%宽度 */
}
.sc1-right{
  width: 45%;
}
.sc1-left-text{
  width: 100%; /* 改为全宽 */
  max-width: 510px; /* 最大宽度限制 */
  margin: 30px 0; /* 减小外边距 */
  color: rgba(153, 153, 153, 1);
  line-height: 1.5; /* 使用相对行高 */
  font-size: 14px;
  padding: 0 15px; /* 添加内边距 */
  box-sizing: border-box;
}
.sc1-left hr {
  width: 100%; /* 改为全宽 */
  max-width: 510px; /* 最大宽度限制 */
  margin: 15px auto; /* 居中并添加外边距 */
}

.textfff{
  color: #fff!important;
}
.sc1-right-bkd{
  width: 100%;
  height: auto; /* 改为自动高度 */
  min-height: 300px; /* 最小高度 */
  background: url("/img/INDO.png") no-repeat ;
  background-size: 100% auto;
  position: relative;
}

.sc1-right-text{
  position: absolute;
  right: 15px; /* 减小间距 */
  top: 30px; /* 减小间距 */
  width: calc(100% - 30px); /* 计算宽度 */
}
.sc1-right-text .small-tit{
  font-size: 16px;
  margin-bottom: 25px;
  text-align: right;
  padding-right: 25px;
}
.sc1-right-text .main-tit{
  font-size: 1.8rem; /* 使用相对单位 */
  font-weight: 600;
  text-align: right;
  line-height: 1.2; /* 使用相对行高 */
}
.sc1-float{
  display: flex;
  justify-content: center; /* 改为居中 */
  position: relative; /* 改为相对定位 */
  align-items: center;
  bottom: auto; /* 移除绝对定位 */
  margin: 30px 0; /* 添加外边距 */
  flex-wrap: wrap; /* 允许换行 */
  width: 100%; /* 全宽 */
}
.sc1-float img{
  width: 45%; /* 使用百分比宽度 */
  max-width: 374px; /* 最大宽度限制 */
  height: auto; /* 自动高度 */
  aspect-ratio: 374/432; /* 保持宽高比 */
  margin-right: 62px; /* 减小间距 */
}

/* 媒体查询 - 平板尺寸 (768px 及以上) */
@media (min-width: 768px) {
  .sc1 {
    flex-direction: row; /* 恢复水平排列 */
  }
  .sc1-left {
    width: 55%; /* 恢复50%宽度 */
  }
  .sc1-right{
    width: 45%;
  }
  .sc1-left {
    padding: 0 30px; /* 增大内边距 */
  }
  .sc1-right-text {
    right: 30px; /* 增大间距 */
    top: 60px; /* 增大间距 */
  }
  .sc1-float {
    position: absolute; /* 恢复绝对定位 */
    bottom: 5px; /* 恢复底部定位 */
    justify-content: start; /* 恢复左对齐 */
  }
  .sc1-float img {
    width: calc(33% - 16px); /* 计算宽度 */
  }
}

/* 媒体查询 - 桌面尺寸 (1024px 及以上) */
@media (min-width: 1024px) {
  body {
    font-size: 0.8rem; /* 恢复原始字体大小 */
  }
  .nav {
    width: 90%; /* 百分比宽度 */
  }
  .nav a {
    margin-right: 30px; /* 恢复原始间距 */
    font-size: inherit; /* 恢复原始字体大小 */
  }
  .section-title {
    font-size: 51px; /* 恢复原始字体大小 */
    line-height: 64px; /* 恢复原始行高 */
  }
  .sc1-left {
    padding: 0 114px; /* 恢复原始内边距 */
  }
  .sc1-right-bkd {
    height: 1020px; /* 恢复原始高度 */
  }
  .sc1-right-text .main-tit {
    font-size: 45px; /* 恢复原始字体大小 */
  }
}


.sc2{
  margin-top: 30px;
  align-items: start;
}
.sc2-left{
  width: 60%;
  background: url("../img/分组 22.png") no-repeat ;
  background-size: 100% auto;
  min-height: 660px;
  flex-flow: column;
  justify-content: start;
  box-sizing: border-box;
  padding: 125px 83px 38px 363px;
}
.sc2-right{
  width: 40%;
  display:inline-flex;
  flex-flow: column;
  padding-left: 160px;
  padding-top: 60px;
  box-sizing: border-box;
}
.sc2-right .content-item{
  margin-bottom: 45px;
}
.sc2-right .content-item div{
  color: rgba(40, 50, 47, 1);
  font-size: 30px;

}
.sc2-right .content-item p{
  color: rgba(153, 153, 153, 1);
  font-size: 15px;
}
.sc2 .section-title{
  padding: 0;

}
.sc2 .bk-text{
  margin: 30px 0 200px 0 ;
}

.sc2-left button{
  width: 200px;
  height: 48px;
  border: none;
  background: #fff;
  color: rgba(40, 50, 47, 1);
  font-size: 18px;
  cursor: pointer;
}

.sc3{
  background: rgba(28, 28, 28, 1);
  box-sizing: border-box;
  padding-top: 60px;
  position: relative;
}
.sc3 div,.sc3  p{
  color: #fff;
}
.sc3-main{
  width: 1200px ;
  margin: 0 auto;
}
.sc3-main .sc3-item{
  width: 25%;

}
.sc3-main .sc3-item img{
  width: 100%;
  height: auto;
  max-width: 263px;
  max-height: 300px;
}
.sc3-small-tit{
  font-size: 16px;
  font-weight: 600;
}
.sc3-main .sc3-item p{
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}
.sc3-small-img{
  padding-top: 35px;
  position: relative;
  cursor: pointer;
}
.sc3-small-img .cloth{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: rgba(28, 28, 28, 1);
}
.sc3 .about{
  width: 100%;
  min-height: 615px;
  padding-top: 186px;
  box-sizing: border-box;
}
.about-left{
  width: 50%;
}
.foot-show{
  position: absolute;
  right: 0;
  bottom: 0;
}
.about-text{
  letter-spacing: 0px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.8);
}

footer{
  background: rgba(28, 28, 28, 1);
  color: white!important;
}
.w1200{
  width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  padding: 55px 0;
}
.foot-logo{
  width: 33%;
}
.foot-logo img{
  width: 60%;
  filter: brightness(0) invert(1);
}
.foot-info{
  width: 43%;
}
.foot-imgs{
  width: 23%;
}
.foot-img{
  display: inline-flex;

  align-items: center;
  justify-content: center;
  flex-flow: column;
}
