/* 
  响应设备
*/
/* 1300px - 1920 */
@media (min-width: 1300px) {
  :root {
    width: 100%;
    height: 100%;
    font-size: 24px;
  }
}

/* 768px - 1300px */
@media (max-width: 1300px) {
  :root {
    width: 100%;
    height: 100%;
    font-size: 21px;
    overflow: hidden;
  }

  .music-player-footer {
    width: 85%;
    margin: 0 10%;
  }
}

/* 360px - 768px */
@media (max-width: 768px) {
  :root {
    width: 100%;
    height: 100%;
    font-size: 16px;
    overflow: hidden;
  }

  .experience-now .logo {
    margin-left: 0.75rem;
  }

  .experience-now .title {
    font-size: 0.875rem;
  }

  .experience-now .desc {
    font-size: 0.875rem;
  }

  .music-player-footer {
    width: 85%;
    margin: 0 10%;
  }
}

/* <360px */
@media (max-width: 360px) {
  :root {
    width: 100%;
    height: 100%;
    font-size: 14px;
    overflow: hidden;
  }

  .experience-now .logo {
    margin-left: 0.75rem;
  }

  .music-player-footer {
    width: 85%;
    margin: 0 10%;
  }
}
