/* 全局样式 */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Arial', 'Microsoft YaHei', sans-serif;
}
body {
  margin: 0;
}
.no-margin {
  margin: 0;
}
.text-bold {
  font-weight: bold;
}
.flex-map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex-map .flex-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.flex-map .map {
  text-align: center;
  margin: 0 20px;
  -webkit-box-flex: 0.8;
      -ms-flex: 0.8;
          flex: 0.8;
}
.flex-map .map img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 1024px) {
  .flex-map {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 768px) {
  .flex-map {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.title-top-border-gradient {
  position: relative;
  line-height: 2;
}
.title-top-border-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#FFA500), color-stop(15%, #FFD1DC), color-stop(35%, #fff));
  background: linear-gradient(90deg, #FFA500 0%, #FFD1DC 15%, #fff 35%);
  z-index: 1;
}
@media (max-width: 768px) {
  .title-top-border-gradient::before {
    background: -webkit-gradient(linear, left top, right top, from(#FFA500), color-stop(30%, #FFD1DC), color-stop(40%, #fff));
    background: linear-gradient(90deg, #FFA500 0%, #FFD1DC 30%, #fff 40%);
  }
}
.middle-line-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.middle-line-title .line {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 80px;
}
.middle-line-title .line::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -2px;
  right: 0;
  bottom: 0;
  border-top: 1px solid #fac13c;
}
.middle-line-title .title {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  line-height: 20px;
}
@media (max-width: 768px) {
  .middle-line-title .title {
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
  }
}
.middle-line-title .before-line::before {
  border-left: 1px solid #fac13c;
  border-radius: 8px 0 0 0;
}
.middle-line-title .after-line::before {
  border-right: 1px solid #fac13c;
  border-radius: 0 8px 0 0;
}
.gradient-title-bg {
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(#FFA500), color-stop(15%, #FFD1DC), color-stop(20%, #ffffff));
  background: linear-gradient(90deg, #FFA500 0%, #FFD1DC 15%, #ffffff 20%);
  border-radius: 0 14px;
  padding: 0 5px;
}
@media (max-width: 768px) {
  .gradient-title-bg {
    background: -webkit-gradient(linear, left top, right top, from(#FFA500), color-stop(30%, #FFD1DC), color-stop(40%, #ffffff));
    background: linear-gradient(90deg, #FFA500 0%, #FFD1DC 30%, #ffffff 40%);
  }
}
.cube::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5px;
  height: 100%;
  background-color: #fac13c;
}
.gradient-btn {
  display: inline-block;
  min-width: 90px;
  height: 22px;
  padding: 0 10px;
  background: -webkit-gradient(linear, left top, right top, from(#fe2748), to(#f9b831));
  background: linear-gradient(90deg, #fe2748 0%, #f9b831 100%);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  -webkit-box-shadow: 4px 4px 8px -2px rgba(0, 0, 0, 0.7);
          box-shadow: 4px 4px 8px -2px rgba(0, 0, 0, 0.7);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  margin-left: 10px;
  text-align: center;
}
.numbered-list {
  counter-reset: item;
  width: 100%;
}
.numbered-list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12px;
  line-height: 1.5;
}
.numbered-list .item::before {
  counter-increment: item;
  content: counter(item);
  width: 18px;
  height: 18px;
  background: #fd6e40;
  color: white;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 5px;
}
.text-space {
  padding: 5px;
}
.text-space.text-center {
  text-align: center;
}
.orange-border {
  border: 1px solid #f09c39;
  border-radius: 8px;
}
.inbound-tourism {
  background-image: url('../images/inboundTourism/bg-pc.png');
  background-repeat: no-repeat;
  /* 图片将覆盖整个容器，可能裁剪 */
  background-size: cover;
  /* 将图片居中显示 */
  background-position: center;
  /* 宽度占满容器 */
  width: 100%;
}
.inbound-tourism .container {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 1024px) {
  .inbound-tourism .container {
    width: 90vw;
    max-width: 800px;
  }
}
@media (max-width: 768px) {
  .inbound-tourism .container {
    max-width: 600px;
  }
}
.inbound-tourism .card-component {
  width: 80vw;
  max-width: 1000px;
  margin: 10px auto;
  background: transparent;
}
.inbound-tourism .card-component .title-bar {
  width: 50%;
  height: 50px;
  position: relative;
  top: 10px;
  left: -1px;
  right: 0;
  background: url('../images/inboundTourism/title-pad.png') no-repeat center / 100% 100%;
  color: white;
  font-size: 18px;
  font-weight: bold;
  z-index: 1;
}
.inbound-tourism .card-component .title-bar .title-text {
  margin-left: 30px;
  line-height: 34px;
}
.inbound-tourism .card-component .content-box {
  position: relative;
  top: -20px;
  padding: 35px 15px 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}
.inbound-tourism .card-component .content-box .content-info {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
}
.inbound-tourism .card-component .content-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.inbound-tourism .card-component .content-box .btn-box .inbound-btn-wrap {
  width: 35%;
  margin-top: 20px;
}
.inbound-tourism .inbound-tourism-header {
  height: 450px;
  width: 100%;
  background-size: 100% auto;
  background-position-y: top;
  background-repeat: no-repeat;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(90%, transparent), color-stop(101%, #05427a)), url("../images/inboundTourism/header/02y-PC.png");
  background-image: linear-gradient(to bottom, transparent, transparent 90%, #05427a 101%), url("../images/inboundTourism/header/02y-PC.png");
}
.inbound-tourism .inbound-tourism-header.jz {
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(90%, transparent), color-stop(101%, #05427a)), url("../images/inboundTourism/header/jz-PC01.png");
  background-image: linear-gradient(to bottom, transparent, transparent 90%, #05427a 101%), url("../images/inboundTourism/header/jz-PC01.png");
}
@media (max-width: 1024px) {
  .inbound-tourism .inbound-tourism-header.jz {
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(90%, transparent), color-stop(101%, #05427a)), url("../images/inboundTourism/header/jz-PAD01.png");
    background-image: linear-gradient(to bottom, transparent, transparent 90%, #05427a 101%), url("../images/inboundTourism/header/jz-PAD01.png");
  }
}
@media (max-width: 768px) {
  .inbound-tourism .inbound-tourism-header.jz {
    height: 300px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(90%, transparent), color-stop(101%, #05427a)), url("../images/inboundTourism/header/jz-mobile01.png");
    background-image: linear-gradient(to bottom, transparent, transparent 90%, #05427a 101%), url("../images/inboundTourism/header/jz-mobile01.png");
  }
}
.inbound-tourism .inbound-tourism-header.fz {
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(90%, transparent), color-stop(101%, #05427a)), url("../images/inboundTourism/header/fz-PC01.png");
  background-image: linear-gradient(to bottom, transparent, transparent 90%, #05427a 101%), url("../images/inboundTourism/header/fz-PC01.png");
}
@media (max-width: 1024px) {
  .inbound-tourism .inbound-tourism-header.fz {
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(90%, transparent), color-stop(101%, #05427a)), url("../images/inboundTourism/header/fz-PAD01.png");
    background-image: linear-gradient(to bottom, transparent, transparent 90%, #05427a 101%), url("../images/inboundTourism/header/fz-PAD01.png");
  }
}
@media (max-width: 768px) {
  .inbound-tourism .inbound-tourism-header.fz {
    height: 300px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(90%, transparent), color-stop(101%, #05427a)), url("../images/inboundTourism/header/fz-mobile01.png");
    background-image: linear-gradient(to bottom, transparent, transparent 90%, #05427a 101%), url("../images/inboundTourism/header/fz-mobile01.png");
  }
}
.inbound-tourism .inbound-tourism-header.y {
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(90%, transparent), color-stop(101%, #05427a)), url("../images/inboundTourism/header/02y-PC.png");
  background-image: linear-gradient(to bottom, transparent, transparent 90%, #05427a 101%), url("../images/inboundTourism/header/02y-PC.png");
}
@media (max-width: 1024px) {
  .inbound-tourism .inbound-tourism-header.y {
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(90%, transparent), color-stop(101%, #05427a)), url("../images/inboundTourism/header/01y-PAD.png");
    background-image: linear-gradient(to bottom, transparent, transparent 90%, #05427a 101%), url("../images/inboundTourism/header/01y-PAD.png");
  }
}
@media (max-width: 768px) {
  .inbound-tourism .inbound-tourism-header.y {
    height: 300px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(90%, transparent), color-stop(101%, #05427a)), url("../images/inboundTourism/header/03y-mobile.png");
    background-image: linear-gradient(to bottom, transparent, transparent 90%, #05427a 101%), url("../images/inboundTourism/header/03y-mobile.png");
  }
}
.inbound-tourism .inbound-tourism-header.r {
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(90%, transparent), color-stop(101%, #05427a)), url("../images/inboundTourism/header/02r-PC.png");
  background-image: linear-gradient(to bottom, transparent, transparent 90%, #05427a 101%), url("../images/inboundTourism/header/02r-PC.png");
}
@media (max-width: 1024px) {
  .inbound-tourism .inbound-tourism-header.r {
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(90%, transparent), color-stop(101%, #05427a)), url("../images/inboundTourism/header/01r-PAD.png");
    background-image: linear-gradient(to bottom, transparent, transparent 90%, #05427a 101%), url("../images/inboundTourism/header/01r-PAD.png");
  }
}
@media (max-width: 768px) {
  .inbound-tourism .inbound-tourism-header.r {
    height: 300px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(90%, transparent), color-stop(101%, #05427a)), url("../images/inboundTourism/header/03r-mobile.png");
    background-image: linear-gradient(to bottom, transparent, transparent 90%, #05427a 101%), url("../images/inboundTourism/header/03r-mobile.png");
  }
}
.inbound-tourism .inbound-tourism-header.h {
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(90%, transparent), color-stop(101%, #05427a)), url("../images/inboundTourism/header/02h-PC.png");
  background-image: linear-gradient(to bottom, transparent, transparent 90%, #05427a 101%), url("../images/inboundTourism/header/02h-PC.png");
}
@media (max-width: 1024px) {
  .inbound-tourism .inbound-tourism-header.h {
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(90%, transparent), color-stop(101%, #05427a)), url("../images/inboundTourism/header/01h-PAD.png");
    background-image: linear-gradient(to bottom, transparent, transparent 90%, #05427a 101%), url("../images/inboundTourism/header/01h-PAD.png");
  }
}
@media (max-width: 768px) {
  .inbound-tourism .inbound-tourism-header.h {
    height: 300px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(90%, transparent), color-stop(101%, #05427a)), url("../images/inboundTourism/header/03h-mobile.png");
    background-image: linear-gradient(to bottom, transparent, transparent 90%, #05427a 101%), url("../images/inboundTourism/header/03h-mobile.png");
  }
}
.inbound-tourism .inbound-tourism-header .logo {
  width: 7.5rem;
  height: 8.5rem;
  z-index: 100;
}
.inbound-tourism .inbound-tourism-header .logo img {
  width: 7.5rem;
  height: 8.5rem;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .inbound-tourism .inbound-tourism-header .logo img {
    width: 4.85rem;
    height: 5.5rem;
  }
}
@media (max-width: 768px) {
  .inbound-tourism .inbound-tourism-header .logo img {
    width: 3.65rem;
    height: 4.05rem;
  }
}
.inbound-tourism .slider-wrap {
  position: relative;
  margin: 0 auto;
  max-width: 1920px;
  height: 280px;
  z-index: 5;
  overflow: hidden;
  width: 99%;
  border-radius: 15px;
}
@media (max-width: 1024px) {
  .inbound-tourism .slider-wrap {
    height: 219px;
  }
}
@media (max-width: 768px) {
  .inbound-tourism .slider-wrap {
    height: 92px;
  }
}
.inbound-tourism .inbound-tourism-footer {
  color: #fff;
  text-align: center;
  padding-bottom: 30px;
}
.slide-content {
  position: relative;
  z-index: 1;
  top: 0;
  width: 99999px;
  height: 100%;
}
.slide-content .slide-item {
  position: relative;
  float: left;
  height: 280px;
}
@media (max-width: 1024px) {
  .slide-content .slide-item {
    height: 219px;
  }
}
@media (max-width: 768px) {
  .slide-content .slide-item {
    height: 92px;
  }
}
.slide-content .slide-item img {
  width: auto;
  height: 100%;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.link-slide {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.inbound-btn-wrap {
  position: relative;
  padding: 5px 10px;
  overflow: hidden;
  border-radius: 20px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #246efe, #00bfff);
}
.inbound-btn-wrap .inbound-btn-inner {
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 10px;
  border-radius: 20px;
  background: linear-gradient(135deg, #00bfff, #246efe);
  color: #fff;
  text-decoration: unset;
}
.inbound-btn-wrap .inbound-btn-inner .inbound-btn-icon {
  width: 24px;
  height: 30px;
  margin-top: 5px;
  margin-right: 10px;
}
.inbound-btn-wrap .inbound-btn-inner .inbound-btn-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  word-break: break-all;
  text-align: center;
  -ms-flex-item-align: center;
      align-self: center;
  line-height: 1.2;
}
/* 平板电脑（宽度在768px到1024px之间） */
@media (min-width: 768px) and (max-width: 1024px) {
  .inbound-tourism {
    background-image: url('../images/inboundTourism/bg-pad.png');
  }
  .inbound-tourism .card-component {
    width: 90vw;
    max-width: 800px;
  }
  .inbound-tourism .card-component .title-bar {
    width: 60%;
  }
  .inbound-tourism .card-component .content-box .btn-box {
    display: block;
  }
  .inbound-tourism .card-component .content-box .btn-box .inbound-btn-wrap {
    width: 80%;
    margin: 20px auto 0;
  }
}
/* 手机（宽度小于768px） */
@media (max-width: 768px) {
  .inbound-tourism {
    background-image: url('../images/inboundTourism/bg-mobile.png');
  }
  .inbound-tourism .card-component {
    width: 90vw;
    max-width: 600px;
  }
  .inbound-tourism .card-component .title-bar {
    width: 90%;
    background: url('../images/inboundTourism/title-mobile.png') no-repeat center / 100% 100%;
  }
  .inbound-tourism .card-component .content-box .btn-box {
    display: block;
  }
  .inbound-tourism .card-component .content-box .btn-box .inbound-btn-wrap {
    width: 80%;
    margin: 20px auto 0;
  }
}
