@charset "utf-8";
/*初始化样式*/




*,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*设置平滑*/
html {
  scroll-behavior: smooth;
  font-size: calc(100 * 100vw / 1920);
}
body {
  font-size: 14px;
  font-family: 'Noto Sans SC', '微软雅黑', "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  color: #000;
  overflow-x: hidden;
  line-height: 1.6;
  font-weight: 400;
}
/*字体引入*/
@font-face {
  font-family: 'Montserrat';
  src: url("../webfonts/Montserrat-Bold.ttf");
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
ol,
ul {
  padding-left: 20px;
}
li::marker {
  color: var(--dominant-color);
}
img {
  vertical-align: top;
  border: 0;
  transition: all 0.5s;
}
input,
select,
textarea,
button {
  vertical-align: middle;
  font-family: var(--font1);
}
textarea,
input {
  text-indent: 10px;
}
/*表单元素默认有20像素的缩进*/
input[type='submit'],
input[type='button'],
button {
  text-indent: 0;
  text-align: center;
  cursor: pointer;
}
label,
button,
a {
  cursor: pointer;
}
ins,
em,
b,
i {
  text-decoration: none;
  font-style: normal;
}
/* 去掉浏览器激活样式 */
select:focus,
textarea:focus,
input:focus,
button {
  outline: none;
  border: none;
}
/* 提示文字的初始样式 */
input::-webkit-input-placeholder,
input::-moz-input-placeholder,
textarea::-webkit-textarea-placeholder,
textarea::-moz-textarea-placeholder {
  color: #999;
  transition: color 0.5s;
}
/* 提示文字的激活样式 */
input:focus::-webkit-input-placeholder,
input:focus::-moz-input-placeholder,
input:hover::-webkit-input-placeholder,
input:hover::-moz-input-placeholder,
textarea:focus::-webkit-input-placeholder,
textarea:focus::-moz-input-placeholder,
textarea:hover::-webkit-input-placeholder,
textarea:hover::-moz-input-placeholder {
  color: #c2c2c2;
}
/* table */
table {
  border-collapse: collapse;
  border-spacing: 0;
  font: inherit;
}
/* a_link */
a {
  color: inherit;
  text-decoration: none;
}
a[href] {
  cursor: pointer;
}
a:hover {
  text-decoration: none;
  cursor: pointer;
}
li {
  max-width: 100%;
}
p {
  white-space: normal;
  max-width: 100%;
}
audio,
canvas,
progress,
video {
  vertical-align: baseline;
}
/*用来解决在安卓上的点击出现篮框问题*/
body {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/*解决ios上去除微信点击蓝色边框 */
a:focus,
input:focus,
p:focus,
div:focus {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
img[src=""],
img:not([src]) {
  opacity: 0;
}
font {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  text-transform: inherit;
}
/*默认input样式*/
.input {
  border: 1px solid #e5e5e5;
  width: 100%;
  height: 40px;
  color: #666;
}
input[type=checkbox]:checked::after {
  color: #fff;
  position: absolute;
  top: -2px;
  left: 0;
  margin: auto;
  width: 14px;
  height: 14px;
}
input[type=radio] {
  border: 1px solid #e5e5e5;
  width: 14px;
  height: 14px;
}
textarea {
  resize: none;
  border: 1px solid #e5e5e5;
  width: 100%;
  min-height: 100px;
  padding: 10px 0;
}
select {
  height: 40px;
  width: 100%;
  padding: 0 20px;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  color: #666;
  background-size: 11px;
}
.pc {
  display: block;
}
.phone {
  display: none;
}
/*滚动条样式*/
::-webkit-scrollbar:horizontal {
  height: 5px;
}
/*限制行数*/
.clamp1,
.clamp2,
.clamp3,
.clamp4,
.clamp5,
.clamp6,
.clamp7,
.clamp8 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.clamp1 {
  -webkit-line-clamp: 1;
}
.clamp2 {
  -webkit-line-clamp: 2;
}
.clamp3 {
  -webkit-line-clamp: 3;
}
.clamp4 {
  -webkit-line-clamp: 4;
}
.clamp5 {
  -webkit-line-clamp: 5;
}
.clamp6 {
  -webkit-line-clamp: 6;
}
.clamp7 {
  -webkit-line-clamp: 7;
}
.clamp8 {
  -webkit-line-clamp: 8;
}
/*swiper样式设置*/
body .swiper-button-prev:focus,
body .swiper-button-next:focus,
body .swiper-pagination-bullet:focus {
  outline: none;
}
/*swiper默认样式*/
body .swiper-button-prev,
body .swiper-button-next {
  color: var(--dominant-color);
  width: clamp(30px, 0.6rem, 60px);
  height: clamp(30px, 0.6rem, 60px);
  flex-direction: row;
  transition: all 0.5s;
  background: #fff;
  border-radius: 50%;
  border: 1px solid var(--dominant-color);
  z-index: 2;
  font-size: clamp(14px, 0.2rem, 20px);
}
body .swiper-button-prev::after,
body .swiper-button-next::after {
  display: none;
}
body .swiper-button-prev:hover,
body .swiper-button-next:hover {
  background: var(--dominant-color);
  border-color: var(--dominant-color);
}
body .swiper-button-prev:hover::after,
body .swiper-button-next:hover::after {
  color: #fff;
}
body .swiper-button-prev:hover i,
body .swiper-button-next:hover i {
  color: #fff;
}
body .swiper-button-prev {
  left: 30px;
}
body .swiper-button-next {
  right: 30px;
}
body .swiper-button-prev::after,
body .swiper-button-next::after {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  body .swiper-button-prev::after,
  body .swiper-button-next::after {
    font-size: 12px;
  }
}
/*默认弹窗样式*/
.pop-up {
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
}
.pop-up .mask {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
.pop-up .pop-up-box {
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.pop-up .pop-up-box .loading-box {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin: auto;
  height: 100%;
}
.pop-up .pop-up-box video {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.pop-up .pop-up-box .pop-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  transition: 0.5s;
}
.pop-up .pop-up-box .pop-close i {
  font-size: 36px;
  color: #fff;
}
.form-susses {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 18px;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.05);
  padding: 40px 50px;
  border-radius: 10px;
  height: fit-content;
  z-index: 999;
  background: #fff;
  width: fit-content;
  display: none;
  align-items: center;
}
.form-susses i {
  color: var(--dominant-color);
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  input::placeholder,
  textarea::placeholder {
    font-size: 12px !important;
  }
  .pc {
    display: none;
  }
  .phone {
    display: block;
  }
}
/*-----默认配置------*/
.section {
  width: 90%;
  max-width: 1536px;
  margin: auto;
}
img {
  vertical-align: middle;
  max-width: 100%;
}
.imgBox {
  overflow: hidden;
  position: relative;
  height: 0;
  padding-bottom: 100%;
}
.imgBox img {
  width: 100%;
  max-width: 100%;
  transition: all 0.5s;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.imgBox video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.imgBox-hover:hover img {
  transition: all 0.5s;
  transform: scale(1.02);
}
/*头部样式*/
header {
  width: 100%;
  z-index: 10;
  transition: all 0.5s;
  position: fixed;
  top: 0;
  /*搜索*/
  /*搜索*/
  /*语言*/
  /*语言*/
}
header.z-active {
  z-index: 99;
}
header.active {
  background: var(--dominant-color);
}
header.active .header-box {
  height: clamp(60px, 0.8rem, 80px);
}
header.active .second-box {
  top: clamp(60px, 0.8rem, 80px) !important;
}
header.active,
header.hover-active {
  background: #fff;
}
header.active .logo .img1,
header.hover-active .logo .img1 {
  display: none;
}
header.active .logo .img2,
header.hover-active .logo .img2 {
  display: block !important;
}
header.active .header-box .header-menu nav .first-item .first-item-title,
header.hover-active .header-box .header-menu nav .first-item .first-item-title,
header.active .top-tel,
header.hover-active .top-tel,
header.active .top-tel .title2,
header.hover-active .top-tel .title2,
header.active .button-box,
header.hover-active .button-box {
  color: #000;
}
header.active .title2,
header.hover-active .title2 {
  color: var(--dominant-color) !important;
}
header.active .search-box form,
header.hover-active .search-box form {
  border: 1px solid #bdbdbd;
}
header.active .search-box .search-top button img,
header.hover-active .search-box .search-top button img,
header.active .button-box .item img,
header.hover-active .button-box .item img,
header.active .top-tel .title1 img,
header.hover-active .top-tel .title1 img {
  filter: brightness(0);
}
@media screen and (max-width: 1024px) {
  header {
    position: sticky;
    background: #fff;
    display: flex;
    flex-direction: column-reverse;
  }
}
header .header-phone-click {
  cursor: pointer;
  width: 22px;
  height: 16px;
  align-items: center;
  position: relative;
  right: 0;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  header .header-phone-click {
    display: flex;
    order: 3;
    margin-left: 0;
  }
}
header .header-phone-click .phone-click-line {
  height: 2px;
  background: #000;
  width: 100%;
  transition: all 0.5s;
  overflow: hidden;
}
header .header-phone-click .phone-click-line::before,
header .header-phone-click .phone-click-line::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #000;
  transition: all 0.5s;
}
header .header-phone-click .phone-click-line::before {
  top: 0;
  transition: all 0.5s;
}
header .header-phone-click .phone-click-line::after {
  bottom: 0;
  transition: all 0.5s;
}
header .header-phone-click .phone-text {
  font-size: 12px;
  position: absolute;
  right: 120%;
  width: max-content;
}
header .header-phone-click.active .phone-click-line {
  background: transparent;
  transition: all 0.5s;
}
header .header-phone-click.active .phone-click-line::before {
  margin: auto;
  transition: all 0.5s;
  transform: translateY(7px) rotate(45deg);
}
header .header-phone-click.active .phone-click-line::after {
  margin: auto;
  transition: all 0.5s;
  transform: translateY(-7px) rotate(-45deg);
}
header .search-box {
  position: relative;
  border-radius: 50% 50% 0 0;
  flex-basis: clamp(150px, 2.1rem, 210px);
  margin-left: clamp(10px, 0.2rem, 20px);
}
@media screen and (max-width: 1024px) {
  header .search-box {
    margin-left: 0;
    margin-top: 50px;
    margin-bottom: 30px;
  }
}
header .search-box.active {
  background: #fff;
}
header .search-box.active .search-top {
  background: #f8f8f8;
}
header .search-box.active .search-top input {
  background: #f8f8f8;
}
header .search-box .search-top {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  height: clamp(36px, 0.38rem, 38px);
  width: 100%;
  justify-content: space-between;
}
header .search-box .search-top .select {
  border: none;
  height: 100%;
  position: relative;
  flex-basis: clamp(100px, 1.3rem, 130px);
  padding-right: clamp(10px, 0.2rem, 20px);
  margin-right: clamp(10px, 0.2rem, 20px);
  cursor: pointer;
}
header .search-box .search-top .select select {
  border: none;
  height: 100%;
  appearance: none;
  background: url('../images/default/angle-down.webp') no-repeat center right / contain;
  background-size: 10px;
}
header .search-box .search-top .select img {
  width: clamp(8px, 0.1rem, 10px);
}
header .search-box .search-top .select::after {
  content: '';
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: 40%;
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
}
header .search-box .search-top .input {
  flex: 1;
  border: none;
  height: 100%;
}
header .search-box .search-top input {
  border: none;
  width: 100%;
  height: 100%;
}
header .search-box .search-top button {
  height: clamp(36px, 0.38rem, 38px);
  font-size: clamp(12px, 0.18rem, 18px);
  font-weight: 400;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: clamp(36px, 0.38rem, 38px);
  background: none;
}
header .search-box .search-top button img {
  width: clamp(12px, 0.16rem, 16px);
}
header .search-box .search-bottom {
  position: absolute;
  top: 100%;
  right: 0;
  margin: auto;
  width: 100%;
  background: #fff;
  border-radius: 0 0 10px 10px;
  display: none;
  padding: 10px clamp(100px, 1.15rem, 115px) clamp(20px, 0.3rem, 30px) clamp(110px, 1.5rem, 150px);
}
header .search-box .search-bottom .lists {
  padding-left: 10px;
  font-size: clamp(12px, 0.14rem, 14px);
  color: #666;
  line-height: 3;
}
header .search-box .search-bottom .lists .list {
  border-bottom: 1px solid #eee;
  display: block;
}
header .search-box .search-bottom .lists .list span {
  color: #e30016;
}
header .search-box .search-bottom .lists2 {
  margin-top: clamp(30px, 0.5rem, 50px);
  padding-left: 10px;
  font-size: clamp(12px, 0.14rem, 14px);
  color: #666;
  line-height: 2;
}
header .search-box .search-bottom .lists2 .title {
  border-bottom: 1px solid #eee;
  font-size: clamp(14px, 0.18rem, 18px);
  font-weight: 400;
  margin-bottom: clamp(10px, 0.1rem, 10px);
  padding-bottom: clamp(10px, 0.1rem, 10px);
  color: #000;
}
header .search-box .search-bottom .lists2 .list {
  display: block;
}
header .search-box .search-bottom .lists2 .list span {
  color: #e30016;
}
header .search-box .search-bottom a:hover {
  text-decoration: underline;
}
header .button-box {
  color: #fff;
  font-size: clamp(12px, 0.14rem, 14px);
}
@media screen and (max-width: 1024px) {
  header .button-box {
    display: none;
    color: #333;
  }
}
header .button-box .item {
  gap: 3.5px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  header .button-box .item {
    padding-left: 0;
    margin-right: 30px;
    font-size: 14px;
  }
}
header .button-box .item img {
  width: clamp(16px, 0.18rem, 18px);
  height: clamp(16px, 0.18rem, 18px);
  object-fit: contain;
}
@media screen and (max-width: 1024px) {
  header .button-box .item img {
    filter: invert(1);
  }
}
header .button-box .item .language-list {
  width: 100%;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: auto;
  padding-top: clamp(10px, 0.1rem, 10px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  color: #333;
}
header .button-box .item .language-list a {
  background: #fff;
  font-size: clamp(12px, 0.12rem, 12px);
  display: block;
  padding: 6px;
  text-align: center;
}
header .button-box .item .language-list a:hover {
  background: var(--dominant-color);
  color: #fff;
}
header .button-box .item:hover .language-list {
  display: block;
}
header .button-box .button-top .item:last-child,
header .button-box .button-bottom .item:last-child {
  margin-left: clamp(10px, 0.2rem, 20px);
}
header .button-box .button-top .item:last-child::after,
header .button-box .button-bottom .item:last-child::after {
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: rgba(255, 255, 255, 0.3);
  height: 80%;
  width: 1px;
  position: absolute;
}
header .top-tel {
  color: #fff;
  padding-right: clamp(10px, 0.24rem, 24px);
  margin-right: clamp(10px, 0.24rem, 24px);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  text-align: right;
}
@media screen and (max-width: 768px) {
  header .top-tel {
    display: none;
  }
}
header .top-tel .title1 {
  font-size: clamp(12px, 0.14rem, 14px);
}
header .top-tel .title1 img {
  width: 16px;
  margin-right: 4px;
}
header .top-tel .title2 {
  font-size: clamp(14px, 0.24rem, 24px);
  font-family: 'Montserrat';
  line-height: 1;
  color: #fff;
}
header .header-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: clamp(60px, 1rem, 100px);
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  header .header-box {
    margin: auto;
    height: 60px;
  }
}
header .header-box .logo {
  width: clamp(140px, 2.33rem, 233px);
}
@media screen and (max-width: 1024px) {
  header .header-box .logo {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 1024px) {
  header .header-box .logo .img1 {
    display: none;
  }
}
header .header-box .logo .img2 {
  display: none;
}
@media screen and (max-width: 1024px) {
  header .header-box .logo .img2 {
    display: block;
  }
}
header .header-box .logo img {
  max-width: inherit;
  max-height: 100%;
  object-fit: contain;
  width: 100%;
}
header .header-box .header-menu {
  height: 100%;
  flex: 1;
  margin-left: clamp(30px, 0.5rem, 50px);
  display: flex;
  align-items: center;
  /*导航*/
  /*导航*/
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu {
    width: 100%;
    position: absolute;
    background: #fff;
    top: 60px;
    height: 100vh;
    z-index: 10;
    left: 0;
    margin-left: 0;
    padding: 30px 5% 30px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: none;
    overflow: auto;
  }
}
header .header-box .header-menu nav {
  color: #fff;
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
  flex: 1;
  margin-right: clamp(40px, 0.65rem, 65px);
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: auto;
    gap: 0;
    margin-left: 0;
  }
}
header .header-box .header-menu nav .first-item {
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item {
    height: auto;
    width: 100%;
    margin-right: 0;
    justify-content: flex-start;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
  }
}
header .header-box .header-menu nav .first-item .first-box {
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .first-box {
    border-bottom: 1px solid #eee;
  }
}
header .header-box .header-menu nav .first-item.active .first-box::after,
header .header-box .header-menu nav .first-item:hover .first-box::after {
  opacity: 1;
}
header .header-box .header-menu nav .first-item .first-item-title {
  font-size: clamp(14px, 0.18rem, 18px);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #fff;
  transition: all 0.5s;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .first-item-title {
    height: 50px;
    width: 100%;
    justify-content: flex-start;
    color: #333;
    padding: 0;
  }
}
header .header-box .header-menu nav .first-item .first-item-title::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 30%;
  opacity: 0.5 !important;
  transition: all 0.5s;
  background: #eee;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .first-item-title::after {
    display: none;
  }
}
header .header-box .header-menu nav .first-item .first-item-title span {
  margin-left: clamp(6px, 0.1rem, 10px);
}
header .header-box .header-menu nav .first-item .first-item-title span img {
  width: clamp(12px, 0.16rem, 16px);
  filter: brightness(4);
  opacity: 0.8;
}
header .header-box .header-menu nav .first-item:first-child .first-item-title {
  padding-left: 0;
}
header .header-box .header-menu nav .first-item:last-child .first-item-title {
  padding-right: 0;
}
header .header-box .header-menu nav .first-item:last-child .first-item-title::after {
  display: none;
}
header .header-box .header-menu nav .first-item i {
  display: none;
  width: 50px;
  height: 50px;
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item i {
    display: block;
  }
}
header .header-box .header-menu nav .first-item i::before,
header .header-box .header-menu nav .first-item i::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #000;
}
header .header-box .header-menu nav .first-item i::before {
  width: 14px;
  height: 2px;
}
header .header-box .header-menu nav .first-item i::after {
  height: 14px;
  width: 2px;
}
header .header-box .header-menu nav .first-item i.active {
  transform: rotate(45deg);
}
header .header-box .header-menu nav .first-item .second-box {
  position: absolute;
  top: clamp(60px, 1rem, 100px);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  background: #ffffff;
  pointer-events: none;
  padding: clamp(20px, 0.2rem, 20px) clamp(20px, 0.2rem, 20px);
  border-radius: 0 0 10px 10px;
  color: #333;
  width: max-content;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box {
    width: 100%;
    position: relative;
    top: 0;
    background: none;
    opacity: 1;
    visibility: visible;
    transform: translate(0);
    padding: 0;
    box-shadow: none;
    border: none;
    display: none;
    transition: all 0s;
    pointer-events: auto;
    left: 0;
  }
}
header .header-box .header-menu nav .first-item .second-box .second-overflow {
  overflow: auto;
  padding-right: 20px;
  height: clamp(280px, 3.3rem, 330px);
  width: clamp(150px, 1.75rem, 175px);
}
header .header-box .header-menu nav .first-item .second-box .second-overflow::-webkit-scrollbar-thumb {
  background-color: #e40715;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box .second-overflow {
    padding-right: 0;
    width: 100%;
    height: auto;
    overflow: hidden;
  }
}
header .header-box .header-menu nav .first-item .second-box .second-item {
  position: relative;
  height: fit-content;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box .second-item {
    position: relative;
    border-bottom: 1px solid #eee;
  }
}
header .header-box .header-menu nav .first-item .second-box .second-item i {
  bottom: auto;
  height: 40px;
}
header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title {
  color: #666;
  display: flex;
  justify-content: center;
  align-items: baseline;
  font-size: clamp(12px, 0.16rem, 16px);
  text-align: left;
  gap: clamp(6px, 0.16rem, 10px);
  transition: all 0.5s;
  padding-bottom: clamp(6px, 0.1rem, 10px);
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title {
    color: #000;
    text-align: left;
    padding: 10px;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 769px) {
  header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title:hover {
    color: var(--dominant-color);
  }
}
header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title img {
  transform: rotate(-90deg);
  width: clamp(12px, 0.16rem, 16px);
  opacity: 0;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title img {
    display: none;
  }
}
header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title .right-title {
  flex: 1;
  transition: all 0.5s;
  border-bottom: 1px solid transparent;
  padding-bottom: clamp(6px, 0.1rem, 10px);
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title .right-title {
    border-bottom: none;
    padding-bottom: 0;
  }
}
header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title:hover {
  color: #e40715;
}
header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title:hover .right-title {
  border-color: #e40715;
}
header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title:hover span {
  opacity: 1;
}
header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title:hover img {
  opacity: 1;
}
header .header-box .header-menu nav .first-item .second-box .second-item:hover .three-box {
  opacity: 1;
  pointer-events: auto;
}
header .header-box .header-menu nav .first-item .second-box .second-item:hover .three-box2 {
  opacity: 1;
  pointer-events: auto;
}
header .header-box .header-menu nav .first-item .second-box .three-overflow {
  display: none;
  height: clamp(280px, 3.3rem, 330px);
  overflow: auto;
  padding-right: 20px;
  width: clamp(150px, 1.75rem, 175px);
  border-left: 1px solid #eee;
  padding-left: clamp(10px, 0.3rem, 30px);
  margin-left: clamp(10px, 0.1rem, 10px);
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box .three-overflow {
    position: absolute;
    left: clamp(150px, 1.75rem, 175px);
    top: 0;
    width: 70%;
  }
}
header .header-box .header-menu nav .first-item .second-box .three-overflow::-webkit-scrollbar-thumb {
  background-color: #e40715;
}
header .header-box .header-menu nav .first-item .second-box .three-box {
  width: 100%;
  height: 100%;
  display: none;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box .three-box {
    padding: 0;
    pointer-events: auto;
    position: initial;
    opacity: 1;
    display: none;
    border: none;
    width: 100%;
  }
}
header .header-box .header-menu nav .first-item .second-box .three-box .three-box-box {
  height: fit-content;
  display: grid;
}
header .header-box .header-menu nav .first-item .second-box .three-box.active {
  display: block;
}
header .header-box .header-menu nav .first-item .second-box .three-box a {
  display: block;
  transition: all 0.5s;
  color: rgba(0, 0, 0, 0.6);
  font-size: clamp(12px, 0.16rem, 16px);
  border-bottom: 1px solid #eee;
  padding-bottom: clamp(6px, 0.1rem, 10px);
  margin-bottom: clamp(6px, 0.1rem, 10px);
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box .three-box a {
    margin-bottom: 0;
    padding: 10px 20px;
    width: 100%;
    border-bottom: none;
    border-top: 1px solid #eee;
  }
}
header .header-box .header-menu nav .first-item .second-box .three-box a:hover {
  color: #e40715;
  border-color: #e40715;
}
header .header-box .header-menu nav .first-item .second-box .three-box::after {
  width: 20px;
  height: 100%;
  left: -10px;
  position: absolute;
  top: 0;
  background: #fff;
  z-index: -1;
}
@media screen and (min-width: 1025px) {
  header .header-box .header-menu nav .first-item:hover .second-box {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
header .header-box .header-menu nav .logo {
  margin-left: auto;
  margin-right: auto;
}
header .header-box .header-menu nav .logo ~ .first-item {
  margin-left: 60px;
  margin-right: 0;
}
@media screen and (max-width: 1600px) {
  header .header-box .header-menu nav .logo ~ .first-item {
    margin-left: 30px;
  }
}
@media screen and (max-width: 1280px) {
  header .header-box .header-menu nav .logo ~ .first-item {
    margin-left: 15px;
  }
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .logo ~ .first-item {
    margin-left: 0;
  }
}
header .header-box .header-menu nav .shop {
  margin-left: 60px;
  background: #1e1e1e;
  border-radius: 25px;
  width: 120px;
  height: 50px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
}
@media screen and (max-width: 1600px) {
  header .header-box .header-menu nav .shop {
    margin-left: 30px;
  }
}
@media screen and (max-width: 1280px) {
  header .header-box .header-menu nav .shop {
    margin-left: 15px;
  }
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .shop {
    margin-left: 0;
    margin-top: 30px;
    height: 40px;
    font-size: 14px;
    width: 100%;
  }
}
header .header-box .header-menu nav .shop img {
  width: 19px;
  height: 19px;
  margin-right: 10px;
}
header .header-box .header-contact {
  width: clamp(100px, 2.1rem, 210px);
  background: linear-gradient(to right, #ED6B1A 30%, #e30016);
  color: #fff;
  height: 100%;
  gap: clamp(10px, 0.2rem, 20px);
  font-size: clamp(14px, 0.16rem, 16px);
}
@media screen and (max-width: 1024px) {
  header .header-box .header-contact {
    display: none;
  }
}
header .header-box .header-contact img {
  width: clamp(14px, 0.2rem, 20px);
}
header .header-right {
  align-items: center;
  margin-right: 0;
  margin-left: auto;
  display: flex;
  background: var(--dominant-color);
  height: clamp(60px, 0.8rem, 80px);
  position: relative;
  transform: skewX(-25deg) translateX(100px);
  padding-right: 130px;
}
@media screen and (max-width: 1024px) {
  header .header-right {
    display: none;
  }
}
header .phone-menu {
  display: none;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  header .phone-menu {
    display: block;
  }
}
header .phone-button {
  display: none;
}
@media screen and (max-width: 1024px) {
  header .phone-button {
    display: block;
  }
}
header .search {
  position: relative;
  cursor: pointer;
  transition: all 0.5s;
  justify-content: center;
  margin-left: 20px;
  margin-right: 10px;
  width: clamp(24px, 0.46rem, 46px);
  height: clamp(24px, 0.46rem, 46px);
  border-radius: 50%;
  transform: skewX(25deg);
}
@media screen and (max-width: 1024px) {
  header .search {
    margin-left: 20px;
    display: none;
    margin-right: 16px;
  }
}
header .search.phone-search {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  header .search.phone-search {
    display: block !important;
  }
}
header .search .search-click {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  header .search .search-click {
    transform: skewX(-25deg);
    filter: brightness(0);
  }
}
header .search img {
  width: clamp(12px, 0.18rem, 18px);
}
header .language {
  color: #fff;
  position: relative;
  cursor: pointer;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: skewX(25deg);
}
@media screen and (max-width: 1024px) {
  header .language {
    margin-top: 30px;
    display: none;
  }
}
header .language.phone-language {
  transform: skewX(0deg);
  display: none;
  margin-right: 0;
  margin-left: auto;
  margin-top: auto;
  margin-bottom: auto;
}
@media screen and (max-width: 1024px) {
  header .language.phone-language {
    display: flex;
  }
}
header .language.phone-language .language-title {
  filter: brightness(0);
}
header .language .language-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: clamp(14px, 0.17rem, 17px);
  cursor: pointer;
  grid-gap: 4px;
}
@media screen and (max-width: 1024px) {
  header .language .language-title {
    color: #333;
  }
}
header .language .language-title img {
  width: clamp(12px, 0.18rem, 18px);
}
@media screen and (max-width: 1024px) {
  header .language .language-title img {
    filter: none;
  }
}
header .language .language-show {
  position: absolute;
  top: 10px;
  padding-top: 40px;
  color: #333;
  left: 50%;
  margin: auto;
  width: 120px;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) translateX(-50%);
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  header .language .language-show {
    padding-top: 10px;
  }
}
header .language .language-show .language-show-box {
  background: var(--dominant-color);
}
header .language .language-show .language-show-item {
  padding: 10px 0;
  background: #fff;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 50px rgba(54, 56, 79, 0.11);
  box-shadow: 0 10px 50px rgba(54, 56, 79, 0.11);
  display: block;
  text-align: center;
  transition: all 0.5s;
}
header .language .language-show .language-show-item:hover {
  background: var(--dominant-color);
  color: #fff;
}
header .language:hover .language-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) translateX(-50%);
  pointer-events: auto;
}
header .header-search-box {
  display: none;
  height: 100px;
  position: fixed;
  z-index: 99;
  width: 100%;
}
header .header-search {
  position: fixed;
  top: clamp(60px, 0.8rem, 80px);
  left: 0;
  width: 100%;
  background: var(--dominant-color);
  height: 100px;
  z-index: 99;
}
@media screen and (max-width: 1024px) {
  header .header-search {
    top: 60px;
  }
}
header .header-search label {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
  display: block;
  width: 100%;
  position: relative;
}
header .header-search label input {
  width: 100%;
  height: 50px;
  border: none;
  border-bottom: 1px solid #eee;
  background: none;
  color: #fff;
  font-family: Montserrat-Regular;
}
header .header-search label input::placeholder {
  color: #fff;
  font-family: Montserrat-Regular;
}
header .header-search label button {
  width: 50px;
  height: 50px;
  background: none;
  color: #fff;
  font-size: 16px;
  position: absolute;
  right: 0;
  top: 0;
}
header .header-search label button img {
  width: 18px;
  filter: contrast(0) brightness(100);
}
header .header-search label i {
  position: absolute;
  font-size: 20px;
  right: -50px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
}
@media screen and (min-width: 1025px) {
  .index header .logo {
    filter: none;
  }
  .index header .header-box .header-menu nav .first-item .first-item-title {
    color: rgba(255, 255, 255, 0.6);
  }
  .index header .header-box .header-menu nav .first-item:hover .first-item-title,
  .index header .header-box .header-menu nav .first-item.active .first-item-title {
    color: #fff;
  }
}
/*底部样式*/
.footer-messages {
  background: url('../images/img38.jpg') no-repeat center / cover;
  padding-top: clamp(40px, 1.2rem, 120px);
  padding-bottom: clamp(40px, 1.2rem, 120px);
}
.footer-messages .footer-messages-box {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer-messages .footer-messages-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
.footer-messages .footer-messages-box .left {
  flex-basis: 40%;
}
.footer-messages .footer-messages-box .left .title {
  font-size: clamp(16px, 0.36rem, 36px);
}
.footer-messages .footer-messages-box .left .summary {
  font-size: clamp(14px, 0.18rem, 18px);
  margin-top: clamp(10px, 0.2rem, 20px);
}
@media screen and (max-width: 768px) {
  .footer-messages .footer-messages-box .right {
    width: 100%;
  }
}
.footer-messages .footer-messages-box .right form {
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.2rem, 20px);
}
@media screen and (max-width: 768px) {
  .footer-messages .footer-messages-box .right form {
    width: 100%;
  }
}
.footer-messages .footer-messages-box .right form label {
  display: block;
}
@media screen and (max-width: 768px) {
  .footer-messages .footer-messages-box .right form label {
    flex: 1;
  }
}
.footer-messages .footer-messages-box .right form label input {
  height: clamp(50px, 0.58rem, 58px);
  width: clamp(300px, 3.8rem, 380px);
  border-radius: 10px;
  font-size: clamp(14px, 0.16rem, 16px);
  color: #000;
  border: none;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .footer-messages .footer-messages-box .right form label input {
    width: 100%;
  }
}
.footer-messages .footer-messages-box .right form label input::placeholder {
  color: #666;
}
.footer-messages .footer-messages-box .right form button {
  background: var(--dominant-color);
  font-size: clamp(14px, 0.18rem, 18px);
  color: #fff;
  height: clamp(50px, 0.58rem, 58px);
  width: clamp(120px, 1.46rem, 146px);
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .footer-messages .footer-messages-box .right form button {
    width: 80px;
  }
}
.footer-messages .footer-messages-box .right .summary {
  font-size: clamp(14px, 0.18rem, 18px);
  margin-top: clamp(10px, 0.2rem, 20px);
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-messages .footer-messages-box .right .summary input {
  width: 20px;
  height: 20px;
  -webkit-appearance: none;
  /* Safari 和 Chrome */
  -moz-appearance: none;
  /* Firefox */
  appearance: none;
  /* 适用于所有现代浏览器 */
  background: #fff;
  position: relative;
}
.footer-messages .footer-messages-box .right .summary input:checked {
  background: var(--dominant-color) url('../images/check.webp') no-repeat center / contain;
}
.footer-messages .footer-messages-box .right .summary a {
  color: var(--dominant-color);
}
.footer {
  z-index: 4;
  position: relative;
  background: url('../images/img26.jpg') no-repeat center / cover;
}
.footer .footer-box {
  padding-top: clamp(40px, 1.2rem, 120px);
  padding-bottom: clamp(20px, 0.6rem, 60px);
  display: flex;
  justify-content: space-between;
  gap: clamp(30px, 0.4rem, 40px);
}
@media screen and (max-width: 768px) {
  .footer .footer-box {
    flex-direction: column;
  }
}
.footer .footer-box .footer-location {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
  .footer .footer-box .footer-location {
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer .footer-box .footer-location .item {
  display: flex;
  gap: clamp(6px, 0.1rem, 10px);
}
.footer .footer-box .footer-location .item .icon {
  width: clamp(20px, 0.24rem, 24px);
}
.footer .footer-box .footer-location .item .text .key {
  font-size: clamp(14px, 0.18rem, 18px);
}
.footer .footer-box .footer-location .item .text .value {
  color: #666;
  opacity: 0.6;
  font-size: clamp(12px, 0.14rem, 14px);
  font-weight: 300;
}
.footer .footer-box .footer-menu {
  display: flex;
  flex-basis: 50%;
  justify-content: space-between;
  border-top: 1px solid #eee;
  margin-top: clamp(30px, 0.4rem, 40px);
  padding-top: clamp(30px, 0.4rem, 40px);
}
@media screen and (max-width: 768px) {
  .footer .footer-box .footer-menu {
    flex-direction: column;
    grid-gap: 0;
  }
}
.footer .footer-box .footer-menu .item {
  position: relative;
  color: #000;
}
@media screen and (max-width: 768px) {
  .footer .footer-box .footer-menu .item {
    padding-bottom: 0;
  }
}
.footer .footer-box .footer-menu .item.item-last .first-item {
  margin-bottom: 20px;
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  .footer .footer-box .footer-menu .item.item-last .first-item {
    margin-bottom: 0;
  }
}
.footer .footer-box .footer-menu .first-item {
  display: block;
  font-size: clamp(14px, 0.18rem, 18px);
  position: relative;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .footer .footer-box .footer-menu .first-item {
    pointer-events: auto;
    height: 50px;
    line-height: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  .footer .footer-box .footer-menu .first-item i {
    width: 26px;
    height: 64px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    cursor: pointer;
    transition: all 0.5s;
    display: block;
  }
  .footer .footer-box .footer-menu .first-item i::before,
  .footer .footer-box .footer-menu .first-item i::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: #000;
    transition: all 0.5s;
  }
  .footer .footer-box .footer-menu .first-item i::before {
    width: 12px;
    height: 2px;
  }
  .footer .footer-box .footer-menu .first-item i::after {
    height: 12px;
    width: 2px;
  }
  .footer .footer-box .footer-menu .first-item i.active::after {
    transform: rotate(90deg);
  }
}
.footer .footer-box .footer-menu .first-summary {
  border-bottom: 1px solid #eee;
  font-size: clamp(12px, 0.16rem, 16px);
  margin-bottom: 20px;
  padding-bottom: 20px;
  margin-top: 20px;
}
.footer .footer-box .footer-menu .bottom .b-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.footer .footer-box .footer-menu .bottom .b-item .icon {
  margin-right: 20px;
}
.footer .footer-box .footer-menu .second-box {
  margin-top: 20px;
}
@media screen and (max-width: 1600px) {
  .footer .footer-box .footer-menu .second-box {
    min-width: auto;
  }
}
.footer .footer-box .footer-menu .second-box img {
  max-width: 120px;
}
@media screen and (max-width: 768px) {
  .footer .footer-box .footer-menu .second-box {
    margin-top: 20px;
    line-height: 1.6;
    border-top: none;
    padding-top: 0;
    display: none;
  }
}
.footer .footer-box .footer-menu .second-box a,
.footer .footer-box .footer-menu .second-box span {
  display: block;
  font-size: clamp(12px, 0.16rem, 16px);
  transition: all 0.5s;
  position: relative;
  width: fit-content;
  margin-bottom: 6px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .footer .footer-box .footer-menu .second-box a,
  .footer .footer-box .footer-menu .second-box span {
    width: 100%;
  }
}
.footer .footer-box .footer-menu .second-box a::after {
  width: 0;
  background: var(--dominant-color);
  height: 1px;
  bottom: 0;
  left: 0;
  position: absolute;
  transition: all 0.5s;
}
.footer .footer-box .footer-menu .second-box a:hover {
  color: #000;
}
.footer .footer-box .footer-menu .second-box a:hover::after {
  width: 100%;
}
.footer .footer-left {
  flex-basis: 36%;
}
.footer .footer-left .footer-logo img {
  width: clamp(200px, 2.33rem, 233px);
}
.footer .footer-left .footer-left-add {
  margin-top: clamp(30px, 0.6rem, 60px);
  display: flex;
  align-items: center;
  gap: clamp(0.6px, 0.1rem, 10px);
  font-size: clamp(14px, 0.28rem, 28px);
  font-weight: 500;
}
.footer .footer-left .footer-left-tel {
  margin-top: clamp(20px, 0.3rem, 30px);
}
.footer .footer-left .footer-left-tel .sup {
  display: flex;
  align-items: center;
  font-size: clamp(14px, 0.18rem, 18px);
  gap: clamp(4px, 0.1rem, 10px);
}
.footer .footer-left .footer-left-tel .number {
  font-size: clamp(16px, 0.36rem, 36px);
  color: var(--dominant-color);
  font-weight: 500;
  line-height: 1;
}
.footer .footer-left .footer-left-add2 {
  margin-top: clamp(20px, 0.3rem, 30px);
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.1rem, 10px);
  font-size: clamp(14px, 0.18rem, 18px);
  font-weight: 300;
}
.footer .footer-left .footer-left-add2 img {
  flex-shrink: 0;
}
.footer .footer-left .footer-left-bottom {
  margin-top: clamp(30px, 0.6rem, 60px);
  display: flex;
  gap: clamp(10px, 0.2rem, 20px);
}
.footer .footer-left .footer-left-bottom .item {
  width: clamp(66px, 0.88rem, 88px);
}
@media screen and (max-width: 768px) {
  .footer .footer-left .footer-left-bottom .item {
    width: 50%;
  }
}
.footer .footer-left .footer-left-bottom .text {
  font-size: clamp(12px, 0.14rem, 14px);
  font-weight: 300;
  text-align: center;
  opacity: 0.6;
  line-height: 1.4;
  margin-top: 6px;
}
.footer .footer-left .footer-link {
  margin-top: clamp(30px, 0.6rem, 60px);
  background: #f3f3f1;
  padding: clamp(20px, 0.3rem, 30px);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.2rem, 20px);
}
.footer .footer-left .footer-link .left {
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.1rem, 10px);
  font-size: clamp(14px, 0.18rem, 18px);
}
.footer .footer-left .footer-link .left img {
  filter: brightness(0);
}
.footer .footer-left .footer-link .right {
  flex: 1;
}
.footer .footer-left .footer-link .right select {
  width: 100%;
  background: none;
  border: none;
  font-size: clamp(14px, 0.18rem, 18px);
}
.footer .footer-left .footer-button {
  margin-top: clamp(30px, 0.6rem, 60px);
  display: flex;
  gap: clamp(10px, 0.2rem, 20px);
}
.footer .footer-left .footer-button .button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cccccc;
  border-radius: 10px;
  padding: clamp(6px, 0.1rem, 10px) clamp(20px, 0.3rem, 30px);
  color: #cccccc;
  gap: clamp(8px, 0.1rem, 10px);
  transition: all 0.5s;
  cursor: pointer;
}
.footer .footer-left .footer-button .button img {
  filter: brightness(0);
  opacity: 0.4;
  transition: all 0.5s;
}
.footer .footer-left .footer-button .button:hover {
  background: var(--dominant-color);
  color: #fff;
}
.footer .footer-left .footer-button .button:hover img {
  filter: none;
  opacity: 1;
}
.footer .footer-copyright {
  margin-top: clamp(30px, 0.6rem, 60px);
  color: rgba(0, 0, 0, 0.4);
  font-size: clamp(12px, 0.14rem, 14px);
}
@media screen and (max-width: 768px) {
  .footer .footer-copyright {
    padding: 20px 0;
    border-top: none;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.footer .footer-copyright .left {
  align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .footer .footer-copyright .left {
    flex-direction: column;
    gap: 0;
  }
}
.footer .footer-copyright .left .footer-logo {
  width: clamp(120px, 1.97rem, 197px);
  filter: brightness(100);
}
@media screen and (max-width: 768px) {
  .footer .footer-copyright .left .footer-logo {
    width: 120px;
    margin: 40px auto 20px 0;
  }
}
.footer .footer-copyright .left .text {
  line-height: 1.8;
}
.go-top {
  width: 140px;
  height: 50px;
  z-index: 1;
  font-size: 16px;
  border-radius: 25px;
  transition: all 0.5s;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}
.go-top img {
  width: 16px;
  margin-left: 20px;
}
.go-top i {
  transition: all 0.5s;
}
.go-top:hover {
  background: var(--dominant-color) !important;
}
.go-top:hover i {
  color: #fff;
}
/*底部样式*/
.firight {
  position: fixed;
  right: clamp(20px, 0.4rem, 40px);
  bottom: 15%;
  z-index: 9;
}
@media screen and (max-width: 768px) {
  .firight {
    right: 0;
  }
}
.firight a {
  width: clamp(60px, 0.6rem, 60px);
  height: clamp(60px, 0.6rem, 60px);
  background-color: #fff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
  border-radius: 10px;
  transition: all 0.5s;
}
.firight a .fade-tel {
  position: absolute;
  right: 80%;
  background: #fff;
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 10px 0 0 10px;
  transition: all 0.5s;
  opacity: 0;
  pointer-events: none;
}
.firight a:hover .fade-tel {
  opacity: 1;
  pointer-events: auto;
  font-size: clamp(120x,0.16rem,16px);
  color: #000;
}
.firight a p {
  text-align: center;
  font-size: 14px;
  color: #666;

}
@media screen and (max-width: 768px) {
  .t {
    display: none;
  }
}
.frimg {
  height: 35px;
  line-height: 35px;
}
.wxfr {
  position: relative;
}
.frewm {
  position: absolute;
  right: 100px;
  top: 10%;
  display: none;
  max-width: fit-content;
  width: 140px;
}
@media screen and (max-width: 768px) {
  .frewm {
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 100%;
  }
}
.f-contact-box {
  opacity: 0;
  pointer-events: none;
  width: max-content;
  border-radius: 10px;
  position: absolute;
  right: 150%;
  top: 0;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
  background: #fff;
  padding: clamp(10px, 0.2rem, 20px);
  color: #666;
  font-size: clamp(12px, 0.14rem, 14px);
}
.f-contact-box .f-list {
  margin-bottom: clamp(10px, 0.2rem, 20px);
  display: flex;
  align-items: center;
  gap: 10px;
}
.f-contact-box .f-code {
  border-top: 1px solid #eee;
  text-align: center;
  padding-top: 20px;
}
.f-contact-box .f-code .img {
  border: 1px solid #eee;
  padding: 10px;
  margin: 10px auto;
}
.f-contact-box::after {
  width: 100%;
  top: 0;
  right: -50%;
  position: absolute;
  content: '';
  height: 100%;
}
.f-contact:hover .f-contact-box {
  opacity: 1;
  pointer-events: auto;
}
.login {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
}
.login .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.login .login-box {
  width: 90%;
  max-width: clamp(500px, 0.5rem, 500px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
}
.login .login-box .member-top {
  background: #3d3d3d;
  height: clamp(60px, 0.8rem, 80px);
  font-size: clamp(16px, 0.24rem, 24px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login .login-box .member-box {
  padding: clamp(20px, 0.3rem, 30px);
  background: #fff;
}
.login .login-box .member-box .member-login label {
  position: relative;
  margin-bottom: 30px;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login .login-box .member-box .member-login label i {
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
}
.login .login-box .member-box .member-login label input {
  width: 100%;
  padding-left: 30px;
  outline: none;
  border: none;
  height: clamp(40px, 0.48rem, 48px);
}
.login .login-box .member-box .member-login label input::placeholder {
  color: #999;
}
.login .login-box .member-box .member-bottom {
  border-top: 1px solid #eee;
  padding-top: clamp(20px, 0.3rem, 30px);
  margin-top: clamp(20px, 0.3rem, 30px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(12px, 0.14rem, 14px);
}
.login .login-box .member-box .member-bottom input {
  border: 1px solid #eee;
  width: 16px;
  height: 16px;
  -webkit-appearance: none;
  /* Safari 和 Chrome */
  -moz-appearance: none;
  /* Firefox */
  appearance: none;
  /* 适用于所有现代浏览器 */
  background: #fff;
  position: relative;
}
.login .login-box .member-box .member-bottom input:checked {
  border: none;
  background: var(--dominant-color) url('../images/check.webp') no-repeat center / contain;
}
.login .login-box .member-box .member-bottom .left label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
}
.login .login-box .member-box .member-bottom .left label span {
  height: fit-content;
}
.login .login-box .member-box .member-bottom .wechat-login-btn,
.login .login-box .member-box .member-bottom .member-login-btn {
  color: var(--dominant-color);
  cursor: pointer;
}
.login .login-box .member-box .member-bottom .member-login-btn {
  display: none;
}
.login .login-box .member-box .wechat-login {
  display: none;
  text-align: center;
  margin: 40px auto;
}
.login .login-box .member-box .wechat-login .img {
  width: clamp(150px, 1.5rem, 150px);
  padding: 10px;
  border: 1px solid #eee;
  margin: 10px auto;
  border-radius: 10px;
}
.login .login-box .member-box .wechat-login a {
  color: var(--dominant-color);
}
.login .login-box button {
  background: var(--dominant-color);
  height: 48px;
  border: none;
  width: 100%;
  color: #fff;
  font-size: 18px;
}
.login .login-box button:hover {
  opacity: 0.8;
}
.login .login-box .member-register {
  display: none;
}
.login .login-box .member-register label {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .login .login-box .member-register label {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.login .login-box .member-register label span {
  width: 80px;
  color: #999;
  font-size: 14px;
  text-align: right;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .login .login-box .member-register label span {
    text-align: left;
  }
}
.login .login-box .member-register label input {
  width: calc(100% - 110px);
  height: 48px;
  border: 1px solid #eee;
}
@media screen and (max-width: 768px) {
  .login .login-box .member-register label input {
    width: 100%;
  }
}
.login .login-box .member-register label .checkCode {
  margin-left: auto;
  text-align: right;
}
.login .login-box .member-register label .change {
  width: 100px;
  margin-left: 15px;
}
.login .login-box .member-register label.check {
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .login .login-box .member-register label.check {
    flex-direction: row;
    align-items: flex-end;
  }
}
.login .login-box .member-register label.check .check-box {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .login .login-box .member-register label.check .check-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.login .login-box .member-register label.check .change {
  color: #999;
  font-size: 14px;
  margin-top: 4px;
}
.login .login-box .member-register label.check .change a {
  color: var(--dominant-color);
}
.login .login-box .member-register .tip {
  width: calc(100% - 110px);
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .login .login-box .member-register .tip {
    width: 100%;
  }
}
.login .login-box .member-register .tip .read label {
  width: 100%;
  display: flex;
  align-items: center;
}
.login .login-box .member-register .tip .read input {
  border: 1px solid #eee;
  margin-right: 6px;
  width: 16px;
  height: 16px;
  -webkit-appearance: none;
  /* Safari 和 Chrome */
  -moz-appearance: none;
  /* Firefox */
  appearance: none;
  /* 适用于所有现代浏览器 */
  background: #fff;
  position: relative;
}
.login .login-box .member-register .tip .read input:checked {
  border: none;
  background: var(--dominant-color) url('../images/check.webp') no-repeat center / contain;
}
.login .login-box .member-register .tip button {
  height: 48px;
  background: var(--dominant-color);
  font-size: 18px;
  width: 100%;
  border: none;
  margin: 15px auto;
  color: #fff;
}
.login .login-box .member-register .tip button:hover {
  opacity: 0.6;
}
.login .login-box .member-register .tip .login {
  color: #999;
  text-align: right;
}
.login .login-box .member-register .tip .login a {
  color: var(--dominant-color);
}
.login .login-box .member-register .tip .login a:hover {
  text-decoration: underline;
}
.login .login-box .logon-tip {
  color: #999;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
.login .login-box .logon-tip span a {
  color: var(--dominant-color);
}
.login .login-box .logon-tip a:hover {
  text-decoration: underline;
}
.istop {
  position: fixed;
  right: 1%;
  bottom: 10vh;
  z-index: 12;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  transition: all 0.5s ease;
}
.istop.show {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .istop {
    right: 3%;
  }
}
.istop a,
.istop span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(30px, 0.5rem, 50px);
  height: clamp(30px, 0.5rem, 50px);
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: var(--dominant-color);
  color: #fff;
  font-size: clamp(16px, 0.24rem, 24px);
}
.istop a img,
.istop span img {
  display: block;
  margin: auto;
  width: 33.33333333%;
}
.page-messages {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  display: none;
}
.page-messages .mask {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.page-messages .apply-download-content {
  max-width: 900px;
  border-radius: 10px;
  padding: clamp(20px, 0.4rem, 40px) clamp(20px, 0.4rem, 40px);
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-height: 80vh;
  overflow: auto;
  width: 90%;
}
.page-messages .apply-download-content .close {
  cursor: pointer;
  position: absolute;
  right: clamp(20px, 0.2rem, 20px);
  top: clamp(20px, 0.2rem, 20px);
  font-size: 24px;
  opacity: 0.6;
}
.page-messages .apply-download-content .apply-download-title {
  font-size: clamp(16px, 0.3rem, 30px);
  font-family: var(--font1);
  text-align: center;
  margin-bottom: clamp(10px, 0.2rem, 20px);
}
.page-messages .apply-download-content .form {
  text-align: center;
}
.page-messages .apply-download-content .box {
  display: flex;
  flex-wrap: wrap;
  gap: 0 clamp(20px, 0.2rem, 20px);
}
.page-messages .apply-download-content .layui-form-item {
  flex-basis: calc((100% - clamp(20px, 0.2rem, 20px)) / 2);
}
@media screen and (max-width: 768px) {
  .page-messages .apply-download-content .layui-form-item {
    flex-basis: 100%;
  }
}
.page-messages .apply-download-content .layui-form-item.w100 {
  flex-basis: 100%;
}
.page-messages .apply-download-content .layui-form-item .layui-form-select dl dd.layui-this {
  background: var(--dominant-color);
}
.page-messages .apply-download-content .layui-form-item .layui-form-label {
  float: none;
  padding-left: 0;
  text-align: left;
  width: 100%;
  padding-top: 0;
  font-size: clamp(12px, 0.16rem, 16px);
}
.page-messages .apply-download-content .layui-form-item .layui-input-block {
  margin-left: 0;
}
.page-messages .apply-download-content .layui-form-item .layui-input-block input {
  border-radius: 8px;
  height: clamp(40px, 0.5rem, 50px);
}
.page-messages .apply-download-content .code-box {
  gap: 0 clamp(20px, 0.2rem, 20px);
  display: flex;
  align-items: flex-end;
}
.page-messages .apply-download-content .code-box .layui-form-item {
  flex: 1;
}
.page-messages .apply-download-content .code-box .code {
  flex-basis: clamp(100px, 2rem, 200px);
  margin-bottom: 15px;
  height: clamp(40px, 0.5rem, 50px);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #b3b3b3;
  border-radius: 8px;
  overflow: hidden;
}
.page-messages .apply-download-content button {
  border-radius: 99px;
  background: var(--dominant-color);
  font-size: clamp(12px, 0.18rem, 18px);
  color: #fff;
  height: clamp(40px, 0.5rem, 50px);
  width: clamp(150px, 2rem, 200px);
  margin-top: clamp(20px, 0.4rem, 40px);
  transition: all 0.5s;
}
.page-messages .apply-download-content button:hover {
  opacity: 0.6;
}
.firight {
  position: fixed;
  right: clamp(20px, 0.4rem, 40px);
  bottom: 15%;
  z-index: 9;
}
@media screen and (max-width: 768px) {
  .firight {
    right: 0;
    bottom: 5%;
  }
}
.firight a {
  width: clamp(50px, 0.6rem, 60px);
  height: clamp(50px, 0.6rem, 60px);
  background-color: #fff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
  border-radius: 10px;
  transition: all 0.5s;
}
.firight a p {
  text-align: center;
  font-size: clamp(12px, 0.14rem, 14px);
  color: #666;
}
@media screen and (max-width: 768px) {
  .t {
    display: none;
  }
}
.frimg {
  height: 35px;
  line-height: 35px;
}
.wxfr {
  position: relative;
}
.frewm {
  position: absolute;
  right: 100px;
  top: 10%;
  display: none;
  max-width: fit-content;
  width: 140px;
}
@media screen and (max-width: 768px) {
  .frewm {
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 100%;
  }
}
.f-contact-box {
  opacity: 0;
  pointer-events: none;
  width: max-content;
  border-radius: 10px;
  position: absolute;
  right: 150%;
  top: 0;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
  background: #fff;
  padding: clamp(10px, 0.2rem, 20px);
  color: #666;
  font-size: clamp(12px, 0.14rem, 14px);
}
.f-contact-box .f-list {
  margin-bottom: clamp(10px, 0.2rem, 20px);
  display: flex;
  align-items: center;
  gap: 10px;
}
.f-contact-box .f-code {
  border-top: 1px solid #eee;
  text-align: center;
  padding-top: 20px;
}
.f-contact-box .f-code .img {
  border: 1px solid #eee;
  padding: 10px;
  margin: 10px auto;
}
.f-contact-box::after {
  width: 100%;
  top: 0;
  right: -50%;
  position: absolute;
  content: '';
  height: 100%;
}
.f-contact:hover .f-contact-box {
  opacity: 1;
  pointer-events: auto;
}
/*根元素代码*/
:root {
  /*--dominant-color:#3a93bd;*/
  --dominant-color: #c11920;
  /*--linear-color:linear-gradient(to right ,#3a93bd 14%,#0079b2);*/
  --linear-color: linear-gradient(223deg, rgba(99, 229, 242, 0.2), rgba(58, 174, 239, 0.8));
}
/*--------------------------------------------------------*/
/*通用*/
.index-padding {
  padding: clamp(40px, 0.5rem, 50px) 0;
}
@media screen and (max-width: 768px) {
  .index-padding {
    padding: 40px 0;
  }
}
.index-padding2 {
  padding: clamp(40px, 1.2rem, 120px) 0;
}
@media screen and (max-width: 768px) {
  .index-padding2 {
    padding: 40px 0;
  }
}
.index-padding3 {
  padding: clamp(40px, 1rem, 100px) 0;
}
.index-title {
  color: #000;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .index-title {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
}
.index-title .left {
  display: flex;
  color: #fff;
  font-size: clamp(24px, 0.48rem, 48px);
  font-weight: 700;
  align-items: flex-end;
  gap: clamp(10px, 0.1rem, 10px);
  position: relative;
  flex-basis: clamp(270px, 4rem, 400px);
  line-height: 1.2;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .index-title .left {
    flex-basis: auto;
    align-items: center;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .index-title .left img {
    width: 25px;
  }
}
.index-title .left .fade-img {
  position: absolute;
  left: -5%;
  bottom: -30%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .index-title .left .fade-img {
    width: 200px;
  }
}
.index-title .right {
  flex: 1;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .index-title .right {
    width: 100%;
  }
}
.index-title .sup {
  font-size: clamp(12px, 0.18rem, 18px);
  font-weight: 400;
  color: #e30016;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 0.2rem, 20px);
}
.index-title .sup .point {
  background: #f07c00;
  border-radius: 50%;
  width: clamp(6px, 0.1rem, 10px);
  height: clamp(6px, 0.1rem, 10px);
}
.index-title .title {
  font-size: clamp(20px, 0.36rem, 36px);
  line-height: 1.6;
  font-weight: 700;
}
.index-title .tip {
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--dominant-color);
  font-size: 20px;
}
@media screen and (max-width: 1440px) {
  .index-title .tip {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .index-title .tip {
    font-size: 14px;
    margin-bottom: 6px;
  }
}
.index-title .summary {
  font-size: clamp(14px, 0.18rem, 18px);
  line-height: 1.6;
  color: #333333;
  margin-top: clamp(10px, 0.2rem, 20px);
}
.index-title .summary span {
  color: #000;
}
.index-title.textC {
  text-align: center;
}
.index-title.colorW {
  color: #fff;
}
.f-more {
  width: fit-content;
  height: 0.58rem;
  min-height: 48px;
  background: #fff;
  color: #000;
  transition: all 0.5s;
  position: relative;
  border-radius: 999px;
  font-size: clamp(12px, 0.16rem, 16px);
  text-transform: uppercase;
  border: 1px solid transparent;
}
@media screen and (max-width: 768px) {
  .f-more {
    height: 35px;
    min-height: auto;
    border-radius: 29px;
  }
}
.f-more span {
  padding: 0 0.3rem;
  flex: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .f-more span {
    padding: 0 10px;
  }
}
.f-more:hover {
  background: var(--dominant-color);
  color: #fff;
}
.f-more:hover .icon {
  background: #fff;
}
.f-more:hover .icon i {
  color: var(--dominant-color);
}
.f-more .icon {
  width: 0.48rem;
  height: 0.48rem;
  min-width: 38px;
  min-height: 38px;
  border-radius: 50%;
  background: var(--dominant-color);
  margin-right: 0.05rem;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .f-more .icon {
    min-width: auto;
    min-height: auto;
    width: 25px;
    height: 25px;
    margin-right: 5px;
  }
}
.f-more .icon i {
  color: #fff;
  transition: all 0.5s;
}
.f-more-show {
  font-size: 16px;
  color: var(--dominant-color);
  line-height: 1;
  padding: 15px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: auto;
  cursor: pointer;
}
.zhan-wei {
  height: clamp(60px, 0.8rem, 80px);
}
@media screen and (max-width: 1024px) {
  .zhan-wei {
    display: none;
  }
}
.zhan-wei2 {
  height: 100px;
}
@media screen and (max-width: 1024px) {
  .zhan-wei2 {
    height: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .zhan-wei2 {
    display: none;
  }
}
/*--------------------------------------------------------*/
/*--------------------------------------------------------*/
/*首页*/
/*轮播*/
.banner {
  width: 100%;
}
.banner .video-swiper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.banner .img {
  height: 100%;
}
.banner .img video {
  display: block;
}
.banner .img img,
.banner .img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 10s;
  max-height: 100vh;
}
@media screen and (max-width: 768px) {
  .banner .img img,
  .banner .img video {
    height: 70vh;
  }
}
.banner .swiper-banner {
  height: 100%;
  position: relative;
}
.banner .swiper-banner .text {
  margin: auto;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 30%;
  top: 0;
  color: #fff;
  text-align: left;
  height: fit-content;
  z-index: 4;
}
@media screen and (max-width: 1366px) {
  .banner .swiper-banner .text {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .banner .swiper-banner .text {
    bottom: 0;
  }
}
.banner .swiper-banner .text .img {
  transition: all 1s;
  transform: translateY(100px);
  opacity: 0;
}
.banner .swiper-banner .text .img img {
  max-width: 724px;
  width: 37.708vw;
}
.banner .swiper-banner .text .sup {
  transition: all 1s;
  transform: translateY(100px);
  opacity: 0;
  font-size: 20px;
  color: #000;
}
@media screen and (max-width: 1600px) {
  .banner .swiper-banner .text .sup {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .banner .swiper-banner .text .sup {
    font-size: 14px;
  }
}
.banner .swiper-banner .text .title {
  font-size: clamp(18px, 0.58rem, 58px);
  transition: all 1s;
  transform: translateY(100px);
  opacity: 0;
  width: 100%;
  line-height: 1.6;
  text-transform: uppercase;
  font-weight: 500;
}
.banner .swiper-banner .text .title span {
  display: block;
  font-size: clamp(14px, 0.36rem, 36px);
}
.banner .swiper-banner .text .summary {
  font-size: clamp(14px, 0.22rem, 22px);
  transition: all 1s;
  transform: translateY(100px);
  opacity: 0;
  width: 100%;
  margin-bottom: 40px;
}
.banner .swiper-banner .text .banner-more {
  transition: all 1s;
  transform: translateY(100px);
  opacity: 0;
  text-align: left;
  margin-top: 40px;
  display: flex;
  gap: clamp(4px, 0.1rem, 10px);
  background: var(--dominant-color);
  border-radius: 10px;
  width: clamp(120px, 1.55rem, 155px);
  height: clamp(40px, 0.48rem, 48px);
  align-items: center;
  justify-content: center;
}
.banner .swiper-banner .video-text {
  top: auto;
  bottom: 10%;
}
@media screen and (max-width: 768px) {
  .banner .swiper-banner .video-text {
    bottom: 20%;
  }
}
.banner .swiper-banner .banner-img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0.5rem;
  margin: auto;
  height: fit-content;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .banner .swiper-banner .banner-img {
    top: 20%;
    bottom: auto;
    text-align: center;
  }
}
.banner .swiper-banner .banner-img img {
  width: 6.4rem;
  max-width: 640px;
}
@media screen and (max-width: 768px) {
  .banner .swiper-banner .banner-img img {
    width: 80%;
  }
}
.banner .swiper-banner .swiper-slide-active img {
  transform: scale(1.05);
}
.banner .swiper-banner .swiper-slide-active .img {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.3s;
}
.banner .swiper-banner .swiper-slide-active .sup {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.3s;
}
.banner .swiper-banner .swiper-slide-active .title {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.5s;
}
.banner .swiper-banner .swiper-slide-active .summary {
  transform: translateY(0);
  transition-delay: 0.7s;
  opacity: 1;
}
.banner .swiper-banner .swiper-slide-active .numbers {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.7s;
}
.banner .swiper-banner .swiper-slide-active .tip {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.9s;
}
.banner .swiper-banner .swiper-slide-active .banner-more {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.9s;
}
.banner .swiper-banner .swiper-horizontal > .swiper-pagination-bullets,
.banner .swiper-banner .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 30px;
  width: 90%;
  margin: auto;
  left: 0;
  right: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .banner .swiper-banner .swiper-horizontal > .swiper-pagination-bullets,
  .banner .swiper-banner .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 30px;
  }
}
.banner .swiper-banner .swiper-pagination-box {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 5;
  margin: auto;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .banner .swiper-banner .swiper-pagination-box {
    width: 70%;
    right: 0;
    height: 30px;
  }
}
.banner .swiper-banner .swiper-pagination {
  position: initial;
}
.banner .swiper-banner .swiper-pagination-bullet {
  --swiper-pagination-bullet-inactive-color: #fff;
  opacity: 0.4;
  --swiper-pagination-bullet-width: 24px;
  --swiper-pagination-bullet-height: 6px;
  --swiper-pagination-bullet-horizontal-gap: 7px;
  position: relative;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .banner .swiper-banner .swiper-pagination-bullet {
    --swiper-pagination-bullet-width: 16px;
    --swiper-pagination-bullet-height: 4px;
  }
}
.banner .swiper-banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  --swiper-pagination-bullet-width: 60px;
  --swiper-pagination-color: #fff;
  opacity: 1;
}
.banner .swiper-banner .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  background: var(--dominant-color);
}
.banner .swiper-banner .swiper-pager {
  display: flex;
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  z-index: 1;
  width: 90%;
  max-width: 1740px;
  margin: auto;
  align-items: center;
  color: #fff;
}
.banner .swiper-banner .swiper-pagination-progressbar {
  position: initial;
  max-width: 700px;
  margin: 0 20px;
}
@media screen and (max-width: 768px) {
  .banner .swiper-banner .swiper-pagination-progressbar {
    max-width: 50%;
  }
}
.banner .swiper-banner .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #fff;
}
.banner .swiper-banner .swiper-pagination-progressbar.swiper-pagination-horizontal {
  height: 2px;
}
.index-menu {
  margin-top: clamp(-120px, -1.2rem, 100px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .index-menu {
    margin-top: 0;
    background: var(--dominant-color);
  }
}
.index-menu .index-menu-box {
  height: clamp(90px, 1.2rem, 120px);
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
@media screen and (max-width: 768px) {
  .index-menu .index-menu-box {
    grid-template-columns: repeat(4, 1fr);
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 16px 10px;
  }
}
.index-menu .index-menu-box .item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-direction: column;
  font-size: clamp(14px, 0.18rem, 18px);
  color: #fff;
  cursor: pointer;
  transition: all 0.5s;
  position: relative;
}
.index-menu .index-menu-box .item .icon {
  width: clamp(20px, 0.4rem, 40px);
  height: clamp(20px, 0.4rem, 40px);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index-menu .index-menu-box .item .icon img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}
.index-menu .index-menu-box .item .text {
  font-size: clamp(12px, 0.14rem, 14px);
  margin-top: 6px;
}
.index-menu .index-menu-box .item::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: url('../images/img10.png') no-repeat center bottom / contain;
  width: 100%;
  height: 70%;
  opacity: 0;
  transition: all 0.5s;
}
.index-menu .index-menu-box .item::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  bottom: -20px;
  right: 0;
  margin: auto;
  border-color: transparent transparent var(--dominant-color) transparent;
  border-style: solid;
  border-width: 10px;
  opacity: 0;
  transition: all 0.5s;
}
@media screen and (min-width: 769px) {
  .index-menu .index-menu-box .item:hover {
    transform: translateY(-20px);
    background: var(--dominant-color);
  }
  .index-menu .index-menu-box .item:hover::before,
  .index-menu .index-menu-box .item:hover::after {
    opacity: 1;
  }
}
.index1 {
  background: url('../images/img11.png') no-repeat center top / cover;
  padding-top: clamp(60px, 1.4rem, 140px);
  padding-bottom: clamp(60px, 1.4rem, 140px);
}
.index1 .index1-box {
  position: relative;
  max-width: 1736px;
}
@media screen and (max-width: 768px) {
  .index1 .index1-box {
    width: 100%;
  }
}
.index1 .index1-box .swiper-button-prev,
.index1 .index1-box .swiper-button-next {
  background: none;
  border: none;
  color: #333;
}
@media screen and (max-width: 768px) {
  .index1 .index1-box .swiper-button-prev,
  .index1 .index1-box .swiper-button-next {
    display: none;
  }
}
.index1 .index1-box .swiper-button-prev:hover i,
.index1 .index1-box .swiper-button-next:hover i {
  color: var(--dominant-color) !important;
}
.index1 .index1-box .bottom .swiper .swiper-wrapper {
  align-items: center;
}
.index1 .index1-box .bottom .swiper .swiper-slide {
  height: auto;
  cursor: pointer;
  position: relative;
  transition: transform 0.5s, background 0.5s;
}
.index1 .index1-box .bottom .swiper .swiper-slide .imgBox img {
  object-fit: contain;
}
.index1 .index1-box .bottom .swiper .swiper-slide .text {
  font-size: clamp(12px, 0.18rem, 18px);
  text-align: center;
  transition: all 0.5s;
  color: #333;
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .index1 .index1-box .bottom .swiper .swiper-slide .img1,
  .index1 .index1-box .bottom .swiper .swiper-slide .img2 {
    width: 20px;
  }
}
@media screen and (min-width: 769px) {
  .index1 .index1-box .bottom .swiper .swiper-slide:hover {
    color: var(--dominant-color);
    transform: translateY(-5px);
  }
}
.index2 {
  background: url('../images/img14.jpg') no-repeat center / cover;
  padding-top: clamp(40px, 1.2rem, 120px);
  padding-bottom: clamp(40px, 1.2rem, 120px);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .index2 {
    height: auto;
  }
}
.index2 .index-title {
  margin-bottom: 0;
}
.index2 .index2-menu {
  display: flex;
  gap: clamp(20px, 0.3rem, 30px);
  justify-content: flex-end;
  width: 100%;
  max-width: 1000px;
  margin-right: 0;
  margin-left: auto;
}
.index2 .index2-menu .item {
  background: rgba(255, 255, 255, 0.4);
  background: #c29f7b;
  font-size: clamp(14px, 0.18rem, 18px);
  font-weight: 700;
  color: #fff;
  width: 100%;
  height: clamp(40px, 0.66rem, 66px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  transition: all 0.5s;
}
.index2 .index2-menu .item.active,
.index2 .index2-menu .item:hover {
  background: var(--dominant-color);
}
.index2 .index2-box {
  position: relative;
  margin-top: clamp(30px, 0.8rem, 80px);
}
.index2 .index2-box .items {
  opacity: 0;
  pointer-events: none;
  display: flex;
  gap: clamp(20px, 0.3rem, 30px);
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .index2 .index2-box .items {
    gap: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.index2 .index2-box .items.active {
  opacity: 1;
  pointer-events: auto;
}
.index2 .index2-box .items:nth-child(n+2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.index2 .index2-box .items .item {
  background: #fff;
  border-radius: 10px;
  padding: clamp(20px, 0.4rem, 40px) 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s;
  flex-basis: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .index2 .index2-box .items .item {
    flex-basis: 60%;
    flex-shrink: 0;
  }
}
.index2 .index2-box .items .item .icon {
  width: clamp(30px, 0.5rem, 50px);
  height: clamp(30px, 0.5rem, 50px);
  margin-left: auto;
  margin-right: auto;
  transition: all 0.2s;
}
.index2 .index2-box .items .item .icon img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}
.index2 .index2-box .items .item .text {
  margin-top: clamp(10px, 0.1rem, 10px);
}
.index2 .index2-box .items .item .text .title {
  font-size: clamp(14px, 0.36rem, 36px);
  font-weight: 700;
  color: #c29f7b;
  transition: all 0.5s;
}
.index2 .index2-box .items .item .text .summary {
  font-size: clamp(12px, 0.18rem, 18px);
  margin-top: clamp(10px, 0.1rem, 10px);
  transition: all 0.5s;
}
.index2 .index2-box .items .item .text .sub {
  font-size: clamp(12px, 0.14rem, 14px);
  margin-top: clamp(10px, 0.1rem, 10px);
  transition: all 0.5s;
  font-weight: 300;
}
.index2 .index2-box .items .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 200%;
  left: 0;
  right: 0;
  top: 0;
  background: url('../images/img22.png') no-repeat center / contain;
  opacity: 0;
  transition: all 0.5s;
}
.index2 .index2-box .items .item .more {
  align-items: center;
  color: #fff;
  justify-content: center;
  margin-top: clamp(20px, 0.2rem, 20px);
  display: flex;
  opacity: 0;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .index2 .index2-box .items .item .more {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .index2 .index2-box .items .item:hover {
    flex-basis: 210%;
    background: var(--dominant-color);
  }
  .index2 .index2-box .items .item:hover .icon {
    filter: grayscale(1) brightness(100);
  }
  .index2 .index2-box .items .item:hover .title,
  .index2 .index2-box .items .item:hover .summary,
  .index2 .index2-box .items .item:hover .sub {
    color: #fff;
  }
  .index2 .index2-box .items .item:hover::after {
    opacity: 1;
  }
  .index2 .index2-box .items .item:hover .more {
    opacity: 1;
  }
}
.index-box-menu {
  display: flex;
  gap: clamp(20px, 0.3rem, 30px);
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .index-box-menu {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.index-box-menu .item {
  background: #c29f7b;
  width: clamp(120px, 1.36rem, 136px);
  height: clamp(40px, 0.48rem, 48px);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(14px, 0.18rem, 18px);
  cursor: pointer;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .index-box-menu .item {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.index-box-menu .item.active,
.index-box-menu .item:hover {
  background: var(--dominant-color);
}
.index3 {
  padding-top: clamp(50px, 1.2rem, 120px);
  background: url('../images/img22.jpg') no-repeat center / cover;
}
@media (max-width: 1280px) {
  .index3 {
    padding-top: 30px;
  }
}
.index3 .index3-box {
  margin-top: clamp(30px, 0.8rem, 80px);
}
.index3 .index3-box .index3-items {
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
}
.index3 .index3-box .index3-items.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}
.index3 .index3-box .index3-items:nth-child(n+2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.index3 .index3-box .index3-items .items-box {
  max-width: 1800px;
  position: relative;
}
.index3 .index3-box .swiper {
  width: 100%;
}
.index3 .index3-box .swiper-slide {
  color: #fff;
}
.index3 .index3-box .swiper-slide .top-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(14px, 0.24rem, 24px);
  font-weight: 500;
  max-width: 800px;
}
.index3 .index3-box .swiper-slide .title {
  font-size: clamp(14px, 0.36rem, 36px);
  font-weight: 500;
  max-width: 800px;
}
.index3 .index3-box .swiper-slide .summary {
  font-size: clamp(14px, 0.18rem, 18px);
  margin-top: clamp(20px, 0.3rem, 30px);
  max-width: 800px;
}
.index3 .index3-box .swiper-slide .more {
  display: flex;
  align-items: center;
  font-size: clamp(14px, 0.18rem, 18px);
  margin-top: clamp(20px, 0.3rem, 30px);
  max-width: 800px;
}
.index3 .index3-box .swiper-slide .items {
  margin-top: clamp(30px, 0.5rem, 50px);
  background: linear-gradient(to right, #fff 50%, rgba(255, 255, 255, 0));
  border-radius: 10px;
  padding: clamp(20px, 0.24rem, 24px) clamp(20px, 0.4rem, 40px);
  display: flex;
  max-width: 800px;
}
.index3 .index3-box .swiper-slide .items .item {
  margin-right: clamp(10px, 0.5rem, 50px);
  padding-right: clamp(10px, 0.5rem, 50px);
  position: relative;
}
.index3 .index3-box .swiper-slide .items .item::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 80%;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  background: #eee;
}
.index3 .index3-box .swiper-slide .items .item:last-child {
  padding-right: 0;
  margin-right: 0;
}
.index3 .index3-box .swiper-slide .items .item:last-child::after {
  display: none;
}
.index3 .index3-box .swiper-slide .items .number {
  color: var(--dominant-color);
  font-size: clamp(14px, 0.28rem, 28px);
}
.index3 .index3-box .swiper-slide .items .text {
  font-size: clamp(12px, 0.16rem, 16px);
  color: #666666;
}
.index3 .index3-box .swiper-button-prev,
.index3 .index3-box .swiper-button-next {
  background: none !important;
  border: none;
  color: #fff;
}
.index3 .index3-box .swiper-button-prev:hover,
.index3 .index3-box .swiper-button-next:hover {
  color: var(--dominant-color);
}
.index3 .brand-lists {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.index3 .brand-list {
  margin-top: clamp(30px, 0.5rem, 50px);
  background: rgba(0, 0, 0, 0.5);
  padding: clamp(20px, 0.2rem, 20px) 0;
}
.index3 .brand-list .swiper-slide {
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  opacity: 0.3;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .index3 .brand-list .swiper-slide {
    border-radius: 4px;
  }
}
.index3 .brand-list .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.index3 .brand-list .swiper-slide .imgBox {
  padding-bottom: 32%;
}
.index3 .brand-list .swiper-slide .imgBox img {
  object-fit: contain;
}
.index4 {
  padding-top: clamp(50px, 1.2rem, 120px);
  padding-bottom: clamp(50px, 1rem, 100px);
  background-size: 100%;
}
.index4 .index4-box {
  background: #fff;
  border-radius: 10px;
  margin-top: clamp(40px, 0.6rem, 60px);
  display: flex;
  overflow: hidden;
  position: relative;
  padding: clamp(20px, 0.7rem, 70px);
  gap: clamp(20px, 1.2rem, 120px);
}
@media screen and (max-width: 768px) {
  .index4 .index4-box {
    flex-direction: column;
  }
}
.index4 .index4-box .img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index4 .index4-box .menu {
  width: 128px;
}
@media screen and (max-width: 768px) {
  .index4 .index4-box .menu {
    width: 100%;
  }
}
.index4 .index4-box .menu .swiper {
  height: 438px;
}
@media screen and (max-width: 768px) {
  .index4 .index4-box .menu .swiper {
    height: auto;
  }
}
.index4 .index4-box .menu .swiper .swiper-slide {
  background: #c29f7b;
  color: #fff;
  font-size: clamp(12px, 0.18rem, 18px);
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
}
.index4 .index4-box .menu .swiper .swiper-slide.swiper-slide-thumb-active,
.index4 .index4-box .menu .swiper .swiper-slide:hover {
  background: var(--dominant-color);
}
.index4 .index4-box .menu .swiper-button-next {
  position: relative;
  z-index: 9999;
  border: none;
  background: none !important;
  margin-top: auto !important;
  margin-left: auto;
  margin-right: auto;
  color: #000;
}
@media screen and (max-width: 768px) {
  .index4 .index4-box .menu .swiper-button-next {
    display: none;
  }
}
.index4 .index4-box .text {
  flex: 1;
  max-width: 620px;
}
.index4 .index4-box .text .swiper {
  height: 100%;
}
.index4 .index4-box .text .title {
  font-size: clamp(16px, 0.36rem, 36px);
  font-weight: 700;
}
.index4 .index4-box .text .summary {
  font-size: clamp(14px, 0.18rem, 18px);
  color: #666666;
  font-weight: 300;
  margin-top: clamp(10px, 0.2rem, 20px);
}
.index4 .index4-box .text .more {
  margin-top: clamp(10px, 0.2rem, 20px);
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--dominant-color);
  font-size: clamp(14px, 0.18rem, 18px);
}
.index4 .index4-box .text .lists {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 0.1rem, 10px);
  margin-top: clamp(30px, 0.6rem, 60px);
}
.index4 .index4-box .text .lists .list {
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.02);
  border-radius: 6px;
  overflow: hidden;
}
.index4 .index4-box .text .lists .imgBox {
  padding-bottom: 55%;
}
.index5 {
  background-size: 100%;
}
.index5 .index5-menu {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(8px, 0.3rem, 30px);
  margin-top: clamp(30px, 0.6rem, 60px);
}
@media screen and (max-width: 768px) {
  .index5 .index5-menu {
    grid-template-columns: repeat(3, 1fr);
  }
}
.index5 .index5-menu .item {
  opacity: 0.3;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s;
}
.index5 .index5-menu .item .imgBox {
  padding-bottom: 55%;
}
.index5 .index5-menu .item .text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: fit-content;
  font-size: clamp(14px, 0.32rem, 32px);
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.index5 .index5-menu .item:hover,
.index5 .index5-menu .item.active {
  opacity: 1;
}
.index5 .index5-box {
  background: #fff;
  border-radius: 10px;
  margin-top: clamp(40px, 0.6rem, 60px);
  box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.02);
}
.index5 .index5-box .item {
  position: relative;
  padding: clamp(20px, 0.3rem, 30px) clamp(40px, 0.7rem, 70px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
}
.index5 .index5-box .item.active {
  opacity: 1;
  pointer-events: auto;
}
.index5 .index5-box .item:nth-child(n+2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.index5 .index5-box .item .swiper {
  padding-left: 10px;
  padding-right: 10px;
}
.index5 .index5-box .item .swiper-slide {
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
}
.index5 .index5-box .item .swiper-slide .imgBox {
  padding-bottom: 42%;
}
.index5 .index5-box .item .swiper-button-prev,
.index5 .index5-box .item .swiper-button-next {
  border: none;
  color: #000;
  background: none !important;
}
.index5 .index5-box .item .swiper-button-prev:hover i,
.index5 .index5-box .item .swiper-button-next:hover i {
  color: var(--dominant-color);
}
.index5 .index5-box .item .swiper-button-prev {
  left: 10px;
}
.index5 .index5-box .item .swiper-button-next {
  right: 10px;
}
.index6 {
  padding-top: clamp(50px, 1.2rem, 120px);
  padding-bottom: clamp(40px, 0.7rem, 70px);
}
.index6 .index6-box {
  margin-top: clamp(40px, 0.6rem, 60px);
  max-width: 1650px;
  position: relative;
}
.index6 .index6-box .swiper-slide {
  display: flex;
  background: #fff;
  border-radius: 10px;
  padding: clamp(10px, 20px, 20px);
  gap: clamp(20px, 0.3rem, 30px);
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.02);
}
@media screen and (max-width: 768px) {
  .index6 .index6-box .swiper-slide {
    flex-direction: column;
    padding: 10px;
    gap: 10px;
  }
}
.index6 .index6-box .swiper-slide .img {
  flex-basis: 55%;
  border-radius: 10px;
  overflow: hidden;
}
.index6 .index6-box .swiper-slide .img .imgBox {
  padding-bottom: 140%;
}
.index6 .index6-box .swiper-slide .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.index6 .index6-box .swiper-slide .text .title {
  font-size: clamp(14px, 0.18rem, 18px);
  color: #666;
  margin-top: clamp(10px, 0.2rem, 20px);
}
.index6 .index6-box .swiper-slide .text .sub {
  font-size: clamp(12px, 0.14rem, 14px);
  margin-top: clamp(10px, 0.2rem, 20px);
}
.index6 .index6-box .swiper-slide .text .more {
  display: flex;
  gap: 10px;
  color: var(--dominant-color);
  font-size: clamp(12px, 0.18rem, 18px);
  align-items: center;
  margin-top: clamp(20px, 0.4rem, 40px);
}
@media screen and (max-width: 768px) {
  .index6 .index6-box .swiper-slide .text .more img {
    width: 20px;
  }
}
.index6 .index6-box .swiper-slide .text .wechat-code {
  max-width: 100px;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .index6 .index6-box .swiper-slide .text .wechat-code {
    max-width: 80px;
  }
}
.index6 .index6-box .swiper-slide .text .wechat-code .code {
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.02);
  border-radius: 10px;
}
.index6 .index6-box .swiper-slide .text .wechat-code p {
  font-size: clamp(12px, 0.14rem, 14px);
  margin-top: clamp(4px, 0.06rem, 6px);
  font-weight: 300;
  color: #666666;
}
.index6 .index6-box .section {
  position: relative;
}
.index6 .index6-box .item {
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
  position: relative;
}
.index6 .index6-box .item.active {
  opacity: 1;
  pointer-events: auto;
}
.index6 .index6-box .item:nth-child(n+2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.index6 .index6-box .swiper {
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .index6 .index6-box .swiper {
    width: 100%;
    padding: 6px;
  }
}
.index6 .index6-box .swiper-button-prev,
.index6 .index6-box .swiper-button-next {
  border: none;
  color: #000;
  background: none !important;
}
@media screen and (max-width: 768px) {
  .index6 .index6-box .swiper-button-prev,
  .index6 .index6-box .swiper-button-next {
    display: none;
  }
}
.index6 .index6-box .swiper-button-prev:hover i,
.index6 .index6-box .swiper-button-next:hover i {
  color: var(--dominant-color) !important;
}
.index6 .index6-box .swiper-button-prev {
  left: 0;
}
.index6 .index6-box .swiper-button-next {
  right: 0;
}
.index6 .index6-more {
  margin-top: clamp(40px, 0.6rem, 60px);
}
.index6-page {
  display: grid;
  padding: 5px;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 0.2rem, 20px);
}
.index6-page .item {
  display: flex;
  background: #fff;
  border-radius: 10px;
  padding: clamp(10px, 20px, 20px);
  gap: clamp(20px, 0.3rem, 30px);
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.02);
}
@media screen and (max-width: 768px) {
  .index6-page .item {
    flex-direction: column;
    padding: 10px;
    gap: 10px;
  }
}
.index6-page .item .img {
  flex-basis: 55%;
  border-radius: 10px;
  overflow: hidden;
}
.index6-page .item .img .imgBox {
  padding-bottom: 140%;
}
.index6-page .item .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.index6-page .item .text .title {
  font-size: clamp(14px, 0.18rem, 18px);
  color: #666;
  margin-top: clamp(10px, 0.2rem, 20px);
}
.index6-page .item .text .sub {
  font-size: clamp(12px, 0.14rem, 14px);
  margin-top: clamp(10px, 0.2rem, 20px);
}
.index6-page .item .text .more {
  display: flex;
  gap: 10px;
  color: var(--dominant-color);
  font-size: clamp(12px, 0.18rem, 18px);
  align-items: center;
  margin-top: clamp(20px, 0.4rem, 40px);
}
@media screen and (max-width: 768px) {
  .index6-page .item .text .more img {
    width: 20px;
  }
}
.index6-page .item .text .wechat-code {
  max-width: 100px;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .index6-page .item .text .wechat-code {
    max-width: 80px;
  }
}
.index6-page .item .text .wechat-code .code {
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.02);
  border-radius: 10px;
}
.index6-page .item .text .wechat-code p {
  font-size: clamp(12px, 0.14rem, 14px);
  margin-top: clamp(4px, 0.06rem, 6px);
  font-weight: 300;
  color: #666666;
}
.index7 {
  background: url('../images/img46.png') no-repeat center / contain;
  padding-top: clamp(50px, 1.2rem, 120px);
  padding-bottom: clamp(80px, 1.6rem, 160px);
  background-size: 100%;
  min-height: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .index7 {
    padding-bottom: 0;
    padding-top: 0;
  }
}
.index7 .index-title {
  margin-bottom: 0;
}
.index7 .index7-box {
  background: #fff;
  border-radius: 10px;
  margin-top: clamp(40px, 0.6rem, 60px);
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.02);
}
@media screen and (max-width: 768px) {
  .index7 .index7-box {
    box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.01);
  }
}
.index7 .index7-box .item {
  position: relative;
  padding: clamp(20px, 0.3rem, 30px) clamp(20px, 0.7rem, 70px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
}
.index7 .index7-box .item.active {
  opacity: 1;
  pointer-events: auto;
}
.index7 .index7-box .item:nth-child(n+2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.index7 .index7-box .item .swiper {
  padding: 10px;
}
.index7 .index7-box .item .swiper-slide {
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.02);
}
.index7 .index7-box .item .swiper-slide .imgBox {
  padding-bottom: 42%;
}
.index7 .index7-box .item .swiper-button-prev,
.index7 .index7-box .item .swiper-button-next {
  border: none;
  color: #000;
  background: none !important;
}
@media screen and (max-width: 768px) {
  .index7 .index7-box .item .swiper-button-prev,
  .index7 .index7-box .item .swiper-button-next {
    display: none;
  }
}
.index7 .index7-box .item .swiper-button-prev:hover i,
.index7 .index7-box .item .swiper-button-next:hover i {
  color: var(--dominant-color);
}
.index7 .index7-box .item .swiper-button-prev {
  left: 10px;
}
.index7 .index7-box .item .swiper-button-next {
  right: 10px;
}
.index8 {
  background: url('../images/img39.jpg') no-repeat center bottom 100%;
  padding-top: clamp(50px, 1.2rem, 120px);
  padding-bottom: clamp(50px, 0.8rem, 80px);
}
.index8 .index8-box {
  margin-top: clamp(40px, 0.6rem, 60px);
  display: flex;
  gap: clamp(20px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
  .index8 .index8-box {
    flex-direction: column;
  }
}
.index8 .index8-box .left {
  flex-basis: 52%;
  border-radius: 10px;
  overflow: hidden;
  height: fit-content;
}
.index8 .index8-box .left .item .imgBox {
  padding-bottom: 65%;
}
.index8 .index8-box .left .item .text {
  color: #fff;
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: clamp(20px, 0.3rem, 30px);
}
.index8 .index8-box .left .item .text .time {
  color: #fff;
}
.index8 .index8-box .left .item .text .more {
  margin-top: clamp(10px, 0.1rem, 10px);
}
.index8 .index8-box .right {
  flex-basis: 48%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
  .index8 .index8-box .right {
    grid-template-columns: repeat(1, 1fr);
  }
}
.index8 .index8-box .item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: #fff;
}
.index8 .index8-box .item .imgBox {
  padding-bottom: 43%;
}
.index8 .index8-box .item .text {
  padding: clamp(10px, 0.2rem, 20px);
}
.index8 .index8-box .item .text .title {
  display: flex;
  align-items: center;
  font-size: clamp(16px, 0.36rem, 36px);
  font-weight: 700;
  gap: 10px;
}
.index8 .index8-box .item .text .title .tip {
  font-size: clamp(12px, 0.16rem, 16px);
  background: var(--dominant-color);
  color: #fff;
  border-radius: 6px;
  padding: clamp(3px, 0.06rem, 6px) clamp(5px, 0.1rem, 10px);
  font-weight: 400;
  text-transform: uppercase;
}
.index8 .index8-box .item .text .time {
  font-size: clamp(12px, 0.14rem, 14px);
  color: #999999;
}
.index8 .index8-box .item .text .summary {
  font-size: clamp(14px, 0.18rem, 18px);
}
.index8 .index8-more {
  margin-top: clamp(30px, 0.6rem, 60px);
  color: #333;
}
.form {
  display: flex;
  grid-gap: 30px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .form {
    grid-gap: 10px;
  }
}
.form label {
  display: block;
  flex-basis: calc(50% - 15px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .form label {
    flex-basis: 100%;
  }
}
.form label.w100 {
  flex-basis: 100%;
}
.form label.w33 {
  flex-basis: calc((100% - 60px) / 3);
}
@media screen and (max-width: 768px) {
  .form label.w33 {
    flex-basis: 100%;
  }
}
.form label span {
  font-size: clamp(12px, 0.14rem, 14px);
  color: #374151;
  display: block;
  margin-bottom: 10px;
}
.form label.checkbox {
  flex-basis: 16px;
  height: 16px;
  padding: 0;
  margin-right: 10px;
}
.form label.checkbox input {
  width: 16px;
  height: 16px;
  padding: 0;
  border-radius: 2px;
}
.form .form-box.w100 {
  flex-basis: 100%;
}
.form .form-box.w33 {
  flex-basis: calc((100% - 60px) / 3);
}
@media screen and (max-width: 768px) {
  .form .form-box.w33 {
    flex-basis: 100%;
  }
}
.form select {
  height: 50px;
  padding-left: 20px;
  background: #fff;
  font-size: clamp(12px, 0.14rem, 14px);
  border-radius: 8px;
  border: 1px solid #B3B3B3;
  color: #1F2937;
  -webkit-appearance: none;
  position: relative;
}
.form input {
  width: 100%;
  height: clamp(40px, 0.5rem, 50px);
  padding: 0 20px;
  text-indent: 0;
  font-size: clamp(12px, 0.14rem, 14px);
  border-radius: 8px;
  border: 1px solid #B3B3B3;
  background: #FFF;
  color: #9CA3AF;
}
.form input::placeholder {
  font-size: clamp(12px, 0.14rem, 14px);
  color: #9CA3AF;
}
.form textarea {
  height: 98px;
  padding: 20px;
  text-indent: 0;
  font-size: clamp(12px, 0.14rem, 14px);
  border-radius: 8px;
  border: 1px solid #B3B3B3;
  background: #FFF;
  color: #9CA3AF;
}
.form textarea::placeholder {
  font-size: clamp(12px, 0.14rem, 14px);
  color: #9CA3AF;
}
.form button {
  display: flex;
  width: fit-content;
  margin: auto;
  border-radius: 8px;
  background: linear-gradient(90deg, #2559B5 0%, #183D85 100%);
  color: #fff;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: clamp(14px, 0.14rem, 14px);
  gap: 10px;
  transition: all 0.5s;
}
.form button:hover {
  transform: translateY(-10px);
}
@media screen and (max-width: 768px) {
  .form button {
    margin-top: 30px;
  }
}
.form .tip {
  flex-basis: 100%;
}
.form .tip span {
  font-size: clamp(12px, 0.14rem, 14px);
  color: #374151;
}
.form .tip a {
  color: var(--dominant-color);
}
.form .tip a:hover {
  text-decoration: underline;
}
.f-button {
  display: flex;
  width: 200px;
  height: 50px;
  background: #00abf1;
  border-radius: 4px;
  color: #fff;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}
.goTop {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  position: absolute;
  transition: all 0.5s;
  z-index: 1000;
  top: -70px;
  left: 0;
  right: 0;
  margin: auto;
}
.goTop:hover .button span {
  transform: translateY(-10px);
}
@media screen and (max-width: 768px) {
  .goTop {
    transform: scale(0.5);
  }
}
.goTop .lazy {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-size: cover;
  -webkit-animation-name: spin;
  animation-name: spin;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
.goTop .button {
  width: 80px;
  height: 80px;
  color: var(--dominant-color);
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.goTop .button span {
  transition: all 0.5s;
}
.goTop svg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: calc(100% - 55px);
  height: calc(100% - 55px);
}
.goTop svg.cm {
  transition: none;
  opacity: 1;
}
.goTop svg .p1 {
  animation: circleRotate 4s linear infinite;
  transform-origin: 50% 50%;
}
.goTop svg circle {
  fill: #fff;
  stroke: transparent;
}
.goTop svg .p2 {
  animation: circleRotateReverse 4s linear infinite;
}
.goTop.button-div {
  display: block;
  width: 60px;
  height: 60px;
  top: 0;
  margin-left: 0;
  transform-origin: 0;
  transform: scale(1);
}
.goTop.button-div .button {
  width: 30px;
  height: 30px;
}
.goTop.button-div .button span {
  font-size: 14px;
  transform: translateY(0) !important;
}
/*--------------------------------------------------------*/
/*内页*/
/*内页通用*/
.page-title {
  text-align: left;
  position: relative;
  z-index: 2;
}
.page-title.textC {
  text-align: center;
}
.page-title.colorW {
  color: #fff;
}
.page-title .img {
  margin-bottom: clamp(10px, 0.2rem, 20px);
}
.page-title .title {
  line-height: 1.25;
  font-size: clamp(16px, 0.32rem, 32px);
  color: var(--dominant-color);
  position: relative;
  font-weight: 400;
}
.page-title .title.colorW {
  color: #fff;
}
.page-title .title.colorB {
  color: #000;
}
.page-title .title img {
  max-width: 200px;
}
.page-title .tip {
  font-size: clamp(12px, 0.18rem, 18px);
  color: #666666;
  margin-bottom: clamp(10px, 0.6rem, 60px);
}
.page-title .summary {
  margin-top: clamp(10px, 0.2rem, 20px);
  color: #000000;
  font-size: clamp(12px, 0.22rem, 22px);
  line-height: 1.6;
  color: #666;
}
.page-title .summary.colorW {
  color: #fff;
}
.page-title .summary span {
  color: var(--dominant-color);
}
.page-title .summary a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .page-title .page-form {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .page-title .page-form form {
    width: 100%;
  }
}
.page-title .page-form label {
  position: relative;
  transform: skewX(-25deg);
  display: block;
  border: 2px solid #e7e7f9;
}
@media screen and (max-width: 768px) {
  .page-title .page-form label {
    width: 100%;
  }
}
.page-title .page-form label input {
  width: clamp(200px, 4.1rem, 410px);
  height: clamp(34px, 0.46rem, 46px);
  transform: skewX(25deg);
  border: none;
  background: none;
  padding-left: 20px;
  font-size: clamp(14px, 0.18rem, 18px);
  color: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .page-title .page-form label input {
    width: 100%;
  }
}
.page-title .page-form label input::placeholder {
  color: rgba(20, 17, 192, 0.4);
}
.page-title .page-form button {
  width: clamp(50px, 1.1rem, 110px);
  height: clamp(38px, 0.5rem, 50px);
  background: var(--dominant-color);
  color: #fff;
  transform: skewX(-25deg);
}
.page-title .page-form button i {
  font-size: clamp(12px, 0.2rem, 20px);
  transform: skewX(25deg);
}
.page-title .page-select {
  display: flex;
  gap: 10px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .page-title .page-select {
    flex-direction: column;
    width: 100%;
  }
}
.page-title .page-select .select-item {
  display: flex;
  align-items: center;
  position: relative;
  height: clamp(38px, 0.55rem, 55px);
  cursor: pointer;
}
.page-title .page-select .select-item.select-item1 {
  width: clamp(2.36rem, 2.36rem, 236px);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .page-title .page-select .select-item.select-item1 {
    width: 100%;
  }
}
.page-title .page-select .select-item.select-item2 {
  width: clamp(3.76rem, 3.76rem, 376px);
}
@media screen and (max-width: 768px) {
  .page-title .page-select .select-item.select-item2 {
    width: 100%;
  }
}
.page-title .page-select .select-item .select-text {
  font-size: clamp(12px, 0.18rem, 18px);
  color: var(--dominant-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 0.3rem, 30px);
  width: 100%;
  transform: skewX(-25deg);
  border: 2px solid #e7e7f9;
  height: 100%;
}
.page-title .page-select .select-item .select-text span,
.page-title .page-select .select-item .select-text i {
  transform: skewX(25deg);
}
.page-title .page-select .select-item .select {
  display: none;
  position: absolute;
  left: 0%;
  top: 110%;
  background: #fff;
  padding: clamp(20px, 0.3rem, 30px);
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.04);
  z-index: 20;
  width: 100%;
  line-height: 2;
  max-height: 50vh;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  .page-title .page-select .select-item .select {
    width: 100vw;
  }
}
.page-title .page-select .select-item .select .s-item {
  display: block;
  font-size: clamp(12px, 0.16rem, 16px);
  margin-bottom: 12px;
  line-height: 1.2;
}
.page-title .page-select .select-item .select .s-item:hover {
  color: var(--dominant-color);
}
/*内页大图*/
.pageBanner {
  transition: all 0.5s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  color: #fff;
  height: 6.4rem;
  max-height: 640px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .pageBanner {
    height: 200px;
    margin-top: 0;
  }
}
.pageBanner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pageBanner .play {
  width: clamp(30px, 0.78rem, 78px);
  height: clamp(30px, 0.78rem, 78px);
  margin: clamp(20px, 0.2rem, 20px) auto 0;
}
.pageBanner .banner-button {
  gap: clamp(10px, 0.24rem, 24px);
  margin-top: clamp(20px, 0.5rem, 50px);
}
.pageBanner .banner-button a {
  width: clamp(150px, 2rem, 200px);
  height: clamp(50px, 0.7rem, 70px);
  display: flex;
  border-radius: 10px;
  border: 2px solid #fff;
  font-size: clamp(14px, 0.24rem, 24px);
  background: var(--dominant-color);
  transition: all 0.5s;
}
.pageBanner .banner-button a:hover {
  opacity: 0.6;
}
.pageBanner .video {
  width: 100%;
}
.pageBanner video {
  display: block;
  width: 100%;
}
.pageBanner .banner-box {
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  height: fit-content;
  text-align: left;
}
.pageBanner .banner-box .banner-title {
  color: #fff;
  font-size: clamp(18px, 0.48rem, 48px);
  line-height: 1;
  font-weight: 700;
}
.pageBanner .banner-box .banner-summary {
  margin-top: clamp(10px, 0.2rem, 20px);
  font-size: clamp(14px, 0.22rem, 22px);
  line-height: 1.6;
}
.pageBanner .banner-box .index-title {
  color: #fff;
}
.pageBanner .banner-box .index-title .title {
  color: #fff;
}
.pageBanner .banner-box .index-title .summary {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .pageBanner .banner-box .index-title .summary {
    display: none;
  }
}
.pageBanner .banner-box .about-play {
  display: inline-block;
  margin: 30px auto 0;
  font-size: 57px;
  cursor: pointer;
}
.pageBanner .pageBanner-mask {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 1;
}
.pageBanner .pageBanner-mask img {
  width: 100%;
}
/*内页侧边栏*/
/*内页导航*/
.page-menu {
  box-shadow: 0 2px 10px 10px rgba(0, 0, 0, 0.03);
  position: sticky;
  top: clamp(40px, 0.58rem, 58px);
  background: #fff;
  z-index: 3;
}
.page-menu .page-phone-click {
  display: none;
}
@media screen and (max-width: 768px) {
  .page-menu .page-phone-click {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    background: var(--dominant-color);
    color: #fff;
    font-size: 14px;
  }
}
.page-menu .menu-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(40px, 0.7rem, 70px);
}
@media screen and (max-width: 768px) {
  .page-menu .menu-box {
    justify-content: flex-start;
    overflow: auto;
  }
  .page-menu .menu-box::-webkit-scrollbar {
    height: 0;
  }
}
.page-menu .menu-box a {
  color: #000;
  font-size: clamp(14px, 0.18rem, 18px);
  transition: all 0.5s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 clamp(20px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
  .page-menu .menu-box a {
    flex-shrink: 0;
  }
}
.page-menu .menu-box a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--dominant-color);
  transition: all 0.5s;
}
.page-menu .menu-box a.active,
.page-menu .menu-box a:hover {
  color: var(--dominant-color);
}
.page-menu .menu-box a.active::after,
.page-menu .menu-box a:hover::after {
  width: 100%;
}
.page-menu.product-menu a {
  flex-direction: column;
  text-align: center;
}
.page-menu.product-menu a .icon {
  width: 0.65rem;
  height: 0.65rem;
  min-width: 30px;
  min-height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.page-menu.product-menu a .icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.page-menu.page-menu2 {
  margin-top: clamp(20px, 1rem, 100px);
}
.page-menu.page-menu2 .menu-box a {
  background: #fff;
  color: var(--dominant-color);
  border: 2px solid #e7e7f9;
}
.page-menu.page-menu2 .menu-box a.active,
.page-menu.page-menu2 .menu-box a:hover {
  background: var(--dominant-color);
  color: #fff;
  border-color: var(--dominant-color);
}
.page-menu.bgW .menu-box a {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.page-menu.bgW .menu-box a.active,
.page-menu.bgW .menu-box a:hover {
  background: var(--dominant-color);
  color: #fff;
  box-shadow: 0 0 2px 2px rgba(255, 255, 255, 0);
}
/*面包屑*/
.location {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  z-index: 2;
  color: #b9b9b9;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}
.location a {
  font-size: clamp(12px, 0.16rem, 16px);
  color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  line-height: 1.6;
  gap: 8px;
}
.location a img {
  width: clamp(12px, 0.19rem, 19px);
  transform: translateY(-2px);
}
.location a i {
  color: #818181;
  font-size: 12px;
}
.location a.active {
  color: var(--dominant-color);
}
.location a:hover {
  text-decoration: underline;
}
.location span {
  margin: 0 12px;
}
/*分页*/
.pagers {
  margin-top: clamp(30px, 0.9rem, 90px);
  gap: 0.2rem;
}
@media screen and (max-width: 768px) {
  .pagers {
    flex-direction: column;
  }
}
.pagers .pager {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagers .pager a {
  width: clamp(30px, 0.45rem, 45px);
  height: clamp(30px, 0.45rem, 45px);
  margin: 0 4px;
  transition: all 0.5s;
  background: #f4f4f4;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: clamp(12px, 0.14rem, 14px);
}
@media screen and (max-width: 768px) {
  .pagers .pager a {
    margin: 0 1px;
  }
}
.pagers .pager a:hover,
.pagers .pager a.active {
  background: var(--dominant-color);
  color: #fff;
}
.pagers .pager a.more {
  font-size: 12px;
  background: none;
}
.pagers .pager a.more:hover {
  color: var(--dominant-color);
}
.pagers .pager a.disable {
  color: #9CA3AF;
  pointer-events: none;
}
.pagers .pager a.prev,
.pagers .pager a.next {
  width: clamp(80px, 1rem, 100px);
}
.pagers .pager a.prev i,
.pagers .pager a.next i {
  font-size: 12px;
}
.pagers .pager-to {
  display: flex;
  align-items: center;
  gap: 30px;
}
.pagers .pager-to form {
  color: var(--dominant-color);
  display: flex;
  align-items: center;
  font-size: clamp(12px, 0.2rem, 20px);
}
.pagers .pager-to form select {
  border: 1px solid #eee;
  height: clamp(30px, 0.45rem, 45px);
}
.pagers .pager-to form button {
  width: clamp(30px, 0.45rem, 45px);
  height: clamp(30px, 0.45rem, 45px);
  background: #f4f4f4;
  color: #333;
  transition: all 0.5s;
  border-radius: 0;
  margin-left: clamp(10px, 0.2rem, 20px);
}
.pagers .pager-to form button span {
  display: block;
}
.pagers .pager-to form button:hover {
  color: #fff;
  background: var(--dominant-color);
}
/*内页左右结构*/
.phone-click {
  display: none;
}
@media screen and (max-width: 768px) {
  .phone-click {
    width: 40px;
    height: 40px;
    position: fixed;
    left: 5px;
    top: 30vh;
    z-index: 9;
    background: var(--dominant-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
}
.phone-click svg {
  width: 60%;
  height: 60%;
  fill: #ffffff;
}
.phone-index-title {
  margin-top: 50px;
}
.page-box {
  padding-top: clamp(50px, 1.1rem, 110px);
  padding-bottom: clamp(50px, 1.1rem, 110px);
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page-box {
    flex-direction: column;
  }
}
.page-box > .left {
  flex-basis: clamp(250px, 2.8rem, 280px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-box > .left {
    position: fixed;
    height: 100vh;
    width: 80vw;
    top: 0;
    left: -100vw;
    background: #ffffff;
    z-index: 2000;
    transition: all 0.3s;
  }
}
.page-box > .left.active {
  left: 0;
}
@media screen and (max-width: 768px) {
  .page-box > .left .index-title {
    display: none;
  }
}
.page-box > .left .mask {
  display: none;
}
@media screen and (max-width: 768px) {
  .page-box > .left .mask {
    display: block;
    position: absolute;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
  }
}
.page-box > .left .items-box {
  border: 1px solid #eee;
  padding: clamp(20px, 0.2rem, 20px);
  border-radius: 10px;
  overflow: hidden;
  margin-top: clamp(40px, 0.6rem, 60px);
  background: url('../images/img100.jpg') repeat-y center / cover;
}
@media screen and (max-width: 768px) {
  .page-box > .left .items-box {
    background: #fff;
    position: relative;
    z-index: 20;
    padding: 0.5rem;
    width: 100%;
    height: 100vh;
    margin-top: 0;
    border-radius: 0;
  }
}
.page-box > .left .items {
  color: #333;
  width: 100%;
  gap: 10px;
}
.page-box > .left .items i {
  color: #d6d6d6;
}
.page-box > .left .items .item-title {
  flex: 1;
  font-size: clamp(14px, 0.18rem, 18px);
  border-bottom: 1px solid #d5d5d5;
  padding-top: clamp(16px, 0.2rem, 20px);
  padding-bottom: clamp(16px, 0.2rem, 20px);
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  color: #333;
  display: block;
}
.page-box > .left .items.active i,
.page-box > .left .items:hover i {
  color: var(--dominant-color);
}
.page-box > .left .items.active .item-title,
.page-box > .left .items:hover .item-title {
  color: var(--dominant-color);
  border-color: var(--dominant-color);
}
.page-box > .left .items.active .lists,
.page-box > .left .items:hover .lists {
  display: block;
}
.page-box > .left .items .lists {
  margin-top: clamp(10px, 0.2rem, 20px);
  display: none;
}
.page-box > .left .items .lists .list {
  color: #000;
  display: flex;
  transition: all 0.3s;
  font-size: clamp(12px, 0.16rem, 16px);
  cursor: pointer;
  margin-bottom: 10px;
}
.page-box > .left .items .lists .list.active,
.page-box > .left .items .lists .list:hover {
  color: #0080ff;
}
.page-box > .left .items .lists label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}
.page-box > .left .items .lists label input {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid #d5d5d5;
  position: relative;
}
.page-box > .left .items .lists label input span {
  font-size: clamp(12px, 0.16rem, 16px);
}
.page-box > .left .items .lists label input:checked {
  background: #0080ff url('../images/check.png') no-repeat center / contain;
  background-size: 80%;
  border-color: #0080ff;
}
.page-box > .left .items .lists label input:checked ~ span {
  color: #0080ff;
}
.page-box .right {
  overflow: hidden;
  width: calc(100% - clamp(250px, 2.8rem, 280px));
  padding-left: clamp(20px, 1.2rem, 120px);
}
@media screen and (max-width: 768px) {
  .page-box .right {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .page-box .right .right-content {
    padding: 10px;
  }
}
/*新闻资讯*/
.news .news-top {
  margin-bottom: clamp(20px, 0.6rem, 60px);
  padding-bottom: clamp(20px, 0.6rem, 60px);
  border-bottom: 1px solid #eee;
}
.news .news-top .swiper-slide {
  display: flex;
  gap: clamp(20px, 0.6rem, 60px);
}
@media screen and (max-width: 768px) {
  .news .news-top .swiper-slide {
    flex-direction: column;
  }
}
.news .news-top .swiper-slide .s-left {
  flex-basis: 45%;
}
.news .news-top .swiper-slide .s-left .imgBox {
  border-radius: 10px;
  padding-bottom: 73%;
}
.news .news-top .swiper-slide .s-right {
  flex: 1;
}
.news .news-top .swiper-slide .s-right .title {
  font-size: clamp(16px, 0.36rem, 36px);
}
.news .news-top .swiper-slide .s-right .time {
  color: #999999;
  font-size: clamp(12px, 0.14rem, 14px);
}
.news .news-top .swiper-slide .s-right .summary {
  font-size: clamp(14px, 0.18rem, 18px);
  color: #666666;
  margin-top: clamp(20px, 0.3rem, 30px);
}
.news .news-top .swiper-slide .s-right .more {
  margin-top: clamp(20px, 0.3rem, 30px);
  font-size: clamp(14px, 0.18rem, 18px);
  color: var(--dominant-color);
}
.news .news-top .swiper-slide:hover .title {
  color: var(--dominant-color);
}
.news .news-top .swiper-button-prev,
.news .news-top .swiper-button-next {
  position: initial;
  margin-top: auto;
  border-radius: 8px;
  background: #e1e1e1;
  border: none;
}
.news .news-top .swiper-button-prev i,
.news .news-top .swiper-button-next i {
  font-size: clamp(12px, 0.2rem, 20px);
  color: #333;
}
.news .news-top .swiper-button-prev:hover,
.news .news-top .swiper-button-next:hover {
  background: var(--dominant-color);
}
.news .news-top .swiper-button-prev:hover i,
.news .news-top .swiper-button-next:hover i {
  color: #fff;
}
.news .news-top .swiper-button {
  display: flex;
  gap: 4px;
  position: absolute;
  left: calc(45% + clamp(20px, 0.6rem, 60px));
  bottom: clamp(20px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
  .news .news-top .swiper-button {
    position: initial;
    margin-top: 30px;
  }
}
.news .news-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 0.3rem, 30px);
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .news .news-box {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.news .news-box .item {
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
  align-items: normal;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
  background: #fff;
  border-radius: 10px;
}
.news .news-box .item .img {
  overflow: hidden;
  position: relative;
  border-radius: 10px 10px 0 0;
}
@media screen and (max-width: 768px) {
  .news .news-box .item .img {
    width: 100%;
  }
}
.news .news-box .item .img .imgBox {
  padding-bottom: 55%;
}
.news .news-box .item .text-box {
  padding: clamp(20px, 0.2rem, 20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-height: clamp(100px, 1.5rem, 150px);
}
@media screen and (max-width: 768px) {
  .news .news-box .item .text-box {
    gap: 20px;
  }
}
.news .news-box .item .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: normal;
}
.news .news-box .item .text .title {
  transition: all 0.5s;
  font-size: clamp(14px, 0.2rem, 20px);
}
.news .news-box .item .time {
  font-size: clamp(12px, 0.16rem, 16px);
  transition: all 0.5s;
  margin-top: clamp(10px, 0.1rem, 10px);
  color: #999;
  display: flex;
  align-items: center;
  gap: 10px;
}
.news .news-box .item .time img {
  width: 13px;
}
.news .news-box .item:hover {
  border-color: var(--dominant-color);
}
.news .news-box .item:hover .title,
.news .news-box .item:hover .more {
  color: var(--dominant-color);
}
.project .project-box .item {
  display: flex;
  gap: clamp(20px, 0.6rem, 60px);
  border-bottom: 1px solid #eee;
  margin-bottom: clamp(20px, 0.3rem, 30px);
  padding-bottom: clamp(20px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
  .project .project-box .item {
    flex-direction: column;
  }
}
.project .project-box .item .s-left {
  flex-basis: 35%;
}
.project .project-box .item .s-left .imgBox {
  border-radius: 10px;
  padding-bottom: 73%;
}
.project .project-box .item .s-right {
  flex: 1;
}
.project .project-box .item .s-right .title {
  font-size: clamp(16px, 0.24rem, 24px);
}
.project .project-box .item .s-right .time {
  margin-top: 10px;
  color: #999999;
  font-size: clamp(12px, 0.14rem, 14px);
}
.project .project-box .item .s-right .summary {
  font-size: clamp(14px, 0.16rem, 16px);
  color: #666666;
  margin-top: clamp(20px, 0.3rem, 30px);
}
.project .project-box .item .s-right .more {
  margin-top: clamp(20px, 0.3rem, 30px);
  font-size: clamp(14px, 0.18rem, 18px);
  color: var(--dominant-color);
}
.project .project-box .item:hover .title {
  color: var(--dominant-color);
}
.project .project-box .swiper-button-prev,
.project .project-box .swiper-button-next {
  position: initial;
  margin-top: auto;
  border-radius: 8px;
  background: #e1e1e1;
  border: none;
}
.project .project-box .swiper-button-prev i,
.project .project-box .swiper-button-next i {
  font-size: clamp(12px, 0.2rem, 20px);
  color: #333;
}
.project .project-box .swiper-button-prev:hover,
.project .project-box .swiper-button-next:hover {
  background: var(--dominant-color);
}
.project .project-box .swiper-button-prev:hover i,
.project .project-box .swiper-button-next:hover i {
  color: #fff;
}
.project .project-box .swiper-button {
  display: flex;
  gap: 4px;
  position: absolute;
  left: calc(45% + clamp(20px, 0.6rem, 60px));
  bottom: clamp(20px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
  .project .project-box .swiper-button {
    position: initial;
    margin-top: 30px;
  }
}
/*新闻详情*/
.news-detail .details {
  background: #fff;
  padding-top: clamp(40px, 0.8rem, 80px);
  padding-bottom: clamp(40px, 1rem, 100px);
}
.news-detail .details .content {
  display: flex;
  gap: clamp(20px, 1.4rem, 140px);
}
@media screen and (max-width: 768px) {
  .news-detail .details .content {
    max-width: 100%;
    flex-direction: column;
  }
}
.news-detail .details .content .detail-right {
  flex-basis: clamp(200px, 3.9rem, 390px);
}
.news-detail .details .content .detail-right .relate-title {
  font-size: clamp(16px, 0.24rem, 24px);
  color: #c29f7b;
  border-bottom: 1px solid #eee;
  margin-bottom: clamp(10px, 0.2rem, 20px);
  padding-bottom: clamp(10px, 0.2rem, 20px);
}
.news-detail .details .content .detail-right .lists {
  overflow: auto;
}
@media screen and (max-width: 768px) {
  .news-detail .details .content .detail-right .lists {
    display: flex;
    gap: 20px;
  }
}
.news-detail .details .content .detail-right .lists .list {
  border-bottom: 1px solid #eee;
  padding-bottom: clamp(10px, 0.1rem, 10px);
  margin-bottom: clamp(10px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
  .news-detail .details .content .detail-right .lists .list {
    flex-shrink: 0;
    flex-basis: 70%;
  }
}
.news-detail .details .content .detail-right .lists .list .imgBox {
  border-radius: 10px;
  padding-bottom: 72%;
}
.news-detail .details .content .detail-right .lists .list .title {
  margin-top: 10px;
  font-size: clamp(14px, 0.18rem, 18px);
}
.news-detail .details .content .detail-right .lists .list .time {
  margin-top: 20px;
  color: #999999;
  font-size: clamp(12px, 0.14rem, 14px);
}
.news-detail .details .content .detail-right .lists .list:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.news-detail .details .content .detail-right .lists .list:last-child .list {
  position: relative;
  display: block;
}
.news-detail .details .content .detail-right .lists .list:last-child .list i {
  position: absolute;
  left: -16px;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  transition: all 0.5s;
  font-size: 12px;
  height: fit-content;
}
.news-detail .details .content .detail-right .lists .list:last-child .list.active,
.news-detail .details .content .detail-right .lists .list:last-child .list:hover {
  color: var(--dominant-color);
}
.news-detail .details .content .detail-right .lists .list:last-child .list.active i,
.news-detail .details .content .detail-right .lists .list:last-child .list:hover i {
  opacity: 1;
}
.news-detail .details .content .detail-right .resource1-box {
  grid-template-columns: repeat(1, 1fr);
}
.news-detail .details .content .detail-right .detail-download {
  border-radius: 10px;
  border: 1px solid #eee;
  padding: clamp(20px, 0.3rem, 30px);
  margin-bottom: clamp(30px, 0.4rem, 40px);
}
.news-detail .details .content .detail-right .detail-download .relate-title {
  border: none;
  padding-bottom: 0;
}
.news-detail .details .content .detail-right .detail-download form {
  gap: 20px;
}
.news-detail .details .content .detail-right .detail-download form label {
  flex-basis: 100%;
}
.news-detail .details .content .detail-right .detail-download form label input {
  border: 1px solid #eee;
  background: #f8f8f8;
}
.news-detail .details .content .detail-right .detail-download form label .code {
  position: absolute;
  right: 20px;
  bottom: 0;
  top: 0;
  margin: auto;
  height: fit-content;
}
.news-detail .details .content .detail-right .detail-download .tip {
  font-size: clamp(12px, 0.16rem, 16px);
  color: #999;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.news-detail .details .content .detail-right .detail-download .tip label {
  flex-basis: auto;
  gap: 10px;
}
.news-detail .details .content .detail-right .detail-download .tip .tip-check {
  display: flex;
  gap: 20px;
}
.news-detail .details .content .detail-right .detail-download .tip input {
  width: 18px;
  height: 18px;
  border-radius: 0;
}
.news-detail .details .content .detail-right .detail-download button {
  width: 100%;
  background: var(--dominant-color);
}
.news-detail .details .content .details-container {
  flex: 1;
}
.news-detail .details .content .details-container .title {
  font-size: clamp(16px, 0.32rem, 32px);
  line-height: 1.6;
  text-align: center;
  color: var(--dominant-color);
  margin-bottom: clamp(10px, 0.3rem, 30px);
  font-weight: 400;
}
.news-detail .details .content .details-container .lists {
  justify-content: center;
  gap: 20px;
  font-size: clamp(12px, 0.14rem, 14px);
  color: #666;
  display: flex;
}
.news-detail .details .content .details-container .mid-summary {
  font-size: clamp(14px, 0.18rem, 18px);
  color: #333333;
  background: #f8f8f8;
  padding: clamp(20px, 0.3rem, 30px);
  margin-top: clamp(20px, 0.3rem, 30px);
}
.news-detail .details .content .details-container .summary {
  margin-top: clamp(20px, 0.3rem, 30px);
  font-size: clamp(12px, 0.18rem, 18px);
  color: #666666;
  line-height: 1.8;
  min-height: 300px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .news-detail .details .content .details-container .summary {
    font-size: 14px;
    width: 100%;
  }
  .news-detail .details .content .details-container .summary img {
    max-width: 100% !important;
    height: auto !important;
  }
}
.news-detail .detail-pager {
  margin-top: clamp(20px, 0.3rem, 30px);
  display: flex;
  flex-direction: column;
}
.news-detail .detail-pager a {
  display: flex;
  font-size: clamp(12px, 0.18rem, 18px);
  transition: all 0.5s;
  color: rgba(0, 0, 0, 0.6);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .news-detail .detail-pager a {
    flex-basis: 100%;
  }
}
.news-detail .detail-pager a .text .t-summary {
  position: relative;
  color: #000;
}
.news-detail .detail-pager a .text .t-summary .icon {
  position: absolute;
  left: -0.5rem;
}
@media screen and (max-width: 768px) {
  .news-detail .detail-pager a .text .t-summary .icon {
    left: -20px;
  }
}
.news-detail .detail-pager a:hover .t-summary {
  color: var(--dominant-color);
}
.news-detail .footer-link {
  display: flex;
  align-items: center;
  grid-gap: 20px;
  flex-basis: 50%;
  margin-top: clamp(10px, 0.2rem, 20px);
}
.news-detail .footer-link .item {
  width: clamp(16px, 0.24rem, 24px);
  height: clamp(16px, 0.24rem, 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.5s;
  filter: brightness(0);
  opacity: 0.4;
}
.news-detail .footer-link .item .show {
  position: absolute;
  bottom: clamp(40px, 0.7rem, 70px);
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  display: none;
}
.news-detail .footer-link .item img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.news-detail .footer-link .item:hover {
  filter: none;
  opacity: 1;
}
.news-detail .footer-link .item:hover .show {
  display: block;
}
.about {
  padding-top: clamp(40px, 1rem, 100px);
  padding-bottom: clamp(40px, 1rem, 100px);
}
.about .index-title {
  margin-bottom: clamp(30px, 0.5rem, 50px);
}
.about .about1 .about1-box {
  gap: clamp(20px, 0.6rem, 60px);
}
@media screen and (max-width: 768px) {
  .about .about1 .about1-box {
    flex-direction: column;
  }
}
.about .about1 .about1-box .left {
  flex-basis: 45%;
  height: fit-content;
  border-radius: 10px;
  overflow: hidden;
}
.about .about1 .about1-box .right {
  flex: 1;
  font-size: clamp(14px, 0.18rem, 18px);
  color: #333333;
}
.about .about2 {
  margin-top: clamp(40px, 0.7rem, 70px);
}
.about .about2 .about2-box {
  background: #fbf9f7;
  border-radius: 20px;
  overflow: hidden;
  padding: clamp(20px, 0.3rem, 30px);
  display: flex;
}
@media screen and (max-width: 768px) {
  .about .about2 .about2-box {
    flex-direction: column;
  }
}
.about .about2 .about2-box .left {
  width: clamp(200px, 2.5rem, 250px);
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .about .about2 .about2-box .left {
    width: 100%;
    display: flex;
    align-items: center;
  }
}
.about .about2 .about2-box .left .prev,
.about .about2 .about2-box .left .next {
  text-align: center;
  font-size: clamp(16px, 0.24rem, 24px);
  padding-right: 20px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .about .about2 .about2-box .left .prev,
  .about .about2 .about2-box .left .next {
    display: none;
  }
}
.about .about2 .about2-box .left .prev.swiper-button-disabled,
.about .about2 .about2-box .left .next.swiper-button-disabled {
  opacity: 0.6;
}
.about .about2 .about2-box .right {
  width: calc(100% - clamp(230px, 3.3rem, 330px));
}
@media screen and (max-width: 768px) {
  .about .about2 .about2-box .right {
    width: 100%;
  }
}
.about .about2 .about2-box .right .change {
  display: none;
}
.about .about2 .about2-box .right .change.active {
  display: block;
}
.about .about2 .about2-box .swiper1 {
  margin-top: 20px;
  margin-bottom: 20px;
  height: 4rem;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .about .about2 .about2-box .swiper1 {
    height: auto;
  }
}
.about .about2 .about2-box .swiper1 .swiper-slide {
  height: 1rem;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.03);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .about .about2 .about2-box .swiper1 .swiper-slide {
    height: 80px;
  }
}
.about .about2 .about2-box .swiper1 .swiper-slide .time {
  color: var(--dominant-color);
  font-size: clamp(12px, 0.18rem, 18px);
}
.about .about2 .about2-box .swiper1 .swiper-slide .title {
  font-size: clamp(14px, 0.24rem, 24px);
}
.about .about2 .about2-box .swiper1 .swiper-slide::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-width: 10px;
  border-style: solid;
  right: -20px;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  border-color: transparent transparent transparent var(--dominant-color);
}
.about .about2 .about2-box .swiper1 .swiper-slide.active {
  background: var(--dominant-color);
}
.about .about2 .about2-box .swiper1 .swiper-slide.active .time,
.about .about2 .about2-box .swiper1 .swiper-slide.active .title {
  color: #fff;
}
.about .about2 .about2-box .swiper1 .swiper-slide.active::after {
  opacity: 1;
}
.about .about2 .about2-box .swiper2 {
  padding-bottom: 50px;
}
.about .about2 .about2-box .swiper2 .swiper-slide {
  padding: clamp(10px, 0.2rem, 20px);
  border-radius: 10px;
  background: #fff;
  border: 1px solid #eee;
  display: flex;
  gap: clamp(10px, 0.2rem, 20px);
  align-items: center;
}
.about .about2 .about2-box .swiper2 .swiper-slide .check {
  background: var(--dominant-color);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.about .about2 .about2-box .swiper2 .swiper-slide .text {
  font-size: clamp(12px, 0.18rem, 18px);
  flex: 1;
}
.about .about2 .about2-box .swiper2 .swiper-pagination-bullet-active {
  background: var(--dominant-color) !important;
}
.about .about3 {
  margin-top: clamp(40px, 0.7rem, 70px);
  background: url('../images/img115.jpg') no-repeat center / cover;
  padding-top: clamp(40px, 0.9rem, 90px);
  padding-bottom: clamp(40px, 0.9rem, 90px);
}
.about .about3 .about3-tabs-box {
  position: relative;
}
.about .about3 .about3-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #dadada;
  margin-bottom: clamp(20px, 0.3rem, 30px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .about .about3 .about3-tabs {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
.about .about3 .about3-tabs.active {
  opacity: 1;
  pointer-events: auto;
}
.about .about3 .about3-tabs:nth-child(n+2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.about .about3 .about3-tabs .tab {
  font-size: clamp(14px, 0.24rem, 24px);
  position: relative;
  padding: clamp(20px, 0.3rem, 30px);
  transition: all 0.3s;
  cursor: pointer;
  flex: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about .about3 .about3-tabs .tab {
    padding: 10px 6px;
    flex-basis: auto;
  }
}
.about .about3 .about3-tabs .tab::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  background: var(--dominant-color);
  width: 100%;
  height: 1px;
  opacity: 0;
  transition: all 0.3s;
}
.about .about3 .about3-tabs .tab.active,
.about .about3 .about3-tabs .tab:hover {
  color: var(--dominant-color);
}
.about .about3 .about3-tabs .tab.active::after,
.about .about3 .about3-tabs .tab:hover::after {
  opacity: 1;
}
.about .about3 .about3-change {
  margin-top: clamp(40px, 0.6rem, 60px);
  display: none;
  transition: all 0.5s;
  position: relative;
}
.about .about3 .about3-change.active {
  display: block;
}
.about .about3 .about3-change .items {
  display: none;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
  .about .about3 .about3-change .items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about .about3 .about3-change .items.active {
  display: grid;
}
.about .about3 .about3-change .item {
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.3rem, 30px);
}
.about .about3 .about3-change .item .img1,
.about .about3 .about3-change .item .img2 {
  width: 15%;
}
.about .about3 .about3-change .item .text {
  font-size: clamp(14px, 0.18rem, 18px);
  width: 50%;
  text-align: center;
}
.about .about4 {
  padding-top: clamp(40px, 0.7rem, 70px);
  padding-bottom: clamp(40px, 0.7rem, 70px);
  background: url('../images/img194.jpg') no-repeat center / cover;
}
.about .about4 .about4-box {
  position: relative;
  max-width: 1650px;
}
@media screen and (max-width: 768px) {
  .about .about4 .swiper {
    width: 100%;
  }
}
.about .about4 .swiper .swiper-slide {
  cursor: pointer;
  display: flex;
  background: #fff;
  border-radius: 10px;
  padding: clamp(20px, 30px, 30px);
  gap: clamp(20px, 0.3rem, 30px);
  height: auto;
}
@media screen and (max-width: 768px) {
  .about .about4 .swiper .swiper-slide {
    flex-direction: column;
    padding: 20px;
  }
}
.about .about4 .swiper .swiper-slide .img {
  flex-basis: clamp(120px, 2.4rem, 240px);
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .about .about4 .swiper .swiper-slide .img {
    flex-basis: auto;
  }
}
.about .about4 .swiper .swiper-slide .img .imgBox {
  padding-bottom: 150%;
}
.about .about4 .swiper .swiper-slide .text {
  flex: 1;
  font-size: clamp(14px, 0.18rem, 18px);
}
.about .about4 .swiper .swiper-slide .text .name {
  display: flex;
  gap: clamp(10px, 0.3rem, 30px);
  align-items: flex-end;
  font-size: clamp(16px, 0.24rem, 24px);
}
.about .about4 .swiper .swiper-slide .text .name span {
  color: var(--dominant-color);
  font-size: clamp(14px, 0.18rem, 18px);
}
.about .about4 .swiper .swiper-slide .text .summary {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #666;
  margin-top: 20px;
}
.about .about4 .swiper .swiper-slide .text .summary img {
  flex-basis: 32px;
  flex-shrink: 0;
}
.about .about4 .swiper .swiper-slide .text .summary .s-text {
  flex: 1;
}
.about .about4 .swiper .swiper-slide .text .project {
  padding-left: clamp(20px, 0.3rem, 30px);
  margin-top: clamp(20px, 0.3rem, 30px);
  position: relative;
}
.about .about4 .swiper .swiper-slide .text .project::after {
  content: '';
  position: absolute;
  background: var(--dominant-color);
  width: 2px;
  height: 30px;
  left: 0;
  top: 0;
}
.about .about4 .swiper .swiper-slide .text .project::before {
  content: '';
  position: absolute;
  background: #eee;
  width: 2px;
  height: 100%;
  left: 0;
  top: 0;
}
.about .about4 .swiper .swiper-slide .text .project .p-text {
  margin-top: clamp(10px, 0.1rem, 10px);
  font-size: clamp(12px, 0.16rem, 16px);
  color: #666;
}
.about .about4 .swiper-button-prev,
.about .about4 .swiper-button-next {
  border: none;
  color: #fff;
  background: none !important;
}
@media screen and (max-width: 768px) {
  .about .about4 .swiper-button-prev,
  .about .about4 .swiper-button-next {
    display: none;
  }
}
.about .about4 .swiper-button-prev:hover i,
.about .about4 .swiper-button-next:hover i {
  color: var(--dominant-color) !important;
}
.about .about4 .swiper-button-prev {
  left: 0;
}
.about .about4 .swiper-button-next {
  right: 0;
}
.about .about4 .button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: clamp(6px, 0.1rem, 10px) clamp(20px, 0.3rem, 30px);
  gap: clamp(8px, 0.1rem, 10px);
  transition: all 0.5s;
  cursor: pointer;
  width: fit-content;
  background: var(--dominant-color);
  margin: clamp(40px, 0.5rem, 50px) auto auto;
  color: #fff;
}
.about .about5 {
  padding-top: clamp(40px, 0.7rem, 70px);
  padding-bottom: clamp(40px, 0.7rem, 70px);
  background: url('../images/img196.jpg') no-repeat center bottom / cover;
}
.about .about5 .about5-box {
  position: relative;
}
.about .about5 .items {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .about .about5 .items {
    position: initial;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.about .about5 .items .item {
  width: clamp(150px, 2rem, 200px);
  height: clamp(150px, 2rem, 200px);
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.03);
  position: absolute;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .about .about5 .items .item {
    position: initial;
    width: auto;
    height: auto;
  }
}
.about .about5 .items .item.item1 {
  left: 0;
  bottom: 10%;
}
.about .about5 .items .item.item2 {
  left: 18%;
  bottom: 145%;
}
.about .about5 .items .item.item3 {
  left: 0;
  right: 0;
  margin: auto;
  bottom: 125%;
}
.about .about5 .items .item.item4 {
  right: 18%;
  bottom: 145%;
}
.about .about5 .items .item.item5 {
  right: 0;
  bottom: 10%;
}
.about .about5 .items .item:hover {
  transform: translateY(-10px);
}
.about .about5 .about5-text {
  text-align: center;
  margin-top: 4rem;
}
.about .about5 .about5-text .about5-logo {
  width: clamp(90px, 1.8rem, 180px);
  height: clamp(90px, 1.8rem, 180px);
  margin-left: auto;
  margin-right: auto;
}
.about .about5 .about5-text .about5-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about .about5 .about5-text .about5-text {
  margin-top: clamp(20px, 0.3rem, 30px);
  font-weight: 600;
  color: var(--dominant-color);
  font-size: clamp(14px, 0.36rem, 36px);
}
.about .about6 {
  margin-top: clamp(40px, 0.7rem, 70px);
}
.about .about6 .about6-box .top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
  .about .about6 .about6-box .top {
    grid-template-columns: repeat(1, 1fr);
  }
}
.about .about6 .about6-box .bottom {
  display: flex;
  gap: clamp(20px, 0.3rem, 30px);
  margin-top: clamp(20px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
  .about .about6 .about6-box .bottom {
    flex-direction: column;
  }
}
.about .about6 .about6-box .bottom .b-left {
  gap: clamp(20px, 0.3rem, 30px);
  flex-basis: 40%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .about .about6 .about6-box .bottom .b-left {
    grid-template-columns: repeat(1, 1fr);
  }
}
.about .about6 .about6-box .bottom .b-right {
  flex: 1;
}
.about .about6 .about6-box .item {
  background: #fff;
  padding: clamp(20px, 0.3rem, 30px);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.03);
}
.about .about6 .about6-box .item .title {
  position: relative;
  font-size: clamp(16px, 0.32rem, 32px);
  padding-left: 16px;
  font-weight: 600;
}
.about .about6 .about6-box .item .title::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 3px;
  height: 60%;
  background: var(--dominant-color);
}
.about .about6 .about6-box .item .item-bottom {
  border-top: 1px solid #dadada;
  margin-top: clamp(10px, 0.16rem, 16px);
  padding-top: clamp(16px, 0.3rem, 30px);
}
.about .about6 .about6-box .item .lists {
  display: grid;
  gap: clamp(20px, 0.5rem, 50px);
}
@media screen and (max-width: 768px) {
  .about .about6 .about6-box .item .lists {
    grid-template-columns: repeat(1, 1fr);
  }
}
.about .about6 .about6-box .item .lists .list:nth-child(2) {
  border-left: 1px solid #eee;
  padding-left: clamp(20px, 0.5rem, 50px);
}
@media screen and (max-width: 768px) {
  .about .about6 .about6-box .item .lists .list:nth-child(2) {
    border-left: none;
    padding-left: 0;
  }
}
.about .about6 .about6-box .item .lists .list .list-title {
  margin-bottom: clamp(10px, 0.1rem, 10px);
  font-size: clamp(14px, 0.24rem, 24px);
}
.about .about6 .about6-box .item .lists .list .number-list {
  display: grid;
  font-size: clamp(14px, 0.18rem, 18px);
  gap: clamp(10px, 0.2rem, 20px);
}
@media screen and (max-width: 768px) {
  .about .about6 .about6-box .item .lists .list .number-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.about .about6 .about6-box .item .lists .list .number-list .key {
  font-weight: 600;
  color: var(--dominant-color);
}
.about .about6 .about6-box .item .lists .list .text-list {
  margin-top: clamp(10px, 0.2rem, 20px);
}
.about .about6 .about6-box .item .lists .list .text-list .t-list {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: clamp(14px, 0.18rem, 18px);
  margin-bottom: clamp(10px, 0.1rem, 10px);
}
.about .about6 .about6-box .item .lists .list .text-list .t-list .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: var(--dominant-color);
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .about .about6 .about6-box .item .lists .list .text-list .t-list .icon {
    width: 12px;
    height: 12px;
    font-size: clamp(12px, 0.12rem, 12px);
  }
}
.about .about6 .about6-box .item .lists .list .text-list .t-list .text {
  flex: 1;
}
.about .about7 {
  margin-top: clamp(40px, 0.7rem, 70px);
}
.about .about7 .about7-box {
  border-radius: 10px;
  margin-top: clamp(40px, 0.6rem, 60px);
  display: flex;
  justify-content: space-between;
  padding: clamp(20px, 0.7rem, 70px) clamp(20px, 0.5rem, 50px);
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.03);
}
@media screen and (max-width: 768px) {
  .about .about7 .about7-box {
    flex-direction: column;
  }
}
.about .about7 .about7-box .line {
  width: 1px;
  height: auto;
  background: #dadada;
}
@media screen and (max-width: 768px) {
  .about .about7 .about7-box .line {
    display: none;
  }
}
.about .about7 .about7-box .item {
  display: flex;
  align-items: flex-start;
  gap: clamp(20px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
  .about .about7 .about7-box .item {
    border-bottom: 1px solid #dadada;
    margin-top: clamp(20px, 0.3rem, 30px);
    padding: clamp(20px, 0.3rem, 30px);
  }
}
@media screen and (max-width: 768px) {
  .about .about7 .about7-box .item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.about .about7 .about7-box .item .icon {
  width: clamp(50px, 0.9rem, 90px);
  height: clamp(50px, 0.9rem, 90px);
}
.about .about7 .about7-box .item .text .title {
  font-weight: 600;
  font-size: clamp(16px, 0.36rem, 36px);
}
.about .about7 .about7-box .item .text .summary {
  color: #666;
  font-size: clamp(14px, 0.18rem, 18px);
}
.resource-menu .resource-menu-title {
  background: #c29f7b;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .resource-menu .resource-menu-title {
    justify-content: flex-start;
  }
}
.resource-menu .resource-menu-title .first-title {
  height: clamp(40px, 0.68rem, 68px);
  padding: 0 20px;
  min-width: clamp(120px, 1.8rem, 180px);
  color: #fff;
  font-size: clamp(14px, 0.18rem, 18px);
  transition: all 0.5s;
  position: relative;
}
.resource-menu .resource-menu-title .first-title::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px;
  border-color: transparent transparent #fff;
  margin: auto;
  opacity: 0;
  transition: all 0.5s;
}
.resource-menu .resource-menu-title .first-title.active,
.resource-menu .resource-menu-title .first-title:hover {
  background: var(--dominant-color);
}
.resource-menu .resource-menu-title .first-title.active::after,
.resource-menu .resource-menu-title .first-title:hover::after {
  opacity: 1;
}
.resource-menu .second-menu {
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 768px) {
  .resource-menu .second-menu {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
.resource-menu .second-menu a {
  height: clamp(50px, 0.8rem, 80px);
  font-size: clamp(12px, 0.16rem, 16px);
  padding: clamp(10px, 0.3rem, 30px);
  position: relative;
  color: #666;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .resource-menu .second-menu a {
    flex-shrink: 0;
    height: fit-content;
  }
}
.resource-menu .second-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #c29f7b;
  opacity: 0;
  transition: all 0.5s;
}
.resource-menu .second-menu a.active,
.resource-menu .second-menu a:hover {
  color: #c29f7b;
}
.resource-menu .second-menu a.active::after,
.resource-menu .second-menu a:hover::after {
  opacity: 1;
}
.resource-select {
  background: #f9f9f9;
  border-radius: 10px;
  border: 1px solid #eee;
  padding: clamp(20px, 0.3rem, 30px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 0.3rem, 30px);
  margin-top: clamp(20px, 0.36rem, 36px);
  margin-bottom: clamp(20px, 0.36rem, 36px);
}
.resource-select .items {
  align-items: baseline;
}
@media screen and (max-width: 768px) {
  .resource-select .items {
    flex-direction: column;
  }
}
.resource-select .items .item-left {
  padding: 0;
  flex-basis: 140px;
}
@media screen and (max-width: 768px) {
  .resource-select .items .item-left {
    flex-basis: auto;
  }
}
.resource-select .select-items {
  flex: 1;
  gap: clamp(20px, 0.2rem, 20px);
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .resource-select .select-items {
    margin-top: 10px;
    gap: 10px;
  }
}
.resource-select .select-items .item.active,
.resource-select .select-items .item:hover {
  background: #c29f7b;
  color: #fff;
}
.resource-select .item {
  cursor: pointer;
  border-radius: 10px;
  padding: 6px 20px;
  transition: all 0.2s;
  font-size: clamp(12px, 0.16rem, 16px);
}
@media screen and (max-width: 768px) {
  .resource-select .item {
    padding: 6px 10px;
  }
}
.resource1 {
  padding-bottom: clamp(40px, 0.8rem, 80px);
}
.resource1 .resource1-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 0.3rem, 30px);
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .resource1 .resource1-box {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.resource1 .resource1-box .item {
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
  align-items: normal;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
  background: #fff;
  border-radius: 10px;
}
.resource1 .resource1-box .item .img {
  overflow: hidden;
  position: relative;
  border-radius: 10px 10px 0 0;
}
@media screen and (max-width: 768px) {
  .resource1 .resource1-box .item .img {
    width: 100%;
  }
}
.resource1 .resource1-box .item .img .imgBox {
  padding-bottom: 75%;
}
.resource1 .resource1-box .item .text {
  padding: clamp(20px, 0.3rem, 30px);
  padding-bottom: clamp(30px, 0.5rem, 50px);
}
.resource1 .resource1-box .item .text .title {
  transition: all 0.5s;
  font-size: clamp(14px, 0.2rem, 20px);
}
.resource1 .resource1-box .item:hover {
  border-color: var(--dominant-color);
}
.resource1 .resource1-box .item:hover .title,
.resource1 .resource1-box .item:hover .more {
  color: var(--dominant-color);
}
.resource2 .index-title {
  justify-content: center;
}
.resource2 .resource2-1 {
  margin-top: clamp(30px, 0.7rem, 70px);
}
.resource2 .resource2-1 .top {
  gap: clamp(30px, 1.5rem, 150px);
  align-items: flex-start;
  margin-bottom: clamp(30px, 0.6rem, 60px);
  padding-bottom: clamp(30px, 0.6rem, 60px);
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 768px) {
  .resource2 .resource2-1 .top {
    flex-direction: column;
  }
}
.resource2 .resource2-1 .top .left {
  height: fit-content;
  border-radius: 10px;
  flex-basis: 43%;
  overflow: hidden;
}
.resource2 .resource2-1 .top .left img {
  width: 100%;
}
.resource2 .resource2-1 .top .right {
  flex: 1;
}
.resource2 .resource2-1 .top .right .title {
  color: var(--dominant-color);
  font-size: clamp(14px, 0.48rem, 48px);
  font-weight: 600;
}
.resource2 .resource2-1 .top .right .summary {
  color: #666;
  margin-top: clamp(10px, 0.2rem, 20px);
  font-size: clamp(12px, 0.18rem, 18px);
}
.resource2 .resource2-1 .bottom {
  max-width: 1650px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .resource2 .resource2-1 .bottom .swiper {
    width: 80%;
  }
}
.resource2 .resource2-1 .bottom .swiper .swiper-slide .img {
  border-radius: 10px;
  overflow: hidden;
}
.resource2 .resource2-1 .bottom .swiper .swiper-slide .img .imgBox {
  padding-bottom: 75%;
}
.resource2 .resource2-1 .bottom .swiper-button-prev,
.resource2 .resource2-1 .bottom .swiper-button-next {
  border: none;
  color: #000;
  background: none !important;
}
.resource2 .resource2-1 .bottom .swiper-button-prev:hover i,
.resource2 .resource2-1 .bottom .swiper-button-next:hover i {
  color: var(--dominant-color) !important;
}
.resource2 .resource2-1 .bottom .swiper-button-prev {
  left: 0;
}
.resource2 .resource2-1 .bottom .swiper-button-next {
  right: 0;
}
.resource2 .resource2-2 {
  margin-top: clamp(40px, 0.6rem, 60px);
  margin-bottom: clamp(40px, 0.7rem, 70px);
}
.resource2 .resource2-2 .items {
  margin-top: clamp(40px, 0.6rem, 60px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
  .resource2 .resource2-2 .items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.resource2 .resource2-2 .items .item {
  background: #fff;
  padding: clamp(20px, 0.3rem, 30px) clamp(10px, 0.1rem, 10px) clamp(20px, 0.5rem, 50px);
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
  text-align: center;
}
.resource2 .resource2-2 .items .item .icon {
  width: clamp(60px, 1.16rem, 116px);
  height: clamp(60px, 1.16rem, 116px);
  margin: auto;
}
.resource2 .resource2-2 .items .item .text {
  margin-top: clamp(10px, 0.2rem, 20px);
  color: #666666;
}
.resource2 .resource2-2 .items .item .text .title {
  color: #333;
  font-size: clamp(14px, 0.24rem, 24px);
}
.resource2 .resource2-2 .items .item .text .summary {
  font-size: clamp(12px, 0.18rem, 18px);
}
.resource2 .resource2-3 {
  background: #f8f8f8;
  padding-top: clamp(40px, 0.7rem, 70px);
  padding-bottom: clamp(40px, 0.7rem, 70px);
}
.resource2 .resource2-3 .resource2-3-box {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-top: clamp(40px, 0.6rem, 60px);
  display: flex;
  justify-content: space-between;
  padding: clamp(20px, 0.4rem, 40px);
  gap: clamp(20px, 0.5rem, 50px);
}
@media screen and (max-width: 768px) {
  .resource2 .resource2-3 .resource2-3-box {
    flex-direction: column;
  }
}
.resource2 .resource2-3 .resource2-3-box .left {
  font-size: clamp(14px, 0.18rem, 18px);
  color: #666;
  flex: 1;
  position: relative;
  padding: clamp(60px, 0.9rem, 90px);
}
@media screen and (max-width: 768px) {
  .resource2 .resource2-3 .resource2-3-box .left {
    padding-left: 0;
    padding-right: 0;
  }
}
.resource2 .resource2-3 .resource2-3-box .left .img1,
.resource2 .resource2-3 .resource2-3-box .left .img2 {
  position: absolute;
  width: clamp(40px, 0.7rem, 70px);
  height: fit-content;
}
.resource2 .resource2-3 .resource2-3-box .left .img1 {
  top: 0;
  left: 0;
}
.resource2 .resource2-3 .resource2-3-box .left .img2 {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}
.resource2 .resource2-3 .resource2-3-box .right {
  border-radius: 10px;
  flex-basis: 43%;
  overflow: hidden;
}
.resource2 .resource2-4 {
  padding-top: clamp(40px, 0.8rem, 80px);
  padding-bottom: clamp(40px, 0.8rem, 80px);
}
.resource2 .resource2-4 .items {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 0.3rem, 30px);
  flex-wrap: wrap;
}
.resource2 .resource2-4 .items .item {
  flex-basis: calc((100% - clamp(60px, 0.9rem, 90px)) / 4);
  background: #fff;
  padding: clamp(20px, 0.3rem, 30px) clamp(10px, 0.1rem, 10px) clamp(20px, 0.5rem, 50px);
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .resource2 .resource2-4 .items .item {
    flex-basis: 100%;
  }
}
.resource2 .resource2-4 .items .item .icon {
  width: clamp(60px, 1.16rem, 116px);
  height: clamp(60px, 1.16rem, 116px);
  margin: auto;
}
.resource2 .resource2-4 .items .item .text {
  margin-top: clamp(10px, 0.2rem, 20px);
  color: #666666;
}
.resource2 .resource2-4 .items .item .text .title {
  color: #333;
  font-size: clamp(14px, 0.24rem, 24px);
}
.resource2 .resource2-4 .items .item .text .summary {
  font-size: clamp(12px, 0.18rem, 18px);
}
.resource2 .resource2-5 {
  background: url('../images/img143.jpg') no-repeat center / cover;
  padding-top: clamp(40px, 0.7rem, 70px);
  padding-bottom: clamp(40px, 0.7rem, 70px);
}
.resource2 .resource2-5 .index-summary {
  text-align: center;
  color: #fff;
  font-size: clamp(14px, 0.18rem, 18px);
  margin-top: clamp(40px, 0.6rem, 60px);
}
.resource2 .resource2-5 .resource2-5-box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 0.3rem, 30px);
  margin-top: clamp(20px, 0.5rem, 50px);
}
@media screen and (max-width: 768px) {
  .resource2 .resource2-5 .resource2-5-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.resource2 .resource2-5 .resource2-5-box .item {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding: clamp(20px, 0.4rem, 40px) clamp(20px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
  .resource2 .resource2-5 .resource2-5-box .item {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.resource2 .resource2-5 .resource2-5-box .item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.resource2 .resource2-5 .resource2-5-box .item .icon {
  width: clamp(50px, 1.16rem, 116px);
  height: clamp(50px, 1.16rem, 116px);
  margin: auto;
}
.resource2 .resource2-5 .resource2-5-box .item .text {
  color: #fff;
  font-size: clamp(14px, 0.18rem, 18px);
  text-align: center;
  margin-top: clamp(10px, 0.2rem, 20px);
}
.resource2 .resource2-5 .bottom {
  margin-top: clamp(40px, 0.5rem, 50px);
  text-align: center;
}
.resource2 .resource2-5 .bottom .text {
  color: #fff;
  font-size: clamp(14px, 0.18rem, 18px);
  margin-top: clamp(10px, 0.2rem, 20px);
}
.resource2 .resource2-5 .button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: clamp(6px, 0.1rem, 10px) clamp(20px, 0.3rem, 30px);
  color: #fff;
  gap: clamp(8px, 0.1rem, 10px);
  transition: all 0.5s;
  cursor: pointer;
  width: fit-content;
  background: var(--dominant-color);
  margin: auto;
}
.resource3 {
  margin-top: clamp(40px, 0.8rem, 80px);
  margin-bottom: clamp(40px, 0.8rem, 80px);
}
.resource3 .item {
  align-items: baseline;
  gap: clamp(20px, 0.3rem, 30px);
  padding-bottom: clamp(20px, 0.3rem, 30px);
}
.resource3 .item .num {
  background: #c29f7b;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.resource3 .item .text {
  flex: 1;
  border-bottom: 1px solid #eee;
  padding-bottom: clamp(20px, 0.3rem, 30px);
}
.resource3 .item .text .key {
  font-size: clamp(14px, 0.2rem, 20px);
  color: #333;
}
.resource3 .item .text .value {
  margin-top: clamp(10px, 0.2rem, 20px);
  color: #666;
}
.resource3 .item .text .value .more,
.resource3 .item .text .value .less {
  color: var(--dominant-color);
  display: inline-block;
  cursor: pointer;
}
.resource3 .item .text .value .hide {
  display: none;
}
.plan .index5 {
  padding-top: clamp(50px, 1.2rem, 120px);
  padding-bottom: clamp(50px, 1rem, 100px);
}
.plan .top-title {
  color: #fff;
  padding: 8px 18px;
  border-radius: 99px;
  margin: auto;
  background: linear-gradient(to bottom, #c09c78, #a36f3d);
  width: fit-content;
  margin-bottom: clamp(10px, 0.2rem, 20px);
}
.plan .index-title {
  justify-content: center;
}
.plan .index-title .left {
  flex-basis: auto;
  justify-content: center;
}
.plan .index-title .left .fade-img {
  left: 0;
  right: 0;
  margin: auto;
}
.plan .index-summary {
  text-align: center;
  font-size: clamp(14px, 0.22rem, 22px);
  margin-top: clamp(40px, 0.5rem, 50px);
  color: #333;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.plan .plan1 {
  padding-top: clamp(40px, 0.8rem, 80px);
  padding-bottom: clamp(40px, 0.8rem, 80px);
}
.plan .plan1 .plan1-box {
  margin-top: clamp(20px, 0.3rem, 30px);
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: clamp(20px, 0.2rem, 20px);
  flex-wrap: wrap;
  justify-content: center;
}
.plan .plan1 .plan1-box .item {
  border: 1px solid #c29f7b;
  border-radius: 10px;
  transform: skew(-25deg);
  padding: clamp(20px, 0.2rem, 20px);
}
@media screen and (max-width: 768px) {
  .plan .plan1 .plan1-box .item {
    width: 100%;
  }
}
.plan .plan1 .plan1-box .item .text {
  transform: skew(25deg);
  text-align: center;
  color: #666;
}
.plan .plan1 .plan1-shadow {
  margin-top: clamp(30px, 0.4rem, 40px);
  text-align: center;
}
.plan .plan2 .plan2-box {
  position: relative;
}
.plan .plan2 .plan2-box .swiper {
  padding-bottom: clamp(40px, 0.8rem, 80px);
}
@media screen and (max-width: 768px) {
  .plan .plan2 .plan2-box .swiper {
    width: 100%;
  }
}
.plan .plan2 .plan2-box .swiper-slide .top .num {
  text-align: center;
  font-size: clamp(40px, 0.82rem, 82px);
  color: #c29f7b;
  opacity: 0.2;
  line-height: 1.4;
}
.plan .plan2 .plan2-box .swiper-slide .top .text {
  font-size: clamp(16px, 0.32rem, 32px);
  text-align: center;
}
.plan .plan2 .plan2-box .swiper-slide .bottom {
  margin-top: clamp(20px, 0.4rem, 40px);
  display: flex;
  gap: clamp(20px, 0.8rem, 80px);
}
@media screen and (max-width: 768px) {
  .plan .plan2 .plan2-box .swiper-slide .bottom {
    flex-direction: column;
  }
}
.plan .plan2 .plan2-box .swiper-slide .bottom .img {
  flex-basis: 55%;
  border-radius: 10px;
  overflow: hidden;
}
.plan .plan2 .plan2-box .swiper-slide .bottom .img .imgBox {
  padding-bottom: 50%;
}
.plan .plan2 .plan2-box .swiper-slide .bottom .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.plan .plan2 .plan2-box .swiper-slide .bottom .text .title {
  font-size: clamp(14px, 0.18rem, 18px);
  color: #666;
  margin-top: clamp(10px, 0.2rem, 20px);
}
.plan .plan2 .plan2-box .swiper-slide .bottom .text .more {
  display: flex;
  gap: 10px;
  color: var(--dominant-color);
  font-size: clamp(14px, 0.18rem, 18px);
  align-items: center;
  margin-top: clamp(20px, 0.4rem, 40px);
}
.plan .plan2 .plan2-box .swiper-button-prev,
.plan .plan2 .plan2-box .swiper-button-next {
  border: none;
  color: #000;
  background: none !important;
}
@media screen and (max-width: 768px) {
  .plan .plan2 .plan2-box .swiper-button-prev,
  .plan .plan2 .plan2-box .swiper-button-next {
    display: none;
  }
}
.plan .plan2 .plan2-box .swiper-button-prev:hover i,
.plan .plan2 .plan2-box .swiper-button-next:hover i {
  color: var(--dominant-color) !important;
}
.plan .plan2 .plan2-box .swiper-button-prev {
  left: 0;
}
.plan .plan2 .plan2-box .swiper-button-next {
  right: 0;
}
.plan .plan3 {
  padding-top: clamp(40px, 0.8rem, 80px);
  padding-bottom: clamp(40px, 0.8rem, 80px);
  background: url('../images/img157.jpg') no-repeat center bottom / cover;
}
.plan .plan3 .plan3-1 {
  display: flex;
  justify-content: center;
  margin-top: clamp(40px, 0.6rem, 60px);
  margin-bottom: clamp(40px, 0.6rem, 60px);
}
@media screen and (max-width: 768px) {
  .plan .plan3 .plan3-1 {
    flex-direction: column;
    gap: 10px;
  }
}
.plan .plan3 .plan3-1 .item {
  border-right: 1px solid #eee;
  text-align: center;
  padding: 0 clamp(2px, 0.6rem, 60px);
}
@media screen and (max-width: 768px) {
  .plan .plan3 .plan3-1 .item {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
  }
}
.plan .plan3 .plan3-1 .item:last-child {
  border-right: none;
}
.plan .plan3 .plan3-1 .item .key {
  font-size: clamp(16px, 0.28rem, 28px);
  color: #c11920;
  font-weight: 600;
}
.plan .plan3 .plan3-1 .item .value {
  font-size: clamp(14px, 0.18rem, 18px);
  color: #666;
}
.plan .plan3 .plan3-2 {
  position: relative;
  margin-bottom: clamp(40px, 0.6rem, 60px);
}
@media screen and (max-width: 768px) {
  .plan .plan3 .plan3-2 .swiper {
    width: 80%;
  }
}
.plan .plan3 .plan3-2 .swiper .swiper-slide {
  background: #f6f1e6;
  border-radius: 10px;
  height: auto;
}
.plan .plan3 .plan3-2 .swiper .swiper-slide .img {
  border-radius: 10px;
  overflow: hidden;
}
.plan .plan3 .plan3-2 .swiper .swiper-slide .img .imgBox {
  padding-bottom: 75%;
}
.plan .plan3 .plan3-2 .swiper .swiper-slide .text {
  text-align: center;
  font-size: clamp(14px, 0.18rem, 18px);
  padding: clamp(10px, 0.2rem, 20px) clamp(10px, 0.2rem, 20px) clamp(20px, 0.4rem, 40px);
}
.plan .plan3 .plan3-2 .swiper-button-prev,
.plan .plan3 .plan3-2 .swiper-button-next {
  border: none;
  color: #000;
  background: none !important;
}
.plan .plan3 .plan3-2 .swiper-button-prev:hover i,
.plan .plan3 .plan3-2 .swiper-button-next:hover i {
  color: var(--dominant-color) !important;
}
.plan .plan3 .plan3-2 .swiper-button-prev {
  left: 0;
}
.plan .plan3 .plan3-2 .swiper-button-next {
  right: 0;
}
.plan .plan3 .plan3-3 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
  .plan .plan3 .plan3-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.plan .plan3 .plan3-3 .item {
  display: flex;
  align-items: flex-end;
  gap: clamp(10px, 0.3rem, 30px);
}
.plan .plan3 .plan3-3 .item .img1,
.plan .plan3 .plan3-3 .item .img2 {
  width: 15%;
}
.plan .plan3 .plan3-3 .item .mid-img {
  width: 50%;
}
.plan .plan3 .plan3-4 .plan3-4-title {
  text-align: center;
  font-size: clamp(16px, 0.32rem, 32px);
}
.plan .plan3 .plan3-4 .plan3-4-box {
  margin-top: clamp(40px, 0.6rem, 60px);
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
  position: relative;
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .plan .plan3 .plan3-4 .plan3-4-box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.plan .plan3 .plan3-4 .plan3-4-box::before {
  content: '';
  background: #c29f7b;
  height: 8px;
  border-radius: 6px;
  width: 100%;
  position: absolute;
  top: 4px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .plan .plan3 .plan3-4 .plan3-4-box::before {
    display: none;
  }
}
.plan .plan3 .plan3-4 .plan3-4-box i {
  position: absolute;
  right: -5px;
  top: -8px;
  color: #c29f7b;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .plan .plan3 .plan3-4 .plan3-4-box i {
    display: none;
  }
}
.plan .plan3 .plan3-4 .plan3-4-box .item {
  cursor: pointer;
  text-align: center;
  font-size: clamp(14px, 0.18rem, 18px);
  position: relative;
  z-index: 2;
}
.plan .plan3 .plan3-4 .plan3-4-box .item .point {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #c29f7b;
  border: 4px solid #fff;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .plan .plan3 .plan3-4 .plan3-4-box .item .point {
    display: none;
  }
}
.plan .plan3 .plan3-4 .plan3-4-box .item .num {
  color: var(--dominant-color);
  font-weight: 600;
  margin-top: 10px;
}
.plan .plan3 .plan3-4 .plan3-4-box .item .title {
  color: #333;
  margin-top: 10px;
  transition: all 0.5s;
}
.plan .plan3 .plan3-4 .plan3-4-box .item .fade-box {
  background: #c29f7b;
  padding: clamp(20px, 0.3rem, 30px);
  color: #fff;
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  width: max-content;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s;
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .plan .plan3 .plan3-4 .plan3-4-box .item .fade-box {
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    position: relative;
  }
}
.plan .plan3 .plan3-4 .plan3-4-box .item:hover .title {
  color: #c29f7b;
}
.plan .plan3 .plan3-4 .plan3-4-box .item:hover .fade-box {
  opacity: 1;
  pointer-events: auto;
}
.plan .plan3 .plan3-5 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: clamp(50px, 1rem, 100px);
}
@media screen and (max-width: 768px) {
  .plan .plan3 .plan3-5 {
    gap: 20px;
  }
}
.plan .plan3 .plan3-5 .img {
  flex-basis: 10%;
}
@media screen and (max-width: 768px) {
  .plan .plan3 .plan3-5 .img {
    flex-basis: 5%;
  }
}
.plan .plan3 .plan3-5 .img img {
  width: 100%;
}
.plan .plan3 .plan3-5 .mid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
@media screen and (max-width: 768px) {
  .plan .plan3 .plan3-5 .mid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.plan .plan3 .plan3-5 .mid .bg img {
  width: 100%;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.1));
}
.plan .plan3 .plan3-5 .mid .item {
  position: relative;
}
.plan .plan3 .plan3-5 .mid .item .m-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  object-fit: contain;
  transition: all 0.5s;
}
@media screen and (min-width: 769px) {
  .plan .plan3 .plan3-5 .mid .item:nth-child(n+8):nth-child(-n+14) {
    transform: translateX(25%);
  }
  .plan .plan3 .plan3-5 .mid .item:nth-child(n+1):nth-child(-n+7) {
    transform: translate(-25%, 25%);
  }
  .plan .plan3 .plan3-5 .mid .item:nth-child(n+15) {
    transform: translate(-25%, -25%);
  }
}
@media screen and (max-width: 768px) {
  .plan .plan3 .plan3-5 .mid .item:nth-child(n+1):nth-child(-n+3) {
    transform: translateX(-25%);
  }
  .plan .plan3 .plan3-5 .mid .item:nth-child(n+4):nth-child(-n+6),
  .plan .plan3 .plan3-5 .mid .item:nth-child(n+10):nth-child(-n+12),
  .plan .plan3 .plan3-5 .mid .item:nth-child(n+16):nth-child(-n+18) {
    transform: translateX(25%);
    margin-top: -25%;
  }
  .plan .plan3 .plan3-5 .mid .item:nth-child(n+7):nth-child(-n+9),
  .plan .plan3 .plan3-5 .mid .item:nth-child(n+13):nth-child(-n+15),
  .plan .plan3 .plan3-5 .mid .item:nth-child(n+19):nth-child(-n+21) {
    transform: translateX(-25%);
    margin-top: -25%;
  }
}
.plan .plan3 .plan3-5 .mid .item:hover .m-img {
  transform: scale(1.1);
}
.plan .plan-bg {
  padding-top: 2rem;
  padding-bottom: clamp(40px, 0.8rem, 80px);
  background: url('../images/img159.png') no-repeat center top;
  background-size: 100%;
}
@media screen and (max-width: 768px) {
  .plan .plan-bg {
    padding-top: 80px;
  }
}
.plan .plan4 {
  margin-bottom: clamp(60px, 0.8rem, 80px);
}
.plan .plan4 .plan4-tabs {
  margin-top: clamp(40px, 0.6rem, 60px);
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #eee;
  margin-bottom: clamp(20px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
  .plan .plan4 .plan4-tabs {
    justify-content: flex-start;
  }
}
.plan .plan4 .plan4-tabs .tab {
  font-size: clamp(14px, 0.24rem, 24px);
  position: relative;
  padding: clamp(20px, 0.3rem, 30px);
  transition: all 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .plan .plan4 .plan4-tabs .tab {
    flex-shrink: 0;
  }
}
.plan .plan4 .plan4-tabs .tab::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--dominant-color);
  width: 100%;
  height: 1px;
  opacity: 0;
  transition: all 0.3s;
}
.plan .plan4 .plan4-tabs .tab.active,
.plan .plan4 .plan4-tabs .tab:hover {
  color: var(--dominant-color);
}
.plan .plan4 .plan4-tabs .tab.active::after,
.plan .plan4 .plan4-tabs .tab:hover::after {
  opacity: 1;
}
.plan .plan4 .plan4-box {
  position: relative;
  max-width: 1650px;
}
.plan .plan4 .plan4-box .change {
  display: block;
  opacity: 0;
  transition: all 0.5s;
  pointer-events: none;
}
.plan .plan4 .plan4-box .change.active {
  opacity: 1;
  pointer-events: auto;
}
.plan .plan4 .plan4-box .change:nth-child(n+2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.plan .plan4 .swiper {
  padding: 10px;
}
.plan .plan4 .swiper .swiper-slide {
  display: flex;
  background: #b97c4b;
  border-radius: 10px;
  padding: clamp(20px, 30px, 30px);
  gap: clamp(20px, 0.3rem, 30px);
  height: auto;
  align-items: center;
  transition: all 0.5s;
}
.plan .plan4 .swiper .swiper-slide .img {
  flex-basis: clamp(40px, 0.6rem, 60px);
  overflow: hidden;
}
.plan .plan4 .swiper .swiper-slide .img .imgBox {
  padding-bottom: 90%;
}
.plan .plan4 .swiper .swiper-slide .text {
  flex: 1;
  color: #fff;
  font-size: clamp(14px, 0.2rem, 20px);
}
.plan .plan4 .swiper .swiper-slide:hover {
  transform: translateY(-5px);
}
.plan .plan4 .swiper-button-prev,
.plan .plan4 .swiper-button-next {
  border: none;
  color: #000;
  background: none !important;
}
.plan .plan4 .swiper-button-prev:hover i,
.plan .plan4 .swiper-button-next:hover i {
  color: var(--dominant-color) !important;
}
.plan .plan4 .swiper-button-prev {
  left: 0;
}
.plan .plan4 .swiper-button-next {
  right: 0;
}
.plan .plan4 .button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: clamp(6px, 0.1rem, 10px) clamp(20px, 0.3rem, 30px);
  gap: clamp(8px, 0.1rem, 10px);
  transition: all 0.5s;
  cursor: pointer;
  width: fit-content;
  background: var(--dominant-color);
  margin: clamp(40px, 0.5rem, 50px) auto auto;
  color: #fff;
}
.plan .plan5 .plan5-box {
  margin-top: clamp(40px, 0.6rem, 60px);
  position: relative;
  max-width: 1650px;
}
.plan .plan5 .swiper {
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .plan .plan5 .swiper {
    width: 100%;
  }
}
.plan .plan5 .swiper .swiper-slide {
  display: flex;
  background: #fff;
  border-radius: 10px;
  padding: clamp(10px, 20px, 20px);
  gap: clamp(20px, 0.5rem, 50px);
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.02);
}
@media screen and (max-width: 768px) {
  .plan .plan5 .swiper .swiper-slide {
    flex-direction: column;
    padding: 10px;
  }
}
.plan .plan5 .swiper .swiper-slide .img {
  flex-basis: 42%;
  border-radius: 10px;
  overflow: hidden;
}
.plan .plan5 .swiper .swiper-slide .img .imgBox {
  padding-bottom: 90%;
}
.plan .plan5 .swiper .swiper-slide .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.plan .plan5 .swiper .swiper-slide .text .title {
  font-size: clamp(16px, 0.36rem, 36px);
  color: #333;
  border-bottom: 1px solid var(--dominant-color);
  padding-bottom: clamp(10px, 0.3rem, 30px);
  margin-bottom: clamp(10px, 0.3rem, 30px);
}
.plan .plan5 .swiper .swiper-slide .text .summarys {
  display: flex;
  flex-direction: column;
}
.plan .plan5 .swiper .swiper-slide .text .summarys .summary {
  border-bottom: 1px solid #eee;
  color: #666;
  padding-bottom: clamp(20px, 0.2rem, 20px);
  margin-bottom: clamp(20px, 0.2rem, 20px);
}
.plan .plan5 .swiper .swiper-slide .text .summarys .summary .key {
  font-size: clamp(14px, 0.24rem, 24px);
  color: #333;
  padding-left: 20px;
  position: relative;
}
.plan .plan5 .swiper .swiper-slide .text .summarys .summary .key::after {
  content: '';
  background: var(--dominant-color);
  width: 12px;
  height: 12px;
  top: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  margin: auto;
}
.plan .plan5 .swiper .swiper-slide .text .summarys .summary .value {
  font-size: clamp(12px, 0.16rem, 16px);
  margin-top: clamp(6px, 0.1rem, 10px);
}
.plan .plan5 .swiper .swiper-slide .text .summarys .summary:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.plan .plan5 .swiper-button-prev,
.plan .plan5 .swiper-button-next {
  border: none;
  color: #000;
  background: none !important;
}
@media screen and (max-width: 768px) {
  .plan .plan5 .swiper-button-prev,
  .plan .plan5 .swiper-button-next {
    display: none;
  }
}
.plan .plan5 .swiper-button-prev:hover i,
.plan .plan5 .swiper-button-next:hover i {
  color: var(--dominant-color) !important;
}
.plan .plan5 .swiper-button-prev {
  left: 0;
}
.plan .plan5 .swiper-button-next {
  right: 0;
}
.plan .plan6 {
  padding-top: clamp(40px, 0.8rem, 80px);
  padding-bottom: clamp(40px, 0.8rem, 80px);
  background: #fbfbfc;
}
.plan .plan6 .plan6-box {
  margin-top: clamp(40px, 0.6rem, 60px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 0.3rem, 30px);
  justify-content: center;
}
.plan .plan6 .plan6-box .item {
  padding: clamp(20px, 0.3rem, 30px);
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: #fff;
  flex-basis: calc((100% - clamp(100px, 1.5rem, 150px)) / 6);
}
@media screen and (max-width: 768px) {
  .plan .plan6 .plan6-box .item {
    flex-basis: calc((100% - clamp(20px, 0.3rem, 30px)) / 2);
  }
}
.plan .plan6 .plan6-box .item .icon {
  position: absolute;
  right: 20px;
  top: 20px;
  width: clamp(40px, 0.6rem, 60px);
}
.plan .plan6 .plan6-box .item .title {
  font-size: clamp(16px, 0.2rem, 20px);
}
.plan .plan6 .plan6-box .item .summary {
  margin-top: clamp(10px, 0.2rem, 20px);
}
.plan .plan6 .plan6-box .item .summary .summary1 {
  font-size: clamp(14px, 0.16rem, 16px);
  color: #c29f7b;
}
.plan .plan6 .plan6-box .item .summary .summary2 {
  font-size: clamp(12px, 0.14rem, 14px);
  color: #666;
}
.plan .plan6 .button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: clamp(6px, 0.1rem, 10px) clamp(20px, 0.3rem, 30px);
  gap: clamp(8px, 0.1rem, 10px);
  transition: all 0.5s;
  cursor: pointer;
  width: fit-content;
  background: var(--dominant-color);
  margin: clamp(40px, 0.5rem, 50px) auto auto;
  color: #fff;
}
.plan .plan7 {
  padding-top: clamp(40px, 0.8rem, 80px);
  padding-bottom: clamp(40px, 0.8rem, 80px);
  background: url('../images/img165.jpg') no-repeat center / cover;
}
.plan .plan7 .plan7-box {
  margin-top: clamp(40px, 0.6rem, 60px);
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .plan .plan7 .plan7-box {
    flex-direction: column;
  }
}
.plan .plan7 .plan7-box .left {
  width: 49%;
  border-radius: 10px;
  border: 1px solid #eee;
  height: fit-content;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .plan .plan7 .plan7-box .left {
    width: 100%;
  }
}
.plan .plan7 .plan7-box .left .imgBox {
  padding-bottom: 90%;
}
.plan .plan7 .plan7-box .right {
  position: relative;
  width: 49%;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .plan .plan7 .plan7-box .right {
    width: 100%;
  }
}
.plan .plan7 .plan7-box .right .swiper-big {
  border-radius: 10px;
  overflow: hidden;
}
.plan .plan7 .plan7-box .right .swiper-big .imgBox {
  padding-bottom: 90%;
}
.plan .plan7 .plan7-box .right .swiper-small {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 10px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.plan .plan7 .plan7-box .right .swiper-small .imgBox {
  padding-bottom: 50%;
}
.plan .plan7 .plan7-box .right .swiper-small .swiper {
  width: 80%;
  margin: auto;
}
.plan .plan7 .plan7-box .right .swiper-small .swiper .swiper-slide {
  border-radius: 6px;
  overflow: hidden;
  opacity: 0.6;
  cursor: pointer;
  border: 1px solid transparent;
}
.plan .plan7 .plan7-box .right .swiper-small .swiper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  border: 1px solid #c29f7b;
}
@media screen and (max-width: 768px) {
  .plan .plan7 .plan7-box .right .swiper-small .swiper-button-prev {
    left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .plan .plan7 .plan7-box .right .swiper-small .swiper-button-next {
    right: 10px;
  }
}
.plan .plan7 .plan7-box .right .swiper-small .swiper-button-prev,
.plan .plan7 .plan7-box .right .swiper-small .swiper-button-next {
  background: none !important;
  border: none;
  height: fit-content;
  bottom: 0;
  margin: auto;
  top: 0;
  width: fit-content;
}
.plan .plan7 .plan7-box .right .swiper-small .swiper-button-prev i,
.plan .plan7 .plan7-box .right .swiper-small .swiper-button-next i {
  color: #fff;
}
.plan .plan8 {
  padding-top: clamp(40px, 0.8rem, 80px);
  padding-bottom: clamp(40px, 0.8rem, 80px);
}
.plan .plan8 .plan8-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #eee;
  margin-bottom: clamp(20px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
  .plan .plan8 .plan8-tabs {
    justify-content: flex-start;
    overflow: auto;
  }
}
.plan .plan8 .plan8-tabs .tab {
  font-size: clamp(14px, 0.24rem, 24px);
  position: relative;
  padding: clamp(20px, 0.3rem, 30px);
  transition: all 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .plan .plan8 .plan8-tabs .tab {
    flex-shrink: 0;
  }
}
.plan .plan8 .plan8-tabs .tab::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  background: var(--dominant-color);
  width: 100%;
  height: 1px;
  opacity: 0;
  transition: all 0.3s;
}
.plan .plan8 .plan8-tabs .tab.active,
.plan .plan8 .plan8-tabs .tab:hover {
  color: var(--dominant-color);
}
.plan .plan8 .plan8-tabs .tab.active::after,
.plan .plan8 .plan8-tabs .tab:hover::after {
  opacity: 1;
}
.plan .plan8 .plan8-box {
  margin-top: clamp(40px, 0.6rem, 60px);
  position: relative;
}
.plan .plan8 .plan8-box .change {
  display: none;
}
.plan .plan8 .plan8-box .change.active {
  display: block;
}
.plan .plan8 .plan8-box .change .item {
  padding: clamp(20px, 0.3rem, 30px);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: all 0.5s;
  cursor: pointer;
  margin-bottom: clamp(20px, 0.3rem, 30px);
}
.plan .plan8 .plan8-box .change .item i {
  transition: all 0.5s;
}
.plan .plan8 .plan8-box .change .item .key {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(14px, 0.18rem, 18px);
}
.plan .plan8 .plan8-box .change .item .value {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #fff;
  font-size: clamp(12px, 0.14rem, 14px);
}
.plan .plan8 .plan8-box .change .item.active {
  background: #c29f7b;
  color: #fff;
}
.plan .plan8 .plan8-box .change .item.active i {
  transform: rotate(-90deg);
}
.plan .plan8 .plan8-box .change .item:nth-child(n+7) {
  display: none;
}
.plan .plan8 .plan8-box .more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--dominant-color);
  font-size: clamp(14px, 0.18rem, 18px);
  transition: all 0.5s;
  cursor: pointer;
}
.plan .plan8 .plan8-box .more:hover {
  opacity: 0.6;
}
.plan .plan8 .bottom-box {
  margin-top: clamp(40px, 0.5rem, 50px);
  padding: clamp(20px, 0.5rem, 50px);
  border-radius: 10px;
  overflow: hidden;
  background: url('../images/img190.jpg') no-repeat center / cover;
}
.plan .plan8 .bottom-box .text {
  color: #fff;
  font-size: clamp(16px, 0.32rem, 32px);
  text-align: center;
  margin-bottom: clamp(20px, 0.3rem, 30px);
}
.plan .plan8 .bottom-box .button {
  background: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: clamp(10px, 0.1rem, 10px) clamp(20px, 0.3rem, 30px);
  width: fit-content;
  margin: auto;
  color: var(--dominant-color);
  transition: all 0.5s;
}
.plan .plan8 .bottom-box .button img {
  transition: all 0.5s;
}
.plan .plan8 .bottom-box .button:hover {
  background: var(--dominant-color);
  color: #fff;
}
.plan .plan8 .bottom-box .button:hover img {
  filter: brightness(10);
}
.plan .plan9 .plan9-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #eee;
  margin-bottom: clamp(20px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
  .plan .plan9 .plan9-tabs {
    justify-content: flex-start;
    overflow: auto;
  }
}
.plan .plan9 .plan9-tabs .tab {
  font-size: clamp(14px, 0.24rem, 24px);
  position: relative;
  padding: clamp(20px, 0.3rem, 30px);
  transition: all 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .plan .plan9 .plan9-tabs .tab {
    flex-shrink: 0;
  }
}
.plan .plan9 .plan9-tabs .tab::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  background: var(--dominant-color);
  width: 100%;
  height: 1px;
  opacity: 0;
  transition: all 0.3s;
}
.plan .plan9 .plan9-tabs .tab.active,
.plan .plan9 .plan9-tabs .tab:hover {
  color: var(--dominant-color);
}
.plan .plan9 .plan9-tabs .tab.active::after,
.plan .plan9 .plan9-tabs .tab:hover::after {
  opacity: 1;
}
.plan .plan9 .plan9-box {
  margin-top: clamp(40px, 0.6rem, 60px);
  position: relative;
}
.plan .plan9 .plan9-box .plan9-change .change {
  display: none;
}
.plan .plan9 .plan9-box .plan9-change .change.active {
  display: flex;
  gap: clamp(20px, 0.5rem, 50px);
}
@media screen and (max-width: 768px) {
  .plan .plan9 .plan9-box .plan9-change .change {
    flex-direction: column;
  }
}
.plan .plan9 .plan9-box .img {
  flex-basis: 42%;
  border-radius: 10px;
  overflow: hidden;
}
.plan .plan9 .plan9-box .img .imgBox {
  padding-bottom: 90%;
}
.plan .plan9 .plan9-box .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: clamp(12px, 0.16rem, 16px);
}
.plan .plan9 .plan9-box .text .title {
  font-size: clamp(16px, 0.36rem, 36px);
  color: #333;
  margin-bottom: clamp(10px, 0.2rem, 20px);
  gap: clamp(10px, 0.3rem, 30px);
  font-weight: 600;
}
.plan .plan9 .plan9-box .text .summary1 {
  font-size: clamp(14px, 0.24rem, 24px);
  margin-bottom: clamp(10px, 0.2rem, 20px);
}
.plan .plan9 .plan9-box .text .summary2 {
  line-height: 1.8;
}
.plan .plan9 .plan9-box .text .lists {
  display: flex;
  flex-wrap: wrap;
  padding: clamp(10px, 0.2rem, 20px) 0;
  border-top: 1px solid #c29f7b;
  border-bottom: 1px solid #c29f7b;
  color: #c29f7b;
  gap: clamp(20px, 0.3rem, 30px);
  margin: clamp(10px, 0.2rem, 20px) auto;
}
.plan .plan9 .plan9-box .text .items {
  display: flex;
  gap: clamp(20px, 0.5rem, 50px);
}
.plan .plan9 .plan9-box .text .items .item {
  color: #666;
  text-align: center;
}
.plan .plan9 .plan9-box .text .items .item .key {
  font-size: clamp(16px, 0.28rem, 28px);
  color: var(--dominant-color);
}
.plan .plan9 .plan9-box .text .items .item .value {
  font-size: clamp(12px, 0.16rem, 16px);
  margin-top: clamp(6px, 0.1rem, 10px);
}
.plan .plan9 .plan9-box .text .more {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: clamp(6px, 0.1rem, 10px) clamp(20px, 0.3rem, 30px);
  gap: clamp(8px, 0.1rem, 10px);
  transition: all 0.5s;
  cursor: pointer;
  width: fit-content;
  background: var(--dominant-color);
  color: #fff;
  margin: clamp(20px, 0.3rem, 30px) auto auto 0;
}
.plan .plan10 {
  margin-top: -1rem;
  padding-bottom: clamp(40px, 0.8rem, 80px);
  padding-top: clamp(100px, 1.4rem, 140px);
  background: url('../images/img166.jpg') no-repeat center / cover;
}
@media screen and (max-width: 768px) {
  .plan .plan10 {
    margin-top: -100px;
  }
}
.plan .plan10 .plan10-tabs {
  margin-bottom: clamp(20px, 0.3rem, 30px);
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #eee;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  .plan .plan10 .plan10-tabs {
    justify-content: flex-start;
  }
}
.plan .plan10 .plan10-tabs .tab {
  font-size: clamp(14px, 0.24rem, 24px);
  position: relative;
  padding: clamp(20px, 0.3rem, 30px);
  transition: all 0.3s;
  cursor: pointer;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .plan .plan10 .plan10-tabs .tab {
    flex-shrink: 0;
  }
}
.plan .plan10 .plan10-tabs .tab::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--dominant-color);
  width: 100%;
  height: 1px;
  opacity: 0;
  transition: all 0.3s;
}
.plan .plan10 .plan10-tabs .tab.active,
.plan .plan10 .plan10-tabs .tab:hover {
  color: var(--dominant-color);
}
.plan .plan10 .plan10-tabs .tab.active::after,
.plan .plan10 .plan10-tabs .tab:hover::after {
  opacity: 1;
}
.plan .plan10 .index-summary {
  margin-bottom: clamp(20px, 0.3rem, 30px);
}
.plan .plan10 .plan10-box {
  position: relative;
  margin-top: clamp(40px, 0.6rem, 60px);
}
.plan .plan10 .plan10-box .change {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
  .plan .plan10 .plan10-box .change {
    grid-template-columns: repeat(1, 1fr);
  }
}
.plan .plan10 .plan10-box .change .item {
  padding: clamp(20px, 0.3rem, 30px);
  box-shadow: 0 -20px 20px 0px rgba(163, 163, 163, 0.15);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s;
  position: relative;
  background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0));
}
.plan .plan10 .plan10-box .change .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.5s;
  background: url('../images/img168.jpg') no-repeat center / cover;
  opacity: 0;
}
.plan .plan10 .plan10-box .change .item .title {
  font-size: clamp(14px, 0.24rem, 24px);
  color: #333;
  padding-left: 16px;
  position: relative;
  transition: all 0.5s;
  z-index: 2;
}
.plan .plan10 .plan10-box .change .item .title::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 80%;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #c29f7b;
  transition: all 0.5s;
}
.plan .plan10 .plan10-box .change .item .summary {
  font-size: clamp(14px, 0.16rem, 16px);
  color: #666;
  margin-top: 10px;
  transition: all 0.5s;
  position: relative;
  z-index: 2;
}
.plan .plan10 .plan10-box .change .item .more {
  transition: all 1s;
  text-align: left;
  margin-top: 40px;
  display: flex;
  background: var(--dominant-color);
  border-radius: 6px;
  padding: 6px 8px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(12px, 0.16rem, 16px);
  width: fit-content;
  position: relative;
  z-index: 2;
}
.plan .plan10 .plan10-box .change .item:hover::after {
  opacity: 1;
}
.plan .plan10 .plan10-box .change .item:hover .title,
.plan .plan10 .plan10-box .change .item:hover .summary {
  color: #fff;
}
.plan .plan10 .plan10-box .change .item:hover .title::after {
  background: #fff;
}
.plan .plan10 .plan10-box .change.active {
  display: grid;
}
.plan .plan11 {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(80px, 1.6rem, 160px);
  padding-top: clamp(80px, 1.6rem, 160px);
  background: url('../images/img179.png') no-repeat center / cover;
}
.plan .plan11 .index-summary {
  margin-bottom: clamp(20px, 0.3rem, 30px);
}
.plan .plan11 .plan11-box {
  position: relative;
  margin-top: clamp(40px, 0.6rem, 60px);
}
.plan .plan11 .plan11-box .items {
  display: flex;
  gap: clamp(20px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
  .plan .plan11 .plan11-box .items {
    flex-direction: column;
  }
}
.plan .plan11 .plan11-box .items .left {
  flex-basis: 50%;
}
.plan .plan11 .plan11-box .items .right {
  flex: 1;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 0.3rem, 30px);
}
.plan .plan11 .plan11-box .items .right .item {
  background: #fff;
  border-radius: 10px;
  padding: clamp(30px, 0.4rem, 40px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.plan .plan11 .plan11-box .items .right .item .icon {
  width: clamp(40px, 0.7rem, 70px);
  height: clamp(40px, 0.7rem, 70px);
}
@media screen and (max-width: 768px) {
  .plan .plan11 .plan11-box .items .right .item .icon {
    margin-bottom: 30px;
  }
}
.plan .plan11 .plan11-box .items .right .item .text {
  text-align: center;
}
.plan .plan11 .plan11-box .items .right .item .title {
  font-weight: 600;
  font-size: clamp(16px, 0.32rem, 32px);
}
.plan .plan11 .plan11-box .items .right .item .summary {
  color: #666;
  font-size: clamp(14px, 0.18rem, 18px);
}
.plan .plan11 .plan11-box .items .right .fade-box {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  margin: auto;
  border-radius: 50%;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.03);
  width: clamp(100px, 2rem, 200px);
  height: clamp(100px, 2rem, 200px);
}
.plan .plan12 {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(40px, 0.8rem, 80px);
  padding-top: clamp(40px, 0.8rem, 80px);
  background: url('../images/img185.png') no-repeat center top / cover;
}
.plan .plan12 .index-summary {
  margin-bottom: clamp(20px, 0.3rem, 30px);
}
.plan .plan12 .plan12-box {
  position: relative;
  margin-top: clamp(40px, 0.6rem, 60px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
  .plan .plan12 .plan12-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.plan .plan12 .plan12-box .item {
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
  display: flex;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: clamp(20px, 0.3rem, 30px);
  gap: clamp(20px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
  .plan .plan12 .plan12-box .item {
    flex-direction: column;
  }
}
.plan .plan12 .plan12-box .item .left {
  position: relative;
  flex-basis: 28%;
  height: 0;
  padding-bottom: 60%;
  overflow: hidden;
  border-radius: 10px;
}
.plan .plan12 .plan12-box .item .left img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.plan .plan12 .plan12-box .item .right {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .plan .plan12 .plan12-box .item .right {
    width: 100%;
  }
}
.plan .plan12 .plan12-box .item .right .title {
  position: relative;
  color: var(--dominant-color);
  font-size: clamp(16px, 0.24rem, 24px);
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .plan .plan12 .plan12-box .item .right .title {
    width: 100%;
  }
}
.plan .plan12 .plan12-box .item .right .title .line {
  width: 4px;
  height: 24px;
  background: #c29f7b;
}
.plan .plan12 .plan12-box .item .right .title .t-title {
  flex: 1;
}
.plan .plan12 .plan12-box .item .right ul {
  border-top: 1px solid #eee;
  margin-top: clamp(20px, 0.3rem, 30px);
  padding-top: clamp(20px, 0.3rem, 30px);
  gap: 10px;
  display: grid;
}
@media screen and (max-width: 768px) {
  .plan .plan12 .plan12-box .item .right ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.plan .plan12 .plan12-box .item .right ul li {
  font-size: clamp(14px, 0.18rem, 18px);
  list-style: square;
}
.plan .plan12 .plan12-box .item .right ul li span {
  color: var(dominant-color);
}
.plan .plan12 .plan12-box .item .right .more {
  background: var(--dominant-color);
  padding: 6px 10px;
  font-size: clamp(14px, 0.18rem, 18px);
  border-radius: 6px;
  color: #fff;
  width: fit-content;
  transition: all 1s;
  cursor: pointer;
  display: block;
  margin-top: clamp(30px, 0.5rem, 50px);
}
.plan .plan12 .plan12-box .item .right .more:hover {
  opacity: 0.6;
}
.plan .plan13 {
  padding-bottom: clamp(40px, 0.8rem, 80px);
  padding-top: clamp(40px, 0.8rem, 80px);
}
.plan .plan13 .plan13-box .index-summary {
  font-size: clamp(14px, 0.18rem, 18px);
  margin-bottom: clamp(20px, 0.3rem, 30px);
}
.plan .plan13 .plan13-box table {
  border: 1px solid #eee;
  width: 100%;
  border-radius: 10px;
}
.plan .plan13 .plan13-box table tr th {
  width: 25%;
  padding: clamp(16px, 0.2rem, 20px);
  text-align: center;
  font-size: clamp(14px, 0.24rem, 24px);
}
.plan .plan13 .plan13-box table tr th:nth-child(1) {
  background: #f4f7ff;
}
.plan .plan13 .plan13-box table tr th:nth-child(2) {
  background: linear-gradient(to bottom, #c09b76, #a36f3d);
  color: #fff;
}
.plan .plan13 .plan13-box table tr th:nth-child(3) {
  background: linear-gradient(to bottom, #c3e4ff, #c3d6ff);
}
.plan .plan13 .plan13-box table tr th:nth-child(4) {
  background: linear-gradient(to bottom, #bd181e, #a20c10);
  color: #fff;
}
.plan .plan13 .plan13-box table tr td {
  width: 25%;
  padding: clamp(16px, 0.2rem, 20px);
  text-align: center;
  font-size: clamp(12px, 0.16rem, 16px);
}
.plan .plan13 .plan13-box table tr:nth-child(odd) td:nth-child(1) {
  background: #fff;
}
.plan .plan13 .plan13-box table tr:nth-child(odd) td:nth-child(2) {
  background: #f9f5f2;
}
.plan .plan13 .plan13-box table tr:nth-child(odd) td:nth-child(3) {
  background: #f9fbff;
}
.plan .plan13 .plan13-box table tr:nth-child(odd) td:nth-child(4) {
  background: #fbf1f2;
}
.plan .plan13 .plan13-box table tr:nth-child(even) td:nth-child(1) {
  background: #fbfbfb;
}
.plan .plan13 .plan13-box table tr:nth-child(even) td:nth-child(2) {
  background: #f5f2ee;
}
.plan .plan13 .plan13-box table tr:nth-child(even) td:nth-child(3) {
  background: #f5f7fb;
}
.plan .plan13 .plan13-box table tr:nth-child(even) td:nth-child(4) {
  background: #f8eeee;
}
.plan .plan13 .plan13-box table tr:nth-child(2) td {
  font-size: clamp(14px, 0.2rem, 20px);
}
.plan .plan13 .plan13-box table tr:nth-child(2) td:nth-child(1) {
  background: #f3ece5;
}
.plan .plan13 .plan13-box table tr:nth-child(2) td:nth-child(2) {
  background: #e6fbfc;
}
.plan .plan14 {
  padding-bottom: clamp(40px, 0.8rem, 80px);
  padding-top: clamp(40px, 0.8rem, 80px);
}
.plan .plan14 .plan14-box .index-summary {
  font-size: clamp(14px, 0.18rem, 18px);
  margin-bottom: clamp(20px, 0.3rem, 30px);
}
.plan .plan14 .plan14-box table {
  border: 1px solid #eee;
  width: 100%;
  border-radius: 10px;
}
.plan .plan14 .plan14-box table tr th {
  width: 33.33%;
  padding: clamp(16px, 0.2rem, 20px);
  text-align: center;
  font-size: clamp(14px, 0.24rem, 24px);
}
.plan .plan14 .plan14-box table tr th:nth-child(1) {
  background: #f4f7ff;
}
.plan .plan14 .plan14-box table tr th:nth-child(2) {
  background: linear-gradient(to bottom, #c09b76, #a36f3d);
  color: #fff;
}
.plan .plan14 .plan14-box table tr th:nth-child(3) {
  background: linear-gradient(to bottom, #c3e4ff, #c3d6ff);
}
.plan .plan14 .plan14-box table tr th:nth-child(4) {
  background: linear-gradient(to bottom, #bd181e, #a20c10);
  color: #fff;
}
.plan .plan14 .plan14-box table tr td {
  width: 33.33%;
  padding: clamp(16px, 0.2rem, 20px);
  text-align: center;
  font-size: clamp(12px, 0.16rem, 16px);
}
.plan .plan14 .plan14-box table tr:nth-child(even) td:nth-child(1) {
  background: #fff;
}
.plan .plan14 .plan14-box table tr:nth-child(even) td:nth-child(2) {
  background: #f9f5f2;
}
.plan .plan14 .plan14-box table tr:nth-child(even) td:nth-child(3) {
  background: #f9fbff;
}
.plan .plan14 .plan14-box table tr:nth-child(even) td:nth-child(4) {
  background: #fbf1f2;
}
.plan .plan14 .plan14-box table tr:nth-child(odd) td:nth-child(1) {
  background: #fbfbfb;
}
.plan .plan14 .plan14-box table tr:nth-child(odd) td:nth-child(2) {
  background: #f5f2ee;
}
.plan .plan14 .plan14-box table tr:nth-child(odd) td:nth-child(3) {
  background: #f5f7fb;
}
.plan .plan14 .plan14-box table tr:nth-child(odd) td:nth-child(4) {
  background: #f8eeee;
}
.plan .plan15 {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(40px, 0.8rem, 80px);
  padding-top: clamp(40px, 0.8rem, 80px);
  background: url('../images/img188.jpg') no-repeat center top / cover;
}
.plan .plan15 .plan15-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #eee;
  margin-bottom: clamp(20px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
  .plan .plan15 .plan15-tabs {
    justify-content: flex-start;
    overflow: auto;
  }
}
.plan .plan15 .plan15-tabs .tab {
  color: #fff;
  font-size: clamp(14px, 0.24rem, 24px);
  position: relative;
  padding: clamp(20px, 0.3rem, 30px);
  transition: all 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .plan .plan15 .plan15-tabs .tab {
    flex-shrink: 0;
  }
}
.plan .plan15 .plan15-tabs .tab::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  background: var(--dominant-color);
  width: 100%;
  height: 1px;
  opacity: 0;
  transition: all 0.3s;
}
.plan .plan15 .plan15-tabs .tab.active,
.plan .plan15 .plan15-tabs .tab:hover {
  color: var(--dominant-color);
}
.plan .plan15 .plan15-tabs .tab.active::after,
.plan .plan15 .plan15-tabs .tab:hover::after {
  opacity: 1;
}
.plan .plan15 .plan15-box {
  margin-top: clamp(40px, 0.6rem, 60px);
  position: relative;
  max-width: 1650px;
}
.plan .plan15 .plan15-box .plan15-change {
  position: relative;
}
.plan .plan15 .plan15-box .change {
  display: block;
  opacity: 0;
  transition: all 0.5s;
  pointer-events: none;
}
.plan .plan15 .plan15-box .change.active {
  opacity: 1;
  transition: all 0.5s;
  pointer-events: auto;
}
.plan .plan15 .plan15-box .change:nth-child(n+2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.plan .plan15 .swiper {
  padding: 10px;
}
.plan .plan15 .swiper .swiper-slide {
  display: flex;
  background: #fff;
  border-radius: 10px;
  padding: clamp(10px, 20px, 20px) clamp(10px, 10px, 10px);
  gap: clamp(10px, 0.3rem, 20px);
  height: auto;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  transition: all 0.5s;
  color: #333;
}
.plan .plan15 .swiper .swiper-slide .img {
  width: clamp(40px, 0.5rem, 50px);
  height: clamp(40px, 0.5rem, 50px);
  overflow: hidden;
}
.plan .plan15 .swiper .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.plan .plan15 .swiper .swiper-slide .text {
  text-align: center;
  font-size: clamp(14px, 0.16rem, 16px);
}
.plan .plan15 .swiper .swiper-slide:hover {
  transform: translateY(-5px);
}
.plan .plan15 .swiper-button-prev,
.plan .plan15 .swiper-button-next {
  border: none;
  color: #fff;
  background: none !important;
}
.plan .plan15 .swiper-button-prev:hover i,
.plan .plan15 .swiper-button-next:hover i {
  color: var(--dominant-color) !important;
}
.plan .plan15 .swiper-button-prev {
  left: 0;
}
.plan .plan15 .swiper-button-next {
  right: 0;
}
.plan .plan15 .button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: clamp(6px, 0.1rem, 10px) clamp(20px, 0.3rem, 30px);
  gap: clamp(8px, 0.1rem, 10px);
  transition: all 0.5s;
  cursor: pointer;
  width: fit-content;
  background: var(--dominant-color);
  margin: clamp(40px, 0.5rem, 50px) auto auto;
  color: #fff;
}
.plan .plan16 {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(40px, 0.8rem, 80px);
  padding-top: clamp(40px, 0.8rem, 80px);
  background: url('../images/img191.jpg') no-repeat center top / cover;
}
.plan .plan16 .plan16-box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: clamp(40px, 0.6rem, 60px);
  gap: clamp(20px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
  .plan .plan16 .plan16-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
.plan .plan16 .plan16-box .item {
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.3rem, 30px);
}
.plan .plan16 .plan16-box .item .img1,
.plan .plan16 .plan16-box .item .img2 {
  width: 15%;
}
.plan .plan16 .plan16-box .item .text {
  font-size: clamp(14px, 0.18rem, 18px);
  width: 50%;
  text-align: center;
}
/*会员中心*/
.member {
  background: #f2f2f2;
}
.member .member-box {
  background-size: cover !important;
  display: flow-root;
}
.member .member-box .member-content {
  max-width: 500px;
  margin: 110px auto 140px;
  background: #fff;
  width: 90%;
}
.member .member-box .section {
  display: flex;
  justify-content: space-between;
  padding-bottom: 100px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .member .member-box .section {
    flex-direction: column;
  }
}
.member .member-box .section .member-menu {
  flex-basis: clamp(200px, 3.6rem, 360px);
}
@media screen and (max-width: 768px) {
  .member .member-box .section .member-menu {
    flex-basis: 100%;
  }
}
.member .member-box .section .member-menu .member-phone-click {
  display: none;
}
.member .member-box .section .member-menu .item-list {
  background: #fff;
  padding: 30px 0;
  display: block;
}
.member .member-box .section .member-menu .item-list .item a {
  font-size: clamp(12px, 0.16rem, 16px);
  padding-left: 50px;
  display: flex;
  align-items: center;
  height: clamp(40px, 0.5rem, 50px);
}
.member .member-box .section .member-menu .item-list .item a span {
  margin-left: 6px;
}
.member .member-box .section .member-menu .item-list .item a img {
  width: clamp(16px, 0.2rem, 20px);
  height: clamp(16px, 0.2rem, 20px);
  object-fit: contain;
}
.member .member-box .section .member-menu .item-list .item.active,
.member .member-box .section .member-menu .item-list .item:hover {
  background: #f5f5f5;
}
.member .member-box .section .member-container {
  width: calc(100% - clamp(220px, 3.9rem, 390px));
  background: #fff;
  padding: clamp(20px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
  .member .member-box .section .member-container {
    width: 100%;
  }
}
.member .member-box .section .member-container .item-box {
  margin-bottom: clamp(30px, 0.6rem, 60px);
}
.member .member-box .section .member-container .item-box:last-child {
  margin-bottom: 0;
}
.member .member-box .section .member-container .member-container-title {
  height: clamp(40px, 0.5rem, 50px);
  font-size: clamp(14px, 0.22rem, 22px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: clamp(10px, 0.2rem, 20px);
}
.member .member-box .section .member-container .items {
  margin-top: clamp(20px, 0.4rem, 40px);
}
.member .member-box .section .member-container .items .item {
  display: flex;
  gap: clamp(20px, 0.4rem, 40px);
  align-items: baseline;
  margin-bottom: clamp(20px, 0.4rem, 40px);
}
.member .member-box .section .member-container .items .item .icon img {
  width: clamp(24px, 0.32rem, 32px);
  height: clamp(24px, 0.32rem, 32px);
  object-fit: contain;
}
.member .member-box .section .member-container .items .item .text {
  flex: 1;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: clamp(20px, 0.4rem, 40px);
}
.member .member-box .section .member-container .items .item .text .left .key {
  font-size: clamp(14px, 0.22rem, 22px);
  font-weight: 400;
}
.member .member-box .section .member-container .items .item .text .left .value {
  font-size: clamp(12px, 0.16rem, 16px);
  color: #666;
}
.member .member-box .section .member-container .items .item .text .right {
  width: clamp(100px, 1.2rem, 120px);
  height: clamp(38px, 0.42rem, 42px);
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  cursor: pointer;
  transition: all 0.5s;
  font-size: clamp(12px, 0.14rem, 14px);
}
.member .member-box .section .member-container .items .item .text .right:hover {
  background: var(--dominant-color);
  color: #fff;
  border-color: var(--dominant-color);
}
.change-infos {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
}
.change-infos .mask {
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.change-infos .content {
  width: clamp(300px, 3rem, 400px);
  padding: clamp(20px, 0.4rem, 40px);
  margin: auto;
  background: #fff;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.change-infos .content .title {
  font-size: clamp(16px, 0.24rem, 24px);
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}
.change-infos .content .input-box {
  margin-top: clamp(20px, 0.4rem, 40px);
}
.change-infos .content .input-box .label {
  display: block;
  margin-bottom: clamp(10px, 0.1rem, 10px);
}
.change-infos .content .input {
  margin-top: 4px;
  padding: 10px 15px;
  border: 1px solid #eee;
  border-radius: 5px;
  font-size: clamp(14px, 0.2rem, 20px);
}
.change-infos .content .buttons {
  margin-top: clamp(20px, 0.4rem, 40px);
  display: flex;
  justify-content: flex-end;
  gap: clamp(10px, 0.1rem, 10px);
}
.change-infos .content .buttons .button {
  padding: 4px 30px;
  border-radius: 5px;
  border: 1px solid #eee;
  font-size: clamp(14px, 0.2rem, 20px);
}
.change-infos .content .buttons .button.cancel {
  background: #eee;
}
.change-infos .content .buttons .button.confirm {
  background: var(--dominant-color);
  color: #fff;
}
.technological-pop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 20;
  display: none;
}
.technological-pop .mask {
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.technological-pop .pop-box {
  position: absolute;
  height: 80vh;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .technological-pop .pop-box {
    overflow: auto;
    align-items: flex-start;
    padding: 30px 0;
  }
}
.technological-pop .pop-box .close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  font-size: clamp(16px, 0.3rem, 30px);
  opacity: 0.8;
  cursor: pointer;
}
.technological-pop .pop-box .box {
  display: flex;
}
@media screen and (max-width: 768px) {
  .technological-pop .pop-box .box {
    flex-direction: column;
  }
}
.technological-pop .pop-box .left {
  width: clamp(200px, 5rem, 500px);
}
@media screen and (max-width: 768px) {
  .technological-pop .pop-box .left {
    margin: auto;
  }
}
.technological-pop .pop-box .left .imgBox {
  padding-bottom: 122%;
}
.technological-pop .pop-box .right {
  flex: 1;
  padding-left: clamp(20px, 0.9rem, 90px);
  padding-right: clamp(20px, 0.6rem, 60px);
}
@media screen and (max-width: 768px) {
  .technological-pop .pop-box .right {
    margin-top: 10px;
  }
}
.technological-pop .pop-box .right .title {
  color: var(--dominant-color);
  font-size: clamp(16px, 0.3rem, 30px);
}
.technological-pop .pop-box .right .tip {
  color: var(--dominant-color);
  font-size: clamp(14px, 0.2rem, 20px);
  margin-top: 10px;
}
.technological-pop .pop-box .right .summary {
  line-height: 1.6;
  margin-top: 10px;
  font-size: clamp(14px, 0.2rem, 20px);
  color: rgba(0, 0, 0, 0.6);
  height: 44vh;
  padding-right: 20px;
  overflow: auto;
  white-space: pre-line;
}
@media screen and (max-width: 768px) {
  .technological-pop .pop-box .right .summary {
    overflow: hidden;
    height: 100%;
  }
}
/*网格布局*/
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.grid-gap-10 {
  grid-gap: 0.521vw;
}
.grid-gap-20 {
  grid-gap: 1.042vw;
}
.grid-gap-30 {
  grid-gap: 1.5625vw;
}
.grid-gap-40 {
  grid-gap: 2.083vw;
}
@media screen and (max-width: 1600px) {
  .grid-1600-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-1600-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-1600-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-1600-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-1600-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 1280px) {
  .grid-1280-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-1280-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-1280-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-1280-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-1280-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .grid-768-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-768-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-768-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-768-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-768-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
/*弹性布局*/
.flex-center,
.flex-left,
.flex-right,
.flex-between {
  display: flex;
}
.flex-center {
  align-items: center;
  justify-content: center;
}
.flex-left {
  align-items: center;
  justify-content: flex-start;
}
.flex-right {
  align-items: center;
  justify-content: flex-end;
}
.flex-between {
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .flex-phone-direction-column {
    flex-direction: column;
  }
  .flex-phone-direction-column-r {
    flex-direction: column-reverse;
  }
  .flex-phone-direction-row {
    flex-direction: row;
  }
  .flex-phone-direction-row-r {
    flex-direction: row-reverse;
  }
}
/*# sourceMappingURL=style.css.map */