/*@font-face {*/
/*  font-family: 'Alibaba PuHuiTi';*/
/*  src: url('../fonts/AlibabaPuHuiTi-2-65-Medium.ttf');*/
/*}*/

html {
  font-size: 10px;
}
body {
  color: #000000;
  /* font-size: 4px; */
  position: relative;
  margin: 0;
  padding: 0;
  background: rgb(246, 246, 246);
  flex-direction: column;
  align-items: center;
  font-family: 'Alibaba PuHuiTi';

}

.container {
  width: 192rem;
}
.content-container {
  padding-bottom: 10rem;
  width: 100%;
  /* font-family: 'Alibaba PuHuiTi'; */
  font-weight: 500;
}
.content-container .banner-container {
  width: 100%;
  height: 43.8rem;
  position: relative;
}
.content {
  background-color: #fff;
  padding: 2.4rem 27.4rem 0 27.4rem;
}
.title {
  font-weight: 700;
  font-size: 3rem;
  text-align: center;
  margin-top: 6.4rem;
  font-family: "Alibaba PuHuiTi Bold";
}
.desc {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  width: 69.6rem;
  margin: 0 auto;
  margin-top: 0.8rem;
  margin-bottom: 2.4rem;
  font-family: "Alibaba PuHuiTi Regular";
}
.content .banner {
  width: 137rem;
  /*height: 29.4rem;*/
}
.content .banner-phone{
  display:none;
}
.content .banner img {
  margin: 0 auto;
  width: 100%;
  height: 100%;
}
.content-deep {
  background-color: #0f0f0f40;
  padding-bottom: 2.4rem;
  /*height: 34.2rem;*/
}

.honor-swiper img{
  width: 65rem !important;
  /*height: 90rem !important;*/
}

.honor-swiper-pagination{
  bottom:14px !important;
}
.honor-swiper-pagination .swiper-pagination-bullet {
  width: 3rem;
  height: 0.4rem;
  border-radius: 0.2rem;
  background-color: #d9d9d9;
  opacity: 1;
}

.honor-swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ce0e2d;
}



.content .item-list{
  width: 100%;
  display: flex;
  flex-wrap: wrap;       /* 自动换行 */
  gap: 16px;             /* 间距 */
  padding: 16px;         /* 容器内边距 */
  background: #f0f2f5;   /* 背景色 */
}
.content .item-list .item {
  width: 25.2rem;
  /*height: 35.62rem;*/
  border-radius: 0.5rem;
  overflow: hidden;           /* 保证图片圆角 */
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
.content .item-list .item img{
  width: 100%;
  height: 100%;
  object-fit: cover;          /* 图片铺满且保持比例，超出部分裁剪 */
  display: block;
  transition: transform 0.3s ease; /* 图片缩放动画 */
}
/* 鼠标悬停效果 */
.content .item:hover {
  transform: translateY(-5px) scale(1.01);
  /*box-shadow: 0 8px 20px rgba(0,0,0,0.2);*/
}


.content .item:hover img {
  transform: scale(1.1);      /* 图片微放大 */
}


.honor-swiper .item:hover img {
  transform: scale(1.02);      /* 图片微放大 */
}
/* 标题文字 */
.content .item .title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 6px 8px;
  background: rgba(0, 0, 0, 0.6); /* 半透明遮罩 */
  color: white;
  font-size: 14px;
  text-align: center;
  opacity: 0;                    /* 默认隐藏 */
  transform: translateY(100%);    /* 从底部滑入 */
  transition: all 0.3s ease;
  pointer-events: none;           /* 避免遮挡鼠标 */
}
/* 鼠标悬停显示标题 */
.content .item:hover .title {
  opacity: 1;
  transform: translateY(0);
}

/* 其他卡片弱化 */
.honor-swiper:hover .swiper-slide:not(:hover) .item {
  transform: scale(0.95);
  opacity: 0.5;
}
/* 分页 */
#pagination {
  margin-top: 16px;
  text-align: center;
}

#pagination button {
  margin: 0 4px;
  padding: 4px 8px;
  cursor: pointer;
  border:none;
}



/* 弹窗容器 */
.zoomlightbox {
  display: none; /* 默认隐藏 */
  position: fixed;
  top: 0;
  padding-top:3rem;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: pointer;
}

/* 弹窗中的图片 */
.zoomlightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

/* 弹窗淡入动画 */
.zoomlightbox.show {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/*移动端适配*/
@media screen and (max-width: 1023px){
  html{
    font-size:10px;
    touch-action:pan-y;
    overflow-x:hidden;
  }
  body {
    position: relative;
    margin: 0;
    padding: 0;
    background: #fff;
    font-family: 'Alibaba PuHuiTi';
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    touch-action:pan-y;
    overflow-x:hidden;
  }
  a:focus,input:focus,p:focus,div:focus{
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    -webkit-user-modify:read-write-plaintext-only;
  }
  .container{
    width:100% !important;
    /*padding-left:1.5rem;*/
    /*padding-right:1.5rem;*/
  }
  .content{
    padding:0;
  }
  .title{
    margin-top:2.3rem;
    color: #000;
    text-align: center;
    font-family: Alibaba PuHuiTi;
    font-size: 2.2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
  }
  .desc{
    width: auto !important;
    box-sizing: border-box;
    margin:0 auto;
    padding:0.5rem 2rem 1.2rem 2rem;
    /*margin:0.5rem 10rem 1.2rem 10rem;*/
    /*width: 66.67% !important;*/
    color: #000;
    /*text-align: center;*/
    /*font-family: Alibaba PuHuiTi;*/
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    /*margin-top:0.5rem;*/
    /*margin-bottom:1.2rem;*/
    /*text-align: center !important;*/
  }
  .content-pc .banner{
    display:none;
  }
  .content-pc .banner-phone{
    display:block;
    box-shadow: 0px 0.4rem 0.4rem 0px rgba(0, 0, 0, 0.10);
  }
  .content-pc .banner-phone img{
     width:100%;
     height:41.38%;
  }
  .content-deep{
    background-color:#fff;
    padding:0;
  }
  .content-container{
    padding-bottom:3.248rem;
  }
  .honor-swiper .item img {
    width: 100% !important;
  }

  .honor-swiper:hover .swiper-slide:not(:hover) .item {
    transform: none;
    opacity:1;
  }

  .content .item-list .item {
    width: 17.5rem !important;
  }

  .honor-swiper-pagination .swiper-pagination-bullet {
    width: 1rem;
  }
}
