* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  overflow-x: hidden;
}
a {
  color: #333333;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
}

ul,
ol {
  list-style: none;
}

input,
button {
  border: none;
  outline: none;
}

input[type="number"] {
  -webkit-appearance: none;
  -moz-appearance: textfield;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

button {
  cursor: pointer;
}

body {
  font-family: "微软雅黑", "宋体", Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #333333;
  line-height: 1.5;
}

/* main */
.main {
  padding-top: 3.54vw;
}

/* header */
.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: 3.54vw;
  padding: 0 8.54vw;
  background-color: #ffffff;
  box-shadow: 0px 3px 4px 0px rgba(24, 24, 24, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.header .header-left {
  display: flex;
  align-items: center;
}
.header .header-left .logo {
  width: 3vw;
  max-height: 100%;
}
.header .header-left .desc {
  height: 1.72vw;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 0.73vw;
  color: #666666;
  border-left: 1px solid #333333;
  padding-left: 0.52vw;
  margin-left: 0.52vw;
}
.header .header-right {
  display: flex;
  align-items: center;
}
.header .navs {
  display: flex;
  align-items: center;
  font-size: 0.78vw;
  height: 100%;
}
.header .navs .navs-item {
  position: relative;
  margin: 0 0.52vw;
  height: 100%;
  transition: color 0.2s ease-in-out;
  position: relative;
}
.header .navs .navs-item > a {
  display: flex;
  align-items: center;
  height: 100%;
}
.header .navs .navs-item::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: background-color 0.2s ease-in-out;
}
.header .navs .navs-item:hover > a {
  color: #ce2222;
}
.header .navs .navs-item.active {
  color: #ce2222;
}
.header .navs .navs-item.active::before {
  background-color: #ce2222;
}
.header .navs .navs-item .navs-child {
  position: fixed;
  top: 3.54vw;
  left: 0;
  width: 100%;
  height: 0px;
  /* height: 12vw; */
  background-color: rgba(0, 0, 0, 0.5);
  padding-left: 15vw;
  display: flex;
  overflow: hidden;
}
.header .navs .navs-item .navs-child-left {
  display: flex;
  align-items: center;
  height: 12vw;
}
.header .navs .navs-item .navs-child-left-img {
  height: 100%;
}
.header .navs .navs-item .navs-child-left-desc {
  font-size: 0.83vw;
  line-height: 2vw;
  width: 25vw;
  color: #ffffff;
}
.header .navs .navs-item .navs-child-right {
  flex: 1;
  padding: 2vw 0px 0px 5vw;
  height: 12vw;
}
.header .navs .navs-item .navs-child-right ul {
 display: grid;
  grid-template-columns: repeat(3, 1fr); /* 将容器分为3等分，每个等分占满容器宽度的1/3 */
  gap: 10px; /* 可选：设置网格项之间的间隔 */
}
.header .navs .navs-item .navs-child-right li {
  flex: 1;
  display: flex;
  margin-bottom: 0.5vw;
}
.header .navs .navs-item .navs-child-right a {
  color: #ffffff;
  font-size: 0.83vw;
  position: relative;
  padding-left: 20px;
}
.header .navs .navs-item .navs-child-right a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff;
}
.header .navs .navs-item .navs-child-right a:hover {
  color: #ce2222;
  text-decoration: underline;
}
.header .header-search-icon {
  height: 1.04vw;
  margin-left: 1.04vw;
  cursor: pointer;
}
.header .header-search {
  position: fixed;
  top: 3.54vw;
  left: 0;
  width: 100%;
  background: #ffffff;
  height: 0px;
  /* height: 12vw; */
  overflow: hidden;
}
.header .header-search-inner {
  padding: 1vw 13vw;
  border-top: 1px solid #eee;
  position: relative;
}
.header .header-search-title {
  font-size: 1.2vw;
}
.header .header-search-form {
  display: flex;
  margin-top: 0.5vw;
}
.header .header-search-form input {
  flex: 1;
  border: 1px solid #ccc;
  width: 100%;
  height: 2.5vw;
  border-top-left-radius: 0.3vw;
  border-bottom-left-radius: 0.3vw;
  border: solid 1px #ecf0f0;
  padding: 0 1vw;
  font-size: 0.83vw;
}
.header .header-search-form button {
  width: 8vw;
  height: 2.5vw;
  font-size: 0.83vw;
  background-color: #cc1821;
  color: #fff;
  border-top-right-radius: 0.3vw;
  border-bottom-right-radius: 0.3vw;
}
.header .header-search-hot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5vw 1vw;
  margin-top: 0.5vw;
}
.header .header-search-hot a {
  font-size: 0.73vw;
  height: 2vw;
  line-height: 2vw;
  color: #787979;
  background-color: #f6f6f6;
  padding: 0 1vw;
  border-radius: 0.3vw;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.header .header-search-hot a:hover {
  color: #fff;
  background-color: #cc1821;
}
.header .header-search-close {
  position: absolute;
  top: 1vw;
  right: 13vw;
  width: 1.5vw;
  cursor: pointer;
}

/* header mobile */
.header-mobile {
  width: 100%;
  display: none;
  justify-content: space-between;
  height: 13vw;
  padding: 0 5vw;
  background-color: #ffffff;
  box-shadow: 0px 3px 4px 0px rgba(24, 24, 24, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.header-mobile .header-left {
  display: flex;
  align-items: center;
}
.header-mobile .header-left .logo {
  /* width: 30vw;*/
  max-height:100%;
}
.header-mobile .header-right {
  display: flex;
  align-items: center;
}
.header-mobile .header-right a {
  margin-left: 5vw;
  width: 7vw;
}
.header-mobile .header-right a img {
  width: 7vw;
}
.header-mobile .header-popup {
  position: fixed;
  top: 0;
  left: 200%;
  width: 100%;
  height: 100%;
  z-index: 99;
  padding-left: 30vw;
}
.header-popup-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 98;
  display: none;
}
.header-mobile .header-popup-close {
  position: absolute;
  top: 3vw;
  right: 3vw;
  width: 7vw;
  cursor: pointer;
  z-index: 3;
}
.header-mobile .header-popup-inner {
  padding-top: 13vw;
  background: #ffffff;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.header-mobile .header-popup-inner a {
  font-size: 4.5vw;
  padding: 5vw;
  border-bottom: 1px solid #eee;
}
.header-mobile .header-popup-inner a:first-child {
  border-top: 1px solid #eee;
}

/* footer */
.footer {
  color: #ffffff;
  background-color: #1c1c1c;
}
.footer .footer-copyright {
  font-size: 0.73vw;
  color: #b0b0b0;
  background-color: #141414;
  padding: 2vw 10vw;
  display:flex;
  justify-content: space-between;
}
.footer .footer-copyright a {
	color: #b0b0b0;
}
.footer .footer-list {
  display: flex;
  padding: 2vw 10vw;
  justify-content: space-between;
}
.footer .footer-list dl {
  position: relative;
  padding-top: 1.46vw;
}
.footer .footer-list dl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.56vw;
  height: 0.1vw;
  background-color: #ffffff;
}
.footer .footer-list dt {
  font-size: 0.84vw;
}
.footer .footer-list dd {
  padding-top: 1.04vw;
}
.footer .footer-list dd a {
  font-size: 0.73vw;
  color: #bbbbbb;
}
.footer .footer-list dd a:hover {
  text-decoration: underline;
}
.footer .footer-list .column {
  display: flex;
  flex-direction: column;
  width: 5.21vw;
  line-height: 2;
}
.footer .footer-list .telinfo {
  font-size: 0.73vw;
  color: #bbbbbb;
  width: 10.42vw;
  display: flex;
  flex-direction: column;
}
.footer .footer-list .telnumber {
  font-size: 1.46vw;
  color: #cc1821;
  font-weight: bold;
  padding: 0.52vw 0px;
}

/* footer-mobile */
.footer-mobile {
  display: none;
  color: #ffffff;
  background-color: #1c1c1c;
  padding: 5vw;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-mobile .footer-title {
  font-size: 4vw;
}
.footer-mobile .footer-telnumber {
  font-size: 7vw;
  color: #cc1821;
  font-weight: bold;
  margin-top: 3vw;
}
.footer-mobile .footer-address {
  font-size: 4vw;
  margin-top: 3vw;
}
.footer-mobile .footer-qrcode {
  width: 30vw;
  margin-top: 4vw;
}
.footer-mobile .footer-copyright {
  font-size: 4vw;
  color: #b0b0b0;
  margin-top: 5vw;
}

/* footer-fixed */
.footer-fixed {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 12vw;
  line-height: 12vw;
  z-index: 10;
}
.footer-fixed a {
  flex: 1;
  text-align: center;
  color: #fff;
  font-size: 4vw;
}
.footer-fixed a span {
  position: relative;
  padding-left: 7vw;
}
.footer-fixed .footer-phone {
  background-color: #0f0f0f;
}
.footer-fixed .footer-phone span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5vw;
  height: 5vw;
  background: url(../img/footer-fixed-phone.png) no-repeat;
  background-size: contain;
}
.footer-fixed .footer-customer {
  background-color: #d21517;
}
.footer-fixed .footer-customer span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7vw;
  height: 7vw;
  background: url(../img/footer-fixed-customer.png) no-repeat;
  background-size: contain;
}

/* 侧栏导航 */
.slidenav {
  position: fixed;
  top: 20%;
  width: 100px;
  right: 12px;
  background-color: #ffffff;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  z-index: 99;
  overflow: hidden;
}
.slidenav dl {
  color: #000000;
  font-size: 14px;
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
  background: #ffffff;
  cursor: pointer;
  text-align: center;
  transition: all 0.5s ease-in-out;
}
.slidenav dl:nth-last-child(1) {
  border-bottom: 0px solid #ececec;
}
.slidenav dt {
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
}
.slidenav dd {
  margin-top: 5px;
  text-align: center;
  color: #000000;
}
.slidenav .slidenav-love dt {
  background-image: url(../img/slidenav-love.png);
}
.slidenav .slidenav-free dt {
  background-image: url(../img/slidenav-free.png);
  background-position-x: 40px;
}
.slidenav .slidenav-day dt {
  background-image: url(../img/slidenav-day.png);
}
.slidenav .slidenav-tel dt {
  background-image: url(../img/slidenav-tel.png);
}
.slidenav .slidenav-top dt {
  background-image: url(../img/slidenav-top.png);
}
.slidenav dl:hover {
  color: #ffffff;
  background: #b30b16;
}
.slidenav dl:hover dd {
  color: #ffffff;
}
.slidenav .slidenav-love:hover dt {
  background-image: url(../img/slidenav-love-active.png);
}
.slidenav .slidenav-free:hover dt {
  background-image: url(../img/slidenav-free-active.png);
}
.slidenav .slidenav-day:hover dt {
  background-image: url(../img/slidenav-day-active.png);
}
.slidenav .slidenav-tel:hover dt {
  background-image: url(../img/slidenav-tel-active.png);
}
.slidenav .slidenav-top:hover dt {
  background-image: url(../img/slidenav-top-active.png);
}

/* 报名弹窗 */
.modal-form {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
  display: none;
}
.modal-form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.modal-form .modal-form-inner {
  display: flex;
  width: 840px;
  position: relative;
}
.modal-form .modal-form-input {
  flex: 1;
  background-color: #f3f4f6;
}
.modal-form .price-title {
  font-size: 26px;
  color: #000000;
  text-align: center;
  margin-top: 30px;
}
.modal-form .price-change {
  font-size: 26px;
  color: #b30b16;
  text-align: center;
  margin-top: 10px;
}
.modal-form .price-change-number {
  display: inline-block;
  width: 180px;
  font-size: 46px;
  color: #b30b16;
  font-weight: bold;
}
.modal-form .input-item {
  position: relative;
  margin: 16px 77px;
}
.modal-form .input-item input {
  width: 100%;
  height: 47px;
  background-color: #ffffff;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.3);
  border-radius: 24px;
  border: none;
  outline: none;
  padding-left: 50px;
}
.modal-form .input-icon {
  position: absolute;
  left: 18px;
  top: 11px;
}
.modal-form .input-button {
  display: block;
  width: 269px;
  height: 47px;
  line-height: 47px;
  color: #ffffff;
  text-align: center;
  background-color: #333;
  margin: 0 auto;
  border: none;
  outline: none;
  border-radius: 23px;
  cursor: pointer;
}
.modal-form .modal-form-input p {
  font-size: 12px;
  color: #999999;
  opacity: 0.8;
  text-align: center;
  margin-top: 20px;
}
.modal-form .model-close {
  cursor: pointer;
  position: absolute;
  right: -15px;
  top: -15px;
  background: #b30b16;
  border-radius: 50%;
  overflow: hidden;
}

/* 顶部导航 */
.top-nav {
  width: 100%;
  height: 15.63vw;
  display: flex;
  position: relative;
}
.top-nav .top-nav-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-nav .top-nav-title {
  font-size: 1.88vw;
  color: #fff;
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  margin-top: -1.88vw;
}
.top-nav .top-nav-curloc {
  font-size: 0.73vw;
  color: #fff;
  position: absolute;
  left: 13vw;
  bottom: 1vw;
}
.top-nav .top-nav-curloc a {
  color: #fff;
  padding: 0 0.2vw;
}

/* 筛选分页 */
.filter-page .ui-pagination-container {
  width: 100%;
  display: flex;
  gap: 0.1vw;
}
.filter-page .ui-pagination-page-item {
  width: 2.6vw;
  height: 2.6vw;
  line-height: 2.6vw;
  font-size: 0.73vw;
  text-align: center;
  background-color: #ebebeb;
  cursor: pointer;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
  display:block
}
.filter-page .ui-pagination-page-item :hover,
.filter-page .ui-pagination-page-item.active {
  color: #fff;
  background-color: #cc1821;
}
.paginationjs,
.paginationjs .paginationjs-pages,
.paginationjs .paginationjs-pages ul {
  width: 100%;
  display: flex;
  gap: 0.1vw;
}
.paginationjs .paginationjs-pages ul li {
  width: 2.6vw;
  height: 2.6vw;
  line-height: 2.6vw;
  font-size: 0.73vw;
  text-align: center;
  background-color: #ebebeb;
  cursor: pointer;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.paginationjs .paginationjs-pages ul li a {
  color: inherit;
}
.paginationjs .paginationjs-pages ul li:hover,
.paginationjs .paginationjs-pages ul li.active {
  color: #fff;
  background-color: #cc1821;
}

/* 卡片表单录入 */
.card-form {
  padding: 2vw;
  margin-top: 1vw;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card-form .form-name {
  font-size: 1.04vw;
}
.card-form .form-item {
  width: 100%;
  margin-top: 0.73vw;
}
.card-form .form-item input {
  display: block;
  width: 100%;
  height: 2.4vw;
  padding: 0px 0.73vw;
  background-color: #f2f2f2;
  font-size: 0.73vw;
}
.card-form .form-item input[type="number"] {
  -webkit-appearance: none;
  -moz-appearance: textfield;
}
.card-form .form-item input[type="number"]::-webkit-outer-spin-button,
.card-form .form-item input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.card-form .form-button {
  width: 100%;
  height: 2.4vw;
  line-height: 2.4vw;
  text-align: center;
  background-color: #ce2222;
  font-size: 0.73vw;
  color: #ffffff;
}

/* 筛选导航 > 1000 */
@media screen and (min-width: 1001px) {
  /* 筛选导航 */
  .filter-nav {
    background-color: #fff;
  }
  .filter-nav dl {
    display: flex;
    font-size: 0.73vw;
  }
  .filter-nav dl dt {
    width: 4.38vw;
    line-height: 1.46vw;
    text-align: center;
    background-color: #ececec;
    padding: 0.5vw 0px;
    font-weight: bold;
  }
  .filter-nav dl dd {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.3vw;
    padding: 0.5vw 1vw;
  }
  .filter-nav dl:nth-child(1) dt,
  .filter-nav dl:nth-child(1) dd {
    padding-top: 1.5vw;
  }
  .filter-nav dl:nth-last-child(1) dt,
  .filter-nav dl:nth-last-child(1) dd {
    padding-bottom: 1.5vw;
  }
  .filter-nav .filter-nav-item {
    height: 1.46vw;
    line-height: 1.46vw;
    background-color: #fff;
    font-size: 0.73vw;
    padding: 0 0.78vw;
    cursor: pointer;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
  }
  .filter-nav .filter-nav-item:hover {
    color: #cc1821;
  }
  .filter-nav .filter-nav-item.active {
    color: #fff;
    background-color: #cc1821;
  }
  .filter-nav .filter-sort {
    padding: 0 0.78vw;
    height: 1.46vw;
    line-height: 1.46vw;
    background-color: #ffffff;
    border: solid 1px #c9c9c9;
    font-size: 0.73vw;
    color: #3e3a39;
    box-sizing: content-box;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
  }
  .filter-nav .filter-sort.active {
    color: #fff;
    background-color: #cc1821;
    border-color: #cc1821;
  }
  .filter-nav .filter-sort span {
    position: relative;
    top: -0.1vw;
  }
  .filter-nav .filter-search {
    display: flex;
    justify-content: flex-end;
    font-size: 0.73vw;
  }
  .filter-nav .filter-search input {
    width: 10.42vw;
    height: 1.46vw;
    line-height: 1.46vw;
    font-size: 0.73vw;
    background-color: #ffffff;
    border: solid 1px #c9c9c9;
    padding: 0 0.63vw;
    border-right-width: 0px;
    box-sizing: content-box;
  }
  .filter-nav .filter-search button {
    width: 2.14vw;
    height: 1.46vw;
    background-color: #cc1821;
    background-image: url(../img/search-icon.png);
    background-size: 0.9vw auto;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    box-sizing: content-box;
    border: 1px solid #cc1821;
  }
}

/* 筛选导航 <= 1000 */
@media screen and (max-width: 1000px) {
  .filter-nav-search {
    display: none;
  }
  .filter-nav-mask {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 2001;
    top: 13vw;
    left: 0px;
    background: rgba(0, 0, 0, 0.6);
    display: none;
  }
  .filter-nav {
    position: fixed;
    width: 100%;
    top: calc(13vw - 1px);
    left: 0px;
    height: 13vw;
    margin: 0px 0px !important;
    background: #ffffff;
    z-index: 200;
    border-top: 1px solid #eee;
    display: flex;
  }
  .filter-nav dl {
    flex: 1;
    overflow: hidden;
  }
  .filter-nav dt {
    width: 100%;
    height: 13vw;
    line-height: 13vw;
    padding: 0px 3vw;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
    background-image: url(../img/filter-nav-down.png);
    background-repeat: no-repeat;
    background-size: 5vw;
    background-position: 90% center;
  }
  .filter-nav dd {
    position: fixed;
    width: 100%;
    left: 0px;
    top: 13vw;
    z-index: 2002;
    background: #ffffff;
    display: flex;
    flex-wrap: wrap;
    gap: 4vw;
    padding: 4vw;
    display: none;
  }
  .filter-nav .filter-nav-item {
    min-width: 20vw;
    padding: 0 0.2667rem;
    height: 8.533vw;
    line-height: 8.533vw;
    text-align: center;
    font-size: 3.467vw;
    color: #111;
    background: #f5f7fa;
    border-radius: 0.8vw;
  }
  .filter-nav .filter-nav-item.active {
    color: #fff;
    background-color: #cc1821;
  }
}

/* 1000px */
@media screen and (max-width: 1000px) {
  body {
    padding-bottom: 13vw;
  }

  /* main */
  .main {
    padding-top: 13vw;
  }

  /* header */
  .header {
    display: none;
  }

  /* header mobile */
  .header-mobile {
    display: flex;
  }

  /* footer */
  .footer {
    display: none;
  }

  /* footer mobile */
  .footer-mobile {
    display: flex;
  }

  /* footer-fixed */
  .footer-fixed {
    display: flex;
  }

  /* 侧栏导航 */
  .slidenav {
    display: none;
  }

  /* 顶部导航 */
  .top-nav {
    height: 31.26vw;
  }
  .top-nav .top-nav-title {
    font-size: 5.64vw;
    margin-top: -5.64vw;
  }
  .top-nav .top-nav-curloc {
    display: none;
    font-size: 3.65vw;
    left: 3vw;
    bottom: 3vw;
  }
  .top-nav .top-nav-curloc a {
    padding: 0 1vw;
  }

  /* 筛选分页 */
  .paginationjs,
  .paginationjs .paginationjs-pages,
  .paginationjs .paginationjs-pages ul {
    gap: 2vw;
  }
  .paginationjs .paginationjs-pages ul li {
    width: 10.4vw;
    height: 10.4vw;
    line-height: 10.4vw;
    font-size: 3.65vw;
  }

  /* 报名弹窗 */
  /* .modal-form {
    display: block;
  } */
  .modal-form .modal-form-left {
    display: none;
  }
  .modal-form .modal-form-inner {
    width: 100%;
    margin: 0 5vw;
  }
  .modal-form .modal-form-input p {
    margin-bottom: 20px;
  }
  .modal-form .input-item {
    margin: 16px 20px;
  }
}
