/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* 左侧浮动导航栏 */
.navbar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 150px;
    background-color: transparent;
    box-shadow: none;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.navbar ul {
    list-style: none;
    width: 100%;
    padding: 0 15px;
}

.navbar li {
    margin: 15px 0;
}

.navbar a {
    display: block;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: normal;
    padding: 8px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.navbar a:hover {
    background-color: #f0f0f0;
    color: #e74c3c;
    transform: translateX(5px);
}

.navbar a.active {
    background-color: #e74c3c;
    color: #fff;
    transform: translateX(5px);
}

.navbar a.award-link {
    color: #e74c3c;
    font-weight: bold;
}

/* 首页样式 */
#home {
    background: url('../img/bg1.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    text-align: center;
    min-height: 100vh;
}

.home-content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 60px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.home-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.home-content h2 {
    font-size: 24px;
    margin-bottom: 30px;
}

.home-content h3 {
    font-size: 36px;
    color: #e74c3c;
    margin-bottom: 20px;
}

/* =========================
   两张图片：完美 不重叠 + 无缝 + 完整显示
   ========================= */
#biaoti1,
#biaoti {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
    background-color: #fff;
}

#biaoti1 img,
#biaoti img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: contain;
}

/* 全局区块 */
.section {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}

/* 内容区域 */
.section-content {
    margin-left: 170px;
    max-width: 1200px;
    padding: 50px 20px;
    text-align: center;
}

.section-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #e74c3c;
}

.section-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

#history, #jury, #contact {
    background-color: #fff;
}

#history h2, #jury h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: 'SimHei', sans-serif;
    font-size: 24px;
}

#history p {
    font-size: 18px;
}

.jury-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    margin-left: 10px !important;
    margin-right: 0 !important;
    margin-top: 0;
    margin-bottom: 0;
}

.jury-item {
    width: auto;        /* 关键：去掉自动等分，才能真正靠左 */
    min-width: 120px;
    text-align: center;
}


.jury-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 10px;
}

.jury-name {
    font-size: 12px;
    font-weight: bold;
}

.jury-company {
    font-size: 9px;
    color: #666;
}

.jury-title {
    font-size: 10px;
    color: #666;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
margin-left: 30px !important;

}


#biaoti3 {
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
}

#biaoti3 img {
  width: 100%;
  display: block;
  height: auto;
}

/* 文字叠加在图片上 */
.biaoti3-text {
  position: absolute;
  top: 2%;        /* 往上抬高 */
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 770px; /* 收窄宽度 */
  color: #000;
  font-size: 16px;
  line-height: 2.5;
  text-align: justify;
}


