/* 顶部 */
body {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}

/* 下拉菜单样式 */
.dropdown {
  display: inline-flex;
  vertical-align: top;
  align-items: center;
  position: relative;
  z-index: 9999;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 40px;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 4px;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}
/* end */

#main-container {
  height: 100vh;
}
.header {
  width: calc(100% - 160px);
  height: 100px;
  background-color: #fff;
  border-bottom: 1px solid #eeeeee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 80px;
}
.headerLogo {
  width: 112px;
  height: 44px;
}
.menu {
  display: flex;
  justify-content: flex-start;
}
.selected {
  color: #f15a30;
  font-size: 16px;
}
a {
  color: #000;
  text-decoration: none;
}

.link {
  display: inline-flex;
  vertical-align: top;
  align-items: center;
  font-size: 16px;
  margin: 0 20px;
  font-weight: 300;
}

.input {
  width: 240px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
  border-radius: 20px;
  padding: 0px 6px;
  margin-left: 80px;
}
.searchImg {
  width: 22px;
  height: 22px;
}
.shurukuang {
  border: none;
  padding: 8px 0;
  outline: none;
  background-color: #f5f5f5;
}
.shurukuang:focus {
  border-bottom: none;
}
.searchBtn {
  width: 52px;
  height: 32px;
  color: #f15a30;
  font-size: 14px;
  background-color: #f6eae6;
  border-radius: 20px;
  text-align: center;
  line-height: 32px;
}
/* end */

.timeList {
  display: flex;
  justify-content: center;
  align-items: center;
}
.timeContent {
  width: 63%;
  height: 200px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.timeItem {
  width: 120px;
  height: 120px;
  background-color: #ffffff;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  text-align: center;
  line-height: 120px;
  color: #000000;
  font-size: 24px;
  cursor: pointer;
  font-weight: bold;
}

.timeItems {
  width: 120px;
  height: 120px;
  background-color: #f15a30;
  border-radius: 50%;
  text-align: center;
  line-height: 120px;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  font-weight: bold;
}

.shijianxian {
  width: 63%;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  cursor:pointer;
}
.timedian {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.dian {
  width: 12px;
  height: 12px;
  background-color: #f15a30;
  border-radius: 50%;
}
.shijian {
  font-size: 20px;
  color: #000000;
  margin-left: 10px;
  font-weight: bold;
}

.timedian1 {
  display: flex;
  justify-content: flex-start;
}
.line {
  border-left: 1px dashed #e0e0e0;
  margin-left: 5px;
}
.wenzi {
  margin-top: 12px;
  margin-left: 5px;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
}

.sjx_img {
  /* 关键：定义宽高比为2.35:1 */
  aspect-ratio: 2.35 / 1;
  /* 容器宽度可按需设置（如100%自适应或固定值） */
  width: 1168px; /* 原宽度保持不变 */
  margin-left: 15px;
  margin-top: 16px;
  margin-bottom: 80px;
  /* 可选：防止图片溢出容器 */
  overflow: hidden;
}


/* 图片自适应容器 */
.sjx_img img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 修改点：图片完整显示，可能会留空白 */
}

.yuandian {
  width: 6px;
  height: 6px;
  background-color: #f15a30;
  border-radius: 50%;
  position: relative;
  top: 26px;
  left: -33px;
}
/* 底部 */
.footer {
  width: calc(100% - 720px);
  height: 88px;
  background-color: #f5f5f5;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  padding: 0px 360px;
  margin-top: 80px;
}
.footer_right {
  display: flex;
  justify-content: flex-start;
}
.footer_right_item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
