.container {
  position: relative;
}

.top_tabs {
  background: #e8dfd2;
  margin-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;
}

.right_bg {
  position: fixed;
  top: 10.19rem;
  right: 0;
  width: 7.06rem;
  height: 15.49rem;
  z-index: -1;
  pointer-events: none;
}

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

.left_bg {
  position: fixed;
  top: 2.28rem;
  left: 0;
  width: 7.06rem;
  height: 15.49rem;
  z-index: -1;
  pointer-events: none;
}

.left_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 {
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 14.4rem; */
  padding: .6rem 2.42rem 1.4rem 2.42rem;
  flex-direction: column;
  gap: .3rem;
}

.content .li {
  width: 100%;
  background: #fff;
  border: 2px solid rgba(195, 160, 124, 1);
  padding: .35rem .6rem;
  position: relative;
  transition: all .5s ease-in-out;
}

.content .li.on {
  background: #f6ebdf;
  transition: all .5s ease-in-out;
}

.content .li .title {
  font-weight: 400;
  font-family: 'LXGWWenKaiMonoTC-Regular';
  color: rgba(51, 51, 51, 1);
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: .2rem;
  position: relative;
}

.content .li .title .dot {
  width: .12rem;
  height: .12rem;
  transform: rotate(45deg);
  border: 1px solid #BA9C7D;
}

.content .li .title img {
  width: .42rem;
  height: .42rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.content .li .title .normal,
.content .li.on .title .active {
  display: block;
}
.content .li.on .title .normal,
.content .li .title .active {
  display: none;
}



.content .li .info {
  max-height: 0;
  overflow: hidden;
  transition: all .5s ease-in-out;
}

.content .li.on .info {
  max-height: 12rem;
  transition: all .5s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: .12rem;
  margin: .35rem;
}

.content .li .info .it {
  background: rgba(232, 215, 196, 1);
  padding: .24rem;
}

.content .li .info .it .time {
  font-weight: 400;
  font-family: 'LXGWWenKaiMonoTC-Regular';
  color: rgba(125, 63, 0, 1);
  line-height: 1.5;
}

.content .li .info .it .tag {
  display: flex;
  font-weight: 400;
  font-family: 'LXGWWenKaiMonoTC-Regular';
  color: rgba(51, 51, 51, 1);
  line-height: 1.5;
}

.content .li .info .it .desc {
  /* display: grid;
  grid-template-columns: 1fr 1fr; */
  display: flex;
  gap: 1.5rem;
  font-weight: 400;
  font-family: 'LXGWWenKaiMonoTC-Regular';
  color: rgba(51, 51, 51, 1);
  line-height: 1.5;
}

.content .li .info .it .desc>*:nth-child(2n) {
  justify-self: end;
  /* Grid专属对齐属性，优先级更高 */
}

.content .li .info .it .desc2 {
  font-weight: 400;
  font-family: 'LXGWWenKaiMonoTC-Regular';
  color: rgba(51, 51, 51, 1);
  line-height: 1.5;
}



@media (max-width: 767px) {
    .top_tabs {
        margin-bottom: 30px;
    }
    
    .content {
        padding: 20px 20px 60px 20px;
    }
    
    .content .li .title {
        font-size: 16px;
    }
    
    .content .li.on .info {
        margin: 18px 0;
        gap: 18px;
    }
    
    
    .content .li .info .it .time {
        font-size: 14px;
    }
    .content .li .info .it .tag {
        font-size: 14px;
    }
    .content .li .info .it .desc {
        font-size: 14px;
        gap: 30px;
    }
    .content .li .info .it .desc2 {
        font-size: 14px;
    }
}







