@charset "UTF-8";
@font-face {
  /* 给自定义字体取个名字，后面可以用这个名字引用字体 */
  font-family: 'Tomorrow';
  /* 字体文件的路径，这里假设字体文件在当前目录下 */
  src: url("/static/font/Tomorrow-Bold.ttf");
  /* 可选的字体样式，如 normal 或 italic */
  font-style: normal;
  /* 可选的字体粗细，如 normal 或 bold */
  font-weight: normal;
}

body {
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #35373A 0%, #282929 100%);
  color: #ffffff;
}

.nav-detail {
  padding-top: 160px;
  width: 1400px;
  margin: 0 auto;
  text-align: left;
}

.blog-detail {
  width: 1000px;
  margin: 0 auto;
  margin-top: 50px;
  padding-bottom: 100px;
}

.detail-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.detail-name {
  font-size: 32px;
  font-family: 'Tomorrow';
}

.detail-back {
   width: 152px;
    height: 50px;
    background-image: url("/static/img/detail-back.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.detail-back:hover{
    background-image: url('/static/img/item-pay-now.png');
}
.time-box {
  margin: 30px 0 60px;
  font-size: 16px;
}

.detail-text {
  line-height: 26px;
}

@media screen and (max-width: 768px) {
  .nav-detail {
    padding-top: 160px;
    width: 92%;
    margin: 0 auto;
    text-align: left;
    font-size: 12px;
  }
  .blog-detail {
    width: 92%;
    margin: 0 auto;
    margin-top: 50px;
    padding-bottom: 100px;
  }
  .detail-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .detail-name {
    font-size: 22px;
    font-family: 'Tomorrow';
  }
  .detail-back {
     width: 152px;
    height: 50px;
    background-image: url("/static/img/detail-back.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .time-box {
    margin: 30px 0 60px;
    font-size: 16px;
  }
  .detail-text {
    line-height: 26px;
  }
}
