.CaseAreaInner {
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.CaseSearch {
  padding: 48px 0;
}

.CaseSearchInnerBody {
  display: flex;
  flex-direction: column;
}

.CaseSearchRow {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}

.CaseSearchRow .CaseSearchLabel {
  width: 88px;
  text-align: left;
  color: #333;
  font-size: 120%;
  line-height: 42px;
}

.CaseSearchRow .CaseSearchList {
  display: flex;
  flex-direction: row;
  align-items: center;

  list-style: none;
}
.CaseSearchRow .CaseSearchList li {
  margin: 0 8px 24px 8px;
  border-radius: 20px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  padding-left: 22px;
  padding-right: 22px;
  font-size: 80%;
  color: #333;
  border: 1px solid var(--color-border);
  background-color: #fff;
  cursor: pointer;
}
.CaseSearchRow .CaseSearchList li.selected {
  cursor: default;
}
.CaseSearchRow .CaseSearchList li.selected,
.CaseSearchRow .CaseSearchList li:hover {
  color: #fff;
  background-color: var(--color-accent-light);
  border-color: var(--color-accent-light);
}

@media screen and (max-width: 1024px) {
    .CaseSearchRow .CaseSearchList li {
        margin: 0 4px 12px 4px;
        height: 32px;
        line-height: 32px;
        padding-left: 12px;
        padding-right: 12px;
    }	
}

@media screen and (max-width: 767px) {
  .CaseSearchRow {
    flex-direction: column;
    padding: 0 15px;
  }
  .CaseSearchRow .CaseSearchLabel {
    text-align: left;
    font-size: 100%;
  }
  .CaseSearchRow .CaseSearchList {
    flex-wrap: wrap;
  }
  .CaseSearchRow .CaseSearchList li {
    width: auto;
    margin: 0 4px 12px 4px;
    height: 24px;
    line-height: 24px;
    border-radius: 12;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 80%;
  }
}

.CaseResultArea {
  background-color: #f2f2f2;
  min-height: 800px;
}

.CaseResItem {
  height: 470px;
  background-color: #ddd;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.CaseResItem.FBg-Cover {
    background-size: cover;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
.CaseResItem:hover {
    background-size: cover;
}

.CaseItemContent {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 40px;
  background: -webkit-linear-gradient(top,transparent 50%,transparent 0,rgba(0,0,0,.85));
  background: -moz-linear-gradient(top,transparent 50%,transparent 50%,rgba(0,0,0,.85) 100%);
  background: linear-gradient(180deg,transparent 50%,transparent 0,rgba(0,0,0,.85));
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.CaseItemContent .CaseTags {
  display: flex;
  flex-direction: row;
    flex-wrap: wrap;
}

.CaseItemContent .CaseTags .CaseTagItem {
  border-radius: 5px;
  padding: 4px 12px;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 80%;
  margin-right: 10px;
  border: 1px solid rgba(255,255,255,.3);
}

.CaseItemContent h4 {
  margin: 16px 0 0 0;
}

.CaseItemContent h4 > a {
  font-size: 150%;
  color: #fff;
  font-weight: 400;
  background-image: none;
}

.CaseResultPage {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
}
.CaseResultPage .CaseResultPageMore {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  border-radius: 5px;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}
.CaseResultPage .CaseResultPageMore:hover {
  background-color: var(--color-accent);
  color: #f2f2f2;
}
.CaseResultPage .CaseResultPageMore span {
  font-size: 100%;
}
.CaseResultPage .CaseResultPageMore > img {
  margin-left: 10px;
}
.CaseResultPage .CaseResultPageMore:hover > img {
  transition: All 0.2s ease-in-out;
  transform: translate(10px, 0px);
}

@media screen and (max-width: 767px) {

  .CaseSearch {
    padding: 24px 0;
  }

  .CaseResultArea {
    min-height: 280px;
    padding: 24px 0;
  }

  .CaseResultPage .CaseResultPageMore {
    padding: 4px 12px;
  }
  .CaseResultPage .CaseResultPageMore > span {
    font-size: 80%;
  }
  .CaseResultPage .CaseResultPageMore > img {
    width: 14px;
  }

  .CaseResItem {
    height: 240px;
  }

  .CaseItemContent {
    padding: 12px;
  }

  .CaseItemContent .CaseTags .CaseTagItem {
    padding: 2px 6px;
  }

  .CaseItemContent h4 {
    margin-top: 8px;
  }
  .CaseItemContent h4 > a {
    font-size: 100%;
  }

}
