body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, legend, input, textarea, p, blockquote, th, td, hr, button, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul li {
  list-style-type:none;
}

a {
  color: inherit;
  text-decoration: none;
}

/* 文字溢出 */
.line-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-2 {
  overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;

  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}



.flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}


/* pc端 */
@media screen and (min-width: 1000px) {
  /* 内容区域 */
  .wrap {
    width: 1200px;
    margin: auto;
  }

  .scroll::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background: transparent;
  }
  .scroll::-webkit-scrollbar-thumb {
    width: 100%;
    background: #d8d8d8;
    border-radius: 6px;
    transition: all .2s ease;
    
  }
  .scroll::-webkit-scrollbar-thumb:hover {
    background: #b4b4b4;
  }
}
