/* 左侧栏样式 */
.sidebar-you {
  background-color: rgba(240, 249, 254, 0.6);
  color: #fff;
  width: 15%;
  height: calc(100vh - 78.5px);
  padding: 20px;
  bottom: 0;
}

/* 标题样式 */
.sidebar-you-title {
  font-size: 25px;
  margin-bottom: 20px;
  color: #4e71aa;
}

/* 导航链接样式 */
.sidebar-you-links {
  list-style-type: none;
  padding: 0;
}

.sidebar-you-links li {
  margin-bottom: 10px;
}

.sidebar-you-links a {
  color: #fff;
  text-decoration: none;
}

.sidebar-you-links a:hover {
  text-decoration: underline;
}

.sidebar-right {
  position: relative;
  margin-top: auto;
}
.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #5a81c2;
  color: white;
  border-radius: 20px;
  font-family: "Arial", sans-serif;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #4070a0;
}

.button:active {
  background-color: #304e80;
  box-shadow: none;
}

/* 主要内容样式 */
    .main-content {
  width: calc(85% - 40px);
  height: calc(100vh - 78.5px);
  float: right;
  background-color: rgba(240, 249, 254, 0.6);
}

