
/* 全局重置样式 */
html {
  background-image: linear-gradient(to top, #fbc2eb 0%, #a6c1ee 100%);

}
* {
  padding: 0;
  box-sizing: border-box;

}

/* 设定字体 */
body {
  font-family: Arial, sans-serif;
}



/* 大标题样式 */
h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

/* 标签样式 */
label {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
}

/* 选择框样式 */
select {
  width: 500px;
  padding: 10px;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
  margin-bottom: 15px;
}

/* 滑动条样式 */
.Slidingbar {
  width: 100%;
  margin-bottom: 20px;
}

/* 输入框样式 */
input[type="text"] {
  padding: 10px;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
  margin-top: 15px;
}

.juzhong {
    display: flex;
    justify-content: center;
    height: 100vh; /* 让内容垂直居中 */
}

.container {
    max-width: 1200px;
    width: 100%;
    padding: 20px;
    text-align: center; /* 将文本内容居中显示 */
}
 .copy-button {
  transform: translateY(35%);
  padding: 8px 12px;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
footer {
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  color: #777;
}

footer a {
  color: #777;
}

/* 鼠标悬停时链接颜色变化 */
footer a:hover {
  color: #555;
}


.input-container {
  position: relative;
  display: inline-block;
}

input[type="text"] {
  padding-right: 210px; /* 留出空间给按钮 */
}
/* 更新信息的样式 */
.update-section {
  width: 100%;
  margin: 20px auto;
  padding: 15px;
  background-color: #e9e9e9;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* 导航样式 */
nav {
  text-align: center;
  margin-top: 20px;
}

nav ul {
  list-style: none;
  padding: 0;
}

nav li {
  display: inline-block;
  margin-right: 10px;
}

nav a {
  text-decoration: none;
  color: #333;
  padding: 5px 10px;
  border-radius: 4px;
  background-color: #f5f5f5;
  transition: background-color 0.3s ease;
}

nav a:hover {
  background-color: #ddd;
}
.app {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
  width: 50px;
  height: 50px;
}