@import url('./index-nav.css');
@import url('./index-mcserver.css');

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box;
}

#app {
  padding: 20px;
}

/* 链接 */
.link {
  margin: auto;
  padding: 10px;
  max-width: 600px;
  color: #67C23A;
  font-size: 14px;
  text-align: center;
  background-color: #67C23A20;
  border-radius: 50px;
}

.link a {
  color: #67C23A;
}

.title {
  text-align: center;
  margin: 50px;
}

.title img {
  width: 100px;
  border-radius: 50%;
}

.title h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.title h1 img {
  width: 25px;
}

/* 卡片 */
.card {
  margin: 20px auto;
  padding: 10px;
  max-width: 600px;
  height: 100px;
  box-shadow: 0 0 10px -2px #888;
  border-radius: 10px;
  cursor: pointer;
}

/* 设置滚动条的宽度和背景色 */
::-webkit-scrollbar {
  width: 5px;
  background-color: #dbdbdb;
}

/* 设置滚动条的滑块颜色和形状 */
::-webkit-scrollbar-thumb {
  background-color: #999999;
  border-radius: 5px;
}