.hotel {
  width: 100%;
}
.hotel img {
  width: 100%;
  display: block;
}
.hotel .item {
  color: #706f70;
  display: flex;
  margin-bottom: 2em;
}
.hotel .item h2 {
  font-size: 3em;
  margin: 0.5em 0;
  color: #c09060;
  margin-bottom: 1em;
}
.hotel .item img {
  width: 5em;
  height: 5em;
  margin-top: 0.5em;
  margin-right: 2em;
}
.hotel .item p {
  font-size: 1.5em;
  line-height: 2;
  margin: 0;
}

/* 新增：原内联样式对应的类 */
.hotel-section1 {
  display: flex;
  justify-content: right;
  background-color: #eeebe9;
}
.hotel-desc {
  width: 75%;
  font-size: 2em;
  padding: 3em 3em 3em 0;
  color: #6e6d6e;
  line-height: 2;
  box-sizing: border-box;
}

.hotel-section2 {
  display: flex;
  justify-content: right;
}
.hotel-desc2 {
  width: 75%;
  padding: 3em 3em 3em 0;
  box-sizing: border-box;
  color: #706f70;
}
.hotel-title {
  font-size: 1.5em;
  margin-bottom: 1em;
}
.hotel-title2 {
  font-size: 1.5em;
}
.hotel-section3 {
  display: flex;
  justify-content: center;
}
.hotel-section3-inner {
  width: 70%;
  margin: 3em 0;
}

@media screen and (max-width: 768px) {
  .hotel-section1 {
    flex-direction: column;
    align-items: center;
  }

  .hotel-desc {
    width: 100%;
    padding: 1em;
    font-size: 1.5em;
  }

  .hotel-title {
    font-size: 1.5em;
  }

  .hotel-title2 {
    font-size: 1.5em;
  }

  .hotel-section2 {
    flex-direction: column;
    align-items: center;
  }

  .hotel-desc2 {
    width: 100%;
    padding: 1em;
    font-size: 1.1em;
    text-align: center;
  }

  .hotel .item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hotel-section3-inner {
    width: 100%;
    margin: 1em;
  }
  .hotel .item img {
    margin: 0;
  }
}
