.culture-story-wrapper ul li{
  background-color: white;
  border-radius: 8px;
  box-shadow: 2px 0px 4px 0px rgba(0, 0, 0, 0.08);  
  padding: 12px 20px 16px;
  margin-bottom: 20px;
  display: flex;
}

/* .culture-story-wrapper ul li a{
  display: flex;
} */
.culture-story-wrapper ul li .img-wrapper img{
  width: 238px;
  height: 159px;  
  margin-right: 20px;
}
.culture-story-wrapper ul li .text-wrapper{
  display: flex;
  flex-direction:column;
  justify-content: space-between;
  max-width: calc(100% - 258px);
}
.culture-story-wrapper ul li .text-wrapper .title-wrapper{
  color: #4c667f;
  font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.culture-story-wrapper ul li .text-wrapper .desc-wrapper{
  color: #737373;
  font-size: 16px;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient:vertical;
}
.culture-story-wrapper ul li .text-wrapper .more-btn-wrapper{
  display: flex;
  justify-content: end;
}
.culture-story-wrapper ul li .text-wrapper .more-btn{
  border-radius: 8px;
  background-color: #f1f1f1;
  width: 126px;
  border: solid 1px #bfbfbf;
  color: #737373;
  font-size: 16px;
  text-align: center;
  line-height: 2;
}
.culture-story-wrapper ul li .text-wrapper .more-btn span{
  color: #898989;
}


@media screen and (max-width: 1080px) {
  .culture-story-wrapper ul li .img-wrapper{
    display: flex;
    align-items: center;
    
  }
  .culture-story-wrapper ul li .img-wrapper img{
    width: 2.55rem;
    height: 1.7rem;
    margin-right: 10px;
  }
  .culture-story-wrapper ul li{
    padding: 12px 10px 16px;
	margin-bottom: 0.15rem;
  }
  .culture-story-wrapper ul li .text-wrapper{
    max-width: calc(100% - 2.55rem - 10px);
  }
  .culture-story-wrapper ul li .text-wrapper .title-wrapper{
    font-size: 0.3rem;   
  }
  .culture-story-wrapper ul li .text-wrapper .desc-wrapper{
    font-size: 0.24rem;    
  }
  .culture-story-wrapper ul li .text-wrapper .more-btn{
    background-color: transparent;
    border: none;
    color: #3e74d5;
    font-size: 0.24rem;
	width: auto;
    padding: 0 10px;
/* line-height: 2; */
  }
  .culture-story-wrapper ul li .text-wrapper .more-btn span{
    color: #3e74d5;
  }
}

