* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
  font-family: 'Roboto', 'Noto Sans SC', sans-serif; 
  line-height: 1.6;
  color: white;
  background-color: #222222;
}

a {
  /* 去掉下划线 */
  text-decoration: none;
  /* 继承父级颜色 */
  color: inherit;
  /* 鼠标手型 */
  cursor: pointer;  
}

.header-container {
    display: flex;
    flex-direction:row;
    justify-content: space-between;
    align-items: baseline;
    background: rgba(34,34,34,0.95);
    font-style: italic;
    font-size: clamp(12px, 2vw, 16px);
    color: rgba(255, 173, 0, 1);
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 5vw;
    padding-right: 3vw;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.footer-container {
margin-top: 3rem;
padding: 2rem 0;
text-align: center;
color: #666;
}





