/* CSS content (all pages) */
body.bodywebsite { margin: 0; font-family: 'Open Sans', sans-serif; }
.bodywebsite h1 { margin-top: 0; margin-bottom: 0; padding: 10px;}

.importshow {
  width:80px;
  background-color: #4CAF50; /* 按钮颜色 */
  border: none;
  color: white;
  padding: 8px 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin-top: 10px; 
  margin-left: 50px;
  cursor: pointer;
  border-radius: 8px; /* 按钮边缘圆滑 */
}
 
.importshow:hover {
  background-color: #33cc33; /* 鼠标悬浮时按钮颜色 */
}

.flex-container {
  display: flex;
}

.flex-item {
  /*margin-right: 10px; /* 可选，为了在元素之间添加间隔 */
}

/* styles.css */
body {
    font-family: Arial, sans-serif;
}

button {
    padding: 10px 20px;
    font-size: 16px;
}

.navmodal {
    display: none; /* 隐藏 */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明背景 */
    z-index: 9998;
}

.navmodal-content {
    background-color: #fff;
    margin: 60px auto;
    border: 1px solid #888;
    width: 100%;
    height: 65%;
}

.navclose {
    color: #aaa;
    margin: 0 10px auto;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.navclose:hover,
.navclose:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
