.lb {
  position: relative;
  overflow: hidden;
}
.lb .swiper {
  width: 100%;
  position: relative;
}
.lb .swiper .swiper-wrapper {
  width: 100%;
  display: flex;
}
.lb .swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  position: relative;
}
.lb .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 520px;
}
.lb .swiper .swiper-wrapper .swiper-slide .slide-r {
  width: 900px;
  height: 324px;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  padding: 50px 56px;
  border-radius: 8px;
}
.lb .swiper .swiper-wrapper .swiper-slide .slide-r span {
  display: block;
  font-family: m;
  font-weight: normal;
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 12px;
  text-align: center;
}
.lb .swiper .swiper-wrapper .swiper-slide .slide-r h3 {
  font-family: m;
  font-weight: bold;
  font-size: 40px;
  color: #FFFFFF;
  line-height: 60px;
  text-align: center;
  margin-bottom: 16px;
}
.lb .swiper .swiper-wrapper .swiper-slide .slide-r .btm-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 352px;
  height: 56px;
  background: #FFC423;
  border-radius: 8px 8px 8px 8px;
  margin: 0 auto;
}
.lb .swiper .swiper-wrapper .swiper-slide .slide-r .btm-box img {
  width: 26px;
  height: 26px;
  margin-right: 4px;
}
.lb .swiper .swiper-wrapper .swiper-slide .slide-r .btm-box span {
  font-family: m;
  font-weight: 600;
  font-size: 20px;
  color: #333;
  margin-bottom: 0;
}
.lb .swiper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fff;
}
#content {
  width: 1280px;
  margin: 0 auto;
  padding: 40px 40px 60px;
}
#content .travel-routes,
#content .attraction-introduction,
#content .travel-guide {
  margin-bottom: 40px;
}
#content .travel-routes h3,
#content .attraction-introduction h3,
#content .travel-guide h3 {
  margin-bottom: 14px;
  font-family: m;
  font-weight: 700;
  font-size: 28px;
  color: #111111;
  border-left: 6px solid #FFC423;
  padding-left: 8px;
  box-sizing: border-box;
}
#content .travel-routes .routes-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  grid-gap: 24px;
}
#content .travel-routes .routes-list .routes-item {
  background: #FFFFFF;
  border-radius: 8px 8px 8px 8px;
  border: 1px solid #EEEEEE;
  overflow: hidden;
  transition: all 0.5s;
}
#content .travel-routes .routes-list .routes-item .img-box {
  height: 256px;
  overflow: hidden;
}
#content .travel-routes .routes-list .routes-item .img-box img {
  width: 100%;
  height: 100%;
}
#content .travel-routes .routes-list .routes-item h4 {
  width: 100%;
  padding: 0 16px;
  font-family: m;
  font-weight: bold;
  margin: 12px auto;
  font-size: 20px;
  color: #111111;
  line-height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#content .travel-routes .routes-list .routes-item .btm-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 16px;
}
#content .travel-routes .routes-list .routes-item .btm-box .day {
  font-family: m;
  font-weight: normal;
  font-size: 14px;
  color: #666666;
}
#content .travel-routes .routes-list .routes-item .btm-box .b-r {
  display: flex;
  align-items: center;
  font-family: m;
  font-weight: normal;
  font-size: 14px;
  color: #666666;
}
#content .travel-routes .routes-list .routes-item .btm-box .b-r .price-hui {
  margin: 0 3px;
  text-decoration: line-through;
}
#content .travel-routes .routes-list .routes-item .btm-box .b-r .price-red {
  font-weight: 600;
  font-family: m;
  font-size: 20px;
  color: #DE224B;
}
#content .travel-routes .routes-list .routes-item:hover {
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.2);
  transform: translateY(-10px);
}
#content .travel-routes .routes-list .routes-item:hover .img-box img {
  transition: all 0.5s;
  transform: scale(1.1);
}
#content .attraction-introduction .introduction-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  grid-gap: 24px;
}
#content .attraction-introduction .introduction-list .introduction-item {
  transition: all 0.5s;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
#content .attraction-introduction .introduction-list .introduction-item .img-box {
  height: 256px;
}
#content .attraction-introduction .introduction-list .introduction-item .img-box img {
  width: 100%;
  height: 100%;
}
#content .attraction-introduction .introduction-list .introduction-item .cont-box {
  padding: 16px;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
}
#content .attraction-introduction .introduction-list .introduction-item .cont-box span {
  font-family: m;
  font-weight: normal;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 4px;
}
#content .attraction-introduction .introduction-list .introduction-item .cont-box h4 {
  font-family: m;
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#content .attraction-introduction .introduction-list .introduction-item:hover {
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.2);
  transform: translateY(-10px);
}
#content .attraction-introduction .introduction-list .introduction-item:hover .img-box img {
  transition: all 0.5s;
  transform: scale(1.1);
}
#content .subscribe {
  width: 100%;
  background: rgba(255, 196, 35, 0.1);
  border-radius: 8px 8px 8px 8px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 40px;
}
#content .subscribe h3 {
  margin-bottom: 16px;
  font-family: m;
  font-weight: bold;
  font-size: 32px;
  color: #111111;
}
#content .subscribe span {
  font-family: m;
  font-weight: 500;
  font-size: 20px;
  color: #666666;
  margin-bottom: 24px;
}
#content .subscribe .sub-btm {
  display: flex;
  align-items: center;
}
#content .subscribe .sub-btm input {
  width: 330px;
  height: 51px;
  background: #FFFFFF;
  border-radius: 8px 8px 8px 8px;
  border: 1px solid #EEEEEE;
  font-family: m;
  font-weight: 500;
  font-size: 16px;
  color: #666666;
  padding: 0 12px;
  box-sizing: border-box;
  margin-right: 16px;
}
#content .subscribe .sub-btm button {
  width: 123px;
  height: 51px;
  background: #FFC423;
  border-radius: 8px 8px 8px 8px;
  font-family: m;
  font-weight: 500;
  font-size: 16px;
  color: #111111;
  border: none;
  cursor: pointer;
}
#content .subscribe img {
  width: 457px;
  height: 280px;
  position: absolute;
  right: 0;
  bottom: -10px;
}
#content .travel-guide .guide-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  grid-gap: 24px;
}
#content .travel-guide .guide-list .guide-item {
  background: #FFFFFF;
  border-radius: 8px 8px 8px 8px;
  border: 1px solid #EEEEEE;
  overflow: hidden;
  transition: all 0.5s;
}
#content .travel-guide .guide-list .guide-item .img-box {
  height: 256px;
  overflow: hidden;
}
#content .travel-guide .guide-list .guide-item .img-box img {
  width: 100%;
  height: 100%;
}
#content .travel-guide .guide-list .guide-item span {
  box-sizing: border-box;
  padding: 16px 16px 0;
  font-family: m;
  font-weight: normal;
  font-size: 14px;
  color: #666666;
  display: block;
}
#content .travel-guide .guide-list .guide-item h4 {
  width: 100%;
  padding: 0 16px;
  font-family: m;
  font-weight: bold;
  margin: 8px auto 16px;
  font-size: 20px;
  color: #111111;
  line-height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#content .travel-guide .guide-list .guide-item:hover {
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.2);
  transform: translateY(-10px);
}
#content .travel-guide .guide-list .guide-item:hover .img-box img {
  transition: all 0.5s;
  transform: scale(1.1);
}
#content .team {
  margin-bottom: 140px;
  width: 100%;
  padding: 40px 200px 144px;
  background: rgba(255, 196, 35, 0.1);
  border-radius: 8px 8px 8px 8px;
  position: relative;
}
#content .team h3 {
  font-family: m;
  font-weight: bold;
  font-size: 28px;
  color: #111111;
  margin-bottom: 20px;
  text-align: center;
}
#content .team p {
  padding: 0 70px;
  font-family: m;
  font-weight: 600;
  font-size: 20px;
  color: #666666;
  line-height: 30px;
  text-align: center;
  word-break: break-all;
}
#content .team .team-list {
  width: 1063px;
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  grid-gap: 32px;
  position: absolute;
  left: 50%;
  bottom: -111px;
  transform: translateX(-50%);
}
#content .team .team-list .team-item {
  background: #FFFFFF;
  border-radius: 8px 8px 8px 8px;
  border: 1px solid #EEEEEE;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#content .team .team-list .team-item h4 {
  font-family: m;
  font-weight: bold;
  font-size: 20px;
  color: #111111;
  margin-bottom: 24px;
  text-align: center;
  word-break: break-all;
}
#content .team .team-list .team-item img {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}
#content .team .team-list .team-item span {
  font-family: m;
  font-weight: normal;
  font-size: 16px;
  color: #666666;
  text-align: center;
}
#content .team .team-list .team-item:hover h4 {
  color: #FFC423;
}
@media (min-width: 860px) and (max-width: 1200px) {
  .lb .swiper .swiper-wrapper .swiper-slide img {
    height: 300px;
  }
  .lb .swiper .swiper-wrapper .swiper-slide .slide-r {
    width: calc(100% - 32px);
    height: auto;
    padding: 40px 12px;
  }
  .lb .swiper .swiper-wrapper .swiper-slide .slide-r h3 {
    font-size: 20px;
    line-height: 30px;
  }
  .lb .swiper .swiper-wrapper .swiper-slide .slide-r .btm-box {
    width: 271px;
  }
  .lb .swiper .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
  }
  #content {
    width: 100%;
    padding: 20px 16px;
  }
  #content .travel-routes .routes-list {
    grid-template-columns: repeat(3, minmax(100px, 1fr));
  }
  #content .attraction-introduction .introduction-list {
    grid-template-columns: repeat(3, minmax(100px, 1fr));
  }
  #content .subscribe {
    padding: 32px 24px 152px;
  }
  #content .subscribe .sub-btm {
    flex-wrap: wrap;
  }
  #content .subscribe .sub-btm input {
    width: 100%;
    margin-bottom: 16px;
  }
  #content .subscribe img {
    width: 236px;
    height: 145px;
    right: 0;
    bottom: 0;
  }
  #content .travel-guide .guide-list {
    grid-template-columns: repeat(3, minmax(100px, 1fr));
  }
  #content .team {
    margin-bottom: 0px;
    width: 100%;
    padding: 40px 16px;
  }
  #content .team p {
    margin-bottom: 20px;
    padding: 0;
  }
  #content .team .team-list {
    width: 100%;
    grid-template-columns: repeat(3, minmax(100px, 1fr));
    grid-gap: 24px;
    position: initial;
    transform: translateX(0);
  }
}
@media (min-width: 750px) and (max-width: 859px) {
  .lb .swiper .swiper-wrapper .swiper-slide img {
    height: 300px;
  }
  .lb .swiper .swiper-wrapper .swiper-slide .slide-r {
    width: calc(100% - 32px);
    height: auto;
    padding: 40px 12px;
  }
  .lb .swiper .swiper-wrapper .swiper-slide .slide-r h3 {
    font-size: 20px;
    line-height: 30px;
  }
  .lb .swiper .swiper-wrapper .swiper-slide .slide-r .btm-box {
    width: 271px;
  }
  .lb .swiper .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
  }
  #content {
    width: 100%;
    padding: 20px 16px;
  }
  #content .travel-routes .routes-list {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
  }
  #content .attraction-introduction .introduction-list {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
  }
  #content .subscribe {
    padding: 32px 24px 152px;
  }
  #content .subscribe .sub-btm {
    flex-wrap: wrap;
  }
  #content .subscribe .sub-btm input {
    width: 100%;
    margin-bottom: 16px;
  }
  #content .subscribe img {
    width: 236px;
    height: 145px;
    right: 0;
    bottom: 0;
  }
  #content .travel-guide .guide-list {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
  }
  #content .team {
    margin-bottom: 0px;
    width: 100%;
    padding: 40px 16px;
  }
  #content .team p {
    margin-bottom: 20px;
    padding: 0;
  }
  #content .team .team-list {
    width: 100%;
    grid-template-columns: repeat(1, minmax(100px, 1fr));
    grid-gap: 24px;
    position: initial;
    transform: translateX(0);
  }
}
@media (min-width: 560px) and (max-width: 749px) {
  .lb .swiper .swiper-wrapper .swiper-slide img {
    height: 300px;
  }
  .lb .swiper .swiper-wrapper .swiper-slide .slide-r {
    width: calc(100% - 32px);
    height: auto;
    padding: 40px 12px;
  }
  .lb .swiper .swiper-wrapper .swiper-slide .slide-r h3 {
    font-size: 20px;
    line-height: 30px;
  }
  .lb .swiper .swiper-wrapper .swiper-slide .slide-r .btm-box {
    width: 271px;
  }
  .lb .swiper .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
  }
  #content {
    width: 100%;
    padding: 20px 16px;
  }
  #content .travel-routes .routes-list {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
  }
  #content .attraction-introduction .introduction-list {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
  }
  #content .subscribe {
    padding: 32px 24px 152px;
  }
  #content .subscribe .sub-btm {
    flex-wrap: wrap;
  }
  #content .subscribe .sub-btm input {
    width: 100%;
    margin-bottom: 16px;
  }
  #content .subscribe img {
    width: 236px;
    height: 145px;
    right: 0;
    bottom: 0;
  }
  #content .travel-guide .guide-list {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
  }
  #content .team {
    margin-bottom: 0px;
    width: 100%;
    padding: 40px 16px;
  }
  #content .team p {
    margin-bottom: 20px;
    padding: 0;
  }
  #content .team .team-list {
    width: 100%;
    grid-template-columns: repeat(1, minmax(100px, 1fr));
    grid-gap: 24px;
    position: initial;
    transform: translateX(0);
  }
}
@media (min-width: 0px) and (max-width: 559px) {
  .lb .swiper .swiper-wrapper .swiper-slide img {
    height: 300px;
  }
  .lb .swiper .swiper-wrapper .swiper-slide .slide-r {
    width: calc(100% - 32px);
    height: auto;
    padding: 40px 12px;
  }
  .lb .swiper .swiper-wrapper .swiper-slide .slide-r h3 {
    font-size: 20px;
    line-height: 30px;
  }
  .lb .swiper .swiper-wrapper .swiper-slide .slide-r .btm-box {
    width: 271px;
  }
  .lb .swiper .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
  }
  #content {
    width: 100%;
    padding: 20px 16px;
  }
  #content .travel-routes .routes-list {
    grid-template-columns: repeat(1, minmax(100px, 1fr));
  }
  #content .attraction-introduction .introduction-list {
    grid-template-columns: repeat(1, minmax(100px, 1fr));
  }
  #content .subscribe {
    padding: 32px 24px 152px;
  }
  #content .subscribe .sub-btm {
    flex-wrap: wrap;
  }
  #content .subscribe .sub-btm input {
    width: 100%;
    margin-bottom: 16px;
  }
  #content .subscribe img {
    width: 236px;
    height: 145px;
    right: 0;
    bottom: 0;
  }
  #content .travel-guide .guide-list {
    grid-template-columns: repeat(1, minmax(100px, 1fr));
  }
  #content .team {
    margin-bottom: 0px;
    width: 100%;
    padding: 40px 16px;
  }
  #content .team p {
    margin-bottom: 20px;
    padding: 0;
  }
  #content .team .team-list {
    width: 100%;
    grid-template-columns: repeat(1, minmax(100px, 1fr));
    grid-gap: 24px;
    position: initial;
    transform: translateX(0);
  }
}
