@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500&family=Noto+Sans+TC:wght@300;400;500&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css");

* {
  margin: 0;
  /*padding: 0;*/
  font-family: "Noto Sans TC", sans-serif;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

img {
  border: 0;
  vertical-align: middle;
  max-width: 100%;
}
a .tl_popupCL1 {
  position: fixed;
  top: 1%;
  right: 8%;
  z-index: 999;
  font-size: 1rem;
}
header {
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 20px;
}

nav ul {
  display: flex;
  padding: 0;
  margin: 0;
}

nav ul li {
  list-style: none;
  position: relative;
  margin-left: 24px;
}

nav ul li a {
  text-decoration: none;
  color: #282828;
  display: block;
  padding: 20px 0;
  font-size: 18px;
  transition: 0.3s;
  border-bottom: 1px solid #ffffff;
}

/* dropmenu */
nav ul li .dropmenu {
  position: relative;
  padding-right: 18px;
}

nav ul li .dropmenu::after {
  content: "";
  position: absolute;
  right: 0;
  top: 49%;
  width: 6px;
  height: 6px;
  border: 1px solid;
  border-color: transparent transparent #282828 #282828;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg) translateY(-50%);
  transition: 0.3s;
}

nav ul li .dropmenu:hover::after {
  border-color: transparent transparent #007bc6 #007bc6;
}

nav ul li a:hover {
  color: #007bc6;
}

nav ul li .sub {
  position: absolute;
  top: 64px;
  left: 0;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.16);
  display: block;
  width: 160px;
  background: #fff;
  z-index: 20;

  opacity: 0;
  display: none;
}

nav ul li:hover .sub {
  opacity: 1;
  display: block;
}

nav ul li .sub li {
  margin-left: 0;
}

nav ul li .sub a {
  color: #ec2293;
  display: block;
  padding: 10px 16px;
  transition: 0.3s;
  font-size: 16px;
  border-bottom: 1px solid #ec2293;
}

nav ul li .sub a:hover {
  background: #ec2293;
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .logo img {
    max-width: 280px;
  }

  nav ul li a {
    font-size: 16px;
  }

  nav ul li {
    margin-left: 30px;
  }
}

@media screen and (max-width: 1024px) {
  header {
    padding: 10px 20px;
  }

  header .logo {
    display: flex;
    align-items: center;
  }

  .logo img {
    max-width: 250px;
  }

  nav ul {
    position: absolute;
    width: 100%;
    top: 50px;
    left: 0;
    flex-wrap: wrap;
    z-index: 20;
    background: #fff;
  }

  header nav {
    opacity: 0;
    visibility: hidden;
  }

  header.active nav {
    opacity: 1;
    visibility: visible;
  }

  nav ul li {
    margin-left: 0;
    text-align: center;
    width: 100%;
  }
  nav ul li a {
    padding: 20px;
  }

  nav ul li:hover > a {
    color: #fff;
    background: #ec2293;
  }

  nav ul li .dropmenu {
    padding-right: 0;
    padding: 20px;
    background: url("../images/arrow-sub.svg") no-repeat right 20px center;
    background-size: 10px;
  }
  nav ul li .dropmenu:hover {
    background: #ec2293 url("../images/arrow-sub_h.svg") no-repeat right 20px
      center;
    background-size: 10px;
  }
  nav ul li:hover .dropmenu {
    background: #ec2293 url("../images/arrow-sub_h.svg") no-repeat right 20px
      center;
    background-size: 10px;
  }
  nav ul li .dropmenu::after {
    display: none;
    right: 20px;
  }

  nav ul li .dropmenu:hover::after {
  }

  nav ul li:hover > .dropmenu::after {
    border-color: transparent transparent #fff #fff;
  }

  nav ul li .sub {
    box-shadow: none;
    position: inherit;
    top: inherit;
    left: inherit;
  }
  nav ul li:hover .sub {
    width: 100%;
  }

  .menuToggle {
    position: absolute;
    right: 20px;
    width: 32px;
    height: 40px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
  }

  .menuToggle::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: #017bc8;
    transform: translateY(-10px);
    box-shadow: 0 10px #017bc8;
    transition: 0.3s;
  }

  .menuToggle::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: #017bc8;
    transform: translateY(10px);
    transition: 0.3s;
  }

  header.active .menuToggle::before {
    transform: rotate(45deg);
    box-shadow: 0 0 #017bc8;
  }

  header.active .menuToggle::after {
    transform: rotate(315deg);
  }
}

@media screen and (max-width: 768px) {
  .logo img {
    max-width: 200px;
  }
}

/* edm */
.edm {
  overflow: hidden;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ã¦ÂÅ“Ã¥Â°â€¹bar */
.search-container {
  width: 100%;
  position: relative;
  margin-top: -32px;
  z-index: 1;
  padding: 0 16px;
  text-align: center;
}

.search-bar {
  margin: 0 auto;
  max-width: 894px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 2px 8px 0px rgba(99, 99, 99, 0.2);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.search-bar input {
  max-width: 120px;
}

.search-bar h3 {
  font-weight: 400;
  font-size: 16px;
  color: #ec2293;
  line-height: 16px;
  letter-spacing: 0.8px;
  margin-right: auto;
}

.search-bar .keyword,
.search-bar .category {
  max-width: 180px;
  width: 100%;
}

.search-bar .category {
  appearance: none;
  background-image: url("../images/arrow.svg");
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  color: #282828;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.7px;
}

.search-bar input,
.search-bar select {
  border-radius: 5px;
  border: 1px solid #ff9dd4;
  background: #fff;
  padding: 6px 10px;
  margin-right: 10px;
  line-height: 20px;
}
main {
  overflow: hidden;
}
input {
  font-size: 14px;
}

.search-bar input[type="date"] {
  letter-spacing: 0;
  padding: 5px;
  min-width: 140px;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  min-height: 1.2em;
}

.search-bar .end {
  margin-right: auto;
}

.search-bar select option {
  color: #282828;
  font-size: 16px;
}

.search-bt {
  text-decoration: none;
  color: #fff;
  border-radius: 4px;
  background: #ec2293;
  display: inline-block;
  padding: 8px 0;
  width: 100px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.4px;
  transition: 0.3s;
}

.search-bar .search-bt:hover {
  background: #e2007e;
}

::placeholder {
  color: #4e4e4e;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.7px;
}

.seacrh-open {
  display: none;
}

@media screen and (max-width: 976px) {
  .search-container {
    margin: 20px 0;
  }

  .seacrh-open {
    display: inline-block;
    width: 70%;
  }

  .search-bar {
    max-width: 600px;
    width: 100%;
    flex-direction: column;
    padding: 0;
    margin-bottom: 0;
    visibility: hidden;
    opacity: 0;
    height: 0;
    transition: 0.3s;
  }

  .search-bar.show {
    padding: 20px 16px;
    height: fit-content;
    opacity: 1;
    visibility: visible;
    margin-top: 20px;
  }

  .search-bar h3 {
    text-align: center;
    margin-right: 0;
    margin-bottom: 16px;
    font-size: 20px;
    letter-spacing: 2px;
  }

  .search-bar .keyword,
  .search-bar .category {
    max-width: 100%;
  }

  .search-bar .date {
    width: 100%;
  }

  .search-bar input,
  .search-bar select {
    margin-right: 0;
    padding: 10px;
    margin-bottom: 10px;
  }

  .search-bar input {
    width: 100%;
    max-width: 100%;
  }

  .search-bar .search-bt {
    width: 100%;
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .search-bar {
    max-width: 510px;
  }

  ::placeholder {
    font-size: 15px;
  }

  .search-bar .category {
    font-size: 15px;
  }
}

/* Ã¤Â¸Â»Ã¨Â¦ÂÃ¥Ââ‚¬Ã¥Â¡Å  */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.title-section {
  position: relative;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.title-section .title-cn {
  color: #ec2293;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 3.2px;
}

.title-section .title-en {
  color: #282828;
  font-family: Cormorant Garamond;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
}

.more-bt {
  padding: 8px 0;
  display: flex;
  justify-content: center;
  text-align: center;
  color: #017bc8;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-decoration: none;
  position: relative;
}

.more-bt::before {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 120px;
  height: 3px;
  border-radius: 10px;
  background: #017bc8;
}

.more-bt img {
  margin-left: 16px;
  transition: 0.3s;
}

.more-bt:hover img {
  transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  .title-section .title-cn {
    font-size: 24px;
  }

  .title-section .title-en {
    font-size: 18px;
  }
}

/* Ã¦Å“Â¬Ã¦Å“Ë†Ã¤Â¸Â»Ã¦â€°â€œ */
.featured-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 60px;
  padding: 0 20px;
  overflow: hidden;
}

.featured-slider {
  margin-bottom: 40px;
}

.card-wrapper .card {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #e4e4e4;
}

.card .image-box {
  aspect-ratio: 4 / 3;
  margin-bottom: 10px;
}

.card .image-box img {
  width: 100%;
  height: 100%;
}

.card .travel-content {
  padding: 0 10px;
}

.travel-content .tag {
  margin-bottom: 10px;
}

.travel-content .tag span {
  display: inline-block;
  border-radius: 5px;
  padding: 5px 10px;
  border: 1px solid #ec2293;
  background: #ec2293;
  font-size: 14px;
  line-height: 12px;
  font-weight: 400;
  letter-spacing: 0.6px;
}

.travel-content .tag span.dest {
  color: #fff;
  margin-right: 8px;
}

.travel-content .tag span.theme {
  background: #fff;
  color: #ec2293;
}

.travel-content .travel-title {
  color: #3d3d3d;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.8px;
  min-height: 48px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 10px;
}

.travel-content .travel-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.travel-content .travel-info .days {
  display: flex;
  align-items: center;
  color: #474b4b;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.7px;
}

.travel-content .travel-info .days img {
  margin-right: 6px;
  width: 12px;
}

.travel-content .travel-info .price {
  color: #f2b310;
  font-family: arial, sans-serif;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.travel-content .travel-info .price span {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.7px;
}

.travel-content .detail-bt {
  border-radius: 20px;
  background: #017bc8;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  letter-spacing: 0.7px;
  text-decoration: none;
  display: block;
  transition: 0.3s;
}

.travel-content .detail-bt:hover {
  background: #00619c;
}

.featured-prev,
.featured-next {
  position: absolute;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-image: url(../images/arrow-l.svg);
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  transition: 0.3s;
}

.featured-prev:hover,
.featured-next:hover {
  background-image: url(../images/arrow-hover.svg);
}

.featured-prev {
  right: 50px;
  bottom: 0;
}

.featured-next {
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
}

@media screen and (max-width: 768px) {
  .card .image-box {
    aspect-ratio: 3 / 2;
  }

  .featured-container {
    margin-bottom: 40px;
    padding: 0 40px;
  }
}

@media screen and (max-width: 500px) {
  .featured-prev {
    bottom: -400%;
    right: inherit;
    left: -22px;
    background: #ffffff url(../images/arrow-l.svg) no-repeat center center;
    border-radius: 80px;
    z-index: 10;
    width: 32px;
    height: 32px;
  }
  .featured-next {
    bottom: -400%;
    right: -22px;
    background: #ffffff url(../images/arrow-l.svg) no-repeat center center;
    border-radius: 80px;
    z-index: 10;
    width: 32px;
    height: 32px;
  }
}

.container-bg {
  background: #f8f8f8;
  padding: 40px 10px;
  margin-bottom: 60px;
}

.dest-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.dest-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.dest-list li {
  width: calc(100% / 5 - 20px);
  position: relative;
  padding: 0;
  overflow: hidden;
  border-radius: 10px;
  margin: 10px;
}

.dest-list li .dest-photo {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.dest-text {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 140px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.8px;
  padding: 10px 14px 10px 16px;
  border-radius: 10px 0 10px 0;
  transition: 0.3s;
  height: 40px;
}

.dest-list li a:hover .dest-text {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  opacity: 0.8;
}

.dest-list li a:hover .dest-text img {
  transform: translateX(10px) rotate(45deg);
}

.dest-list li:nth-child(1) .dest-text,
.dest-list li:nth-child(6) .dest-text {
  background: #ec2293;
}

.dest-list li:nth-child(2) .dest-text,
.dest-list li:nth-child(7) .dest-text {
  background: #017bc8;
}

.dest-list li:nth-child(3) .dest-text,
.dest-list li:nth-child(8) .dest-text {
  background: #5bb531;
}

.dest-list li:nth-child(4) .dest-text,
.dest-list li:nth-child(9) .dest-text {
  background: #f2c51b;
}

.dest-list li:nth-child(5) .dest-text,
.dest-list li:nth-child(10) .dest-text {
  background: #f66020;
}

@media screen and (max-width: 1200px) {
  .dest-list li {
    width: calc(100% / 4 - 20px);
  }
}

@media screen and (max-width: 768px) {
  .dest-list li {
    width: calc(100% / 3 - 20px);
  }

  .container-bg {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 576px) {
  .dest-list li {
    width: calc(100% / 2 - 20px);
  }

  .dest-list li a:hover .dest-text {
    font-size: 16px;
  }
}

.pop-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 60px;
}

.pop-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.pop-list li {
  width: calc(100% / 4 - 50px);
  position: relative;
  padding: 0;
  overflow: hidden;
  border-radius: 50%;
  margin: 22.5px;
}

.pop-list li:nth-child(1),
.pop-list li:nth-child(5) {
  border: 4px solid #ec2293;
}

.pop-list li:nth-child(2),
.pop-list li:nth-child(6) {
  border: 4px solid #017bc8;
}

.pop-list li:nth-child(3),
.pop-list li:nth-child(7) {
  border: 4px solid #5bb531;
}

.pop-list li:nth-child(4),
.pop-list li:nth-child(8) {
  border: 4px solid #f2c51b;
}

.pop-list li .pop-photo {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transition: 0.5s;
}

.pop-list li:hover .pop-photo {
  transform: scale(1.2);
}

.pop-list li .pop-photo::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.pop-list li:hover .pop-photo::before {
  background: rgba(0, 0, 0, 0);
}

.pop-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1.2px;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .pop-list li {
    width: calc(100% / 4 - 30px);
    margin: 15px;
  }
}

@media screen and (max-width: 976px) {
  .pop-list li {
    width: calc(100% / 3 - 20px);
    margin: 10px;
  }

  .pop-text {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .pop-container {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 576px) {
  .pop-list li {
    width: calc(100% / 2 - 20px);
  }
}

.theme-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.theme-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 60px;
}

.theme-list li {
  width: calc(100% / 4);
  position: relative;
  padding: 2px;
}

.theme-list li .theme-photo {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.theme-list li .theme-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -19px;
  border-radius: 30px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 38px;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.theme-text img {
  width: 15px;
  margin-left: 10px;
  transform: rotate(45deg);
}

.theme-list li:nth-child(1) .theme-text {
  border: 1px solid #ec2293;
  color: #ec2293;
}

.theme-list li:nth-child(1) .theme-text img {
  filter: invert(50%) sepia(54%) saturate(7491%) hue-rotate(314deg)
    brightness(99%) contrast(87%);
}

.theme-list li:hover:nth-child(1) .theme-text {
  background: #ec2293;
}

.theme-list li:nth-child(2) .theme-text {
  border: 1px solid #017bc8;
  color: #017bc8;
}

.theme-list li:hover:nth-child(2) .theme-text {
  background: #017bc8;
}

.theme-list li:nth-child(3) .theme-text {
  border: 1px solid #5bb531;
  color: #5bb531;
}

.theme-list li:hover:nth-child(3) .theme-text {
  background: #5bb531;
}

.theme-list li:nth-child(3) .theme-text img {
  filter: invert(50%) sepia(15%) saturate(1850%) hue-rotate(57deg)
    brightness(100%) contrast(92%);
}

.theme-list li:nth-child(4) .theme-text {
  border: 1px solid #f2c51b;
  color: #f2c51b;
}

.theme-list li:hover:nth-child(4) .theme-text {
  background: #f2c51b;
}

.theme-list li:nth-child(4) .theme-text img {
  filter: invert(53%) sepia(23%) saturate(952%) hue-rotate(12deg)
    brightness(140%) contrast(120%);
}

.theme-list li:hover .theme-text {
  color: #fff;
}

.theme-list li:hover .theme-text img {
  filter: invert(100%) sepia(100%) saturate(38%) hue-rotate(254deg)
    brightness(130%) contrast(110%);
}

@media screen and (max-width: 976px) {
  .theme-list li .theme-text {
    font-size: 16px;
  }

  .theme-text img {
    width: 12px;
  }

  .theme-list li .theme-text {
    width: 165px;
    height: 32px;
  }
}

@media screen and (max-width: 768px) {
  .theme-list {
    margin-bottom: 40px;
  }

  .theme-list li {
    width: calc(100% / 2 - 40px);
    margin: 20px;
  }

  .theme-list li .theme-text {
    width: 90%;
    height: 32px;
  }
}

@media screen and (max-width: 576px) {
  .theme-list li {
    width: calc(100% / 2 - 20px);
    margin: 20px 10px;
  }
}

.footer-bg1 {
  background: #333333;
  padding: 30px 10px;
}

.footer-bg2 {
  background: #282c28;
  display: flex;
  align-items: center;
  padding: 10px;
}

.footer-container {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}
.transfer a:link {
  color: #fff;
}

.footer-contect {
  display: flex;
  align-items: center;
  color: #fff;
}

.company-info {
  padding: 10px 0;
}

.company-info .logo-f {
  margin-bottom: 30px;
}

.company-info {
  padding-right: 60px;
  margin-right: 60px;
  border-right: 1px solid rgba(255, 255, 255, 0.6);
}

.company-info .social-info {
  margin-bottom: 30px;
}

.company-info .social-info .fb-icon {
  margin-right: 10px;
}

.company-info p {
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.8px;
}

.company-info p:not(:last-child) {
  margin-bottom: 20px;
}

.contact-info p {
  color: #fff;
}

.contact-info .contact {
  display: flex;
  margin-bottom: 60px;
}

.contact-info .title {
  margin-right: 30px;

  font-weight: 300;
}

.contact-info ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 500px;
}

.contact-info li {
  color: #fff;
  margin-right: 20px;
  margin-bottom: 20px;
  font-weight: 300;
}
.contact-info li a {
  color: #fff;
  text-decoration: none;
}
.contact-info li:nth-last-child(1) {
  margin-bottom: 0;
}

.contact-info li img {
  margin-right: 8px;
}

.contact-info li span {
  font-size: 14px;
  margin-right: 8px;
  color: #fff;
}

.contact-info .transfer {
  display: flex;
}

.contact-info .transfer-text p {
  margin-bottom: 20px;
  font-weight: 300;
}

.transfer-text a {
  color: #fff;
}

.contact-info .transfer-text p:nth-child(2) {
  margin-bottom: 0;
}

/* copyright */
.copyright {
  color: #fff;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 300;
}

.copyright a {
  color: #fff;
  text-decoration: none;
  margin-left: 10px;
  transition: 0.3s;
}

.copyright a:hover {
  color: #fff;
}

.wd {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  line-height: 2;
}

.copyright .cert img {
  margin-left: 20px;
}

@media screen and (max-width: 1200px) {
  .company-info {
    margin-left: 40px;
    padding-right: 40px;
  }

  .contact-info .contact {
    flex-direction: column;
    margin-bottom: 30px;
  }

  .contact-info .transfer {
    flex-direction: column;
  }

  .contact-info .title {
    margin-bottom: 20px;
  }

  .wd {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .company-info {
    margin-right: 40px;
  }

  .contact-info ul {
    max-width: 360px;
  }

  .copyright {
    font-size: 12px;
  }

  .copyright a {
    margin-left: 0;
    display: block;
  }

  .copyright .cert img {
    margin-left: 10px;
  }
}

@media screen and (max-width: 576px) {
  .footer-contect {
    flex-direction: column;
  }

  .company-info {
    max-width: 360px;
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
    padding: 0;
    border: 0;
  }

  .contact-info .title {
    margin-right: 0;
    text-align: center;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    padding-bottom: 10px;
  }

  .copyright {
    flex-direction: column;
  }

  .copyright p {
    text-align: center;
  }

  .copyright .cert {
    margin: 20px;
  }
}

.banner {
  position: relative;
}

.banner .title-section {
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.banner .banner-photo {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 250px;
}

.banner .title-section .title-cn,
.banner .title-section .title-en {
  color: #fff;
}

.banner .title-section .title-cn {
  font-size: 32px;
}

.banner .title-section .title-en {
  font-size: 24px;
}

.page-back {
  padding: 8px 0;
  display: flex;
  justify-content: center;
  text-align: center;
  color: #017bc8;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-decoration: none;
  position: relative;
}

.page-back::before {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 120px;
  height: 3px;
  border-radius: 10px;
  background: #017bc8;
}

.page-back img {
  margin-left: 16px;
  transition: 0.3s;
}

.page-back:hover img {
  transform: rotate(45deg);
}

.content-body {
  margin-bottom: 20px;
}
.member-main {
  display: flex;
  flex-wrap: wrap;
}
.member-note {
  width: 100%;
}
.member-left {
  flex: 1;
  margin: 0 2vw 0 0;
}
.member-right {
  flex: 1;
  margin: 0 0 0 2vw;
}
@media screen and (max-width: 1000px) {
  .member-main {
    display: block;
  }
  .member-left {
    flex: initial;
    margin: 0 0 30px;
    width: 100%;
  }
  .member-right {
    flex: initial;
    margin: 0;
    width: 100%;
  }
}
.page-title {
  background: #f3f3f3;
  color: #282828;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2.4px;
  padding: 14px 15px;
  margin-bottom: 30px;
  position: relative;
}
.page-title i {
  margin: 0 10px 0 0;
}
.page-title i img {
  width: 34px;
}
.page-title:before {
  content: "";
  width: 200px;
  height: 1px;
  background: #ec2293;
  position: absolute;
  left: 0;
  bottom: 0;
}
.page-title:after {
  content: "Mides Travel";
  font-size: 12px;
  color: #ec2293;
  position: absolute;
  bottom: -8px;
  left: 0;
  text-transform: uppercase;
  font-weight: 400;
  background: #ffffff;
  padding: 0 15px 0 0;
}
.page-title2 {
  background: none;
  padding: 14px 0;
  border-bottom: 1px solid #cccccc;
}
.page-title2:before {
  display: none;
}
.page-title2 span {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #4d4d4d;
  font-size: 14px;
  letter-spacing: 1.5px;
  padding: 10px 0;
}
.page-title2 span a {
  color: #ec2293;
}
.page-title2 span a:hover {
  color: #017bc8;
}
.page-title3 {
  background: none;
  padding: 14px 0;
}
.page-title3 i img {
  width: 28px;
}
.page-title3:before {
  display: none;
}
.page-title3:after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #ec2293;
  position: absolute;
  bottom: -2px;
  left: 0;
}

h3.page-title4 {
  color: #282828;
  font-size: 24px;
  text-align: center;
  letter-spacing: 2.4px;
  margin-bottom: 30px;
  font-weight: 400;
}

h3.page-title5 {
  color: #282828;
  font-size: 20px;
  text-align: center;
  letter-spacing: 2.4px;
  margin-bottom: 30px;
  font-weight: 400;
  position: relative;
}

h3.page-title5::before {
  content: "";
  position: absolute;
  width: 40%;
  height: 1px;
  background: #cccccc;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

h3.page-title5::after {
  content: "";
  position: absolute;
  width: 40%;
  height: 1px;
  background: #cccccc;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.page {
  height: 40px;
  font: 13px/40px "Ã¥Â¾Â®Ã¨Â»Å¸Ã¦Â­Â£Ã©Â»â€˜Ã©Â«â€";
  color: #333;
  text-align: center;
  clear: both;
  margin-top: 30px;
}

.page br {
  display: none;
}

.page a {
  background: #017bc8;
  border-radius: 4px;
  color: #fff;
  padding: 5px 15px;
  text-decoration: none;
}
.page a:hover {
  background: #00619c;
}
@media screen and (max-width: 768px) {
  .banner .banner-photo {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 120px;
  }
}
@media screen and (max-width: 976px) {
  h3.page-title2 {
    text-align: left;
  }

  h3.page-title2 span {
    display: block;
    position: static;
  }
}

@media screen and (max-width: 768px) {
  .banner .title-section .title-cn {
    font-size: 24px;
  }

  .banner .title-section .title-en {
    font-size: 20px;
  }

  .page-title {
    font-size: 18px;
  }
  .page-title i img {
    width: 30px;
  }

  h3.page-title4 {
    margin-bottom: 20px;
  }

  .content-body {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 576px) {
  .page {
    height: 100px;
  }

  .page br {
    display: block;
  }
}

.news-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
  margin-top: 20px;
}

.news-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}

.news-list li {
  width: calc(100% / 3 - 40px);
  position: relative;
  padding: 0;
  margin: 20px;
}

.news-list li .overhidden {
  overflow: hidden;
  margin-bottom: 10px;
}

.news-list li .news-photo {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: 0.5s;
}

.news-list li .news-photo {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: 0.5s;
}

.news-list li:hover .news-photo {
  transform: scale(1.1);
}

.news-list li a {
  text-decoration: none;
  color: #282828;
}

.news-list li h3 {
  transition: 0.3s;
}

.news-list li:hover h3 {
  color: #e2007e;
}

.news-list li .date {
  color: #ec2293;
  background: url("../images/news-date-icon.svg") no-repeat left top;
  padding: 0 0 0 28px;
  font-size: 14px;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}

.news-list li .news-title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.6px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
  margin-top: 20px;
  padding: 0 10px;
}

.news-inner .date {
  background: #ec2293 url("../images/news-date-icon-c.svg") no-repeat left 15px
    center;
  background-size: 20px;
  display: table;
  padding: 5px 15px 5px 43px;
  margin: 0 0 15px 0;
  border-radius: 4px;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0.6px;
}

@media screen and (max-width: 976px) {
  .news-list li {
    width: calc(100% / 2 - 20px);
    margin: 10px;
  }
}

@media screen and (max-width: 768px) {
  .news-list li .news-title {
    font-size: 15px;
    letter-spacing: 0.8px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .news-inner .date {
    font-size: 14px;
  }
}

.search-result {
  text-align: center;
}

.search-result h2 {
  font-size: 32px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.search-result .search-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 18px;
}

.search-result .search-contact p {
  margin: 0 10px;
}

.travel-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
  margin-top: 20px;
}

.travel-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}

.travel-list > li {
  position: relative;
  margin: 0 16px 16px 16px;
  display: flex;
  border: 1px solid #e4e4e4;
  padding: 10px;
  border-radius: 10px;
  flex-wrap: wrap;
}

.travel-list li .overhidden {
  overflow: hidden;
  margin-right: 30px;
}

.travel-list li .travel-photo {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: 0.5s;
  max-width: 300px;
}

.travel-list li:hover .travel-photo {
  transform: scale(1.1);
}

.travel-list > li .travel-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #e4e4e4;
  margin-right: 30px;
  flex: 3;
  padding: 20px 30px 10px 0;
}

.travel-list li .travel-content .date {
  font-size: 14px;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}

.travel-list li .travel-content .travel-title {
  color: #454545;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1.2px;
  min-height: auto;
  margin-bottom: 10px;
}

.travel-list > li .travel-content .ladder-title {
  color: #4e4e4e;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.travel-list > li .travel-content .ladder-date {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.travel-content .ladder-date li {
  margin-right: 10px;
  color: #4e4e4e;
  font-size: 14px;
  letter-spacing: 0.6px;
}

.travel-content .ladder-date li::after {
  content: "|";
  margin-left: 10px;
}

.travel-content .ladder-date li:last-child:after {
  content: "...";
}

.travel-list > li .travel-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 20px 10px 20px 0;
  justify-content: center;
}

.travel-list > li .travel-info .condition {
  display: flex;
  align-items: center;
  color: #474b4b;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.7px;
  margin-bottom: 50px;
}

.travel-list > li .travel-info .price {
  color: #f2b310;
  font-size: 32px;
  margin-bottom: 10px;
  font-family: arial, sans-serif;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.travel-list > li .travel-info .price span {
  color: #f2b310;
  font-size: 16px;
  font-weight: 400;
}

.travel-list li a.travel-bt {
  text-decoration: none;
  border-radius: 20px;
  padding: 8px 38px;
  font-size: 16px;
  letter-spacing: 0.7px;
  background: #017bc8;
  color: #fff;
  transition: 0.3s;
}

.travel-list li a.travel-bt:hover {
  background: #00619c;
}

@media screen and (max-width: 1080px) {
  .travel-list > li .travel-content {
    margin: 0;
    border: 0;
    padding-top: 10px;
  }

  .travel-list li .overhidden {
    margin-right: 20px;
  }

  .travel-list > li .travel-info {
    width: 100%;
    flex-direction: row;
    align-items: center;
    padding: 10px 10px 0 10px;
    border-top: 1px solid #e4e4e4;
  }

  .travel-content .ladder-date li {
    font-size: 12px;
  }

  .travel-list > li .travel-info .condition {
    margin-bottom: 0;
    flex: 1;
  }

  .travel-list > li .travel-info .price {
    margin-bottom: 0;
    margin-right: 10px;
  }

  .travel-list > li .travel-info .price {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .travel-list > li {
    flex-direction: column;
  }

  .travel-list li .overhidden {
    margin-right: auto;
  }

  .travel-list li .travel-photo {
    max-width: 100%;
  }

  .travel-list > li .travel-content {
    padding: 10px 0;
  }

  .travel-list li .travel-content .travel-title {
    font-size: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .travel-list > li .travel-info {
    flex-wrap: wrap;
    padding: 10px 0 0 0;
  }

  .travel-list > li .travel-info .condition {
    display: none;
  }

  .travel-list > li .travel-info .price {
    flex: 1;
  }

  .travel-list > li .travel-content .ladder-title {
    font-size: 12px;
    margin-bottom: 6px;
  }
}

@media screen and (max-width: 576px) {
  .travel-content .ladder-date li::after {
    margin-left: 6px;
  }

  .travel-content .ladder-date li {
    margin-right: 6px;
  }
}

.travel-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
  padding: 0 10px;
  margin-top: 20px;
}

.date-choice {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.date-choice .calendar {
  width: 50%;
}

.date-choice .calendar-info {
  width: 50%;
  padding-left: 40px;
}

.date-choice .calendar .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid #cccccc;
}

.top .current-date {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
}

.top .icons span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 16px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  background: #017bc8;
  color: #ffffff;
}

.top .icons span:hover {
  background: #00619c;
}

.calendar-section ul {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.calendar-section .weeks li {
  text-align: center;
}

.calendar-section ul li {
  width: calc(100% / 7);
  position: relative;
}

.calendar-section ul.weeks {
  padding: 10px 0;
  border-bottom: 1px #cccccc solid;
}

.calendar-section .days li {
  cursor: pointer;
  z-index: 1;
  width: calc(100% / 7);
  min-height: 86px;
  padding: 8px;
  border-bottom: 1px #cccccc solid;
  border-right: 1px #cccccc solid;
}
.calendar-section .days li:nth-child(7n) {
  border-right: 0;
}

.calendar-section .days li.selected {
  box-shadow: 0px 0px 0px 4px #ec2293 inset;
}

.calendar-section .days li span {
  display: block;
  font-size: 14px;
  margin-bottom: 0px;
}

.calendar-section .days li span span {
  margin-bottom: 8px;
}

.calendar-section .days li p {
  font-size: 14px;
  color: #4e4e4e;
  margin-bottom: 4px;
}

.days li.inactive {
  background: #eeeeee;
}

.calendar-section .mobile-days {
  display: none;
}

@media screen and (max-width: 1200px) {
  .calendar-section ul.weeks {
    display: none;
  }

  .calendar-section ul.days {
    display: none;
  }

  .calendar-section .mobile-days {
    display: flex;
  }

  .calendar-section .mobile-days li {
    width: calc(100% / 3);
    min-height: 100px;
    padding: 10px;
    outline: 1px solid #cecece;
    display: flex;
    cursor: pointer;
  }

  .calendar-section .mobile-days li .day {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin-right: 10px;
  }

  .calendar-section .mobile-days li .day .date {
    font-size: 24px;
    font-weight: 500;
  }

  .calendar-section .mobile-days li .day .week {
    font-size: 14px;
  }

  .calendar-section .mobile-days li .state .sign {
    color: #e3007f;
    font-weight: 500;
    margin-bottom: 6px;
  }

  .calendar-section .mobile-days li .state .sale {
    color: #4e4e4e;
  }
}

@media screen and (max-width: 976px) {
  .date-choice {
    align-items: center;
    flex-direction: column;
    margin-bottom: 40px;
  }

  .date-choice .calendar {
    width: 100%;
    margin-bottom: 40px;
  }

  .date-choice .calendar-info {
    width: 100%;
    padding: 0;
  }

  .calendar-section .mobile-days li {
    width: calc(100% / 2);
  }
}

.date-choice .sign-info,
.date-choice .price-info {
  margin-bottom: 30px;
  flex: 1;
}

.date-choice h2 {
  background: #f3f3f3;
  color: #282828;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2.4px;
  padding: 14px 15px;
  margin-bottom: 30px;
  position: relative;
}

.date-choice h2 span {
  position: absolute;
  right: 15px;
  bottom: 10px;
  color: #4d4d4d;
  font-size: 14px;
  letter-spacing: 1.5px;
}

.date-choice .travel-title,
.date-choice .travel-tag,
.date-choice .travel-info,
.date-choice .room-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 8px 8px 8px 0;
  border-bottom: 1px solid #cccccc;
}

.date-choice .price-info .travel-title,
.date-choice .room-price {
  justify-content: space-around;
  border: none;
  border-bottom: 1px solid #cccccc;
}
.price-info .travel-title,
.sign-info .travel-title {
  color: #ffffff;
  background: #5bb531;
  padding: 10px 15px 10px 0;
  display: flex;
}

.sign-info .travel-title h3 {
  border-right: 1px #ffffff solid;
  padding: 0 15px;
}
.sign-info .travel-tag h3,
.sign-info .travel-info h3 {
  border-right: 1px #cccccc solid;
  padding: 0 15px;
}
.sign-info .travel-title p,
.sign-info .travel-tag p,
.sign-info .travel-info p {
  flex: 1;
}

.sign-info .travel-title p {
  font-size: 18px;
  font-weight: 500;
}

.date-choice .room-price:nth-last-child(1) {
}

.date-choice .travel-info .take-radio {
  margin-right: 10px;
}

.date-choice .travel-info .take-radio input[type="radio"] {
  accent-color: #4e4e4e;
}

.date-choice h3 {
  margin-right: 20px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  min-width: 115px;
}

.date-choice .price-info h3 {
  margin-right: 0;
}

.date-choice .travel-info div {
  display: flex;
  min-width: 250px;
  align-items: center;
}

.booking-bt {
  display: flex;
  justify-content: center;
}

.booking-bt a {
  text-decoration: none;
  text-align: center;
  color: #ffffff;
  border-radius: 5px;
  background: #017bc8;
  padding: 6px 0;
  width: 150px;
}
.booking-bt a:hover {
  background: #00619c;
}

.travel-desc,
.travel-notice,
.travel-album {
  margin-bottom: 60px;
}

.travel-album ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.travel-album ul li {
  margin: 20px 10px;

  width: calc(100% / 5 - 20px);
}

@media screen and (max-width: 976px) {
  .travel-album ul li {
    width: calc(100% / 4 - 20px);
  }

  .date-choice h2 span {
    display: none;
  }

  .travel-desc,
  .travel-notice,
  .travel-album {
    margin-bottom: 40px;
  }
  .travel-price {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 768px) {
  .travel-album ul li {
    width: calc(100% / 3 - 10px);
    margin: 5px;
  }
}

@media screen and (max-width: 576px) {
  .travel-album ul li {
    width: calc(100% / 2 - 10px);
  }

  .date-choice .travel-info div {
    margin-bottom: 8px;
  }
}

.travel-price {
  margin-bottom: 60px;
}

.travel-price table {
  width: 100%;
  border-collapse: collapse;
}

.travel-price table tr:nth-child(1) td {
  padding: 20px 10px 10px;
}

.travel-price table tr:nth-child(1),
.travel-price table tr td:nth-child(1) {
  font-weight: 500;
}

.travel-price table tr:last-child td {
  padding: 10px 10px 20px;
}

.travel-price table tr td:nth-child(2),
.travel-price table tr td:nth-child(3),
.travel-price table tr td:nth-child(4) {
  max-width: 300px;
}

.travel-price table tr td:not(:nth-child(1)) {
  text-align: center;
}

.travel-price table tr:not(:nth-child(1)) td:not(:nth-child(1)) {
  color: #4e4e4e;
}

.travel-price table td {
  padding: 10px;
  font-size: 15px;
}

.price-note {
  /*display: flex;*/
  align-items: center;
  padding: 20px 15px;
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
  margin: 30px 0 0 0;
  background: #f9f9f9;
}

.price-note h4 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 5px 0;
}

.price-note p {
  flex: 10;
}

.travel-take {
  margin-bottom: 60px;
}

.travel-take ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.travel-take .take-place {
}

.travel-take .take-place li {
  width: calc(100% / 3);
  padding: 10px;
  display: flex;
  align-items: center;
  color: #4e4e4e;
}

.travel-take .take-place li img {
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .travel-take .take-place li {
    width: calc(100% / 2);
    font-size: 14px;
  }

  .price-note h4 {
    margin: 0 0 5px 0;
    min-width: 65px;
    font-size: 14px;
  }

  .travel-price table tr:nth-child(1) td {
    padding: 10px 0;
    font-size: 13px;
  }

  .travel-price table tr:last-child td {
    padding: 5px 0 10px;
  }

  .travel-price table td {
    padding: 5px 0;
    font-size: 13px;
  }

  .price-note {
    padding: 10px;
  }

  .price-note p {
    font-size: 14px;
  }
}

.take-model {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px 15px;
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
  margin: 30px 0 0 0;
  background: #f9f9f9;
}

.take-model h4 {
  font-size: 16px;
  font-weight: 500;
  margin-right: 30px;
  /*min-width: 100px;*/
}

.take-model ul {
  flex: 10;
}

.take-model li {
  margin-right: 40px;
  color: #4e4e4e;
}

@media screen and (max-width: 768px) {
  .take-model {
    padding: 10px 5px;
  }

  .take-model h4 {
    margin: 0 0 5px 0;
    width: 100%;
    min-width: inherit;
    font-size: 14px;
  }

  .take-model li {
    width: calc(100% / 2 - 40px);
    font-size: 14px;
    padding: 5px 0;
  }
}

.seat-info-note {
  background: #f3f3f3;
  font-size: 14px;
  color: #222222;
  padding: 8px 15px;
  margin: 15px 0 0 0;
}
.date-choice .seat-info {
  width: 50%;
  outline: 2px solid #282828;
  border-radius: 10px;
  background: #fff;
  padding: 20px;
}

.seat-choice ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.seat-choice ul li {
  display: flex;
  margin: 5px;
}
.seat-choice ul li.driver-seat img {
  max-width: 210px;
}
.seat-choice ul li.safe-door img {
  max-width: inherit;
}
.seat-choice ul li.leader-seat img {
  max-height: 95.45px;
}
.seat-choice ul li.door img {
  max-height: 210px;
}

.seat-choice ul.small-seat li {
  width: calc(100% / 3 - 20px);
  justify-content: center;
}
.seat-choice ul.small-seat li.driver-seat img {
  max-width: inherit;
  width: 100%;
}
.seat-choice ul.big-seat {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.seat-choice ul.big-seat > li {
  max-width: 240px;
}

.seat-choice ul li.open {
  cursor: pointer;
}

.seat-choice ul li.space {
  width: 100px;
  height: auto;
}
.seat-choice ul li.number-rows {
  width: 10px;
  text-align: center;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .date-choice .seat-info {
    padding: 0;
  }

  .seat-choice ul li {
  }

  .seat-choice ul.big-seat > li {
    max-width: 200px;
  }

  .seat-choice ul li.space,
  .seat-choice ul li.open img,
  .seat-choice ul li.booked img,
  .seat-choice ul li.close img,
  .seat-choice ul li.door img {
    width: 80px;
  }

  .seat-choice ul li.door img {
    height: 170px;
  }

  .seat-choice ul li.driver-seat img {
    max-width: 168px;
  }
  .seat-choice ul li.safe-door img {
    max-width: 175px;
  }
  .seat-choice ul li.leader-seat img {
    max-height: 76.36px;
  }
  .seat-choice ul li.door img {
    max-height: 181px;
  }
  .seat-choice ul.small-seat li.driver-seat img {
    max-width: 80px;
  }
}

@media screen and (max-width: 976px) {
  .date-choice .seat-info {
    width: initial;
  }

  .seat-choice ul.big-seat > li {
    max-width: 180px;
  }

  .seat-choice ul li {
    margin: 5px;
  }

  .date-choice.reverse {
    flex-direction: column-reverse;
  }
  .seat-choice ul li.space,
  .seat-choice ul li.open img,
  .seat-choice ul li.booked img,
  .seat-choice ul li.close img,
  .seat-choice ul li.door img {
    width: 70px;
  }
  .seat-choice ul li.driver-seat img {
    max-width: 150px;
  }
  .seat-choice ul li.safe-door img {
    max-width: 154px;
  }
  .seat-choice ul li.leader-seat img {
    max-height: 68.17px;
  }
  .seat-choice ul li.door img {
    max-height: 150px;
  }
  .seat-choice ul.small-seat li.driver-seat img {
    max-width: 70px;
  }
}

@media screen and (max-width: 576px) {
  .seat-choice ul li.space,
  .seat-choice ul li.open img,
  .seat-choice ul li.booked img,
  .seat-choice ul li.close img,
  .seat-choice ul li.door img {
    width: 62px;
  }

  .seat-choice ul li.driver-seat img {
    max-width: 126px;
  }
  .seat-choice ul li.safe-door img {
    max-width: 136px;
  }
  .seat-choice ul li.leader-seat img {
    max-height: 57.27px;
  }
  .seat-choice ul li.door img {
    max-height: 130px;
  }
  .seat-choice ul.small-seat li.driver-seat img {
    max-width: 62px;
  }

  .seat-choice ul.big-seat > li {
    max-width: 156px;
  }

  .seat-choice ul li {
    margin: 3px;
  }
  .seat-choice ul.small-seat li {
    margin: 5px;
  }
  .seat-choice ul li.leader-seat img {
    width: 65px;
    height: 65px;
  }
}

.date-choice .booking-info {
  width: 50%;
  padding-left: 40px;
}

.travel-doc {
  margin-bottom: 60px;
}

.travel-doc .doc-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px;
}

.travel-doc .doc-info a {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  background: #f3f3f3;
  width: 100%;
  text-decoration: none;
  color: #282828;
}

.travel-doc .doc-info a p {
  padding: 7px 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.9px;
}

.travel-doc .doc-info a span {
  width: 40px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.8px;
}

.travel-agree {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4e4e4e;
  font-size: 14px;
  margin-bottom: 30px;
}

.travel-agree input {
  margin-right: 5px;
  accent-color: #4e4e4e;
}

.confirm-bt {
  display: flex;
  justify-content: center;
}

.confirm-bt a {
  display: flex;
  text-decoration: none;
  color: #ffffff;
  border-radius: 50%;
  background: #017bc8;
  width: 100px;
  height: 100px;
  align-items: center;
  justify-content: center;
}
.confirm-bt a:hover {
  background: #00619c;
}

.confirm-modal {
  display: none;
  position: fixed;
  background: #fff;
  max-width: 460px;
  width: 100%;
  height: fit-content;
  padding: 30px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #282828;
  z-index: 20;
}

.confirm-modal .travel-confirm .booking-info .sign-info {
  width: 100%;
}

.confirm-modal .travel-confirm .booking-info {
  margin-bottom: 30px;
}

.confirm-modal .travel-confirm .complete-bt {
  margin-bottom: 0;
}

@keyframes modalopen {
  from {
    transform: scale(0) translate(-50%, -50%);
    transform-origin: center center;
  }
  to {
    transform: scale(1) translate(-50%, -50%);
    transform-origin: center center;
  }
}

.modalopen {
  animation: modalopen 0.3s;
  overscroll-behavior: contain;
}

@media screen and (max-width: 976px) {
  .date-choice .booking-info {
    width: 100%;
    padding: 0 10px;
  }

  .travel-doc {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 576px) {
  .travel-doc .doc-info {
    flex-direction: column;
    margin: 20px 0;
    gap: 20px;
  }

  .travel-doc .doc-info a p {
    font-size: 16px;
  }

  .confirm-modal {
    max-width: 350px;
    padding: 20px;
    max-height: 80vh;
    overflow-y: scroll;
  }
}

.complete-icon {
  text-align: center;
  margin-bottom: 40px;
}

.complete-icon img {
  margin-bottom: 20px;
}

.complete-icon p {
  font-size: 20px;
  letter-spacing: 1px;
}

.travel-confirm {
  padding: 0 10px;
}

.travel-confirm > h3 {
  text-align: left;
  margin-bottom: 30px;
}

.travel-confirm .booking-info {
  display: flex;
  margin-bottom: 60px;
  gap: 40px;
}

.travel-confirm .booking-info .sign-info {
  width: 50%;
}

.travel-confirm .booking-info .sign-info h2 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.travel-confirm .booking-info .sign-info .travel-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  background: none;
  color: #000000;
}

.travel-confirm .booking-info .sign-info .travel-title h3 {
  margin-right: 20px;
  font-size: 16px;
  font-weight: 400;
  border-right: 1px #cccccc solid;
}

.travel-confirm .complete-bt {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 15px;
}

.travel-confirm .complete-bt a {
  font-size: 16px;
  text-align: center;
  padding: 10px 0;
  text-decoration: none;
  width: 150px;
  height: initial;
  border-radius: 5px;
  letter-spacing: 0.9px;
}

.travel-confirm .complete-bt a:nth-child(1) {
  color: #282828;
  background: #f3f3f3;
}
.travel-confirm .complete-bt a:nth-child(1):hover {
  background: #eeeeee;
}
.travel-confirm .complete-bt a:nth-child(2) {
  border-radius: 5px;
  background: #017bc8;
  color: #fff;
}
.travel-confirm .complete-bt a:nth-child(2):hover {
  background: #00619c;
}

.travel-confirm .notice {
  text-align: center;
  color: #4d4d4d;
  font-size: 14px;
  letter-spacing: 1.5px;
}

@media screen and (max-width: 768px) {
  .travel-confirm .booking-info {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }

  .travel-confirm .booking-info .sign-info {
    width: 100%;
  }
}

/* -------------------------------- */

.popular-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
  margin-top: 20px;
}

.popular-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}

.popular-list li {
  width: calc(100% / 4 - 20px);
  position: relative;
  padding: 0;
  margin: 10px;
}

.popular-list li .overhidden {
  overflow: hidden;
}

.popular-list li .popular-photo {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: 0.5s;
}

.popular-list li .popular-photo::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.popular-list li:hover .popular-photo {
  transform: scale(1.2);
}

.popular-list li:hover .popular-photo::before {
  background: rgba(0, 0, 0, 0.1);
}

.popular-list li a {
  text-decoration: none;
  color: #282828;
}

.popular-list li h3.popular-title {
  font-size: 24px;
  letter-spacing: 1.2px;
  font-weight: 400;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 976px) {
  .popular-list li {
    width: calc(100% / 2 - 40px);
  }
}
@media screen and (max-width: 768px) {
  .popular-list li h3.popular-title {
    font-size: 20px;
    letter-spacing: 1.2px;
    font-weight: 400;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .popular-list li {
    width: calc(100% / 2 - 20px);
    margin: 10px;
  }
}

.popular-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
  margin-top: 20px;
}

.popular-inner .popular-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}

.popular-inner .popular-list li {
  width: calc(100% / 4 - 20px);
  position: relative;
  margin: 10px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #e4e4e4;
}

@media screen and (max-width: 976px) {
  .popular-inner .popular-list li {
    width: calc(100% / 2 - 40px);
  }
}

@media screen and (max-width: 768px) {
  .popular-inner .popular-list li {
    width: calc(100% / 2 - 20px);
    margin: 10px;
  }
}

@media screen and (max-width: 576px) {
  .popular-inner .popular-list li {
    width: calc(100% / 1 - 20px);
    margin: 10px;
  }
}

.topic-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
  margin-top: 20px;
}

.topic-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}

.topic-list li {
  width: calc(100% / 4 - 20px);
  position: relative;
  padding: 0;
  margin: 10px;
}

.topic-list li .overhidden {
  overflow: hidden;
}

.topic-list li .topic-photo {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: 0.5s;
}

.topic-list li:hover .topic-photo {
  transform: scale(1.2);
}

.topic-list li .topic-photo::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.topic-list li:hover .topic-photo::before {
  background: rgba(0, 0, 0, 0.1);
}

.topic-list li a {
  text-decoration: none;
  color: #282828;
}

.topic-list li h3.topic-text {
  font-size: 24px;
  letter-spacing: 1.2px;
  font-weight: 400;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 976px) {
  .topic-list li {
    width: calc(100% / 2 - 40px);
  }
}

@media screen and (max-width: 768px) {
  .topic-list li {
    width: calc(100% / 2 - 20px);
    margin: 10px;
  }

  .topic-list li h3.topic-text {
    font-size: 18px;
  }
}

.topic-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
  margin-top: 20px;
}

.topic-inner .topic-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}

.topic-inner .topic-list li {
  width: calc(100% / 4 - 20px);
  position: relative;
  margin: 10px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #e4e4e4;
}

@media screen and (max-width: 976px) {
  .topic-inner .topic-list li {
    width: calc(100% / 2 - 40px);
  }
}

@media screen and (max-width: 768px) {
  .topic-inner .topic-list li {
    width: calc(100% / 2 - 20px);
    margin: 10px;
  }
}

@media screen and (max-width: 576px) {
  .topic-inner .topic-list li {
    width: calc(100% / 1 - 20px);
    margin: 10px;
  }
}

.info-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
  margin-top: 20px;
  padding: 0 10px;
}

.info-inner .download {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.info-inner .download > li {
  border-bottom: 1px #cccccc dashed;
}

/* .info-inner .download li {
  border-bottom: 1px solid #ccc;
} */

.info-inner .download li:hover {
  background: #f6f6f6;
}

.info-inner .download li a {
  color: #333;
  display: flex;
  align-items: center;
  font-size: 16px;
  padding: 10px;
  text-decoration: none;
}

.info-inner .download li a .download-title {
  flex: 1;
}

.info-inner .download li a img.download-icon {
  width: 20px;
  height: auto;
  margin-right: 10px;
}

.info-inner .download li a span {
  text-align: center;
  color: #fff;
  font-size: 14px;
  padding: 5px 20px;
  background: #c32c2f;
  border-radius: 5px;
}
.info-inner .download li a:hover span {
  background: #e40c10;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.info-inner .img-list {
  display: flex;
  flex-wrap: wrap;
}

.info-inner .img-list img {
  width: 33.333%;
}

@media screen and (max-width: 576px) {
  .info-inner .download li a span {
    display: none;
  }
}

.info-place {
  width: 100%;
  border-collapse: collapse;
}

.info-place thead th {
  font-size: 16px;
  font-weight: 400;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
  text-align: left;
}

.info-place tbody tr td {
  border-bottom: 1px #cccccc dashed;
  padding: 10px;
  font-size: 16px;
}
.info-place thead tr th {
  border-bottom: 1px #cccccc solid;
  padding: 10px;
  background: #222222;
  color: #ffffff;
}

.info-place thead th:nth-child(1),
.info-place tbody tr td:nth-child(1) {
  width: 30%;
  min-width: 100px;
}

.info-place thead th:nth-child(2),
.info-place tbody tr td:nth-child(2) {
  width: auto;
}

.info-place thead th:nth-child(3),
.info-place tbody tr td:nth-child(3) {
  width: 20%;
  text-align: center;
}

.info-place tbody tr td a {
  display: inline-block;
  text-align: center;
  color: #fff;
  font-size: 14px;
  padding: 6px 20px;
  background: #c32c2f;
  border-radius: 5px;
  text-decoration: none;
}
.info-place tbody tr td a:hover {
  background: #e40c10;
}
@media screen and (max-width: 976px) {
  .info-inner .img-list img {
    width: 50%;
  }
}

@media screen and (max-width: 576px) {
  .info-place tbody tr td a {
    font-size: 14px;
    padding: 6px 10px;
  }

  .info-inner .img-list img {
    width: 100%;
  }

  .info-place thead th:nth-child(1),
  .info-place tbody tr td:nth-child(1) {
    text-align: center;
  }

  .info-place thead th:nth-child(2),
  .info-place tbody tr td:nth-child(2) {
    display: none;
  }
}

.member-inner {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.member-login {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.member-login p {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
  color: #282828;
}

.member-login label {
  border-right: 0;
  padding: 5px;
  font-size: 16px;
  color: #282828;
  line-height: 1.5;
  width: 50px;
}

.member-login input {
  background: #fff;
  flex: 1;
  border: 1px solid #ccc;
  margin: 0;
  padding: 5px 10px;
  font-size: 16px;
  font-family: "Ã¥Â¾Â®Ã¨Â»Å¸Ã¦Â­Â£Ã©Â»â€˜Ã©Â«â€";
  color: #4e4e4e;
  width: 250px;
}

.member-login span {
  color: #ff1a00;
  font-size: 14px;
  margin-bottom: 10px;
}

.login-bt {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.login-bt a {
  width: 150px;
  text-decoration: none;
  text-align: center;
  color: #ffffff;
  border-radius: 5px;
  background: #017bc8;
  padding: 6px 0;
}
.login-bt a:hover {
  background: #00619c;
  color: #ffffff;
}
.third-bt {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.third-bt a {
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  color: #fff;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.third-bt a:nth-child(1) {
  background: #3fc74e;
}
.third-bt a:nth-child(1):hover {
  background: #1f972c;
  color: #ffffff;
}

.third-bt a:nth-child(2) {
  background: #e1412f;
}
.third-bt a:nth-child(2):hover {
  background: #b82818;
  color: #ffffff;
}

.third-bt a img {
  margin-right: 10px;
}

@media screen and (max-width: 576px) {
  .member-inner {
    margin-top: 20px;
  }

  h3.page-title5::before,
  h3.page-title5::after {
    width: 30%;
  }

  .member-login {
    align-items: initial;
  }

  .login-bt {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .login-bt a {
    width: 100%;
  }

  .third-bt {
    flex-direction: column;
  }

  .third-bt a {
    width: 100%;
  }
}

.member-terms {
  border-radius: 5px;
  border: 1px solid #a9a9a9;
  background: #fff;
  padding: 20px 25px;
  overflow-y: scroll;
  max-height: 50vh;
  margin-bottom: 30px;
}

.terms-bt,
.register-bt {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0 60px 0;
}

.terms-bt a,
.register-bt a {
  width: 150px;
  text-decoration: none;
  text-align: center;
  color: #ffffff;
  border-radius: 5px;
  background: #017bc8;
  padding: 6px 0;
}
.terms-bt a:hover,
.register-bt a:hover {
  color: #017bc8;
  background: #00619c;
  color: #ffffff;
}
.member-terms::-webkit-scrollbar {
  width: 8px;
}

.member-terms::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.member-terms::-webkit-scrollbar-thumb {
  background: #9f9f9f;
  border-radius: 30px;
}

.member-register {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 30px 0;
}

.member-register p {
  display: flex;
  width: 100%;
  padding: 10px;
  position: relative;
  border-bottom: 1px #cccccc dashed;
}

.member-register label {
  width: 100px;
  padding: 5px 0;
  text-align: right;
  display: inline-block;
  margin-right: 20px;
}

.member-register input {
  flex: 1;
  width: 100%;
  border: 0;
  height: 36px;
  border-radius: 5px;
  padding: 5px 15px;
  background: #f3f3f3;
}
.member-register input:focus {
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.member-info {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 60px;
  gap: 40px;
}

.member-info .account-info {
  width: 70%;
}

.member-info .third-bt {
  justify-content: start;
  margin-bottom: 20px;
  padding: 20px 0;
  gap: 10px;
  border-bottom: 1px #cccccc solid;
}

.member-info .third-bt a {
  width: initial;
  padding: 10px;
  letter-spacing: 0.8px;
  font-size: 14px;
}

.member-info .third-bt a img {
  width: 20px;
}

.member-info .member-menu {
  width: 30%;
  padding: 30px 25px;
  background: #f3f3f3;
}

.member-info .member-menu h3 {
  font-size: 20px;
  font-weight: 400;
  color: #282828;
  letter-spacing: 2.4px;
  padding: 0 0 14px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  text-align: center;
}
.member-info .member-menu h3:after {
  display: none;
}

.member-info .member-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.member-info .member-menu ul li {
  text-align: center;
  margin: 5px 0;
}

.member-info .member-menu ul li a {
  text-decoration: none;
  display: block;
  color: #5f5f5f;
  padding: 10px 15px;
}

.member-info .member-menu ul li a.active {
  color: #ffffff;
  background: #ec2293;
  border-radius: 5px;
}
.member-info .member-menu ul li a:hover:not(.active) {
  color: #ec2293;
}
.opinion {width: 100%;padding:10px;font-size: 16px;color: #222222;display: flex; align-items: center;  border-bottom: 1px #cccccc dashed;}
.input-main-style01 {flex: 1;width:100%;margin: 0;font-size: 14px;color: #222222;min-height: 36px;border-radius: 5px;border: 0;padding: 5px 15px;background: #f3f3f3;display: flex;align-items: center;}
.member-register .input-main-style01 input{height: auto;}
.member-register .input-main-style01 label {text-align: left;padding: 0;width: 68px;min-width: 68px;margin-right: 15px;display: flex;}
.member-register .input-main-style01 .input-main-style-content {display: flex;align-items: center;margin: 0 25px 0 0;width:calc(100%/2 - 25px);}
.open-title input{display: inline-block;margin:  0 5px 0 0;}
.open-title{display: inline-block;width: 18px;}
.open-content {flex: 1;}
.open-content input{background: #ffffff;border: 1px #cccccc solid;margin: 0;width: 100%;}
.open-title02{display: inline-block;}
.open-content02{}
@media screen and (max-width: 1200px) {
  .member-info {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .member-info .member-menu {
    width: 100%;
    padding: 20px;
  }

  .member-info .member-menu ul li {
    margin: 14px 0;
  }

  .member-info .member-menu h3 {
    font-size: 18px;
  }

  .member-info .account-info {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
    .input-main-style01 {display: block;}
    .member-register .input-main-style01 .input-main-style-content {width: 100%;margin:5px 0;}
}
@media screen and (max-width: 576px) {
  .member-register {
    margin-left: 0;
  }
  .member-register p {
    display: block;
  }
  .member-register label {
    width: 100%;
    text-align: left;
  }
    .opinion {display: block;}
}

/* è¨‚ä½/è¨»å†Šæ•™å­¸ */
.teaching-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
  margin-top: 20px;
}

.teaching-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}

.teaching-list li {
  width: calc(100% / 3 - 40px);
  position: relative;
  padding: 0;
  margin: 20px;
}

.teaching-list li .overhidden {
  overflow: hidden;
  margin-bottom: 10px;
}

.teaching-list li .teaching-photo {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: 0.5s;
}

.teaching-list li:hover .teaching-photo {
  transform: scale(1.1);
}

.teaching-list li a {
  text-decoration: none;
  color: #282828;
}

.teaching-list li h3 {
  transition: 0.3s;
}

.teaching-list li:hover h3 {
  color: #e2007e;
}

.teaching-list li .date {
  color: #ec2293;
  background: url(../images/news-date-icon.svg) no-repeat left top;
  padding: 0 0 0 28px;
  font-size: 14px;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}

.teaching-list li .teaching-title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.6px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.teaching-inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
  margin-top: 20px;
  padding: 0 10px;
}

.teaching-inner .date {
  background: #ec2293 url(../images/news-date-icon-c.svg) no-repeat left 15px
    center;
  background-size: 20px;
  display: table;
  padding: 5px 15px 5px 43px;
  margin: 0 0 15px 0;
  border-radius: 4px;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0.6px;
}

@media screen and (max-width: 976px) {
  .teaching-list li {
    width: calc(100% / 2 - 20px);
    margin: 10px;
  }
}

@media screen and (max-width: 768px) {
  .teaching-list li .teaching-title {
    font-size: 15px;
    letter-spacing: 0.8px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .teaching-inner .date {
    font-size: 14px;
  }
}

.account-edit {
  margin-bottom: 30px;
}

.account-edit p {
  display: flex;
  border-bottom: 1px #cccccc dashed;
  padding: 10px;
  position: relative;
}

.account-edit p span {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #4d4d4d;
  font-size: 14px;
}

.account-edit label {
  padding: 5px 0;
  min-width: 100px;
  display: inline-block;
  margin-right: 20px;
  text-align: justify;
}

.account-edit input {
  border: none;
  flex: 1;
  background: #f3f3f3;
  color: #4e4e4e;
  padding: 5px 15px;
}

.account-edit input[type="date"] {
  letter-spacing: 0;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  margin-left: -3px;
}

.account-edit input:focus {
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.account-edit input::placeholder {
  font-size: 15px;
  color: #4e4e4e;
}

.account-edit input#address {
}

.edit-bt {
  display: flex;
  justify-content: flex-end;
}

.edit-bt a {
  width: 150px;
  text-decoration: none;
  text-align: center;
  color: #ffffff;
  border-radius: 5px;
  background: #017bc8;
  padding: 6px 0;
}
.edit-bt a:hover {
  background: #00619c;
}
@media screen and (max-width: 576px) {
  .edit-bt {
    justify-content: center;
  }
}

.order-info span.notice {
  display: block;
  margin: 10px 0;
  color: #4d4d4d;
  font-size: 14px;
}

.order-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.order-list li:nth-child(odd) {
  background: #f3f3f3;
}
.order-list li:first-of-type {
  background: #222222;
  color: #ffffff;
}
.order-list .header {
  padding: 15px 10px;
  border-bottom: 1px solid #000;
}

.order-list .content {
  padding: 15px 10px;
  border-bottom: 1px solid #ccc;
  color: #4e4e4e;
}

.order-list li div {
  flex: 1;
}
.order-list li div:nth-child(1) {
  min-width: 90px;
}

.order-list .content div {
  font-size: 15px;
}

.order-list .content div:nth-child(3) {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.order-list li div a {
  display: block;
  padding: 5px 5px;
  text-decoration: none;
  border-radius: 5px;
}
.order-list li div:nth-child(2) {
  min-width: 50px;
  flex: initial;
}

.order-list .content div:nth-child(2) {
}

.order-list li div:nth-child(3) {
  flex: 3;
}

.order-list li div:nth-child(4) {
  text-align: center;
}
.order-list li div:nth-child(3) a {
  color: #282828;
  padding: 0;
}
.order-list li div:nth-child(4) a {
  color: #ffffff;
  background: #f2c51b;
}
.order-list li div:nth-child(4) a:hover {
  background: #cda40a;
}

.order-list li div:nth-child(5) {
  text-align: center;
}

.order-list li div:nth-child(5) a {
  background: #5bb531;
  color: #ffffff;
}
.order-list li div:nth-child(5) a:hover {
  background: #3f9019;
}

@media screen and (max-width: 768px) {
  .order-list .header {
    /* display: none; */
    padding: 15px 10px;
  }

  .order-list .content {
    padding: 16px 10px;
  }

  /* .order-list li div:nth-child(4) {
    display: none;
  } */

  .order-list .content div {
    font-size: 14px;
  }
}

@media screen and (max-width: 576px) {
  .order-list li div:nth-child(1) {
  }

  .order-list .content div:nth-child(1),
  .order-list .content div:nth-child(2),
  .order-list .content div:nth-child(3) {
    font-size: 12px;
  }

  .order-list .content {
    padding: 10px 8px;
  }

  .order-list li div:nth-child(2) {
    min-width: 30px;
  }

  .order-list .header {
    padding: 10px 8px;
    font-size: 14px;
  }

  .order-info span.notice {
    font-size: 12px;
  }
}

.member-info .order-info {
  width: 100%;
}

.member-info .order-info .order-list {
  padding: 0;
}

.order-info .order-items {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 30px;
}

.order-items li {
  width: calc(100% / 4 - 10px);
  border-radius: 5px;
  border: 1px solid #cecece;
  padding: 10px;
  margin: 5px;
}

.order-items li h4 {
  position: relative;
  text-align: center;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.9px;
  background: #e3e3e3;
  border-radius: 5px;
  margin-bottom: 6px;
}

.order-items li .check-in {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.order-items li .form-select {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
}

.order-items li .form-select a {
  color: #282828;
  text-decoration: none;
}

.order-items li .form-select a:hover {
  color: #005fee;
}

.order-items li input[type="checkbox"]:before {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  top: 0;
  left: 0;
  border: 1px solid #555555;
  border-radius: 3px;
  background-color: white;
}

.order-items li input[type="checkbox"]:checked:after {
  content: "";
  display: block;
  width: 5px;
  height: 10px;
  border: solid black;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 2px;
  left: 6px;
}

@media screen and (max-width: 1200px) {
  .member-info .order-info {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .order-items li {
    width: calc(100% / 2 - 10px);
  }
}

@media screen and (max-width: 576px) {
  .order-items li {
    width: calc(100% / 1 - 10px);
  }
}

.order-edit p {
  margin-bottom: 6px;
  position: relative;
  display: flex;
  justify-content: center;
}

.order-edit p:nth-last-child(1) {
  margin-bottom: 0;
}

.order-edit p span {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #4d4d4d;
  font-size: 14px;
  justify-content: center;
}

.order-edit label {
  font-size: 14px;
  min-width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px 0px 0px 4px;
  background: #494949;
  color: #fff;
  text-align: center;
}

.order-edit p label.res,
.order-edit p label.res {
  min-width: 100px;
}

.order-edit select {
  /*min-width: 130px;*/
  min-width: 60px;
  width: 100%;
  padding: 6px 0 6px 8px;
  border-radius: 0px 4px 4px 0px;
  margin: 0;
  border: 1px solid #f90303;
  color: #4e4e4e;
  font-size: 14px;
}

.order-edit select.year,
.order-edit select.month {
  border-radius: 0;
}

.order-edit select.month {
  margin: 0 2px;
}

.order-edit textarea {
  padding: 5px;
}

.order-edit input {
  border-radius: 0px 4px 4px 0px;
  padding: 6px 10px;
  background: #fff;
  border: 1px solid #7e7e7e;
  /* min-width: 130px; */
  width: 100%;
  color: #4e4e4e;
}

.order-edit input.info-save {
  width: initial;
  margin-right: 8px;
}

.order-edit input:focus {
  outline: none;
}

.order-edit input::placeholder {
  font-size: 14px;
  color: #4e4e4e;
}

.order-edit input[type="date"] {
  color: #4e4e4e;
  opacity: 0.7;
  padding: 6px 10px;
  display: block;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  min-height: 1.2em;
}

.save-bt {
  display: flex;
  justify-content: center;
}

.save-bt a {
  width: 150px;
  text-decoration: none;
  text-align: center;
  color: #ffffff;
  border-radius: 5px;
  background: #017bc8;
  padding: 6px 0;
}
.save-bt a:hover {
  background: #00619c;
}
.back-notice {
  background: #f3f3f3;
  display: block;
  padding: 40px 0;
  position: relative;
  z-index: 1;
  margin: 0 0 -40px 0;
}
.back-notice::after {
  content: "";
  display: block;
  width: 300%;
  height: 100%;
  position: absolute;
  left: -100%;
  top: 0;
  background: #f3f3f3;
  z-index: -1;
}
.back-notice .page-title:after {
  background: #f3f3f3;
}
.booking-print {
  width: 210mm;
  /*min-height: 297mm;*/
  padding: 10mm;
  margin: 10mm auto;
  border: 1px solid #000;
  height: 100%;
}
.subpage {
  /* padding: 1cm; */
  /* height: 257mm; */
}

.booking-print .date-choice h2 {
  font-size: 16px;
  background: none;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 0;
  border-bottom: 1px solid #eee;
  position: relative;
}

.booking-print .date-choice h3 {
  text-align: left;
  margin-right: 8px;
}

.booking-print .travel-inner {
  padding: 0;
  margin: 0;
}

.booking-print .date-choice {
  margin-bottom: 0;
  display: block;
}

.booking-print .date-choice .booking-info {
  width: 100%;
  padding-left: 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.booking-print .date-choice .seat-info {
  width: 100%;
  border-radius: 0;
  outline: none;
  padding: 0;
}

.booking-print .seat-choice ul.small-seat li {
  align-items: center;
  justify-content: center;
  width: calc(100% / 3 - 29.5px);
  height: 220px;
  border: 1px solid #4e4e4e;
  flex-direction: column;
  padding: 20px;
}

.booking-print .seat-choice ul li {
  margin: 5px;
}

.booking-print .seat-choice ul.big-seat > li {
  max-width: 320px;
}

.booking-print .seat-choice ul.big-seat ul li {
  /* align-items: center; */
  /* justify-content: center; */
  width: 150px;
  min-height: 80px;
  border: 1px solid #4e4e4e;
  flex-direction: column;
}

.booking-print .seat-choice ul.big-seat ul li {
  min-height: 150px;
}

.booking-print .seat-choice ul.big-seat ul li p {
  /*font-size: 14px;*/
  padding: 4px;
}

.booking-print .seat-choice ul.big-seat ul li.space {
  border: none;
}

.booking-print .seat-choice ul.big-seat ul li.safe-door {
  width: 310px;
  height: 80px;
}

.booking-print .seat-choice ul.big-seat ul li.door {
  width: 150px;
  height: 170px;
}

.booking-print .seat-choice ul.big-seat ul li.driver-seat {
  width: 310px;
  height: 80px;
}

.booking-print.list {
  width: 1024px;
  padding: 2mm;
}

.booking-print.list .seat-choice ul.small-seat li.rows-num {
  width: 20px;
  text-align: center;
  padding: 8px;
}

.booking-print.list .seat-choice ul.small-seat li h4 {
  font-size: 16px;
  color: #e2007e;
  margin-bottom: 10px;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 1px solid #e2007e;
  width: 60%;
  text-align: center;
}

.booking-print.list .seat-choice ul.small-seat li p {
  font-size: 13px;
}

.booking-print.list .seat-choice ul.big-seat ul li h4 {
  font-size: 16px;
  color: #e2007e;
  margin-bottom: 10px;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 1px solid #e2007e;
  width: 100%;
  text-align: center;
}

.booking-print.list .seat-choice ul.big-seat ul li.driver-seat {
  width: 100%;
}

.booking-print.list .seat-choice ul.big-seat ul li.safe-door {
  width: 100%;
}

.booking-print.list .date-choice .seat-info {
  padding: 0;
  outline: 0;
}

.booking-print.list .seat-choice ul.big-seat > li {
  max-width: 470px;
}

.booking-print.list .seat-choice ul.big-seat ul li {
  width: 200px;
  min-height: 154px;
  padding: 4px;
}

.booking-print .seat-choice ul.big-seat ul li.fill-width {
  width: calc(100% - 50px);
}

.booking-print.list .seat-choice ul.big-seat ul li.rows-num {
  width: 20px;
  text-align: center;
  font-size: 12px;
}
.booking-print .date-choice h2 {
  padding: 10px;
}
.booking-print .date-choice .travel-info {
  padding: 5px 5px 5px 0;
}
.booking-print .date-choice .travel-info h3 {
  padding: 0px 10px;
}
@page {
  size: A4;
  margin: 0;
}
@media print {
  html,
  body {
    width: 210mm;
    height: 297mm;
  }

  .booking-print {
    margin: 0;
    border: initial;
    border-radius: initial;
    width: initial;
    min-height: initial;
    box-shadow: initial;
    background: initial;
    page-break-after: always;
  }
}

/*眼睛*/
#checkEye {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

/* 座位表列印底色 */
.booking-print ul li.current1 {
  background: #ffd762;
}

.booking-print ul li.current2 {
  background: #7bebe7;
}

.booking-print ul li.current3 {
  background: #ffc6a4;
}

.booking-print ul li.current4 {
  background: #71e75d;
}

.booking-print ul li.current5 {
  background: #e0a1ff;
}

.booking-print ul li.current6 {
  background: #ffc4c4;
}

.booking-print ul li.current7 {
  background: #70c3ff;
}

.booking-print ul li.current8 {
  background: #ff853a;
}

.booking-print ul li.current9 {
  background: #abffd0;
}

.booking-print ul li.current10 {
  background: #dacaff;
}

.booking-print ul li.current11 {
  background: #8bb8ff;
}

.booking-print ul li.current12 {
  background: #eeb8f1;
}

.booking-print ul li.current13 {
  background: #7de3a2;
}

.booking-print ul li.current14 {
  background: #fbf87a;
}

.booking-print ul li.current15 {
  background: #88ccd7;
}

.booking-print ul li.current16 {
  background: #ffa250;
}

.booking-print ul li.current17 {
  background: #ff9bc4;
}

.booking-print ul li.current18 {
  background: #9ea1ff;
}

.booking-print ul li.current19 {
  background: #26e5a9;
}

.booking-print ul li.current20 {
  background: #84d51d;
}

.booking-print ul li.current21 {
  background: #d8e2ff;
}

.booking-print ul li.current22 {
  background: #ffe7ff;
}

.booking-print ul li.current23 {
  background: #b0c0f9;
}

.booking-print ul li.current24 {
  background: #cef6ff;
}

.booking-print ul li.current25 {
  background: #d5fbd2;
}

.booking-print ul li.current26 {
  background: #f2ffc3;
}

.booking-print ul li.current27 {
  background: #ff7676;
}

.booking-print ul li.current28 {
  background: #618cf1;
}

.booking-print ul li.current29 {
  background: #8dc399;
}

.booking-print ul li.current30 {
  background: #5396ff;
}

.booking-print ul li.current31 {
  background: #f3bc81;
}

.booking-print ul li.current32 {
  background: #f2b310;
}

.booking-print ul li.current33 {
  background: #f97c92;
}

.booking-print ul li.current34 {
  background: #d8ff9b;
}

.booking-print ul li.current35 {
  background: #41afff;
}

.booking-print ul li.current36 {
  background: #79e77d;
}

.booking-print ul li.current37 {
  background: #dddddd;
}

.booking-print ul li.current38 {
  background: #92cee1;
}

.booking-print ul li.current39 {
  background: #97e7a1;
}

.booking-print ul li.current40 {
  background: #ffe6de;
}

.booking-print ul li.current41 {
  background: #beeb53;
}

.booking-print ul li.current42 {
  background: #fff242;
}
