/* 共有样式 */
html {
  font-family: "edo", "siyuan", monospace;
  text-align: center;
  color: var(--font-white);
  font-size: var(--font-size);
}

body {
  background-color: var(--background-color);
  /* background-image: url(https://t.mwm.moe/pc); */
  background-image: url(../images/pc.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

main {
  height: 90vh;
  display: flex;
  flex-direction: row;
  max-width: 1900px;
  margin: 0 auto;
}

footer {
  height: 10vh;
}

main section:first-child {
  flex: 1;
}

main section:last-child {
  flex: 1.5;
}

main section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.blur {
  border-radius: 6px;
  backdrop-filter: blur(10px);
  background-color: #00000040;
  transition: all 0.1s ease-in-out;
}

.blur:hover {
  transform: scale(1.01);
}

.logo {
  font-size: 45px;
  margin-bottom: 60px;
}

.logo:hover a {
  color: var(--link-color);
}

.message {
  padding: 25px;
  width: 100%;
  margin-bottom: 20px;
  max-width: 460px;
}

.message::before {
  display: block;
  content: "\e900";
  font-family: "icomoon";
  text-align: left;
}

.message p:first-child {
  text-align: left;
  padding: 10px
}

.message p:last-child {
  text-align: center;
}

.social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 490px;
  height: 50px;
  margin-top: 20px;
  transition: all 0.1s ease-in-out;
  padding: 0 25px;
  max-width: 460px;
}

.links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.links a {
  width: 26px;
  padding-right: 20px;
}

.links img {
  width: 30px;
  transition: all linear 0.3s;
}

.links img:hover {
  transform: scale(1.1);
}

/* 右栏部分 */
main section:last-child>div {
  width: 100%;
}

.top {
  height: 175px;
  flex-direction: row;
  justify-content: center;
  display: flex;
  width: 100%;
}

.top>div {
  height: 100%;
  width: 50%;
  max-width: 315px;
  min-width: 160px;
  margin: 0 10px;
}

.music h3 {
  margin: 10px 0;
  padding: 0 5px;
}

.player {
  height: 50px;
  margin: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.player span {
  margin: 0 6px;
  padding: 3px;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
  border-radius: 6px;
}

.player span:hover {
  background-color: RGB(255, 255, 255, 0.3)
}

.music img {
  width: 30px;
  height: 30px;
}

.pause img,
.start img {
  width: 50px;
  height: 50px;
}

.song-info {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.song-info span {
  padding: 3px;
  background-color: RGB(255, 255, 255, 0.3);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}

.song-info span:hover {
  background-color: RGB(255, 255, 255, 0.5);
}

.sound {
  display: flex;
  justify-content: space-around;
  align-items: center;
  cursor: pointer;
}

.slider {
  position: relative;
  width: 80px;
  height: 8px;
  background-color: RGB(255, 255, 255, 0.5);
  border-radius: 4px;
  margin-left: 5px;
}

.fullSlider {
  position: absolute;
  height: 8px;
  width: 0px;
  top: 0;
  left: 0;
  border-radius: 4px;
  background-color: #fff;
  transition: all 0.1s ease-in-out;
}

.dot {
  position: absolute;
  height: 12px;
  width: 12px;
  top: -2px;
  left: 0;
  border-radius: 6px;
  background-color: #fff;
  transition: all 0.1s ease-in-out;
}

/* 时间部分 */
.timer {
  box-sizing: border-box;
  padding: 10px;
}

.data {
  font-family: "number harmonyos";
  font-size: 16px;
  font-weight: bold;
  margin: 15px 0;
}

.time {
  font-family: "led";
  margin: 10px 0;
  font-size: 46px;
  font-weight: 600;
}

.location {
  font-family: "siyuan harmonyos";
  font-weight: bold;
}

.dot:hover {
  transform: scale(1.3);
}

.bottom h2 {
  font-size: 20px;
  text-align: left;
  margin: 20px 0;
}

.bottom h2::before {
  content: "\e901";
  font-family: "icomoon";
  text-align: center;
  font-size: 21px;
}

.netlink ul {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.netlink ul li {
  flex: 1;
  height: 100px;
  min-width: 100px;
  max-width: 200px;
  margin: 0 10px;
  font-weight: bold;
}

.netlink ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.netlink ul li:hover {
  background-color: RGB(0, 0, 0, 0.4);
}

.netlink img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

/* 尾部 */
footer {}

footer small {
  display: block;
}