/* 应用于移动端设备（例如平板和手机） */
@media only screen and (max-width: 768px) {
  body {
      font-size: 14px; /* 调整移动端的字体大小 */
  }

  .logo {
    display: none;
  }

  .slider_wraper {
    margin-top: 10px !important;
  }
}

/* 应用于桌面端设备 */
@media only screen and (min-width: 769px) {
  body {
      font-size: 14px; /* 调整桌面端的字体大小 */
  }
  .top-wrap {
    width: 100%;
  }
}

@media only screen and (min-width: 1024px) {
  .top-wrap {
    width: 1004px;
  }
}

/* 应用于桌面端设备 */
@media only screen and (min-width: 1200px) {
}

.top-wrap {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

.slider_wraper {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}

.toutiao-wrap {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 320px;
  margin-left: 20px;
  padding: 30px 20px 10px;
  background-color: #FAFAFA;
  border-radius: 12px;
  margin-top: 30px;
}

.toutiao-title {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  color: #000;
}

.toutiao-ul > li {
  height: 50px;
  margin-bottom: 20px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.toutiao-ul > li > a:hover {
  color: var(--theme-color-active);
}

.toutiao-ul > li > img{
  height: 50px;
  width: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  margin-right: 10px;
}