body{
    background-color: aliceblue;
}

span{
    color: rgba(128,128,128,0.5);
}
td:nth-child(6) span{
    color:black;
}

h1{
    font-size: 3.2rem;
}
p{
    text-indent: 2rem;
    font-size: 1.2rem;
    font-family: "宋体";
}
.time{
    color: rgba(128,128,128,0.5);
}

.flowimage {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.flowimage img {
    width: 500px;        /* 设置固定宽度 */
    height: auto;        /* 保持原始宽高比 */
    border-radius: 8px;  /* 添加圆角 */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* 添加阴影效果 */
    transition: transform 0.3s ease; /* 添加过渡效果 */
}
/* 另一种方式：使用百分比宽度 */
.flowimage.responsive img {
    width: 30%;
    height: auto;
}

/* 网格布局方式 */
.flowimage.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.flowimage.grid img {
    width: 100%;
    height: auto;
}
a.flowlight-button{
    /* 设置无下划线 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 200px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    font-family: sans-serif;
    box-sizing: border-box;
    background:
    linear-gradient(90deg,#03a9f4,#f441a5,#ffeb3b,#03a9f4);
    border-radius: 30px;
    background-size: 400%;
    z-index: 1;
}
a:hover{
    animation: animate 8s infinite;
}
@keyframes animate{
    from{
         background-position: 0%;
    }
    to{
        background-position: 400%;
    }
}

th{
    background-color: azure;
}
.footer{
    background-color: rgb(209, 222, 222);
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 0;
}
.full-image {
      width: 100%;
      height: auto;
      object-fit: cover;
    }
    
.bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
  opacity: 1; /* 降低透明度 */
 }
.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7); /* 半透明白色遮罩 */
  z-index: -1;
}
.button1{
    background-color: rgb(209, 222, 222);
    text-align: center;
    font-size: 1.2rem;
    font-family: '宋体';
    /* 去边框 */
    border: none;
    margin-bottom: 0;
    width: 100px;
    height: 40px;
    transition: transform 0.3s ease;
}
.button1:hover{
    /* background-color: rgb(255, 255, 255); */
    transform: scale(1.1);
}
/* 在main.css中添加 */
@media (max-width: 768px) {
  .tab-buttons {
    flex-direction: column;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .profile-container,
  .settings-container {
    margin: 10px;
    padding: 15px;
  }
}


 