body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  font-family: -apple-system;
  background-color: black;
}

.circle-container {
  position: relative;
  float: right;
  width: 100%; /* 外圈直径 */
  height: 100%; /* 外圈直径 */
  margin: 0;
}

.circle-container div {
  cursor: pointer;
}

.circle-container div:hover {
  color: #0072E7;
}

.item {
  position: absolute;
  transform: translate(-50%, -50%) rotate(-90deg) rotate(90deg); /* 旋转文字 */
  white-space: nowrap; /* 防止文字换行 */
  font-size: 8px; /* 调整项目名称的字体大小 */
  text-align: left; /* 文本左对齐 */
  width: 120px; /* 文本框宽度 */
  color: white;
}

.itemNoCurrentFeature {
  color: #444;
}

.sidebar {
  width: 150px;
  float: left;
}

.features {
  margin: 5px;
  margin-left: 15px;
  width: 130px;
  height: 40px;
  background-color: #0072E7;
  cursor: pointer;
  color: white;
  font-size: 14px;
  line-height: 36px;
  border: 0px solid #666;
  border-radius: 20px;
}

.features:hover {
  background-color: #298ff6;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.modal {
  background-color: #1e1e1e;
  width: 700px;
  height: 500px;
  padding: 25px;
  border-radius: 40px;
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.5);
}

.closeButton {
  width: 30px;
  height: 30px;
  float: left;
  border-radius: 15px;
  cursor: pointer;
  background-color: #393939;
  text-align: center;
  font-size: 20px;
  line-height: 27px;
  color: white;
}

#SDName {
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  color: white;
  margin-left: 45px;
}

.modalLeftside {
  float: left;
  width: 400px;
  margin-left: 45px;
}

.modalRightside {
  float: left;
  width: 200px;
}

#SDHero {
  width: 400px;
  height: 225px;
  border-radius: 15px;
  margin-top: 15px;
}

.SDHero {
  width: 400px;
  height: 225px;
  border-radius: 15px;
}

#SDRegion {
  width: 30px;
  height: 30px;
  float: left;
  border-radius: 15px;
  background-color: #393939;
  margin-top: 15px;
  text-align: center;
  font-size: 19px;
  line-height: 30px;
  overflow: hidden;
}

#SDRNumber {
  height: 30px;
  float: left;
  border-radius: 15px;
  background-color: #FF8100;
  text-align: center;
  font-size: 18px;
  line-height: 30px;
  color: white;
  margin: 15px 0 0 15px;
  padding: 0 15px;
}

#SDOpeningDate {
  height: 30px;
  float: left;
  border-radius: 15px;
  background-color: #EBA21E;
  text-align: center;
  font-size: 18px;
  line-height: 30px;
  color: white;
  margin: 15px 0 0 15px;
  padding: 0 15px;
}

#SDWebsite {
  height: 30px;
  float: left;
  border-radius: 15px;
  background-color: #0072E7;
  text-align: center;
  font-size: 18px;
  line-height: 30px;
  color: white;
  margin: 15px 0 0 15px;
  padding: 0 15px;
}

#SDWebsite:hover {
  box-shadow: 0 0 20px rgba(0, 124, 255, 0.7); /* 添加蓝色投影，可以根据实际需要进行调整 */ 
}

#SDWebsite a {
  color: white;
  text-decoration: none;
}

.centerLine {
  width: 1px;
  height: 390px;
  float: left;
  background-color: #5B5B5B;
  margin: 15px;
}

.SDFeature {
  height: 30px;
  float: left;
  border-radius: 15px;
  background-color: #303030;
  text-align: center;
  font-size: 18px;
  line-height: 30px;
  color: #4D4D4D;
  margin: 15px 15px 0 0;
  padding: 0 15px 0 7.5px;
}

.SFFeatureIcon {
  width: 15px;
  height: 15px;
  float: left;
  background-color: #4D4D4D;
  border-radius: 7.5px;
  margin-top: 7.5px;
  margin-right: 10px;
}

.featureActive {
  background-color: #0072E7;
  color: white;
}
.featureActive .SFFeatureIcon {
  background-color: white;
}

#featureDescription {
  display: none;
  position: fixed;
  width: 320px;
  /* border: 1px solid white; */
  color: white;
  align-items: center;
  justify-content: center;
}

#featureIcon {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: white;
  margin: 0 auto;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
}

#featureIcon img {
  width: 28px;
  height: 28px;
  display: block;
}

#featureDescText {
  text-align: center;
}

#featureDescText h2 {
  font-size: 24px;
  font-weight: 600;
}

#featureDescText p {
  font-size: 14px;
  line-height: 22px;
}
