@charset "utf-8";
:root {
  --color: #ff1e63;
  --vh: 100vh;
}
/*字体*/
/* @font-face {
	font-family: "Fontke";
	src: url("Fontke.woff2") format("woff2"),
		 url("Fontke.woff") format("woff"),
		 url("Fontke.ttf") format("truetype"),
		 url("Fontke.eot") format("embedded-opentype"),
		 url("Fontke.svg") format("svg"),
		 url("Fontke.otf") format("opentype");
} */
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  scrollbar-width: thin;
}
* ::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 5px;
}
* ::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  border-radius: 3px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: var(--color);
}
* ::-webkit-scrollbar-track {
  /*滚动条-背景*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background: #ededed;
}
html {
  font-size: 100px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw/7.5);
  }
}
body {
  position: relative;
  margin: 0 auto;
  max-width: 750px;
  min-height: 100%;
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  font-size: 0.26rem;
  line-height: 1.5;
  color: #000;
  background: #fff;
}
img {
  max-width: 100%;
  border: 0;
  vertical-align: top;
  pointer-events: none;
}
video,
video:focus {
  display: block;
  font-size: 0;
  border: 0;
  outline: none;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
}
a {
  color: inherit;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
input,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
button {
  cursor: pointer;
}
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  appearance: button;
  cursor: pointer;
}
textarea {
  resize: none;
  overflow: auto;
}
input,
button,
textarea,
select {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
  color: inherit;
  background: transparent;
}
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
table {
  border-collapse: collapse;
}
svg path,
svg circle {
  fill: currentColor !important;
  opacity: 1 !important;
}
picture,
section,
main {
  display: block;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear {
  zoom: 1;
}
.clear:after {
  content: '';
  display: block;
  clear: both;
}
.container {
  margin: 0 auto;
  width: 89.3333%;
}
.public-img {
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.public-img::before {
  content: "";
  display: block;
  position: relative;
  z-index: 0;
  padding-top: 100%;
}
.public-img > img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s;
}
/*头部*/
#c-header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 900;
  width: 100%;
  line-height: 2rem;
  text-align: center;
  transition: 0.4s;
}
#c-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#c-header .c-right-box {
  display: flex;
  align-items: center;
}
#c-header.c-head-move {
  top: -1.4rem;
}
#c-header.c-style2 {
  background: #ffeacc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#c-header .c-logo {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
}
#c-header .c-logo .c-img-box {
  display: flex;
  align-items: center;
}
#c-header .c-logo .c-img-box img {
  height: 0.58rem;
}
#c-header .c-share {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  margin-left: 0.4rem;
}
#c-header .c-share .c-ico {
  position: relative;
  margin-right: 0.1rem;
  width: 0.28rem;
  height: 0.28rem;
}
#c-header .c-share .c-ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.4s;
}
#c-header .c-share .c-ico img:nth-child(2) {
  display: none;
}
#c-header .c-share span:nth-child(3) {
  display: none;
}
#c-header .c-guide {
  position: relative;
  z-index: 20;
  font-weight: bold;
}
#c-header .c-switch {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  margin-left: 0.4rem;
  cursor: pointer;
  font-weight: bold;
}
#c-header .c-switch .c-ico {
  position: relative;
  margin-right: 0.1rem;
  width: 0.28rem;
  height: 0.28rem;
}
#c-header .c-switch .c-ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.4s;
}
#c-header .c-switch .c-ico img:nth-child(2) {
  display: none;
}
#c-header .c-switch span:nth-child(3) {
  display: none;
}
#c-header .c-nav2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  line-height: 0.88rem;
  background: url(/ychs/nav-bg.webp) no-repeat bottom center / cover;
  overflow-y: auto;
  transition: 0.4s;
  text-align: left;
  font-weight: bold;
}
#c-header .c-nav2 li {
  margin: 0 auto;
  border-bottom: 1px solid #ccb09f;
  width: 89.3333%;
}
#c-header .c-nav2 li .c-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
#c-header .c-nav2 li .c-title-box > img {
  margin-right: 0.2rem;
  width: 0.2rem;
  height: 0.2rem;
  object-fit: contain;
}
#c-header .c-nav2 li .c-title-box > div {
  display: flex;
  align-items: center;
}
#c-header .c-nav2 li .c-title-box > div img {
  width: 0.34rem;
  height: 0.34rem;
  object-fit: contain;
  margin-right: 0.25rem;
}
#c-header .c-share-pop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: url(../images/nav-bg.webp) no-repeat bottom center / cover;
  overflow-y: auto;
  transition: 0.4s;
  text-align: left;
  color: #222;
}
#c-header .c-share-pop .c-mask {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
#c-header .c-share-pop .c-wrap {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  width: 89.3333%;
}
#c-header .c-share-pop .c-wrap .c-box1 {
  margin-bottom: 0.6rem;
  position: relative;
}
#c-header .c-share-pop .c-wrap .c-box1 > img {
  width: 100%;
}
#c-header .c-share-pop .c-wrap .c-box1 .c-content {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  padding: 0.4rem;
  text-align: center;
}
#c-header .c-share-pop .c-wrap .c-box1 .c-content .c-code img {
  width: 4.4rem;
  pointer-events: auto;
}
#c-header .c-share-pop .c-wrap .c-box1 .c-content .c-text {
  font-size: 0.26rem;
  line-height: calc(0.36/0.26);
}
#c-header .c-share-pop .c-wrap .c-box2 {
  display: block;
  cursor: pointer;
  margin-bottom: 0.1rem;
}
#c-header .c-share-pop .c-wrap .c-box2:last-child {
  margin: 0;
}
#c-header .c-share-pop .c-wrap .c-box2 img {
  display: block;
  width: 100%;
}
.c-open #c-header .c-nav2 {
  height: 100vh;
  padding-top: 1.4rem;
}
.c-open #c-header .c-switch .c-ico img:nth-child(1) {
  display: none;
}
.c-open #c-header .c-switch .c-ico img:nth-child(2) {
  display: block;
}
.c-open #c-header .c-switch span:nth-child(2) {
  display: none;
}
.c-open #c-header .c-switch span:nth-child(3) {
  display: block;
}
.c-open2 #c-header .c-share-pop {
  display: flex;
  align-items: center;
  height: 100vh;
  padding: 1.4rem 0;
}
.c-open2 #c-header .c-share .c-ico img:nth-child(1) {
  display: none;
}
.c-open2 #c-header .c-share .c-ico img:nth-child(2) {
  display: block;
}
.c-open2 #c-header .c-share span:nth-child(2) {
  display: none;
}
.c-open2 #c-header .c-share span:nth-child(3) {
  display: block;
}
.c-overview {
  margin-top: -2rem;
  padding: 1.4rem 0 2.5rem;
  color: var(--color);
  background: #ffeacc url(../images/overview-bg.webp) no-repeat left top / 100% auto;
}
.c-overview .c-main {
  padding: 0 0.2rem;
}
.c-overview .c-main .c-title {
  font-size: 0.4rem;
  line-height: calc(0.5/0.4);
  font-weight: bold;
  text-align: center;
}
.c-overview .c-main .c-img {
  margin: 0.45rem 0 0.35rem;
  width: 100%;
}
.c-overview .c-main .c-address {
  padding: 0.35rem 0 1.1rem;
  border-top: 2px solid var(--color);
  font-weight: bold;
  font-size: 0.37rem;
  line-height: calc(0.47/0.37);
  text-align: center;
}
.c-overview .c-main .c-list li {
  margin-bottom: 0.5rem;
  font-size: 0.3rem;
  line-height: calc(0.4/0.3);
  font-weight: bold;
}
.c-overview .c-main .c-list li:last-child {
  margin-bottom: 1.15rem;
}
.c-overview .c-main .c-list li p {
  margin-bottom: 0.15rem;
}
.c-overview .c-main .c-list li p:last-child {
  margin: 0;
}
.c-overview .c-list2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  color: var(--color);
  font-weight: bold;
  font-size: 0.26rem;
  line-height: calc(0.36/0.26);
  margin: 0 -0.1rem -0.4rem;
  text-decoration: dashed;
}
.c-overview .c-list2 li {
  padding: 0 0.1rem 0.4rem;
  cursor: pointer;
}
.c-overview .c-list2 li .public-img {
  margin: 0 auto 0.25rem;
  width: 0.94rem;
}
.c-overview .c-list2 li .public-img::before {
  padding-top: calc(130/94*100%);
}
.c-overview .c-list2 li .public-img img {
  object-fit: contain;
}
.c-overview .swiper {
  margin-top: 0.8rem;
  padding-bottom: 0.4rem;
}
.c-overview .swiper:last-child .swiper-slide .c-img {
  height: 11.8rem;
}
.c-overview .swiper .swiper-slide {
  border: 0.12rem solid #ffd09e;
  border-radius: 0.3rem;
  background: #ffd09e;
}
.c-overview .swiper .swiper-slide .c-img {
  height: 3.16rem;
  border-radius: 0.2rem;
  overflow: hidden;
}
.c-overview .swiper .swiper-slide .c-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: auto;
}
.c-overview .swiper .swiper-pagination {
  bottom: 0;
}
.c-overview .swiper .swiper-pagination .swiper-pagination-bullet {
  margin: 0 0.04rem;
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 0.04rem;
  background: #ff1e63;
  opacity: 1;
  transition: all 0.4s;
}
.c-overview .swiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 0.5rem;
}
.public-title {
  position: relative;
  z-index: 5;
  text-align: center;
}
.public-title img {
  height: 0.8rem;
}
.c-travel-mode {
  position: relative;
  z-index: 2;
  margin-top: -1.8rem;
  padding: 0.8rem 0 1.4rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 30%, #ffc5d2 31%, #ffc5d2 100%), url(../images/travel-mode-bg.webp) no-repeat left top / 100% auto;
  overflow: hidden;
}
.c-travel-mode::before {
  content: "";
  position: absolute;
  top: 4rem;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: url(../images/travel-mode-bg3.webp) repeat-y left top / 100% auto;
}
.c-travel-mode .c-list {
  position: relative;
  z-index: 5;
  margin-top: 0.4rem;
}
.c-travel-mode .c-list li {
  position: relative;
  margin-bottom: 0.3rem;
}
.c-travel-mode .c-list li:last-child {
  margin: 0;
}
.c-travel-mode .c-list li a {
  position: absolute;
  width: 2.56rem;
  height: 0.6rem;
  left: 50%;
  bottom: 0.4rem;
  z-index: 10;
  margin-left: -1.28rem;
}
.c-activity {
  position: relative;
  z-index: 3;
  margin-top: -1rem;
  padding: 1.4rem 0 1.3rem;
  background: url(../images/activity-bg.webp) no-repeat left top / 100% auto;
  overflow: hidden;
}
.c-activity::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #fff6f8;
}
.c-activity .c-list {
  position: relative;
  z-index: 5;
  margin-top: 0.4rem;
}
.c-activity .c-list li {
  position: relative;
  margin-bottom: 0.4rem;
}
.c-activity .c-list li:last-child {
  margin: 0;
}
.c-business {
  position: relative;
  z-index: 4;
  margin-top: -1rem;
  padding: 1.6rem 0 1.4rem;
  background: url(../images/business-bg.webp) no-repeat left top / 100% auto;
  overflow: hidden;
}
.c-business::before {
  content: "";
  position: absolute;
  top: 9rem;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #ffc5d2;
}
.c-business .c-list {
  position: relative;
  z-index: 5;
  margin-top: 0.4rem;
}
.c-business .c-list li {
  position: relative;
  margin-bottom: 0.4rem;
}
.c-business .c-list li:last-child {
  margin: 0;
}
.c-location {
  position: relative;
  z-index: 5;
  margin-top: -1.8rem;
  padding: 2.8rem 0 1.4rem;
  background: url(../images/location-bg.webp) no-repeat left top / 100% auto;
  overflow: hidden;
}
.c-location::before {
  content: "";
  position: absolute;
  top: 4rem;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #fff6f8;
}
.c-location .c-list {
  position: relative;
  z-index: 5;
  margin-top: 0.4rem;
}
.c-location .c-list li {
  position: relative;
  margin-bottom: 0.4rem;
  text-align: center;
}
.c-location .c-list li:last-child {
  margin: 0;
}
.c-location .c-list li > img {
  position: relative;
  z-index: 5;
  height: 0.6rem;
}
.c-location .c-list li .c-item {
  position: relative;
  margin-top: 0.2rem;
}
.c-location .c-list li .c-item:first-child {
  margin-top: -0.3rem;
}
.c-location .c-list li .c-item img {
  width: 100%;
}
.c-location .c-list li .c-item p {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: var(--color);
  font-size: 0.26rem;
  line-height: calc(0.36/0.26);
}
.c-art {
  position: relative;
  z-index: 5;
  margin-top: -1.3rem;
  padding: 2.2rem 0 1.2rem;
  background: url(../images/art-bg.webp) no-repeat left top / 100% auto;
  overflow: hidden;
}
.c-art::before {
  content: "";
  position: absolute;
  top: 15.4rem;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #ffc5d2;
}
.c-art .c-wrap {
  position: relative;
  z-index: 5;
  margin-top: 0.4rem;
}
.c-art .c-wrap .c-box {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  padding: 0 0.4rem;
  transform: translateY(-50%);
  text-align: center;
}
.c-art .c-wrap .c-box > img {
  height: 0.66rem;
}
.c-art .c-wrap .c-box .c-text {
  color: var(--color);
  font-size: 0.26rem;
  line-height: calc(0.36/0.26);
}
.c-art .c-wrap .c-box .c-text p {
  margin-top: 0.2rem;
}
.c-art .c-wrap .c-box .c-text p:first-child {
  margin-top: 0.45rem;
}
.public-box {
  padding-bottom: 0.3rem;
  background: #ffc5d2;
}
.public-box:nth-last-child(2) {
  padding-bottom: 0.8rem;
}
.public-box .container {
  position: relative;
}
.public-box .container > img {
  width: 100%;
}
.public-box .container .c-box {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  padding: 0 0.4rem;
  transform: translateY(-50%);
  text-align: center;
}
.public-box .container .c-box > img {
  height: 0.66rem;
}
.public-box .container .c-box .c-text {
  margin-top: 0.25rem;
  font-size: 0.26rem;
  line-height: calc(0.36/0.26);
  color: #0e050b;
}
.public-box .container .c-box .c-phone {
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ee5a23;
}
.public-box .container .c-box .c-phone img {
  margin-right: 0.15rem;
  width: 0.24rem;
  height: 0.24rem;
  object-fit: contain;
}
.c-information {
  padding: 0.25rem 0;
  font-size: 0.22rem;
  line-height: calc(0.32/0.22);
  color: #fff;
  background: #d74f6e;
  text-align: center;
}
.c-msg {
  display: none;
  position: absolute;
  top: 62%;
  left: 50%;
  z-index: 1000;
  transform: translate(-50%, 0.2rem);
  color: #fff;
  min-width: 3rem;
  max-width: 90%;
  white-space: nowrap;
  padding: 0 0.3rem;
  line-height: 0.6rem;
  border-radius: 0.3rem;
  font-size: 0.2rem;
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
}
#c-go-top {
  position: fixed;
  bottom: 1rem;
  right: 0.05rem;
  z-index: 800;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}
#c-go-top img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
