.title{
  display: flex;
  justify-content: space-between;
  font-size: max(20px, 2rem);
  font-weight: bold;
  margin-bottom: max(16px, 2rem);
  line-height: 1;
}
.title span {
  color: var(--themeColor);
  padding-bottom: max(10px, 1rem);
  border-bottom: 1px solid var(--activeColor);
}
.title img{
  width: max(18px, 1.5rem);
  height: auto;
  object-fit: contain;
}
.informationPanel{
  padding: 3.5rem 15px;
}
.slide-content{
  display: flex;
  cursor: pointer;
  height: 26rem;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.information-image{
  width: 34%;
  height: 100%;
  flex-shrink: 0;
}
.information-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.information-data{
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.information-type{
  font-size: 16px;
  color: var(--themeColor);
}
.information-title{
  font-size: 21px;
  font-weight: bold;
  line-height: 1.1;
}
.information-desc{
  font-size: 16px;
  color: var(--themeColor);
}
.information-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  color: var(--themeColor);
}
.information-bottom img{
  width: 30px;
}
.loadMore{
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.loadMore-text{
  margin-right: 8px;
  color: var(--themeColor);
}
.loadMore .spinner{
  width: 20px;
  height: 20px;
  color: var(--activeColor);
}

@media screen and (max-width:1200px){
  .information .swiper-slide {
    width: 100%;
  }
}

@media screen and (max-width:768px){
  .slide-content {  
    height: auto;
    flex-direction: column;
  }
  .information-image{
    width: 100%;
    height: 270px;
  }
}