.main .case_list {
  display: grid;
  grid-template-columns: repeat(3, 30%);
  justify-content: space-between;
  grid-row-gap: 30px;
}
.main .case_list a {
  border-radius: 15px;
  overflow: hidden;
}
.main .case_list a .bottom {
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 15px 15px;
  padding: 20px 20px 10px;
}
.main .case_list a .bottom .ti {
  font-size: 18px;
  transition: all 0.3s;
  color: #333;
}
.main .case_list a .bottom p {
  margin: 5px 0 10px;
  transition: all 0.3s;
  color: #888;
}
.main .case_list a .bottom .link {
  transition: all 0.3s;
  border-top: 1px solid #e0e0e0;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main .case_list a .bottom .link span {
  font-size: 14px;
}
.main .case_list a .bottom .link span,
.main .case_list a .bottom .link .iconfont {
  color: #999;
}
.main .case_list a .bottom .link .iconfont {
  font-size: 24px;
}
.main .case_list a:hover .ti {
  color: var(--themeColor);
}
.main .case_list a:hover p {
  color: var(--themeColor);
}
.main .case_list a:hover .link {
  border-color: #93B4FC;
}
.main .case_list a:hover .link span,
.main .case_list a:hover .link .iconfont {
  color: var(--themeColor);
}
.pages {
  margin-bottom: 50px;
}
/* 详情页面 */
.main .des_title {
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
.main .just {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
  color: #999;
}
.main .just .left,
.main .just .right {
  color: #999;
}
.main .just .left:hover,
.main .just .right:hover {
  color: var(--themeColor);
}
.main .des_main {
  margin: 20px auto 40px;
}
.main .des_main img {
  max-width: 100% !important;
  height: auto !important;
  margin: 10px auto !important;
  display: block !important;
}
.main .des_main .img_warp {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto;
  display: flex;
  justify-content: space-between;
}
.main .des_main .img_warp img {
  width: 46% !important;
}
.main .des_main .text_warp {
  margin-bottom: 40px;
}
.main .des_main .text_warp h6 {
  line-height: 3;
}
@media (max-width: 890px) {
  .main .case_list {
    margin-top: 0;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}
@media (max-width: 540px) {
  .main .case_list {
    grid-template-columns: repeat(1, 1fr);
  }
}
