/**
 * banner图下的大标题以及其描述
*/
/**
 * 卡片样式
 */
.notFound-detail {
  background-color: #f8f8f8;
  height: calc(100vh - 76px);
}
.notFound-detail em {
  font-style: italic;
}
.notFound-detail .notFound-container {
  margin: 0 auto;
  padding-top: 224px;
  width: 550px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.notFound-detail .notFound-container .notFound-img-pc {
  display: inline-block;
}
.notFound-detail .notFound-container .notFound-img-mobile {
  display: none;
}
.notFound-detail .notFound-container .notFound-title {
  padding-left: 10px;
}
.notFound-detail .notFound-container .notFound-title .desc {
  font-size: 20px;
  font-weight: 305;
  color: #595959;
  margin-top: 50px;
  margin-bottom: 25px;
}
.notFound-detail .notFound-container .notFound-title .back-home {
  text-decoration: none;
  padding: 8px 16px;
  color: #fff;
  background-color: #0084ff;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .notFound-detail {
    height: calc(100vh - 56px);
  }
  .notFound-detail .notFound-container {
    padding-top: 104px;
    width: 220px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .notFound-detail .notFound-container .notFound-img-pc {
    display: none;
  }
  .notFound-detail .notFound-container .notFound-img-mobile {
    display: inline-block;
    width: 144px;
    height: 168px;
  }
  .notFound-detail .notFound-container .notFound-title {
    padding-left: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .notFound-detail .notFound-container .notFound-title .desc {
    margin: 0 0 10px 0;
    font-size: 16px;
  }
}

