.container {
  position: relative;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

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

.sec_title {
  justify-content: center;
}

.title_icon {
  display: flex;
  width: 6rem;
  justify-content: space-between;
  gap: 1.605rem;
  margin: 0 auto;
}

.title_icon img {
  width: 2.195rem;
  height: .3rem;
}

.content {
  padding: .8rem 1.1rem;
  /* background: url('../img/about3_list_bg.webp') no-repeat center center;
  background-size: 100% 100%; */
  background: #f7ebdf;
  margin: .6rem 1.4rem 0 1.4rem;
  position: relative;
  border: 2px solid rgba(195, 160, 124, 1);
}

.content .list {
  display: flex;
  /* justify-content: center; */
  flex-wrap: wrap;
  gap: .36rem;

  
}

.content .list .li {
  width: 2.51rem;
  /*height: 3.56rem;*/
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.content .list .li .name {
    
    font-weight: 500;
    font-family: 'LXGWWenKaiMonoTC-Regular';
    color: rgba(125, 63, 0, 1);
    text-align: center;
    line-height: 1.3;
}

.content .list .li .img_box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: .2rem 0 0 0;
  height: 3.56rem;
  
}
.content .list .li .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.content .list .li:hover .img_box img {
  transform: scale(1.05);
}

.content .pagination_box {
  margin: .6rem 0 0 0;

}

@media (max-width: 767px) {
    .container {
        padding-top: 30px;
        padding-bottom: 60px;
    }
    .content {
        margin: 20px 20px 0 20px;
        padding: 30px 20px;
    }
    .content .list {
        justify-content: center;
    }
    .content .list .li {
        width: 100%;
        height: 90%;
    }
}




