.container {
  position: relative;
  /* background: rgba(246, 238, 229, 1); */
  padding: 1.2rem 0 1.4rem 0;
}

.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;
}

.bg::after {
  background: rgba(246, 238, 229, 1);
  content: '';
  opacity: .5;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.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 {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 11.89rem;
  gap: .6rem;
  margin: 1rem auto 0 auto;
}

.content .li {
  position: relative;
  z-index: 1;
  display: flex;
}

.content .li .icon {
  width: .64rem;
  height: .64rem;
  flex-shrink: 0;
  margin-right: .55rem;
}

.content .li .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content .li .name {
  font-weight: 400;
  font-family: 'LXGWWenKaiMonoTC-Regular';
  color: rgba(51, 51, 51, 1);
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 2px;
}

.content .li .line {
  margin: 0 .36rem 0 .62rem;
  height: 2.575rem;
  width: 1px;
  background: rgba(125, 63, 0, 1);
}

.content .li .img {
  /*width: 1.85rem;*/
  /*height: 2.6rem;*/
  width: 3.97rem;
  height: 2.59rem;
  margin-right: .65rem;
  flex-shrink: 0;
}

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

.content .li .info {
  display: flex;
  flex-direction: column;
  gap: .32rem;
}

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

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

  -webkit-line-clamp: 5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.content .li .info .btns {
  display: flex;
  gap: .24rem;
}

.content .li .info .btns .btn {
  display: flex;
  gap: .08rem;
  align-items: center;

  font-weight: 400;
  font-family: 'LXGWWenKaiMonoTC-Regular';
  color: rgba(125, 63, 0, 1);
  line-height: 1.5;
  cursor: pointer;
}

.content .li .info .btns .btn .img {
  width: .16rem;
}


@media (max-width: 767px) {
    .container {
        padding: 30px 0 60px 0;
    }
    .content  {
        width: 100%;
    }
    .content .li .icon {
        display: none;
    }
    .content .li .name {
        display: none;
    }
    .content .li .line {
        display: none;
    }
    
    .content .li {
        padding: 0 20px;
    }
    
    .content .li .img {
        margin-right: 20px;
    }
    .content .li .info .title {
        font-size: 18px;
    }
    .content .li .info .desc {
        font-size: 14px;
    }
    .content .li .info .btns .btn {
        font-size: 13px;
    }
}









