.flex {
  display: flex;
  align-items: center;
}
.banner .container {
  left: 50%;
  transform: translateX(-50%);
}
.content {
  padding: 100px 5%;
  background: #eee;
}
.content > .title {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}
.content > .desc {
  margin-bottom: 60px;
  color: #666;
  text-align: center;
  font-size: 24px;
}
.checkbox-group {
  display: flex;
  align-items: center;
  width: 1200px;
  flex-wrap: wrap;
  margin: 30px auto;
}
.checkbox-group .checkbox-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 24px;
  margin: 20px;
}
.checkbox-group .checkbox-item input {
  width: 26px;
  height: 26px;
  margin-right: 8px;
}
.result {
  font-size: 24px;
  width: 1200px;
  margin: 10px auto;
}
.result span{
  margin-right: 10px;
}
.result .close {
  margin: 0 20px 0 8px;
  cursor: pointer;
  font-size: 20px;
  color: red;
}
.data-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 1600px) {
  .data-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 2000px) {
  .data-list {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 2800px) {
  .data-list {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media screen and (min-width: 3600px) {
  .data-list {
    grid-template-columns: repeat(8, 1fr);
  }
}
.data-item {
  height: 400px;
  display: flex;
  align-items: center;
  align-items: stretch;
  flex-direction: column;
  border-radius: 2px;
  overflow: hidden;
}
.data-item .item-box {
  position: relative;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  transform-style: preserve-3d;
}
.data-item:hover .item-box {
  transform: rotateY(180deg);
}
.data-item:not(:nth-of-type(4n)) {
  margin-right: 2.66%;
}
.data-item .front,
.data-item .back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background: #fff;
}
.data-item .front {
  z-index: 2;
}
.data-item .back {
  padding: 14px;
  transform: rotateY(180deg);
}
.data-item .back .title {
  padding: 0;
}
.data-item .back .desc {
  line-height: 1.8;
  margin-top: 10px;
  overflow: hidden;
	font-size: 18px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
}
.data-item .back .more,
.data-item .back .sign-btn {
  position: absolute;
  bottom: 10px;
  left: 8px;
  right: 8px;
  width: calc(100% - 16px);
  text-align: center;
}
.data-item .sign-btn {
  height: 40px;
  display: block;
  margin-bottom: 10px;
  border-radius: 4px;
  padding: 8px 14px;
  font-size: 16px;
  color: #fff;
  background: #c00000;
}
.data-item .img {
  position: relative;
  height: 243px;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center 0;
}
.data-item .img .tag {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0 12px 0 12px;
  padding: 8px 20px;
  color: #fecb00;
  font-size: 16px;
  background: #c00000;
}
.data-item .title {
  display: flex;
  align-items: center;
  align-items: flex-start;
  flex: 1;
  margin: 33px 0 0;
  padding: 0 14px;
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  color: #000000;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.3s;
}
.data-item .title img {
  margin-right: 20px;
}
.data-item .view {
  padding: 0 14px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  display: none;
  justify-content: space-between;
  font-size: 20px;
  color: #000000;
  transition: all 0.3s;
}
.data-item .view .more {
  background: transparent;
  color: #000;
  border-left-color: #000;
  transition: all 0.3s;
}
.destination-wrapper {
  padding: 58px 0 65px;
  background: rgba(41, 40, 37, 0.99);
}
.destination-wrapper .container {
  width: 80%;
}
.province-list {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.province-list .province {
  margin-left: 30px;
  margin-bottom: 21px;
  padding: 8px 20px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  font-size: 24px;
  letter-spacing: 0px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s;
}
.province-list .province:hover {
  border-color: #fcc000;
  color: #fcc000;
}
.province-list .province:nth-of-type(1),
.province-list .province:nth-of-type(7) {
  margin-left: 0;
}
.province-list .province.active {
  border-color: #fcc000;
  color: #fcc000;
}
.map-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.map-filter .map-wrapper {
  display: flex;
  align-items: center;
  width: 400px;
}
.map-filter .select-wrapper {
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.map-filter .select-wrapper .select-item {
  padding: 0 30px;
}
.map-filter .select-wrapper .select-item:not(:last-of-type) {
  border-right: 1px solid #fff;
}
.map-filter .select-wrapper select {
  display: block;
  width: 150px;
  border: none;
  outline: none;
  color: #fff;
  font-size: 18px;
  background: transparent;
}
.map-filter .select-wrapper select option {
  color: #000;
}
.province-description {
  margin-bottom: 30px;
  padding: 28px;
  background: #000;
  font-size: 24px;
  color: #ffffff;
  line-height: 1.6;
}
.destination-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center 0;
}
.destination-list .item {
  margin-bottom: 40px;
  position: relative;
  width: 23%;
  height: 269px;
  overflow: hidden;
  transition: all 0.5s;
}
.destination-list .item:hover .details-wrapper {
  background: #000;
}
.destination-list .item:hover .details {
  transform: translate3d(0, 0, 0);
}
.destination-list .item:hover > .title {
  transform: translate3d(0, 100%, 0);
}
.destination-list .item > .title {
  position: absolute;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 24px 22px 24px;
  font-size: 24px;
  text-shadow: 5px 5px 10px #000;
  font-weight: bold;
  font-stretch: normal;
  color: #ffffff;
  background-image: linear-gradient(to bottom, transparent, #000);
  transition: all 0.5s;
}
.destination-list .item .details-wrapper {
  width: 100%;
  height: 100%;
  background: transparent;
  transition: background 0.5s;
}
.destination-list .item .details {
  width: 100%;
  height: 100%;
  transform: translate3d(0, -100%, 0);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transition: all 0.5s;
}
.destination-list .item .details .title {
  margin-bottom: 18px;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
}
.destination-list .item .details .line {
  margin-bottom: 24px;
  width: 92px;
  height: 4px;
  background-color: #ffb900;
}
.destination-list .item .details .desc {
  width: 90%;
  line-height: 1.3;
  font-size: 18px;
  color: #ffffff;
}
.load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 31px auto 0;
  width: 390px;
  height: 74px;
  border-radius: 8px;
  border: solid 2px #fcc000;
  font-size: 30px;
  font-weight: bold;
  color: #fcc000;
  transition: all 0.3s;
  cursor: pointer;
}
.load-more:hover {
  background: #fcc000;
  color: #000;
}
