/* 轮播图容器 */
.layui-carousel {
  height: 760px;
  background-color: #fff;
}

.layui-carousel [carousel-item] {
  height: 760px;
}

/* 轮播项 */
.layui-carousel [carousel-item]>div {
  position: relative;
  height: 100%;
}

/* 轮播图片 */
.layui-carousel [carousel-item] img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 轮播文本 */
.layui-carousel .layui-text {
  position: absolute;
  top: 40%;
  left: 45%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  text-align: left;
  color: #fff;
  font-weight: 700;
}

.layui-carousel .layui-text h2 {
  font-size: 48px;
  font-weight: 700;
}

.layui-carousel .layui_btn {
  position: absolute;
  top: 65%;
  left: 28%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.layui-carousel .layui_btn a {
  padding: 15px 30px;
  background-color: #485030;
  color: #fff;
  font-size: 18px;
  border-radius: 48px;
}

.layui-carousel .layui_btn i {
  margin-left: 10px;
}

.content {
  position: relative;
  margin: 100px 0 30px;
  overflow: hidden;
}

.content .content_img {
  position: absolute;
  top: 20%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 220px;
  object-fit: cover;
}

.content .wrapper {
  position: relative;
}

.content .content_pic {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  padding: 0 20px;
}

.content .content_pic img {
  width: 23%;
  height: 200px;
  object-fit: cover;
}

.content_title {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  padding: 30px 40px;
  z-index: 10;
  margin-bottom: 100px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
}

.content_title .p_tex {
  width: 430px;
  font-size: 26px;
  color: #282B29;
}

.content_title .p_text {
  width: 378px;
  padding-top: 72px;
  font-size: 20px;
  color: #6E706F;
}

.content_title .content_btn {
  background-color: #485030;
  color: #fff;
  font-size: 18px;
  border-radius: 48px;
  transition: all 0.3s ease;
  margin-top: 48px;
  padding: 15px 30px;
  text-align: center;
  height: 48px;
  line-height: 18px;
}

.content_title .content_btn a {
  display: inline-block;
  color: #fff;
  font-size: 18px;
}

.content_btn i.iconfont {
  margin-left: 10px;
}

.content_item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  max-width: 1920px;
  padding: 0 20px;
  list-style: none;
  overflow: hidden;
  text-align: center;
}

.content_item li .item_img_bg {
  overflow: hidden;
  max-height: 500px;
}

.content_item .item_img1 {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.content_item .item_img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.content_item .item_img1:hover img {
  transform: scale(1.1);
}

.content_item .item_img1 .item_text1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.content_item .item_img1 .item_text1 .number {
  width: 68px;
  height: 68px;
  line-height: 68px;
  font-size: 32px;
  font-weight: bold;
  background-color: #485030;
  border-radius: 50%;
  margin-bottom: 20px;
  margin: 0 auto 20px;
}

.content_item .item_img1 .item_text1 h3 {
  font-size: 32px;
  font-weight: bold;
}

.content_item .item_img1 .item_text1 p {
  width: 190px;
  font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  -webkit-line-clamp: 3;
  -moz-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
}

.product {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
}

.product_title {
  text-align: center;
  color: #282B29;
  font-size: 42px;
  padding: 50px 0 50px;
  margin: 0;
}

.product_title h3 {
  margin: 0;
}

.product_list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  row-gap: 40px;
  column-gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.product_item {
  height: auto;
}

.product_item .product_item_img {
  display: block;
  overflow: hidden;
  max-height: 460px;
  text-decoration: none;
}

.product_item .product_item_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;

}

.product_item:hover .product_item_img img {
  transform: scale(1.05);
}

.product_item_text {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
}

.product_item p {
  margin-right: 10px;
  font-weight: 400;
  font-size: 18px;
  color: #282B29;
  line-height: 25px;
  margin: 0 10px 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  -webkit-line-clamp: 2;
  -moz-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
}

.product_item span {
  display: block;
  font-weight: 400;
  font-size: 18px;
  color: #485030;
  line-height: 25px;
  text-align: right;
  font-style: normal;
  text-transform: none;
  margin: 0;
}

.product .product_btn {
  width: 158px;
  background-color: #485030;
  color: #fff;
  font-size: 18px;
  border-radius: 48px;
  transition: all 0.3s ease;
  margin: 48px auto 0;
  padding: 15px 30px;
  text-align: center;
  height: 48px;
  line-height: 18px;
}

.product .product_btn a {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.product .product_btn i {
  margin-left: 10px;
}

.divider_box {
  margin: 100px 0;
}

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

.divider_left,
.divider_right {
  position: relative;
  flex: 1;
}

.divider_left a,
.divider_right a {
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
}

.divider_left img,
.divider_right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .divider_text,
.divider_text1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  color: #fff;
  margin: 0;
  width: 90%;
  background-color: rgba(0, 0, 0, 0.5);
} */

.newproduct {
  margin-bottom: 100px;
}

.newproduct .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.newproduct_title {
  text-align: center;
  color: #282B29;
  font-size: 42px;
  padding-bottom: 50px;
  margin: 0;
}

.newproduct_title h3 {
  margin: 0;
}

.newproduct_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.newproduct_item {
  display: block;
  overflow: hidden;
}

.newproduct_item a {
  display: block;
  overflow: hidden;
  text-decoration: none;
}

.newproduct_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.newproduct_item:hover img {
  transform: scale(1.1);
}

/* 响应式布局 - 大屏幕 */
@media (max-width: 1200px) {

  /* 轮播图 */
  .layui-carousel {
    height: 388px;
  }

  .layui-carousel [carousel-item] {
    height: 388px;
  }

  .layui-carousel .layui-text {
    top: 40%;
    left: 40%;
  }

  .layui-carousel .layui-text h2,
  .layui-carousel .layui-text p {
    font-size: 36px;
  }

  .layui-carousel .layui_btn {
    top: 70%;
    left: 20%;
  }

  /* 内容区域 */
  .content {
    margin: 60px 30px;
  }

  /* 非轮播图区域图片响应式设置 */
  .content_item .item_img1 img,
  .product_item .product_item_img img,
  .divider_left img,
  .divider_right img,
  .newproduct_item img {
    object-fit: contain;
  }

  .content .content_img {
    width: 500px;
    height: 180px;
  }

  .content .content_pic {
    padding: 0 30px;
  }

  .content_title {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1000px;
    padding: 30px 40px;
    margin-bottom: 60px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
  }

  .content_title .p_tex {
    width: 380px;
    font-size: 24px;
  }

  .content_title .p_text {
    width: 320px;
    padding-top: 60px;
    font-size: 18px;
  }

  .content_item .item_text1 h3 {
    font-size: 28px;
  }

  .content_item .item_text1 p {
    font-size: 16px;
    width: 170px;
  }

  /* 产品列表 */
  .product {
    padding: 0 40px;
  }

  .product_title {
    font-size: 36px;
    padding: 60px 0 30px;
  }

  .product_list {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }


  .product_item p,
  .product_item span {
    font-size: 16px;
  }

  /* 分隔区域 */
  .divider {
    margin: 60px 0;
  }

  .divider_text,
  .divider_text1 {
    font-size: 28px;
  }

  /* 新品区域 */
  .newproduct_title {
    font-size: 36px;
    padding-bottom: 30px;
  }

  .newproduct_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* 响应式断点 - 平板 (768px-991px) */
@media (min-width: 768px) and (max-width: 991px) {

  /* 轮播图 */
  .layui-carousel {
    height: 299px;
  }

  .layui-carousel [carousel-item] {
    height: 299px;
  }

  .layui-carousel .layui-text {
    top: 35%;
    left: 50%;
  }

  .layui-carousel .layui-text h2,
  .layui-carousel .layui-text p {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .layui-carousel .layui_btn {
    top: 70%;
    left: 33%;
  }

  .layui-carousel .layui_btn a {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* 内容区域 */
  .content {
    margin: 40px 0;
  }

  /* 非轮播图区域图片响应式设置 */
  .content_item .item_img1 img,
  .product_item .product_item_img img,
  .divider_left img,
  .divider_right img,
  .newproduct_item img {
    object-fit: contain;
  }

  .content .content_img {
    display: none;
  }

  .content .content_pic {
    padding: 0 20px;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .content .content_pic img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .content_title {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
  }

  .content_title .p_tex {
    width: 100%;
    font-size: 28px;
  }

  .content_title .p_text {
    width: 100%;
    font-size: 24px;
    padding-top: 30px;
  }

  .content_title .content_btn {
    margin: 30px 70px 0;
  }


  .content_item .item_text1 h3 {
    font-size: 24px;
  }

  .content_item .item_text1 p {
    font-size: 14px;
    width: 150px;
  }

  /* 产品列表 */
  .product {
    padding: 0 20px;
  }

  .product_title {
    font-size: 28px;
    padding: 40px 0 20px;
  }

  .product_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .product_item p,
  .product_item span {
    font-size: 14px;
  }

  /* 分隔区域 */
  .divider {
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
  }

  .divider_text,
  .divider_text1 {
    font-size: 22px;
  }

  /* 新品区域 */
  .newproduct_title {
    font-size: 28px;
    padding-bottom: 20px;
  }

  .newproduct_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

/* 响应式断点 - 移动端 (<768px) */
@media (max-width: 768px) {

  /* 轮播图 */
  .layui-carousel {
    height: 160px !important;
  }

  .layui-carousel [carousel-item] {
    height: 160px;
  }

  .layui-carousel .layui-text {
    display: none;
  }

  .layui-carousel .layui_btn {
    display: none;
  }

  .layui-carousel .layui_btn a {
    padding: 8px 16px;
    font-size: 12px;
  }

  /* 内容区域 */
  .content {
    margin-top: 30px;
  }

  /* 非轮播图区域图片响应式设置 */
  .product_item .product_item_img img,
  .divider_left img,
  .divider_right img,
  .newproduct_item img {
    object-fit: contain;
  }

  .content .content_img {
    display: none;
  }

  .content .content_pic {
    padding: 0 15px;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .content .content_pic img {
    width: 100%;
    height: 120px;
    object-fit: cover;
  }

  .content_title {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 600px;
    padding: 30px 30px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
  }

  .content_title .p_tex {
    width: 100%;
    text-align: center;
    font-size: 18px;
  }

  .content_title .p_text {
    font-size: 14px;
    width: 100%;
    text-align: center;
    padding-top: 20px;
  }

  .content_title .content_btn {
    margin: 10px 20px;
  }

  .content_item {
    width: 100%;
    height: 100%;
    gap: 15px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: 15px;
  }

  .content_item li {
    width: 100%;
    position: relative;
  }

  .content_item .item_img1 {
    display: block;
    width: 100%;
    position: relative;
  }

  .content_item .item_img1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .content_item .item_img1 .item_text1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 100%;
  }

  .content_item .item_img1 .item_text1 .number {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    margin-bottom: 10px;
  }

  .content_item .item_img1 .item_text1 h3 {
    font-size: 18px;
  }

  .content_item .item_img1 .item_text1 p {
    font-size: 12px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
  }

  /* 产品列表 */
  .product {
    padding: 0 15px;
  }

  .product_title {
    font-size: 24px;
    padding: 0 0 30px;
  }

  .product_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }


  .product_item p,
  .product_item span {
    font-size: 13px;
  }

  /* 分隔区域 */
  .divider {
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
  }

  .divider_left,
  .divider_right {
    height: 250px;
  }



  .divider_text,
  .divider_text1 {
    font-size: 12px;
    font-weight: 600;
  }

  /* 新品区域 */
  .newproduct_title {
    font-size: 24px;
    padding-bottom: 15px;
  }

  .newproduct_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}