@charset "utf-8";
/*初始化样式*/
*,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*设置平滑*/
html {
  scroll-behavior: smooth;
  font-size: calc(100 * 100vw / 1920);
  background: var(--dominant-color);
}
body {
  font: 14px '微软雅黑', "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  color: #0c2745;
  overflow-x: hidden;
  line-height: 1.8;
}
/*字体引入*/
@font-face {
  font-family: Montserrat-Light;
  src: url("../webfonts/Montserrat-Light.ttf") format('truetype');
}
@font-face {
  font-family: Montserrat-Regular;
  src: url("../webfonts/Montserrat-Regular.ttf") format('truetype');
}
@font-face {
  font-family: Montserrat-Bold;
  src: url("../webfonts/Montserrat-Bold.ttf") format('truetype');
}
@font-face {
  font-family: Inter-Regular;
  src: url("../webfonts/Inter-Regular.otf");
}
@font-face {
  font-family: Inter-SemiBold;
  src: url("../webfonts/Inter-SemiBold.otf");
}
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: '微软雅黑';
}
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] {
  appearance: none;
  width: 14px;
  height: 14px;
  border: 1px solid #333;
  position: relative;
  text-indent: 0;
}
input[type=checkbox]:checked {
  background: var(--dominant-color) !important;
  border-color: var(--dominant-color) !important;
}
input[type=checkbox]:checked ~ span {
  color: var(--dominant-color);
}
input[type=checkbox]:checked::after {
  content: '✔';
  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 {
  width: 6px;
  background-color: #eaeaea;
}
::-webkit-scrollbar-thumb {
  width: 5px;
  border-radius: 10px;
  background-color: var(--dominant-color);
}
::-webkit-scrollbar-corner {
  background-color: #eaeaea;
  height: 10px;
}
::-webkit-scrollbar:horizontal {
  height: 5px;
}
::-webkit-selection {
  background: var(--dominant-color);
  color: #fff;
}
::-moz-selection {
  background: var(--dominant-color);
  color: #fff;
}
/*限制行数*/
.clamp1,
.clamp2,
.clamp3,
.clamp4,
.clamp5,
.clamp6 {
  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;
}
/*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: #000;
  width: 64px;
  height: 64px;
  flex-direction: row;
  transition: all 0.5s;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #666;
  z-index: 2;
}
@media screen and (max-width: 1600px) {
  body .swiper-button-prev,
  body .swiper-button-next {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 768px) {
  body .swiper-button-prev,
  body .swiper-button-next {
    width: 30px;
    height: 30px;
  }
}
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 {
  left: 0;
}
body .swiper-button-next {
  right: 0;
}
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: 90%;
  margin-left: 5%;
  height: 100%;
  max-height: 80vh;
  margin-top: 10vh;
}
.pop-up .pop-up-box .loading-box {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin: auto;
  height: 80%;
}
.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: 1240px;
  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.1);
}
.header-logo {
  height: 1.8rem;
  background: #0c2745;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .header-logo {
    display: none;
  }
}
.header-logo img {
  width: 2rem;
}
/*头部样式*/
header {
  width: 100%;
  z-index: 10;
  transition: all 0.5s;
  top: -1.8rem;
  position: sticky;
  /*搜索*/
  /*搜索*/
  /*语言*/
  /*语言*/
}
@media screen and (max-width: 1024px) {
  header {
    top: 0;
  }
}
header.z-active {
  z-index: 99;
}
header.active,
header.hover-active {
  background: #ffffff;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
}
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 .language .language-title,
header.hover-active .language .language-title {
  color: #000;
}
header.active .search img,
header.hover-active .search img,
header.active .language .language-title img,
header.hover-active .language .language-title img {
  filter: none;
}
@media screen and (max-width: 1024px) {
  header {
    position: sticky;
    background: #fff;
  }
}
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: #fff;
  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: #fff;
  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.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 .header-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 35px;
  padding-right: 35px;
  background: linear-gradient(to top, #ffb860, #f8d6a4);
  height: 0.6rem;
  /*logo*/
  /*logo*/
}
@media screen and (max-width: 1024px) {
  header .header-box {
    padding-left: 5%;
    padding-right: 5%;
    margin: auto;
    height: 80px;
    justify-content: space-between;
    background: #0c2745;
  }
}
header .header-box .logo {
  max-width: 124px;
}
@media screen and (max-width: 1024px) {
  header .header-box .logo {
    width: 100%;
    justify-content: flex-start;
    max-width: 70px;
    display: block;
  }
  header .header-box .logo.pc {
    display: none;
  }
}
header .header-box .logo img {
  max-width: inherit;
  max-height: 100%;
  object-fit: contain;
  width: 100%;
}
header .header-box .header-menu {
  height: 100%;
  /*导航*/
  /*导航*/
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu {
    width: 100%;
    position: absolute;
    background: #fff;
    top: 80px;
    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 {
  width: 100%;
  color: #fff;
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
}
@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;
  }
}
header .header-box .header-menu nav .first-item {
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
}
@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: 768px) {
  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.22rem, 22px);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #000;
  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;
  }
}
header .header-box .header-menu nav .first-item .first-item-title::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  opacity: 0;
  border-width: 10px;
  border-style: solid;
  transition: all 0.5s;
  border-color: transparent transparent var(--dominant-color);
}
@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 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: 768px) {
  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: 0.6rem;
  -webkit-box-shadow: 0 10px 50px rgba(54, 56, 79, 0.11);
  box-shadow: 0 10px 50px rgba(54, 56, 79, 0.11);
  width: 150px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  padding: 20px 0;
  background: #d9a158;
  /*特殊*/
}
@media screen and (max-width: 768px) {
  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::before {
  content: '';
  position: absolute;
  height: 10px;
  left: 0;
  top: -10px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box::before {
    display: none;
  }
}
header .header-box .header-menu nav .first-item .second-box::after {
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  margin: auto;
  width: 0;
  height: 0;
  border-width: 10px;
  border-style: solid;
  border-color: #eee transparent transparent;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box .second-item {
    position: relative;
  }
}
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: #333;
  display: block;
  font-size: clamp(14px, 0.18rem, 18px);
  transition: all 0.2s;
  padding: 10px 2px;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title {
    color: #000;
    text-align: left;
    padding: 10px;
    border-bottom: 1px solid #eee;
  }
}
@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:hover {
  color: var(--dominant-color);
}
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 .three-box {
  width: 140px;
  padding: 30px;
  position: absolute;
  left: 100%;
  top: 0;
  background: var(--dominant-color);
  opacity: 0;
  pointer-events: none;
  height: 100%;
}
@media screen and (max-width: 768px) {
  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;
  }
}
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 .three-item-title {
  margin-bottom: 10px;
  display: block;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 1440px) {
  header .header-box .header-menu nav .first-item .second-box .three-box .three-item-title {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box .three-box .three-item-title {
    font-size: 12px;
    margin-bottom: 0;
    padding: 10px 20px;
  }
}
header .header-box .header-menu nav .first-item .second-box .three-box .three-item-title:hover {
  color: #fff;
  text-decoration: underline;
}
header .header-box .header-menu nav .first-item .second-box .three-box::after {
  content: '';
  width: 20px;
  height: 100%;
  left: -10px;
  position: absolute;
  top: 0;
  background: #fff;
  z-index: -1;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box {
  width: 100vw;
  min-height: 338px;
  padding: 0;
  position: fixed;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box {
    position: relative;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box {
  align-items: flex-start;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box {
    width: 100%;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .left {
  flex-basis: 300px;
  background: #fff;
  border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .left {
    flex-basis: 100px;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .left .p-title {
  margin-bottom: 20px;
  color: #888;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .left .p-item {
  color: #333;
  margin-bottom: 10px;
  width: 100%;
  background: #f8f8f8;
  padding: 15px;
  font-size: 14px;
  transition: all 0.5s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .left .p-item {
    font-size: 12px;
    padding: 10px;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .left .p-item:hover,
header .header-box .header-menu nav .first-item .second-box.product-second-box .left .p-item.active {
  background: #e7e7e7;
  color: #2f2f2f;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right {
  margin-left: 60px;
  flex: 1;
  border-radius: 0 10px 10px 0;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .right {
    margin-left: 10px;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items {
  display: none;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-title {
  color: #333;
  margin-bottom: 20px;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items.active {
  display: block;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-item {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-item {
    display: flex;
    overflow: auto;
    grid-gap: 10px;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-item .item {
  background: #f1f2f4;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-item .item {
    flex-shrink: 0;
    width: 130px;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-item .item .imgBox {
  padding-bottom: 75%;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-item .title {
  color: #333;
  text-align: center;
  margin-top: 10px;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item {
  flex-basis: 20%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item {
    flex-basis: 100%;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item:nth-child(n + 6) {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item:nth-child(n + 6) {
    margin-top: 0;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .img {
  height: 40px;
  position: relative;
  display: block;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .img {
    display: none;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .img img {
  height: auto;
  max-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .second-item-title {
  color: #222;
  text-align: left;
  padding: 0;
  transition: all 0.5s;
  margin-top: 10px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .second-item-title {
    margin-top: 10px;
    padding: 0 10px;
    position: relative;
    width: 100%;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .second-item-title:hover {
  color: var(--dominant-color);
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .three-box {
  margin-top: 10px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .three-box {
    margin-top: 0;
    display: none;
    padding-left: 30px;
    margin-bottom: 10px;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .three-box .three-item-title {
  display: block;
  transition: all 0.5s;
  font-size: 12px;
  color: #999;
  width: fit-content;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .three-box .three-item-title:hover {
  color: var(--dominant-color);
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .three-box .three-item-title.news {
  color: var(--dominant-color);
  font-size: 12px;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item:hover .three-box {
  opacity: 1;
  visibility: visible;
}
@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 .first-item:hover a {
  color: var(--dominant-color);
}
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: 768px) {
  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: 768px) {
  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 .search {
  position: relative;
  cursor: pointer;
  transition: all 0.5s;
  justify-content: center;
  margin-right: 30px;
}
@media screen and (max-width: 1024px) {
  header .search {
    margin-left: auto;
    display: none;
  }
}
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;
}
header .search img {
  width: 18px;
}
header .language {
  color: #fff;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
@media screen and (max-width: 1024px) {
  header .language {
    gap: 8px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  header .language {
    display: none;
  }
}
header .language .language-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
  font-size: 14px;
  cursor: pointer;
  height: 28px;
  padding-left: 15px;
  padding-right: 15px;
  transition: all 0.5s;
}
header .language .language-title:hover,
header .language .language-title.active {
  background: var(--dominant-color);
  color: #fff;
  border-radius: 999px;
}
header .header-contact {
  margin-left: 50px;
  font-size: 14px;
  font-weight: 600;
  width: 133px;
  height: 42px;
  background: var(--dominant-color);
  color: #fff;
  border-radius: 21px;
}
@media screen and (max-width: 1024px) {
  header .header-contact {
    display: none;
  }
}
header .header-contact img {
  margin-right: 20px;
  width: 20px;
}
header .header-search-box {
  display: none;
  height: 100px;
  position: fixed;
  z-index: 99;
  width: 100%;
}
header .header-search {
  position: fixed;
  top: 90px;
  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 {
  z-index: 4;
  position: relative;
  background: #0c2745;
}
.footer .footer-box {
  padding: 0.5rem 0;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .footer .footer-box {
    padding: 30px 0;
    flex-direction: column;
  }
}
.footer .footer-box .footer-logo {
  width: 3rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer .footer-box .footer-logo {
    width: 120px;
    margin: auto;
  }
}
.footer .footer-box .footer-logo img {
  width: 80%;
  max-width: 2rem;
}
@media screen and (max-width: 768px) {
  .footer .footer-box .footer-logo img {
    width: 100%;
    max-width: 100%;
  }
}
.footer .footer-box .footer-menu {
  display: flex;
  justify-content: space-between;
  grid-gap: 20px;
  flex: 1;
  padding: 0 30px;
  border-left: 1px solid var(--dominant-color);
  border-right: 1px solid var(--dominant-color);
}
@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;
}
@media screen and (max-width: 768px) {
  .footer .footer-box .footer-menu .item {
    padding-bottom: 0;
  }
}
.footer .footer-box .footer-menu .first-item {
  display: block;
  font-size: clamp(14px, 0.18rem, 18px);
  color: #fff;
  position: relative;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .footer .footer-box .footer-menu .first-item {
    pointer-events: auto;
    height: 64px;
    line-height: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 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: #fff;
    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;
  color: #fff;
  margin-top: 20px;
}
.footer .footer-box .footer-menu .bottom .b-item {
  display: flex;
  align-items: center;
  color: #fff;
  margin-bottom: 10px;
}
.footer .footer-box .footer-menu .bottom .b-item .icon {
  margin-right: 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;
  color: var(--dominant-color);
  font-size: clamp(12px, 0.14rem, 14px);
  transition: all 0.5s;
  position: relative;
  width: fit-content;
  margin-bottom: 16px;
  line-height: 1.6;
}
@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: #fff;
}
.footer .footer-box .footer-menu .second-box a:hover::after {
  width: 100%;
}
.footer .footer-box .footer-add {
  padding: 0 30px;
  width: 350px;
  color: var(--dominant-color);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .footer .footer-box .footer-add {
    width: 100%;
    padding: 0;
    margin-top: 30px;
  }
}
.footer .footer-box .footer-add .title {
  font-size: clamp(14px, 0.18rem, 18px);
}
.footer .footer-box .footer-add .summary {
  font-size: clamp(12px, 0.12rem, 12px);
  line-height: 1.5;
}
.footer .footer-box .footer-wechat {
  border-left: 1px solid var(--dominant-color);
  width: 2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer .footer-box .footer-wechat {
    width: 100px;
    margin: 40px auto 0;
    border-left: none;
  }
}
.footer .footer-box .footer-wechat img {
  width: 80%;
  max-width: 1.5rem;
}
@media screen and (max-width: 768px) {
  .footer .footer-box .footer-wechat img {
    width: 100%;
    max-width: 100%;
  }
}
.footer .footer-copyright {
  color: #0c2745;
  padding: 20px 0;
  font-size: clamp(12px, 0.16rem, 16px);
  background: linear-gradient(to top, #ffb860, #f8d6a4);
  text-align: center;
}
.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;
}
/*底部样式*/
/*根元素代码*/
:root {
  /*--dominant-color:#3a93bd;*/
  --dominant-color: #f8d6a4;
  --dominant-color2: #0c2745;
  /*--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: 0.5rem 0;
}
@media screen and (max-width: 768px) {
  .index-padding {
    padding: 30px 0;
  }
}
.index-title {
  color: #9b9b9b;
}
.index-title .sup {
  color: var(--dominant-color);
  font-size: 16px;
}
.index-title .title {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.3;
  color: var(--dominant-color);
}
@media screen and (max-width: 1600px) {
  .index-title .title {
    font-size: 32px;
  }
}
@media screen and (max-width: 1440px) {
  .index-title .title {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .index-title .title {
    font-size: 20px;
  }
}
.index-title .title span {
  color: #9b9b9b;
}
.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 {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 1440px) {
  .index-title .summary {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .index-title .summary {
    font-size: 14px;
  }
}
.index-title .summary span {
  color: #000;
}
.index-title .summary2 {
  font-size: 18px;
  color: #666666;
  margin: 30px 0 40px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .index-title .summary2 {
    font-size: 14px;
  }
}
.index-title .summary3 {
  font-size: 16px;
  color: #666666;
  margin: 30px 0 40px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .index-title .summary3 {
    font-size: 14px;
  }
}
.index-title .summary3 a {
  color: var(--dominant-color);
}
.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: 90px;
}
@media screen and (max-width: 1024px) {
  .zhan-wei {
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  .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%;
  position: relative;
}
.banner .img {
  height: 100%;
}
.banner .img img,
.banner .img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .banner .img img,
  .banner .img video {
    height: 200px;
  }
}
.banner .swiper-banner {
  height: 100%;
}
.banner .swiper-banner .text {
  margin: auto;
  position: absolute;
  right: 0;
  left: 0;
  top: 30%;
  color: #fff;
  text-align: center;
  height: fit-content;
  z-index: 4;
}
@media screen and (max-width: 1366px) {
  .banner .swiper-banner .text {
    flex-direction: column;
  }
}
.banner .swiper-banner .text .title {
  font-size: clamp(18px, 0.62rem, 62px);
  transition: all 1s;
  transform: translateY(100px);
  opacity: 0;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 600;
  background: linear-gradient(to top, #ecd6b5, #ffeacc);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.banner .swiper-banner .text .summary {
  margin-top: 20px;
  font-size: clamp(14px, 0.2rem, 20px);
  transition: all 1s;
  transform: translateY(100px);
  opacity: 0;
  background: linear-gradient(to top, #ecd6b5, #ffeacc);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.banner .swiper-banner .text .banner-more {
  transition: all 1s;
  transform: translateY(100px);
  opacity: 0;
  text-align: left;
  margin-top: 40px;
}
.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);
  opacity: 1;
  transition-delay: 0.7s;
}
.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%;
  max-width: 1720px;
  margin: auto;
  left: 0;
  right: 0;
}
@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-bullet {
  --swiper-pagination-bullet-inactive-color: #fff;
  opacity: 0.4;
  --swiper-pagination-bullet-width: 12px;
  --swiper-pagination-bullet-height: 12px;
  --swiper-pagination-bullet-horizontal-gap: 5px;
  position: relative;
  border-radius: 50%;
}
.banner .swiper-banner .swiper-pagination-bullet::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
  opacity: 0.8;
}
.banner .swiper-banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  --swiper-pagination-color: var(--dominant-color);
  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;
}
.box-top .title {
  font-size: clamp(18px, 0.24rem, 24px);
  color: var(--dominant-color);
}
.box-top .tip {
  color: #fff;
}
.color1 {
  color: var(--dominant-color) !important;
}
.color2 {
  color: #0c2745 !important;
}
.t-center {
  text-align: center;
}
.font16 {
  font-size: clamp(14px, 0.16rem, 16px) !important;
}
.font18 {
  font-size: clamp(14px, 0.18rem, 18px) !important;
}
.font24 {
  font-weight: bold;
  font-size: clamp(16px, 0.24rem, 24px) !important;
}
.bg1 {
  background: var(--dominant-color) !important;
}
.bg2 {
  background: var(--dominant-color2) !important;
}
.border1 {
  border: 1px dashed rgba(255, 255, 255, 0.5) !important;
}
.border2 {
  border: 1px dashed rgba(0, 0, 0, 0.5) !important;
}
.font36 {
  font-weight: bold;
  font-size: clamp(18px, 0.36rem, 36px) !important;
}
.font30 {
  font-weight: bold;
  font-size: clamp(18px, 0.3rem, 30px) !important;
}
.box1 {
  background: linear-gradient(to top, #ffb860, #f8d6a4);
  padding-top: 20px;
}
.box1 .box1-box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .box1 .box1-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.box1 .box1-box .item {
  background: url('../images/img1.jpg') no-repeat center / cover;
  flex-direction: column;
  color: var(--dominant-color);
  padding: 0.2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .box1 .box1-box .item {
    padding: 30px 20px;
  }
}
.box1 .box1-box .item .icon {
  width: 0.7rem;
  height: 0.7rem;
}
@media screen and (max-width: 768px) {
  .box1 .box1-box .item .icon {
    width: 40px;
    height: 40px;
  }
}
.box1 .box1-box .item .icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.box1 .box1-box .item .title {
  margin-top: 10px;
  font-size: clamp(14px, 0.23rem, 23px);
}
.box1 .box1-box .item .more {
  border: 1px solid var(--dominant-color);
  padding: 4px 20px;
  border-radius: 4px;
  margin-top: 20px;
  transition: all 0.5s;
}
.box1 .box1-box .item:hover .more {
  background: var(--dominant-color);
  color: #000;
}
.box2 {
  background: var(--dominant-color);
  padding-top: 0.4rem;
  padding-bottom: 0.8rem;
}
@media screen and (max-width: 768px) {
  .box2 {
    padding: 30px 0;
  }
}
.box2 .box2-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .box2 .box2-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.box2 .box2-box .item {
  flex-direction: column;
  color: var(--dominant-color);
  padding: 0.4rem 0.2rem 0.2rem;
  text-align: center;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .box2 .box2-box .item {
    padding: 20px;
  }
}
.box2 .box2-box .item .icon {
  width: 1.2rem;
  height: 1.2rem;
}
@media screen and (max-width: 768px) {
  .box2 .box2-box .item .icon {
    width: 40px;
    height: 40px;
  }
}
.box2 .box2-box .item .icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.box2 .box2-box .item .text {
  margin-top: 0.3rem;
  font-size: clamp(14px, 0.24rem, 24px);
}
.box2 .box2-box .item:hover {
  transform: translateY(-4px);
}
.box3 {
  padding: 0.6rem 0;
  background: url('../images/img21.jpg') no-repeat center / cover;
}
@media screen and (max-width: 768px) {
  .box3 {
    padding: 30px 0;
  }
}
.box3 .box3-box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 20px;
  gap: 0.6rem 25px;
}
@media screen and (max-width: 768px) {
  .box3 .box3-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.box3 .box3-box .img img {
  width: 100%;
}
.box3 .box3-box .text {
  background: var(--dominant-color);
  font-size: clamp(14px, 0.22rem, 22px);
  border-radius: 999px;
  margin-top: 10px;
  text-align: center;
}
.box4 {
  padding: 0.6rem 0;
  background: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box4 {
    padding: 30px 0;
  }
}
.box4 .box4-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .box4 .box4-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.box4 .box4-box .item {
  background: #0c2745;
  color: var(--dominant-color);
}
.box4 .box4-box .item .img .imgBox {
  padding-bottom: 38%;
}
.box4 .box4-box .item .text {
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--dominant-color);
}
.box4 .box4-box .item .text .title {
  font-size: clamp(16px, 0.3rem, 30px);
  font-weight: 600;
  line-height: 1.5;
}
.box4 .box4-box .item .text .summary {
  font-size: clamp(14px, 0.14rem, 14px);
}
.box4 .box4-box .item .lists {
  text-align: center;
  padding: 0.3rem;
  font-size: clamp(14px, 0.2rem, 20px);
}
@media screen and (max-width: 768px) {
  .box4 .box4-box .item .lists {
    padding: 20px;
  }
}
.box4 .box4-box .item .lists .list {
  line-height: 2;
  border-bottom: 1px dashed var(--dominant-color);
  display: block;
}
@media screen and (max-width: 768px) {
  .box4 .box4-box .item .lists .list {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
.box5 {
  padding: 0.6rem 0;
  background: url('../images/img56.jpg') no-repeat center / cover;
}
@media screen and (max-width: 768px) {
  .box5 {
    padding: 30px 0;
  }
}
.box5 .box5-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 20px;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .box5 .box5-box {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.box5 .box5-box .item {
  background: var(--dominant-color);
}
.box5 .box5-box .item .img {
  padding: 20px;
}
.box5 .box5-box .item .img .imgBox {
  padding-bottom: 78%;
  border-radius: 10px;
}
.box5 .box5-box .item .text {
  text-align: center;
}
.box5 .box5-box .item .text .title {
  font-size: clamp(16px, 0.24rem, 24px);
  line-height: 1.5;
  color: #0c2745;
  background: #ffedd4;
}
.box5 .box5-box .item .text .summary {
  padding: 20px 20px 40px;
  color: #0c2745;
  font-size: clamp(14px, 0.14rem, 14px);
}
.box6 {
  padding: 0.6rem 0;
  background: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box6 {
    padding: 30px 0;
  }
}
.box6 .box6-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .box6 .box6-box {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.box6 .box6-box .item {
  background: #0c2745;
  color: var(--dominant-color);
}
.box6 .box6-box .item .img .imgBox {
  padding-bottom: 38%;
}
.box6 .box6-box .item .text {
  text-align: center;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .box6 .box6-box .item .text {
    padding-bottom: 0;
  }
}
.box6 .box6-box .item .text .text-box {
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--dominant-color);
}
.box6 .box6-box .item .text .text-box .title {
  font-size: clamp(16px, 0.24rem, 24px);
  line-height: 1.5;
}
.box6 .box6-box .item .text .text-box .summary {
  font-size: clamp(14px, 0.14rem, 14px);
  transition: all 0.5s;
}
.box6 .box6-box .item .text .text-box .summary:hover {
  color: #fff;
}
.box6 .box6-box .item .lists {
  padding: 0.3rem;
  font-size: clamp(14px, 0.14rem, 14px);
}
@media screen and (max-width: 768px) {
  .box6 .box6-box .item .lists {
    padding: 20px;
  }
}
.box6 .box6-box .item .lists .list {
  line-height: 3;
  transition: all 0.5s;
  border-bottom: 1px dashed var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box6 .box6-box .item .lists .list {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
.box6 .box6-box .item .lists .list span {
  margin-right: 12px;
}
.box6 .box6-box .item .lists .list:hover {
  color: #fff;
}
.box7 {
  padding: 0.6rem 0;
  background: url('../images/img56.jpg') no-repeat center / cover;
}
@media screen and (max-width: 768px) {
  .box7 {
    padding: 30px 0;
  }
}
.box7 .box7-box {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 20px;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .box7 .box7-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.box7 .box7-box .item .img .imgBox {
  padding-bottom: 42%;
  border-radius: 10px;
}
.box8 {
  background: linear-gradient(to top, #ffb860, #f8d6a4);
  padding: 40px 0;
}
.box8 .box8-box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .box8 .box8-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.box8 .box8-box .item {
  flex-direction: column;
  color: var(--dominant-color);
  padding: 0.2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .box8 .box8-box .item {
    padding: 30px 20px;
  }
}
.box8 .box8-box .item .title {
  margin-top: 10px;
  font-size: clamp(14px, 0.23rem, 23px);
}
.box8 .box8-box .item .more {
  border: 1px solid var(--dominant-color);
  padding: 4px 20px;
  border-radius: 4px;
  margin-top: 20px;
  transition: all 0.5s;
}
.box8 .box8-box .item:nth-child(1) {
  background: url('../images/img60.jpg') no-repeat center / cover;
}
.box8 .box8-box .item:nth-child(2) {
  background: url('../images/img61.jpg') no-repeat center / cover;
}
.box8 .box8-box .item:nth-child(3) {
  background: url('../images/img62.jpg') no-repeat center / cover;
}
.box8 .box8-box .item:nth-child(4) {
  background: url('../images/img63.jpg') no-repeat center / cover;
}
.box8 .box8-box .item:nth-child(5) {
  background: url('../images/img64.jpg') no-repeat center / cover;
}
.box8 .box8-box .item:hover .more {
  background: var(--dominant-color);
  color: #000;
}
.box9 {
  background: var(--dominant-color);
  padding: 0.65rem 0;
}
.box9 .box9-box {
  background: #0c2745;
  padding: 25px;
  color: var(--dominant-color);
}
.box9 .box9-box .top {
  align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .box9 .box9-box .top {
    flex-direction: column;
  }
}
.box9 .box9-box .top .left {
  flex-basis: 45%;
}
.box9 .box9-box .top .left img {
  width: 100%;
}
.box9 .box9-box .top .right {
  flex-basis: 55%;
}
.box9 .box9-box .top .right .title {
  font-size: clamp(16px, 0.36rem, 36px);
  text-align: center;
}
.box9 .box9-box .top .right .summary {
  border: 1px dashed var(--dominant-color);
  padding: 20px;
  margin-top: 20px;
  line-height: 1.5;
  font-size: clamp(14px, 0.18rem, 18px);
}
.box9 .box9-box .bottom {
  font-size: clamp(14px, 0.18rem, 18px);
  line-height: 1.5;
  margin-top: 20px;
}
.box10 {
  padding: 0.6rem 0;
  background: url('../images/img56.jpg') no-repeat center / cover;
}
@media screen and (max-width: 768px) {
  .box10 {
    padding: 30px 0;
  }
}
.box10 .box10-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .box10 .box10-box {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.box10 .box10-box .item {
  background: var(--dominant-color);
}
.box10 .box10-box .item .img .imgBox {
  padding-bottom: 61%;
}
.box10 .box10-box .item .text {
  text-align: center;
  padding: 20px;
}
.box10 .box10-box .item .text .title {
  font-size: clamp(16px, 0.3rem, 30px);
  line-height: 1.5;
  color: #0c2745;
  border-bottom: 1px dashed #858585;
  padding-bottom: 10px;
}
.box10 .box10-box .item .text .summary {
  padding: 20px;
  color: #0c2745;
  font-size: clamp(14px, 0.18rem, 18px);
}
.box11 {
  padding: 0.65rem 0;
  background: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box11 {
    padding: 30px 0;
  }
}
.box11 .box11-box {
  color: var(--dominant-color);
}
.box11 .box11-box .top {
  background: #0c2745;
  padding: 20px;
}
.box11 .box11-box .top .title {
  text-align: center;
}
.box11 .box11-box .top .summarys {
  display: flex;
  max-width: 1200px;
  padding: 0 10px;
  flex-wrap: wrap;
  margin: 30px auto 20px;
  justify-content: space-between;
  gap: 20px;
}
.box11 .box11-box .top .summarys .summary {
  font-size: clamp(14px, 0.18rem, 18px);
}
.box11 .box11-box .top .summarys .summary:nth-child(odd) {
  flex-basis: 36%;
}
@media screen and (max-width: 768px) {
  .box11 .box11-box .top .summarys .summary:nth-child(odd) {
    width: 100%;
    flex-basis: 100%;
  }
}
.box11 .box11-box .top .summarys .summary:nth-child(even) {
  flex-basis: 60%;
}
@media screen and (max-width: 768px) {
  .box11 .box11-box .top .summarys .summary:nth-child(even) {
    width: 100%;
    flex-basis: 100%;
  }
}
.box11 .box11-box .top .lists {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .box11 .box11-box .top .lists {
    grid-template-columns: repeat(1, 1fr);
  }
}
.box11 .box11-box .top .lists .list {
  border: 1px dashed var(--dominant-color);
  padding: 30px;
}
.box11 .box11-box .top .lists .list .key {
  text-align: center;
  font-size: clamp(14px, 0.24rem, 24px);
}
.box11 .box11-box .top .lists .list .value {
  background: var(--dominant-color);
  margin-top: 20px;
  color: #333;
  text-align: center;
  padding: 30px;
}
.box11 .box11-box .bottom {
  margin-top: 1.2rem;
}
.box11 .box11-box .bottom .title {
  text-align: center;
  background: #0c2745;
  padding: 20px;
}
.box11 .box11-box .bottom .lists {
  border: 1px dashed #333;
  border-top: none;
  align-items: flex-start;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .box11 .box11-box .bottom .lists {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.box11 .box11-box .bottom .lists .list {
  height: auto;
  min-width: 100px;
}
.box11 .box11-box .bottom .lists .icon {
  width: 1rem;
  height: 1rem;
  min-width: 50px;
  min-height: 50px;
  margin: auto;
}
.box11 .box11-box .bottom .lists .icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .box11 .box11-box .bottom .lists .icon.pc {
    display: none;
  }
}
.box11 .box11-box .bottom .lists .key {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #0c2745;
  font-size: clamp(14px, 0.3rem, 30px);
  font-weight: 100;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .box11 .box11-box .bottom .lists .key {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.box11 .box11-box .bottom .lists .sub {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .box11 .box11-box .bottom .lists .sub {
    display: none;
  }
}
.box11 .box11-box .bottom .tip {
  font-size: clamp(14px, 0.18rem, 18px);
  color: #0c2745;
  text-align: center;
  margin-top: 30px;
}
.box12 {
  padding: 0.6rem 0;
  background: #0c2745;
}
@media screen and (max-width: 768px) {
  .box12 {
    padding: 30px 0;
  }
}
.box12 .box12-box .title {
  text-align: center;
  color: var(--dominant-color);
}
.box12 .box12-box .items {
  margin-top: 30px;
  border: 1px dashed var(--dominant-color);
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .box12 .box12-box .items {
    flex-direction: column;
  }
}
.box12 .box12-box .items .left {
  flex-basis: 45%;
}
.box12 .box12-box .items .right {
  flex-basis: 40%;
  color: var(--dominant-color);
  font-size: clamp(14px, 0.18rem, 18px);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .box12 .box12-box .items .right {
    margin-top: 20px;
    width: 100%;
  }
}
.box13 {
  padding: 0.6rem 0;
  background: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box13 {
    padding: 30px 0;
  }
}
.box13 .box13-box .title {
  text-align: center;
}
.box13 .box13-box .items {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .box13 .box13-box .items {
    margin-top: 20px;
  }
}
.box13 .box13-box .items .item {
  background: #0c2745;
  border-left: 40px solid #e5ab58;
  color: var(--dominant-color);
  padding: 40px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .box13 .box13-box .items .item {
    border-width: 5px;
    padding: 20px;
  }
}
.box13 .box13-box .items .item .key {
  font-size: clamp(16px, 0.24rem, 24px);
  border-bottom: 1px dashed var(--dominant-color);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.box13 .box13-box .items .item .value {
  font-size: clamp(14px, 0.18rem, 18px);
}
.box14 {
  padding: 0.6rem 0;
  background: linear-gradient(to bottom, #ffb860, #f8d6a4);
}
@media screen and (max-width: 768px) {
  .box14 {
    padding: 30px 0;
  }
}
.box14 .box14-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .box14 .box14-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.box14 .box14-box .item {
  background: #0c2745;
  color: var(--dominant-color);
}
.box14 .box14-box .item .img {
  padding: 10px;
}
.box14 .box14-box .item .img .imgBox {
  padding-bottom: 60%;
}
.box14 .box14-box .item .text {
  text-align: center;
  padding: 20px 20px 0;
}
.box14 .box14-box .item .text .title {
  font-size: clamp(16px, 0.3rem, 30px);
  font-weight: 600;
  line-height: 1.5;
  border-bottom: 1px dashed var(--dominant-color);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.box14 .box14-box .item .lists {
  text-align: center;
  padding: 0 0.3rem 0.3rem;
  font-size: clamp(14px, 0.2rem, 20px);
}
@media screen and (max-width: 768px) {
  .box14 .box14-box .item .lists {
    padding: 20px;
  }
}
.box14 .box14-box .item .lists .list {
  line-height: 2;
}
.box15 {
  padding: 0.6rem 0;
  background: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box15 {
    padding: 30px 0;
  }
}
.box15 .box15-box {
  background: #0c2745;
  padding: 0.7rem;
}
@media screen and (max-width: 768px) {
  .box15 .box15-box {
    padding: 20px;
  }
}
.box15 .box15-box .content {
  border: 1px dashed var(--dominant-color);
  margin-top: 30px;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .box15 .box15-box .content {
    padding: 0;
  }
}
.box15 .box15-box .content .items {
  display: flex;
  color: var(--dominant-color);
  flex-wrap: wrap;
  gap: 30px 0;
  margin-top: 30px;
  padding: 20px 40px;
}
@media screen and (max-width: 768px) {
  .box15 .box15-box .content .items {
    padding: 20px;
    margin-top: 20px;
  }
}
.box15 .box15-box .content .items .item {
  flex-basis: 50%;
  padding-right: 10%;
}
@media screen and (max-width: 768px) {
  .box15 .box15-box .content .items .item {
    flex-basis: 100%;
    padding-right: 0;
  }
}
.box15 .box15-box .content .items .item .key {
  font-size: clamp(16px, 0.18rem, 18px);
  font-weight: 600;
}
.box15 .box15-box .content .items .item .value {
  padding-left: 1em;
  font-size: clamp(14px, 0.18rem, 18px);
}
.box16 {
  padding: 0.6rem 0;
  background: #0c2745;
}
@media screen and (max-width: 768px) {
  .box16 {
    padding: 30px 0;
  }
}
.box16 .content {
  border: 1px dashed var(--dominant-color);
  padding: 30px;
  max-width: 1080px;
  margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
  .box16 .content {
    padding: 20px;
  }
}
.box16 .content .text {
  font-size: clamp(14px, 0.2rem, 20px);
  width: fit-content;
  margin: 30px auto 0;
  line-height: 1.6;
}
.box17 {
  padding: 0.6rem 0;
  background: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box17 {
    padding: 30px 0;
  }
}
.box17 .box17-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .box17 .box17-box {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.box17 .box17-box .item {
  background: #0c2745;
}
.box17 .box17-box .item .img {
  padding: 15px;
}
.box17 .box17-box .item .img .imgBox {
  padding-bottom: 61%;
}
.box17 .box17-box .item .text {
  text-align: center;
  padding: 10px 30px 30px;
  color: var(--dominant-color);
}
.box17 .box17-box .item .text .title {
  font-size: clamp(16px, 0.3rem, 30px);
  line-height: 1.5;
  border-bottom: 1px dashed var(--dominant-color);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.box17 .box17-box .item .text .summary {
  font-size: clamp(14px, 0.18rem, 18px);
}
.box18 {
  padding: 0.6rem 0;
  background: #0c2745;
}
@media screen and (max-width: 768px) {
  .box18 {
    padding: 30px 0;
  }
}
.box18 .box18-box .content {
  border: 1px dashed var(--dominant-color);
  margin-top: 30px;
  padding: 40px;
  background: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box18 .box18-box .content {
    padding: 20px;
  }
}
.box18 .box18-box .content .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .box18 .box18-box .content .items {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.box18 .box18-box .content .items .item {
  border: 1px dashed #555555;
  padding-bottom: 30px;
}
.box18 .box18-box .content .items .item .line {
  height: 20px;
  background: #ffb961;
}
.box18 .box18-box .content .items .item .list {
  padding: 0 70px;
}
@media screen and (max-width: 768px) {
  .box18 .box18-box .content .items .item .list {
    padding: 0 20px;
  }
}
.box18 .box18-box .content .items .item .list .key {
  font-size: clamp(16px, 0.18rem, 18px);
  font-weight: 600;
  margin-top: 20px;
}
.box18 .box18-box .content .items .item .list .value {
  font-size: clamp(14px, 0.18rem, 18px);
  padding-left: 28px;
}
.box18 .box18-box .content .items .item:last-child {
  grid-column: 1 / -1;
}
.box19 {
  padding: 0.6rem 0;
  background: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box19 {
    padding: 30px 0;
  }
}
.box19 .box19-box {
  background: #0c2745;
  padding: 0.7rem;
}
@media screen and (max-width: 768px) {
  .box19 .box19-box {
    padding: 20px;
  }
}
.box19 .box19-box .content {
  margin-top: 30px;
}
.box19 .box19-box .content .text {
  margin-top: 30px;
  padding: 30px;
  border: 1px dashed var(--dominant-color);
  font-size: clamp(14px, 0.18rem, 18px);
  color: var(--dominant-color);
}
.box20 {
  padding: 0.6rem 0;
  background: #0c2745;
}
@media screen and (max-width: 768px) {
  .box20 {
    padding: 30px 0;
  }
}
.box20 .box20-box {
  padding: 0.7rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .box20 .box20-box {
    padding: 20px;
  }
}
.box20 .box20-box .content {
  margin-top: 30px;
  border: 1px dashed #fff;
  padding: 30px 80px;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .box20 .box20-box .content {
    flex-direction: column;
  }
}
.box20 .box20-box .content .img {
  flex-basis: 220px;
}
@media screen and (max-width: 768px) {
  .box20 .box20-box .content .img {
    flex-basis: 100%;
    width: 100%;
  }
}
.box20 .box20-box .content .text {
  flex: 1;
  font-size: clamp(14px, 0.18rem, 18px);
  line-height: 1.6;
}
.box21 {
  padding: 0.65rem 0;
  background: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box21 {
    padding: 30px 0;
  }
}
.box21 .box21-box {
  color: var(--dominant-color);
}
.box21 .box21-box .bottom .title {
  text-align: center;
  color: #0c2745;
}
.box21 .box21-box .bottom .summary {
  text-align: center;
  color: #0c2745;
  font-size: clamp(14px, 0.18rem, 18px);
}
.box21 .box21-box .bottom .lists {
  align-items: flex-start;
  padding: 30px 50px;
  background: #0c2745;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .box21 .box21-box .bottom .lists {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.box21 .box21-box .bottom .lists .list {
  height: auto;
}
.box21 .box21-box .bottom .lists .list.angel {
  width: fit-content;
}
.box21 .box21-box .bottom .lists .list.angel .key {
  font-size: clamp(16px, 0.6rem, 60px);
}
.box21 .box21-box .bottom .lists .icon {
  width: 1rem;
  height: 1rem;
  min-width: 50px;
  min-height: 50px;
  margin: auto;
}
.box21 .box21-box .bottom .lists .icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .box21 .box21-box .bottom .lists .icon.pc {
    display: none;
  }
}
.box21 .box21-box .bottom .lists .key {
  margin-top: 20px;
  margin-bottom: 20px;
  color: var(--dominant-color);
  font-size: clamp(16px, 0.3rem, 30px);
  font-weight: 100;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .box21 .box21-box .bottom .lists .key {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.box21 .box21-box .bottom .lists .sub {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .box21 .box21-box .bottom .lists .sub {
    display: none;
  }
}
.box21 .box21-box .tip {
  margin-top: 30px;
  text-align: center;
  font-size: clamp(14px, 0.18rem, 18px);
  color: #000;
}
.box22 {
  padding: 0.6rem 0;
  background: #0c2745;
}
@media screen and (max-width: 768px) {
  .box22 {
    padding: 30px 0;
  }
}
.box22 .box22-box {
  border: 1px dashed var(--dominant-color);
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .box22 .box22-box {
    padding: 20px;
  }
}
.box22 .content {
  max-width: 950px;
  margin: auto;
}
.box22 .content .img {
  margin-top: 30px;
}
.box22 .content .text {
  font-size: clamp(14px, 0.2rem, 20px);
  margin: 30px auto 0;
  line-height: 1.6;
  display: flex;
  gap: 30px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .box22 .content .text {
    flex-direction: column;
    gap: 0;
  }
}
.box22 .content .text .left {
  flex-basis: 35%;
}
.box22 .content .text .right {
  flex-basis: 65%;
}
.box23 {
  padding: 0.6rem 0;
  background: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box23 {
    padding: 30px 0;
  }
}
.box23 .box23-box {
  background: #0c2745;
  padding: 0.5rem;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .box23 .box23-box {
    padding: 20px;
  }
}
.box23 .box23-box .content .img img {
  width: 100%;
}
.box23 .box23-box .content .summary {
  font-size: clamp(14px, 0.18rem, 18px);
  color: var(--dominant-color);
  margin-top: 30px;
  line-height: 1.8;
}
.box23 .box23-box .content .texts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .box23 .box23-box .content .texts {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.box23 .box23-box .content .text {
  padding: 30px;
  border: 1px dashed var(--dominant-color);
  font-size: clamp(14px, 0.18rem, 18px);
  color: var(--dominant-color);
  line-height: 1.8;
}
.box24 {
  padding: 0.6rem 0;
  background: #0c2745;
}
@media screen and (max-width: 768px) {
  .box24 {
    padding: 30px 0;
  }
}
.box24 .box24-box .content {
  border: 1px dashed var(--dominant-color);
  margin-top: 30px;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .box24 .box24-box .content {
    padding: 20px;
  }
}
.box24 .box24-box .content .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .box24 .box24-box .content .items {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.box24 .box24-box .content .items .item {
  padding-bottom: 30px;
  background: var(--dominant-color);
  min-height: 200px;
}
@media screen and (max-width: 768px) {
  .box24 .box24-box .content .items .item {
    min-height: auto;
  }
}
.box24 .box24-box .content .items .item .list {
  padding: 0 70px;
}
@media screen and (max-width: 768px) {
  .box24 .box24-box .content .items .item .list {
    padding: 0 20px;
  }
}
.box24 .box24-box .content .items .item .list .key {
  font-size: clamp(16px, 0.18rem, 18px);
  font-weight: 600;
  margin-top: 20px;
}
.box24 .box24-box .content .items .item .list .value {
  font-size: clamp(14px, 0.18rem, 18px);
  padding-left: 28px;
}
.box25 {
  background: var(--dominant-color);
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box25 {
    padding: 30px 0;
  }
}
.box25 .box25-box {
  background: #0c2745;
  padding: 60px;
  color: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box25 .box25-box {
    padding: 20px;
  }
}
.box25 .box25-box .top {
  margin-top: 30px;
  padding: 30px;
  gap: 40px;
  border: 1px dashed var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box25 .box25-box .top {
    flex-direction: column;
  }
}
.box25 .box25-box .top .left {
  flex-basis: 40%;
  overflow: hidden;
}
.box25 .box25-box .top .left img {
  width: 100%;
}
.box25 .box25-box .top .right {
  flex-basis: 55%;
}
.box25 .box25-box .top .right .summary {
  line-height: 1.8;
  font-size: clamp(14px, 0.18rem, 18px);
}
.box25 .box25-box .bottom {
  font-size: clamp(14px, 0.18rem, 18px);
  line-height: 1.5;
  margin-top: 20px;
}
.box26 {
  background: #0c2745;
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box26 {
    padding: 30px 0;
  }
}
.box26 .box26-box {
  color: var(--dominant-color);
}
.box26 .box26-box .top {
  margin-top: 30px;
  padding: 30px;
  gap: 40px;
  border: 1px dashed rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 768px) {
  .box26 .box26-box .top {
    flex-direction: column;
  }
}
.box26 .box26-box .top .left {
  flex-basis: 37%;
  overflow: hidden;
}
.box26 .box26-box .top .left img {
  width: 100%;
}
.box26 .box26-box .top .right {
  flex-basis: 58%;
}
.box26 .box26-box .top .right .summary {
  line-height: 1.8;
  font-size: clamp(14px, 0.18rem, 18px);
}
.box26 .box26-box .bottom {
  font-size: clamp(14px, 0.18rem, 18px);
  line-height: 1.5;
  margin-top: 20px;
}
.box27 {
  background: var(--dominant-color);
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box27 {
    padding: 30px 0;
  }
}
.box27 .box27-box {
  background: #0c2745;
  padding: 60px;
  color: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box27 .box27-box {
    padding: 20px;
  }
}
.box27 .box27-box .top {
  margin-top: 30px;
  padding: 30px;
  align-items: flex-start;
  gap: 40px;
  border: 1px dashed var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box27 .box27-box .top {
    flex-direction: column;
  }
}
.box27 .box27-box .top .right {
  flex-basis: 35%;
}
.box27 .box27-box .top .right .list {
  background: var(--dominant-color);
  border-left: 20px solid #ffb757;
  border-right: 20px solid #ffb757;
  color: #000;
  font-size: clamp(14px, 0.18rem, 18px);
  padding: 4px 20px;
  margin-bottom: 4px;
}
.box27 .box27-box .top .right .list:first-child {
  background: #ffb757;
  padding-top: 40px;
}
.box27 .box27-box .top .left {
  flex-basis: 60%;
}
.box27 .box27-box .top .left .summary {
  line-height: 1.8;
  font-size: clamp(14px, 0.18rem, 18px);
}
.box27 .box27-box .bottom {
  font-size: clamp(14px, 0.18rem, 18px);
  line-height: 1.5;
  margin-top: 20px;
}
.box28 {
  background: #0c2745;
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box28 {
    padding: 30px 0;
  }
}
.box28 .box28-box {
  color: var(--dominant-color);
}
.box28 .box28-box .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .box28 .box28-box .items {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.box28 .box28-box .items .item {
  padding: 40px;
  background: linear-gradient(to bottom, #fae3be, #f5c586);
}
.box28 .box28-box .items .item .img {
  border-radius: 50%;
  overflow: hidden;
}
.box28 .box28-box .items .item .img img {
  width: 100%;
}
.box28 .box28-box .items .item .text {
  margin-top: 20px;
  color: #0c2745;
}
.box28 .box28-box .items .item .text .title {
  text-align: center;
  font-size: clamp(16px, 0.24rem, 24px);
}
.box28 .box28-box .items .item .text .summary {
  margin-top: 10px;
  font-size: clamp(14px, 0.18rem, 18px);
}
.box29 {
  background: var(--dominant-color);
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box29 {
    padding: 30px 0;
  }
}
.box29 .box29-box .box-summary {
  margin-top: 20px;
}
.box29 .box29-box .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
  background: #0c2745;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .box29 .box29-box .items {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.box29 .box29-box .items .item {
  padding: 40px;
  background: #f8d6a4;
}
@media screen and (max-width: 768px) {
  .box29 .box29-box .items .item {
    padding: 20px;
  }
}
.box29 .box29-box .items .item .img {
  overflow: hidden;
}
.box29 .box29-box .items .item .text {
  margin-top: 20px;
  color: #0c2745;
}
.box29 .box29-box .items .item .text .title {
  text-align: center;
  font-size: clamp(16px, 0.24rem, 24px);
}
.box29 .box29-box .items .item .text .summary {
  margin-top: 20px;
  font-size: clamp(14px, 0.18rem, 18px);
}
.box30 {
  background: var(--dominant-color);
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box30 {
    padding: 30px 0;
  }
}
.box30 .box30-box {
  background: #0c2745;
  padding: 60px;
  color: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box30 .box30-box {
    padding: 20px;
  }
}
.box30 .box30-box .top {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .box30 .box30-box .top {
    flex-direction: column;
  }
}
.box30 .box30-box .top .img {
  overflow: hidden;
}
.box30 .box30-box .top .img img {
  width: 100%;
}
.box30 .box30-box .top .text {
  margin-top: 30px;
}
.box30 .box30-box .top .text .summary {
  line-height: 1.8;
  font-size: clamp(14px, 0.18rem, 18px);
  text-align: center;
}
.box30 .box30-box .bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.5);
  padding: 50px 30px;
}
@media screen and (max-width: 768px) {
  .box30 .box30-box .bottom {
    padding: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.box30 .box30-box .bottom .imgBox {
  padding-bottom: 55%;
}
.box30 .box30-box .bottom .text {
  font-size: clamp(14px, 0.3rem, 30px);
  text-align: center;
  color: var(--dominant-color);
  margin-top: 10px;
}
.box31 {
  background: #0c2745;
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box31 {
    padding: 30px 0;
  }
}
.box31 .box31-box {
  color: var(--dominant-color);
}
.box31 .box31-box .top {
  margin-top: 30px;
  padding: 30px;
  gap: 40px;
  border: 1px dashed rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 768px) {
  .box31 .box31-box .top {
    flex-direction: column;
  }
}
.box31 .box31-box .top .left {
  flex-basis: 37%;
  overflow: hidden;
}
.box31 .box31-box .top .left img {
  width: 100%;
}
.box31 .box31-box .top .right {
  flex-basis: 48%;
}
.box31 .box31-box .top .right .summary {
  line-height: 1.8;
  font-size: clamp(14px, 0.24rem, 24px);
}
.box32 {
  background: var(--dominant-color);
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box32 {
    padding: 30px 0;
  }
}
.box32 .box32-box {
  background: #0c2745;
  padding: 60px;
  color: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box32 .box32-box {
    padding: 20px;
  }
}
.box32 .box32-box .top {
  margin-top: 30px;
  align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .box32 .box32-box .top {
    flex-direction: column;
  }
}
.box32 .box32-box .top .left {
  overflow: hidden;
}
.box32 .box32-box .top .right {
  flex-basis: 50%;
}
.box32 .box32-box .top .right .list {
  background: var(--dominant-color);
  color: #000;
  font-size: clamp(14px, 0.21rem, 21px);
  padding: 10px 40px;
  margin-top: 20px;
}
.box32 .box32-box .top .left {
  flex-basis: 60%;
}
.box32 .box32-box .top .left .summary {
  line-height: 1.8;
  font-size: clamp(14px, 0.18rem, 18px);
}
.box32 .box32-box .bottom {
  font-size: clamp(14px, 0.18rem, 18px);
  line-height: 1.5;
  margin-top: 20px;
}
.box33 {
  background: var(--dominant-color);
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box33 {
    padding: 30px 0;
  }
}
.box33 .box33-box {
  color: var(--dominant-color);
}
.box33 .box33-box .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .box33 .box33-box .items {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.box33 .box33-box .items .item {
  padding: 40px;
  background: linear-gradient(to bottom, #1f4e6e, #061427);
}
.box33 .box33-box .items .item .img {
  border-radius: 50%;
  overflow: hidden;
}
.box33 .box33-box .items .item .img img {
  width: 100%;
}
.box33 .box33-box .items .item .text {
  margin-top: 20px;
  color: var(--dominant-color);
}
.box33 .box33-box .items .item .text .title {
  text-align: center;
  font-size: clamp(16px, 0.24rem, 24px);
}
.box33 .box33-box .items .item .text .summary {
  margin-top: 10px;
  text-align: center;
  font-size: clamp(14px, 0.18rem, 18px);
}
.box34 {
  background: #0c2745;
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box34 {
    padding: 30px 0;
  }
}
.box34 .box34-box {
  background: var(--dominant-color);
  padding: 60px;
  color: #0c2745;
}
@media screen and (max-width: 768px) {
  .box34 .box34-box {
    padding: 20px;
  }
}
.box34 .box34-box .top {
  margin-top: 30px;
  padding: 30px;
  gap: 40px;
  border: 1px dashed #0c2745;
}
@media screen and (max-width: 768px) {
  .box34 .box34-box .top {
    flex-direction: column;
  }
}
.box34 .box34-box .top .left {
  flex-basis: 40%;
  overflow: hidden;
}
.box34 .box34-box .top .left img {
  width: 100%;
}
.box34 .box34-box .top .right {
  flex-basis: 55%;
}
.box34 .box34-box .top .right .summary {
  line-height: 1.8;
  font-size: clamp(14px, 0.18rem, 18px);
}
.box34 .box34-box .bottom {
  font-size: clamp(14px, 0.18rem, 18px);
  line-height: 1.5;
  margin-top: 20px;
}
.box35 {
  background: #0c2745;
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box35 {
    padding: 30px 0;
  }
}
.box35 .box35-box {
  color: var(--dominant-color);
}
.box35 .box35-box .items {
  border: 1px dashed var(--dominant-color);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .box35 .box35-box .items {
    gap: 20px;
  }
}
.box35 .box35-box .items .item {
  padding: 40px;
  border: 1px dashed var(--dominant-color);
  flex-basis: calc((100% - 60px) / 3);
}
@media screen and (max-width: 768px) {
  .box35 .box35-box .items .item {
    flex-basis: 100%;
  }
}
.box35 .box35-box .items .item .img {
  border-radius: 50%;
  overflow: hidden;
}
.box35 .box35-box .items .item .img img {
  width: 100%;
}
.box35 .box35-box .items .item .text {
  margin-top: 20px;
  color: var(--dominant-color);
}
.box35 .box35-box .items .item .text .title {
  text-align: center;
  font-size: clamp(16px, 0.24rem, 24px);
}
.box35 .box35-box .items .item .text .summary {
  margin-top: 10px;
  text-align: left;
  font-size: clamp(14px, 0.16rem, 16px);
}
.box36 {
  background: var(--dominant-color);
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box36 {
    padding: 30px 0;
  }
}
.box36 .box36-box {
  border: 1px dashed #000;
  color: var(--dominant-color);
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .box36 .box36-box {
    padding: 20px;
  }
}
.box36 .box36-box .top {
  margin-top: 30px;
  align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .box36 .box36-box .top {
    flex-direction: column;
  }
}
.box36 .box36-box .top .left {
  flex: 1;
  overflow: hidden;
}
.box36 .box36-box .top .left img {
  width: 100%;
}
.box36 .box36-box .top .right {
  flex-basis: 80%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.box36 .box36-box .top .right .list {
  background: #0c2745;
  color: var(--dominant-color);
  font-size: clamp(14px, 0.2rem, 20px);
  padding: 4px 20px;
}
.box36 .box36-box .top .left {
  flex-basis: 60%;
}
.box36 .box36-box .top .left .summary {
  line-height: 1.8;
  font-size: clamp(14px, 0.18rem, 18px);
}
.box36 .box36-box .bottom {
  font-size: clamp(14px, 0.18rem, 18px);
  line-height: 1.5;
  margin-top: 20px;
}
.box37 {
  background: #0c2745;
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box37 {
    padding: 30px 0;
  }
}
.box37 .box37-box .box-summary {
  margin-top: 20px;
}
.box37 .box37-box .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
  background: #ffb962;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .box37 .box37-box .items {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.box37 .box37-box .items .item {
  padding: 40px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .box37 .box37-box .items .item {
    padding: 20px;
  }
}
.box37 .box37-box .items .item .img {
  overflow: hidden;
}
.box37 .box37-box .items .item .text {
  margin-top: 20px;
  color: #0c2745;
}
.box37 .box37-box .items .item .text .title {
  text-align: center;
  font-size: clamp(16px, 0.24rem, 24px);
}
.box37 .box37-box .items .item .text .summary {
  margin-top: 20px;
  font-size: clamp(14px, 0.18rem, 18px);
}
.box38 {
  background: var(--dominant-color);
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box38 {
    padding: 30px 0;
  }
}
.box38 .box38-box {
  background: #0c2745;
  color: var(--dominant-color);
  padding: 30px 60px;
}
@media screen and (max-width: 768px) {
  .box38 .box38-box {
    padding: 20px;
  }
}
.box38 .box38-box .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .box38 .box38-box .items {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.box38 .box38-box .items .item .img {
  overflow: hidden;
}
.box38 .box38-box .items .item .img img {
  width: 100%;
}
.box38 .box38-box .items .item .text {
  margin-top: 20px;
  color: var(--dominant-color);
}
.box38 .box38-box .items .item .text .title {
  text-align: center;
  font-size: clamp(16px, 0.2rem, 20px);
  font-weight: 600;
}
.box38 .box38-box .items .item .text .summary {
  margin-top: 10px;
  text-align: center;
  font-size: clamp(14px, 0.18rem, 18px);
}
.box39 {
  background: #0c2745;
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box39 {
    padding: 30px 0;
  }
}
.box39 .box39-box {
  background: var(--dominant-color);
  color: var(--dominant-color);
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .box39 .box39-box {
    padding: 20px;
  }
}
.box39 .box39-box .items {
  border: 1px dashed var(--dominant-color);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .box39 .box39-box .items {
    gap: 20px;
    padding: 30px 0;
  }
}
.box39 .box39-box .items .item {
  background: #0c2745;
  flex-basis: calc((100% - 40px) / 3);
}
@media screen and (max-width: 768px) {
  .box39 .box39-box .items .item {
    flex-basis: 100%;
  }
}
.box39 .box39-box .items .item:nth-child(4),
.box39 .box39-box .items .item:nth-child(5) {
  flex-basis: calc((100% - 20px) / 2);
}
@media screen and (max-width: 768px) {
  .box39 .box39-box .items .item:nth-child(4),
  .box39 .box39-box .items .item:nth-child(5) {
    flex-basis: 100%;
  }
}
.box39 .box39-box .items .item.w50 {
  flex-basis: calc((100% - 40px) / 2);
}
@media screen and (max-width: 768px) {
  .box39 .box39-box .items .item.w50 {
    flex-basis: 100%;
  }
}
.box39 .box39-box .items .item .img {
  border-radius: 50%;
  overflow: hidden;
}
.box39 .box39-box .items .item .img img {
  width: 100%;
}
.box39 .box39-box .items .item .text .title {
  background: #febb66;
  text-align: center;
  color: #000;
  padding: 6px;
  font-weight: 600;
  font-size: clamp(16px, 0.24rem, 24px);
}
.box39 .box39-box .items .item .text .summary {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
  font-size: clamp(14px, 0.18rem, 18px);
}
.box40 {
  background: var(--dominant-color);
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box40 {
    padding: 30px 0;
  }
}
.box40 .box40-box {
  background: var(--dominant-color);
  color: var(--dominant-color);
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .box40 .box40-box {
    padding: 0;
  }
}
.box40 .box40-box .font36 {
  background: #febb66;
  padding: 30px;
}
.box40 .box40-box .items {
  border: 1px dashed #000;
  border-top: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .box40 .box40-box .items {
    gap: 20px;
  }
}
.box40 .box40-box .items .item {
  background: #0c2745;
  flex-basis: calc((100% - 20px) / 2);
}
@media screen and (max-width: 768px) {
  .box40 .box40-box .items .item {
    flex-basis: 100%;
  }
}
.box40 .box40-box .items .item:nth-child(5) {
  flex-basis: 100%;
}
.box40 .box40-box .items .item .img {
  border-radius: 50%;
  overflow: hidden;
}
.box40 .box40-box .items .item .img img {
  width: 100%;
}
.box40 .box40-box .items .item .text {
  padding: 20px 50px;
}
.box40 .box40-box .items .item .text .title {
  text-align: center;
  padding: 6px;
  font-weight: 600;
  color: var(--dominant-color);
  font-size: clamp(16px, 0.24rem, 24px);
}
.box40 .box40-box .items .item .text .summary {
  margin: 10px auto 0;
  text-align: center;
  font-size: clamp(14px, 0.18rem, 18px);
}
.box41 {
  padding: 0.65rem 0;
  background: #0c2745;
}
@media screen and (max-width: 768px) {
  .box41 {
    padding: 30px 0;
  }
}
.box41 .box41-box {
  color: var(--dominant-color);
}
.box41 .box41-box .bottom .title {
  text-align: center;
}
.box41 .box41-box .bottom .summary {
  text-align: center;
  color: #0c2745;
  font-size: clamp(14px, 0.18rem, 18px);
}
.box41 .box41-box .bottom .lists {
  align-items: flex-start;
  padding: 30px 50px;
  background: var(--dominant-color);
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .box41 .box41-box .bottom .lists {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.box41 .box41-box .bottom .lists .list {
  height: auto;
}
.box41 .box41-box .bottom .lists .list.angel {
  width: fit-content;
}
.box41 .box41-box .bottom .lists .list.angel .key {
  font-size: clamp(16px, 0.6rem, 60px);
}
.box41 .box41-box .bottom .lists .icon {
  width: 1rem;
  height: 1rem;
  min-width: 50px;
  min-height: 50px;
  margin: auto;
}
.box41 .box41-box .bottom .lists .icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .box41 .box41-box .bottom .lists .icon.pc {
    display: none;
  }
}
.box41 .box41-box .bottom .lists .key {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #000;
  font-size: clamp(16px, 0.3rem, 30px);
  font-weight: 100;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .box41 .box41-box .bottom .lists .key {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.box41 .box41-box .bottom .lists .sub {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .box41 .box41-box .bottom .lists .sub {
    display: none;
  }
}
.box41 .box41-box .tip {
  margin-top: 30px;
  text-align: center;
  font-size: clamp(14px, 0.18rem, 18px);
  color: #000;
}
.box42 {
  background: var(--dominant-color);
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box42 {
    padding: 30px 0;
  }
}
.box42 .box42-box {
  background: #0c2745;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .box42 .box42-box {
    padding: 0;
  }
}
.box42 .box42-box .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .box42 .box42-box .items {
    gap: 20px;
  }
}
.box42 .box42-box .items .item {
  background: #0c2745;
  flex-basis: calc((100% - 20px) / 2);
  background: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box42 .box42-box .items .item {
    flex-basis: 100%;
  }
}
.box42 .box42-box .items .item .text {
  padding: 20px 50px;
}
.box42 .box42-box .items .item .text .title {
  text-align: center;
  padding: 6px;
  color: #000;
  font-size: clamp(16px, 0.24rem, 24px);
}
.box42 .box42-box .items .item .text .summary {
  margin: 10px auto 0;
  text-align: center;
  font-size: clamp(14px, 0.18rem, 18px);
}
.box43 {
  padding: 0.6rem 0;
  background: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box43 {
    padding: 30px 0;
  }
}
.box43 .box43-box .content {
  padding: 30px 0.6rem 0.6rem;
  background: #fff;
}
.box43 .box43-box .content .text {
  margin-top: 20px;
  font-size: clamp(14px, 0.18rem, 18px);
}
.box44 {
  background: var(--dominant-color2);
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box44 {
    padding: 30px 0;
  }
}
.box44 .box44-box {
  padding: 30px 60px;
}
@media screen and (max-width: 768px) {
  .box44 .box44-box {
    padding: 20px;
  }
}
.box44 .box44-box .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .box44 .box44-box .items {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.box44 .box44-box .items .item {
  padding: 40px 20px 20px;
  background: linear-gradient(to bottom, #fae4bf, #f4c281);
}
.box44 .box44-box .items .item .img {
  overflow: hidden;
  max-width: 3.6rem;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .box44 .box44-box .items .item .img {
    max-width: 50%;
  }
}
.box44 .box44-box .items .item .img img {
  width: 100%;
}
.box44 .box44-box .items .item .text {
  margin-top: 20px;
  color: var(--dominant-color2);
}
.box44 .box44-box .items .item .text .title {
  text-align: center;
  font-size: clamp(16px, 0.3rem, 30px);
  font-weight: 600;
}
.box44 .box44-box .items .item .text .summary {
  margin-top: 10px;
  text-align: center;
  font-size: clamp(14px, 0.18rem, 18px);
}
.box45 {
  padding: 0.6rem 0;
  background: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box45 {
    padding: 30px 0;
  }
}
.box45 .box45-box .content {
  background: #0c2745;
  padding: 0.6rem 30px;
  margin-top: 30px;
}
.box46 {
  background: var(--dominant-color);
  padding: 0.65rem 0;
}
.box46 .box46-box {
  background: #fff;
  padding: 25px;
}
.box46 .box46-box .top {
  gap: 40px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .box46 .box46-box .top {
    flex-direction: column;
  }
}
.box46 .box46-box .top .left {
  flex-basis: 45%;
}
.box46 .box46-box .top .left img {
  width: 100%;
}
.box46 .box46-box .top .right {
  flex-basis: 55%;
}
.box46 .box46-box .top .right .title {
  font-size: clamp(16px, 0.3rem, 30px);
  text-align: center;
}
.box46 .box46-box .top .right .summary {
  margin-top: 20px;
  line-height: 1.5;
  font-size: clamp(14px, 0.16rem, 16px);
}
.box47 {
  padding: 0.6rem 0;
  background: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box47 {
    padding: 30px 0;
  }
}
.box47 .box47-box .content {
  background: #0c2745;
  padding: 30px;
}
.box47 .box47-box .content .summary {
  margin-top: 20px;
  margin-bottom: 30px;
}
.box48 {
  background: var(--dominant-color);
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
@media screen and (max-width: 768px) {
  .box48 {
    padding: 30px 0;
  }
}
.box48 .box48-box {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .box48 .box48-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.box48 .box48-box .item {
  flex-direction: column;
  color: var(--dominant-color);
  padding: 0.4rem 0.4rem 0.2rem;
  transition: all 0.5s;
  background: linear-gradient(45deg, #215071, #041022);
}
@media screen and (max-width: 768px) {
  .box48 .box48-box .item {
    padding: 20px;
  }
}
.box48 .box48-box .item .icon {
  width: 1.2rem;
  height: 1.2rem;
}
@media screen and (max-width: 768px) {
  .box48 .box48-box .item .icon {
    width: 40px;
    height: 40px;
  }
}
.box48 .box48-box .item .icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.box48 .box48-box .item .text .title {
  text-align: center;
  margin-top: 10px;
  font-size: clamp(14px, 0.24rem, 24px);
}
.box48 .box48-box .item .text .summary {
  margin-top: 10px;
  font-size: clamp(12px, 0.14rem, 14px);
}
.box48 .box48-box .item:hover {
  transform: translateY(-4px);
}
.box49 {
  padding: 0.6rem 0;
  background: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box49 {
    padding: 30px 0;
  }
}
.box49 .box49-box .content {
  background: #fff;
  padding: 0.7rem;
}
.box49 .box49-box .content .img img {
  width: 100%;
}
.box49 .box49-box .content .title {
  font-size: clamp(16px, 0.36rem, 36px);
  color: #525252;
  text-align: center;
  font-weight: bold;
  margin-top: 30px;
}
.box49 .box49-box .content .summary {
  margin-top: 20px;
  color: #525252;
  font-size: clamp(14px, 0.18rem, 18px);
}
.box49 .box49-box .content .title2 {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 30px;
}
.box49 .box49-box .content .items {
  background: var(--dominant-color);
  padding: 30px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .box49 .box49-box .content .items {
    padding: 30px 10px;
  }
}
.box49 .box49-box .content .items .i-title {
  text-align: center;
}
.box49 .box49-box .content .items .i-summary {
  margin-top: 20px;
  font-size: clamp(14px, 0.21rem, 21px);
}
.box49 .box49-box .content .items .lists {
  margin-top: 30px;
}
.box49 .box49-box .content .items .lists .list {
  gap: 40px;
  margin-bottom: 10px;
  background: var(--dominant-color2);
}
@media screen and (max-width: 768px) {
  .box49 .box49-box .content .items .lists .list {
    flex-direction: column;
    gap: 10px;
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .box49 .box49-box .content .items .lists .left {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .box49 .box49-box .content .items .lists .left img {
    width: 100%;
  }
}
.box49 .box49-box .content .items .lists .right {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .box49 .box49-box .content .items .lists .right {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    width: 100%;
  }
}
.box49 .box49-box .content .items .lists .right .key {
  color: #fff;
  font-size: clamp(16px, 0.21rem, 21px);
  flex-basis: 160px;
}
@media screen and (max-width: 768px) {
  .box49 .box49-box .content .items .lists .right .key {
    flex-basis: 100%;
  }
}
.box49 .box49-box .content .items .lists .right .value {
  color: var(--dominant-color);
  flex: 1;
  padding-right: 20px;
}
.box50 {
  background: var(--dominant-color);
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box50 {
    padding: 30px 0;
  }
}
.box50 .box50-box {
  color: var(--dominant-color);
}
.box50 .box50-box .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .box50 .box50-box .items {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.box50 .box50-box .items .item {
  background: var(--dominant-color2);
  border: 1px solid #ffffff;
  padding: 20px;
}
.box50 .box50-box .items .item .img {
  overflow: hidden;
}
.box50 .box50-box .items .item .img img {
  width: 100%;
}
.box50 .box50-box .items .item .text {
  margin-top: 20px;
  color: var(--dominant-color);
}
.box50 .box50-box .items .item .text .title {
  text-align: center;
  font-size: clamp(16px, 0.2rem, 20px);
  font-weight: 600;
}
.box50 .box50-box .items .item .text .summary {
  margin-top: 10px;
  font-size: clamp(14px, 0.18rem, 18px);
}
.box51 {
  padding: 0.6rem 0;
  background: var(--dominant-color2);
}
@media screen and (max-width: 768px) {
  .box51 {
    padding: 30px 0;
  }
}
.box51 .box51-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .box51 .box51-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.box51 .box51-box .item {
  background: var(--dominant-color);
  color: var(--dominant-color2);
}
.box51 .box51-box .item .img {
  padding: 10px;
}
.box51 .box51-box .item .img .imgBox {
  padding-bottom: 60%;
}
.box51 .box51-box .item .text {
  text-align: center;
  padding: 20px 20px 0;
}
.box51 .box51-box .item .text .title {
  font-size: clamp(16px, 0.3rem, 30px);
  font-weight: 600;
  line-height: 1.5;
  border-bottom: 1px dashed var(--dominant-color2);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.box51 .box51-box .item .lists {
  text-align: center;
  padding: 0 0.3rem 0.3rem;
  font-size: clamp(14px, 0.2rem, 20px);
}
@media screen and (max-width: 768px) {
  .box51 .box51-box .item .lists {
    padding: 20px;
  }
}
.box51 .box51-box .item .lists .list {
  line-height: 2;
}
.box52 {
  background: #0c2745;
  padding: 0.65rem 0;
  display: flex;
  gap: 60px;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .box52 {
    padding: 30px 0;
  }
}
.box52 .box52-box .items {
  background: var(--dominant-color);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .box52 .box52-box .items {
    gap: 20px;
    margin-top: 10px;
  }
}
.box52 .box52-box .items .item {
  padding: 40px;
  border: 1px dashed var(--dominant-color2);
  flex-basis: calc((100% - 60px) / 3);
}
@media screen and (max-width: 768px) {
  .box52 .box52-box .items .item {
    flex-basis: 100%;
  }
}
.box52 .box52-box .items .item .img {
  border-radius: 50%;
  overflow: hidden;
}
.box52 .box52-box .items .item .img img {
  width: 100%;
}
.box52 .box52-box .items .item .text {
  margin-top: 20px;
  color: var(--dominant-color2);
}
.box52 .box52-box .items .item .text .title {
  text-align: center;
  font-size: clamp(16px, 0.24rem, 24px);
}
.box52 .box52-box .items .item .text .summary {
  margin-top: 10px;
  text-align: left;
  font-size: clamp(14px, 0.16rem, 16px);
}
.box52 .box52-box .bottom {
  padding: 20px;
  background: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box52 .box52-box .bottom {
    flex-direction: column;
    gap: 40px;
  }
}
.box52 .box52-box .bottom .left {
  flex-basis: 50%;
}
.box52 .box52-box .bottom .left img {
  width: 100%;
}
.box52 .box52-box .bottom .right {
  flex-basis: 45%;
}
.box53 {
  background: #0c2745;
  padding: 0.65rem 0;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .box53 {
    padding: 30px 0;
  }
}
.box53 .box53-box .items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .box53 .box53-box .items {
    margin-top: 10px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.box53 .box53-box .items .item {
  padding: 0.6rem 20px;
  border: 1px dashed rgba(255, 255, 255, 0.5);
  border-radius: 2px;
}
.box53 .box53-box .items .item .icon {
  width: 1.1rem;
  height: 1.1rem;
  min-width: 60px;
  min-height: 60px;
  margin: auto;
}
.box53 .box53-box .items .item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.box53 .box53-box .items .item .text {
  margin-top: 20px;
  color: var(--dominant-color);
}
.box53 .box53-box .items .item .text .title {
  text-align: center;
  font-size: clamp(16px, 0.24rem, 24px);
  border: 1px dashed rgba(255, 255, 255, 0.5);
  padding: 10px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.box53 .box53-box .items .item .text .summary {
  margin-top: 10px;
  text-align: center;
  font-size: clamp(14px, 0.16rem, 16px);
}
.box54 {
  padding: 0.6rem 0;
  background: #0c2745;
}
@media screen and (max-width: 768px) {
  .box54 {
    padding: 30px 0;
  }
}
.box54 .box54-box .title {
  text-align: center;
  color: var(--dominant-color);
}
.box54 .box54-box .items {
  margin-top: 30px;
  border: 1px dashed var(--dominant-color);
  padding: 20px;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .box54 .box54-box .items {
    flex-direction: column;
  }
}
.box54 .box54-box .items .right {
  color: var(--dominant-color);
  font-size: clamp(14px, 0.18rem, 18px);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .box54 .box54-box .items .right {
    margin-top: 20px;
    width: 100%;
  }
}
.box55 {
  padding: 0.6rem 0;
  background: #0c2745;
}
@media screen and (max-width: 768px) {
  .box55 {
    padding: 30px 0;
  }
}
.box55 .box55-box .items {
  margin-top: 30px;
  background: var(--dominant-color);
  padding: 30px 0.7rem;
}
@media screen and (max-width: 768px) {
  .box55 .box55-box .items {
    flex-direction: column;
  }
}
.box55 .box55-box .items .lists {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px dashed rgba(0, 0, 0, 0.5);
  margin-top: 30px;
  gap: 30px;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .box55 .box55-box .items .lists {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
  }
}
.box55 .box55-box .items .lists .img {
  margin: auto;
  text-align: center;
}
.box55 .box55-box .items .lists .summary {
  font-size: clamp(16px, 0.24rem, 24px);
  text-align: center;
  margin-top: 10px;
}
.box56 {
  background: var(--dominant-color);
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box56 {
    padding: 30px 0;
  }
}
.box56 .box56-box .top {
  background: var(--dominant-color2);
  margin-top: 30px;
  padding: 40px;
  gap: 40px;
  color: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box56 .box56-box .top {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }
}
.box56 .box56-box .top .left {
  flex-basis: 40%;
  overflow: hidden;
}
.box56 .box56-box .top .left img {
  width: 100%;
}
.box56 .box56-box .top .right {
  flex-basis: 55%;
}
.box56 .box56-box .top .right .summary {
  line-height: 1.8;
  margin-top: 20px;
  font-size: clamp(14px, 0.18rem, 18px);
}
.box56 .box56-box .top .right .summary .lists {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .box56 .box56-box .top .right .summary .lists {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .box56 .box56-box .border2,
  .box56 .box56-box .border1 {
    flex-direction: column;
  }
}
.box57 {
  padding: 0.6rem 0;
  background: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box57 {
    padding: 30px 0;
  }
}
.box57 .box57-box .items {
  margin-top: 30px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 768px) {
  .box57 .box57-box .items {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 10px;
  }
}
.box57 .box57-box .items .item {
  background: var(--dominant-color2);
  padding: 10px;
  text-align: center;
  color: var(--dominant-color);
}
.box57 .box57-box .items .item .title {
  margin-top: 20px;
  font-size: clamp(16px, 0.24rem, 24px);
}
.box57 .box57-box .items .item .summary {
  font-size: clamp(14px, 0.18rem, 18px);
  text-align: center;
  margin-top: 10px;
}
.box58 {
  padding: 0.6rem 0;
  background: var(--dominant-color2);
}
@media screen and (max-width: 768px) {
  .box58 {
    padding: 30px 0;
  }
}
.box58 .box58-box .items {
  margin-top: 30px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 768px) {
  .box58 .box58-box .items {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 10px;
  }
}
.box58 .box58-box .items .item {
  background: var(--dominant-color2);
  text-align: center;
  position: relative;
  color: var(--dominant-color2);
}
.box58 .box58-box .items .item img {
  width: 100%;
}
.box58 .box58-box .items .item .title {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  font-size: clamp(1rem, 1rem, 100px);
  height: fit-content;
  font-weight: bold;
}
.box58 .box58-box .items .item .summary {
  font-size: clamp(14px, 0.24rem, 24px);
  text-align: center;
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
}
.box59 {
  padding: 0.6rem 0;
  background: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box59 {
    padding: 30px 0;
  }
}
.box59 .content {
  background: var(--dominant-color2);
  padding: 30px 0.9rem;
}
.box59 .content .img {
  margin-top: 30px;
}
.box59 .content .text {
  font-size: clamp(14px, 0.16rem, 16px);
  margin: 30px auto 0;
  line-height: 1.6;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .box59 .content .text {
    flex-direction: column;
    gap: 0;
  }
}
.box59 .content .text .left {
  flex-basis: 45%;
}
.box59 .content .text .right {
  flex-basis: 45%;
}
.box60 {
  padding: 0.6rem 0;
  background: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box60 {
    padding: 30px 0;
  }
}
.box60 .box60-box .items {
  margin-top: 30px;
  display: grid;
  gap: 20px;
  padding: 30px 50px;
  background: var(--dominant-color2);
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 768px) {
  .box60 .box60-box .items {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 10px;
    padding: 20px;
  }
}
.box60 .box60-box .items .item {
  text-align: center;
  color: var(--dominant-color);
  border: 1px dashed var(--dominant-color);
  padding: 20px;
}
.box60 .box60-box .items .item .img {
  width: 0.8rem;
  height: 0.8rem;
  min-width: 60px;
  min-height: 60px;
  margin: auto;
}
.box60 .box60-box .items .item .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.box60 .box60-box .items .item .title {
  margin-top: 10px;
  font-size: clamp(16px, 0.24rem, 24px);
}
.box60 .box60-box .items .item .summary {
  font-size: clamp(14px, 0.18rem, 18px);
  text-align: center;
  margin-top: 10px;
}
.box61 {
  padding: 0.65rem 0;
  background: var(--dominant-color2);
}
@media screen and (max-width: 768px) {
  .box61 {
    padding: 30px 0;
  }
}
.box61 .box61-box .bottom {
  color: var(--dominant-color);
  background: var(--dominant-color);
}
.box61 .box61-box .bottom .title {
  text-align: center;
  background: #0c2745;
  padding: 20px;
}
.box61 .box61-box .bottom .lists {
  border-top: none;
  align-items: flex-start;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .box61 .box61-box .bottom .lists {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.box61 .box61-box .bottom .lists .list {
  height: auto;
  min-width: 100px;
}
.box61 .box61-box .bottom .lists .icon {
  width: 1rem;
  height: 1rem;
  min-width: 50px;
  min-height: 50px;
  margin: auto;
}
.box61 .box61-box .bottom .lists .icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .box61 .box61-box .bottom .lists .icon.pc {
    display: none;
  }
}
.box61 .box61-box .bottom .lists .key {
  margin-top: 20px;
  color: #0c2745;
  font-size: clamp(14px, 0.3rem, 30px);
  font-weight: 100;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .box61 .box61-box .bottom .lists .key {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.box61 .box61-box .bottom .lists .value {
  margin-bottom: 20px;
  text-align: center;
  color: #0c2745;
  font-size: clamp(14px, 0.16rem, 16px);
}
.box61 .box61-box .tip {
  font-size: clamp(14px, 0.18rem, 18px);
  color: #0c2745;
  text-align: center;
  margin-top: 30px;
}
.box62 {
  padding: 0.6rem 0;
  background: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box62 {
    padding: 30px 0;
  }
}
.box62 .box62-box {
  padding-top: 30px;
  border: 1px dashed rgba(0, 0, 0, 0.5);
}
.box62 .box62-box .items {
  margin-top: 30px;
  display: grid;
  padding: 30px 50px;
  background: var(--dominant-color2);
  border: 1px dashed rgba(255, 255, 255, 0.5);
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 768px) {
  .box62 .box62-box .items {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 10px;
    gap: 20px;
    padding: 20px;
  }
}
.box62 .box62-box .items .item {
  text-align: center;
  color: var(--dominant-color);
}
.box62 .box62-box .items .item .img {
  background: #fff;
  text-align: center;
}
.box62 .box62-box .items .item .img img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}
.box62 .box62-box .items .item .title {
  margin-top: 10px;
  font-size: clamp(16px, 0.24rem, 24px);
}
.box63 {
  background: var(--dominant-color);
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box63 {
    padding: 30px 0;
  }
}
.box63 .box63-box {
  background: var(--dominant-color2);
  padding: 30px;
  color: var(--dominant-color);
}
.box63 .box63-box .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.box63 .box63-box .items.grid2 {
  grid-template-columns: repeat(2, 1fr);
}
.box63 .box63-box .items.grid2 .item {
  background: none;
}
.box63 .box63-box .items.grid2 .summary {
  border: 1px dashed var(--dominant-color2);
}
@media screen and (max-width: 768px) {
  .box63 .box63-box .items {
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 20px;
  }
}
.box63 .box63-box .items .item {
  background: var(--dominant-color2);
}
.box63 .box63-box .items .item .img {
  overflow: hidden;
  position: relative;
}
.box63 .box63-box .items .item .img img {
  width: 100%;
}
.box63 .box63-box .items .item .title {
  text-align: center;
  font-size: clamp(16px, 0.24rem, 24px);
  font-weight: 600;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
}
.box63 .box63-box .items .item .text {
  background: var(--dominant-color);
  text-align: center;
}
.box63 .box63-box .items .item .text .summary {
  height: 1rem;
  min-height: 60px;
  color: var(--dominant-color2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(14px, 0.18rem, 18px);
}
.box64 {
  padding: 0.6rem 0;
  background: var(--dominant-color2);
}
@media screen and (max-width: 768px) {
  .box64 {
    padding: 30px 0;
  }
}
.box64 .box64-box .content {
  margin-top: 30px;
  background: var(--dominant-color);
  padding: 30px;
}
.box64 .box64-box .content .summary {
  margin-top: 20px;
}
.box65 {
  background: var(--dominant-color);
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box65 {
    padding: 30px 0;
  }
}
.box65 .box65-box {
  background: #0c2745;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .box65 .box65-box {
    padding: 20px 0 ;
  }
}
.box65 .box65-box .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .box65 .box65-box .items {
    gap: 20px;
  }
}
.box65 .box65-box .items .item {
  background: #0c2745;
  flex-basis: calc((100% - 20px) / 2);
  background: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box65 .box65-box .items .item {
    flex-basis: 100%;
  }
}
.box65 .box65-box .items .item.w100 {
  flex-basis: 100%;
}
.box65 .box65-box .items .item.w20 {
  flex-basis: calc((100% - 80px) / 5);
}
@media screen and (max-width: 768px) {
  .box65 .box65-box .items .item.w20 {
    flex-basis: 100%;
  }
}
.box65 .box65-box .items .item.w25 {
  flex-basis: calc((100% - 60px) / 4);
}
@media screen and (max-width: 768px) {
  .box65 .box65-box .items .item.w25 {
    flex-basis: 100%;
  }
}
.box65 .box65-box .items .item.w33 {
  flex-basis: calc((100% - 40px) / 3);
}
@media screen and (max-width: 768px) {
  .box65 .box65-box .items .item.w33 {
    flex-basis: 100%;
  }
}
.box65 .box65-box .items .item .text {
  padding: 20px 30px;
}
.box65 .box65-box .items .item .text .title {
  text-align: center;
  padding: 6px;
  color: #000;
  font-size: clamp(16px, 0.24rem, 24px);
}
.box65 .box65-box .items .item .text .summary {
  text-align: center;
  font-size: clamp(14px, 0.18rem, 18px);
}
.box65 .box65-box .items.item4 .item {
  flex-basis: calc((100% - 60px) / 4);
}
@media screen and (max-width: 768px) {
  .box65 .box65-box .items.item4 .item {
    flex-basis: 100%;
  }
}
.box66 {
  padding: 0.6rem 0;
  background: var(--dominant-color2);
}
@media screen and (max-width: 768px) {
  .box66 {
    padding: 30px 0;
  }
}
.box66 .box66-box {
  background: var(--dominant-color);
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .box66 .box66-box {
    padding: 20px;
  }
}
.box66 .box66-box .content .items {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .box66 .box66-box .content .items {
    margin-top: 20px;
    gap: 20px;
  }
}
.box66 .box66-box .content .items .item {
  border: 1px dashed #0c2745;
  flex-basis: calc((100% - 20px) / 2);
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .box66 .box66-box .content .items .item {
    flex-basis: 100%;
    padding: 20px;
  }
}
.box66 .box66-box .content .items .item .key {
  font-size: clamp(16px, 0.24rem, 24px);
  font-weight: 600;
  text-align: center;
}
.box66 .box66-box .content .items .item .value {
  margin-top: 20px;
  padding-left: 1em;
  font-size: clamp(14px, 0.18rem, 18px);
}
@media screen and (max-width: 768px) {
  .box66 .box66-box .content .items .item .value {
    padding-left: 0;
  }
}
.box67 {
  background: var(--dominant-color);
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box67 {
    padding: 30px 0;
  }
}
.box67 .box67-box {
  padding: 50px;
  background: var(--dominant-color2);
  color: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box67 .box67-box {
    padding: 30px 20px;
  }
}
.box67 .box67-box .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .box67 .box67-box .items {
    gap: 20px;
  }
}
.box67 .box67-box .items .item {
  flex-basis: calc((100% - 40px) / 3);
  border: 1px dashed var(--dominant-color);
}
.box67 .box67-box .items .item:nth-child(1),
.box67 .box67-box .items .item:nth-child(2) {
  flex-basis: calc((100% - 20px) / 2);
}
@media screen and (max-width: 768px) {
  .box67 .box67-box .items .item:nth-child(1),
  .box67 .box67-box .items .item:nth-child(2) {
    flex-basis: 100%;
  }
}
@media screen and (max-width: 768px) {
  .box67 .box67-box .items .item {
    flex-basis: 100%;
  }
}
.box67 .box67-box .items .item .img {
  border-radius: 50%;
  overflow: hidden;
}
.box67 .box67-box .items .item .img img {
  width: 100%;
}
.box67 .box67-box .items .item .title {
  height: 0.4rem;
  background: var(--dominant-color);
}
.box67 .box67-box .items .item .text {
  color: var(--dominant-color);
}
.box67 .box67-box .items .item .text .summary {
  border-top: none;
  padding: 40px 20px;
  text-align: center;
  font-size: clamp(14px, 0.16rem, 16px);
}
.box68 {
  padding: 0.6rem 0;
  background: #0c2745;
}
@media screen and (max-width: 768px) {
  .box68 {
    padding: 30px 0;
  }
}
.box68 .box68-box .content {
  border: 1px dashed var(--dominant-color);
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .box68 .box68-box .content {
    padding: 20px;
  }
}
.box68 .box68-box .content .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .box68 .box68-box .content .items {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.box68 .box68-box .content .items .item {
  background: var(--dominant-color);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .box68 .box68-box .content .items .item {
    min-height: auto;
  }
}
.box68 .box68-box .content .items .item .list {
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .box68 .box68-box .content .items .item .list {
    padding: 20px;
  }
}
.box68 .box68-box .content .items .item .list .value {
  font-size: clamp(14px, 0.16rem, 16px);
}
.box69 {
  padding: 0.65rem 0;
  background: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box69 {
    padding: 30px 0;
  }
}
.box69 .box69-box {
  color: var(--dominant-color);
}
.box69 .box69-box .bottom .title {
  text-align: center;
  color: #0c2745;
}
.box69 .box69-box .bottom .summary {
  text-align: center;
  color: #0c2745;
  font-size: clamp(14px, 0.18rem, 18px);
}
.box69 .box69-box .bottom .lists {
  align-items: flex-start;
  padding: 50px;
  background: #0c2745;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .box69 .box69-box .bottom .lists {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.box69 .box69-box .bottom .lists .list {
  height: auto;
  flex-basis: calc((100% - 100px) / 2);
}
.box69 .box69-box .bottom .lists .list.angel {
  flex-basis: 100px;
}
.box69 .box69-box .bottom .lists .list.angel .key {
  font-size: clamp(16px, 0.6rem, 60px);
}
.box69 .box69-box .bottom .lists .icon {
  margin: auto;
}
.box69 .box69-box .bottom .lists .icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .box69 .box69-box .bottom .lists .icon.pc {
    display: none;
  }
}
.box69 .box69-box .bottom .lists .key {
  margin-top: 20px;
  margin-bottom: 20px;
  color: var(--dominant-color);
  font-size: clamp(16px, 0.3rem, 30px);
  font-weight: 100;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .box69 .box69-box .bottom .lists .key {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.box69 .box69-box .bottom .lists .value {
  text-align: center;
  font-size: clamp(14px, 0.14rem, 14px);
}
.box69 .box69-box .tip {
  margin-top: 30px;
  text-align: center;
  font-size: clamp(14px, 0.18rem, 18px);
  color: #000;
}
.box70 {
  padding: 0.65rem 0;
  background: var(--dominant-color2);
}
@media screen and (max-width: 768px) {
  .box70 {
    padding: 30px 0;
  }
}
.box70 .box70-box {
  background: var(--dominant-color);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .box70 .box70-box {
    padding: 20px;
    gap: 20px;
  }
}
.box71 {
  background: var(--dominant-color2);
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box71 {
    padding: 30px 0;
  }
}
.box71 .box71-box {
  padding: 30px;
  color: var(--dominant-color);
}
.box71 .box71-box .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
  padding: 50px;
  background: var(--dominant-color);
}
.box71 .box71-box .items.grid2 {
  grid-template-columns: repeat(2, 1fr);
}
.box71 .box71-box .items.grid2 .item {
  background: none;
}
.box71 .box71-box .items.grid2 .summary {
  border: 1px dashed var(--dominant-color2);
}
@media screen and (max-width: 768px) {
  .box71 .box71-box .items {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    padding: 20px;
  }
}
.box71 .box71-box .items .item .img {
  overflow: hidden;
  position: relative;
}
.box71 .box71-box .items .item .img img {
  width: 100%;
}
.box71 .box71-box .items .item .title {
  text-align: center;
  font-size: clamp(16px, 0.24rem, 24px);
  font-weight: 600;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
}
.box71 .box71-box .items .item .text {
  text-align: center;
}
.box71 .box71-box .items .item .text .summary {
  margin-top: 20px;
  color: var(--dominant-color2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(14px, 0.18rem, 18px);
}
.box72 {
  padding: 0.6rem 0;
  background: var(--dominant-color2);
}
@media screen and (max-width: 768px) {
  .box72 {
    padding: 30px 0;
  }
}
.box72 .box72-box {
  background: var(--dominant-color);
  padding: 0.5rem;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .box72 .box72-box {
    padding: 20px;
  }
}
.box72 .box72-box .content .img img {
  width: 100%;
}
.box72 .box72-box .content .summary {
  font-size: clamp(14px, 0.18rem, 18px);
  color: var(--dominant-color);
  margin-top: 30px;
  line-height: 1.8;
}
.box72 .box72-box .content .texts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .box72 .box72-box .content .texts {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.box72 .box72-box .content .text {
  text-align: center;
  padding: 30px;
  font-size: clamp(14px, 0.18rem, 18px);
  color: var(--dominant-color);
  line-height: 1.8;
  background: var(--dominant-color2);
}
.box73 {
  padding: 0.6rem 0;
  background: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box73 {
    padding: 30px 0;
  }
}
.box73 .box73-box {
  background: var(--dominant-color);
}
.box73 .box73-box .img img {
  width: 100%;
}
.box73 .box73-box .summary {
  font-size: clamp(14px, 0.18rem, 18px);
  line-height: 1.8;
}
.box73 .box73-box .texts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .box73 .box73-box .texts {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.box73 .box73-box .text {
  text-align: center;
  padding: 20px;
  font-size: clamp(14px, 0.18rem, 18px);
  color: var(--dominant-color);
  line-height: 1.8;
  background: var(--dominant-color2);
}
.box73 .box73-box .content {
  background: var(--dominant-color2);
  padding: 40px;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .box73 .box73-box .content {
    padding: 20px;
  }
}
.box73 .box73-box .content .img {
  flex-basis: 20%;
}
.box73 .box73-box .content .summary {
  flex-basis: 70%;
}
@media screen and (max-width: 768px) {
  .box73 .box73-box .content .flex-between {
    flex-direction: column;
  }
}
.box74 {
  background: linear-gradient(to top, #ffb860, #f8d6a4);
  padding: 20px 0;
}
.box74 .box74-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .box74 .box74-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.box74 .box74-box .item {
  color: var(--dominant-color2);
  padding: 0.2rem;
  gap: 20px;
}
.box74 .box74-box .item .title {
  font-size: clamp(14px, 0.18rem, 18px);
}
.box74 .box74-box .item .summary {
  font-size: clamp(14px, 0.14rem, 14px);
}
.box74 .box74-box .item:hover .more {
  background: var(--dominant-color);
  color: #000;
}
.box75 {
  background: var(--dominant-color);
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box75 {
    padding: 30px 0;
  }
}
.box75 .box75-box {
  background: var(--dominant-color2);
  padding: 30px;
  color: var(--dominant-color);
}
.box75 .box75-box .items {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .box75 .box75-box .items {
    flex-direction: column;
  }
}
.box75 .box75-box .items .item {
  flex-basis: calc((100% - 60px) / 4);
  border: 1px dashed rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 768px) {
  .box75 .box75-box .items .item {
    flex-basis: 100%;
  }
}
.box75 .box75-box .items .item.w33 {
  flex-basis: calc((100% - 40px) / 3);
}
@media screen and (max-width: 768px) {
  .box75 .box75-box .items .item.w33 {
    flex-basis: 100%;
  }
}
.box75 .box75-box .items .item.w50 {
  flex-basis: calc((100% - 20px) / 2);
}
@media screen and (max-width: 768px) {
  .box75 .box75-box .items .item.w50 {
    flex-basis: 100%;
  }
}
.box75 .box75-box .items .item .img {
  overflow: hidden;
  position: relative;
}
.box75 .box75-box .items .item .img img {
  width: 100%;
}
.box75 .box75-box .items .item .title {
  text-align: center;
  font-size: clamp(16px, 0.24rem, 24px);
  font-weight: 600;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 184, 96, 0.65);
  padding: 10px 20px;
  color: var(--dominant-color2);
}
.box75 .box75-box .items .item .text {
  text-align: center;
  color: var(--dominant-color);
}
.box75 .box75-box .items .item .text .summary {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(14px, 0.18rem, 18px);
}
.box76 {
  padding: 0.6rem 0;
  background: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box76 {
    padding: 30px 0;
  }
}
.box76 .box76-box .content {
  padding: 20px 60px;
}
@media screen and (max-width: 768px) {
  .box76 .box76-box .content {
    padding: 20px;
  }
}
.box76 .box76-box .content .img img {
  width: 100%;
}
.box76 .box76-box .content .texts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .box76 .box76-box .content .texts {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.box76 .box76-box .content .text {
  border: 1px dashed rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 30px;
  font-size: clamp(14px, 0.18rem, 18px);
  color: var(--dominant-color);
  line-height: 1.8;
  background: var(--dominant-color2);
}
.box77 {
  background: var(--dominant-color);
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box77 {
    padding: 30px 0;
  }
}
.box77 .box77-box {
  padding: 30px;
  color: var(--dominant-color);
}
.box77 .box77-box .items {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.box77 .box77-box .items .item {
  background: var(--dominant-color2);
  flex-basis: calc((100% - 40px) / 3);
}
@media screen and (max-width: 768px) {
  .box77 .box77-box .items .item {
    flex-basis: 100%;
  }
}
.box77 .box77-box .items .item.w50 {
  flex-basis: calc((100% - 20px) / 2);
}
@media screen and (max-width: 768px) {
  .box77 .box77-box .items .item.w50 {
    flex-basis: 100%;
  }
}
.box77 .box77-box .items .item .img {
  overflow: hidden;
  position: relative;
}
.box77 .box77-box .items .item .img img {
  width: 100%;
}
.box77 .box77-box .items .item .text {
  text-align: center;
}
.box77 .box77-box .items .item .text .summary {
  padding: 20px;
  color: var(--dominant-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(14px, 0.24rem, 24px);
}
.box78 {
  padding: 0.6rem 0;
  background: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box78 {
    padding: 30px 0;
  }
}
.box78 .box78-box {
  background: var(--dominant-color2);
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .box78 .box78-box {
    padding: 20px;
  }
}
.box78 .box78-box .items {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .box78 .box78-box .items {
    margin-top: 20px;
    gap: 20px;
  }
}
.box78 .box78-box .items .item {
  flex-basis: calc((100% - 20px) / 2);
  background: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box78 .box78-box .items .item {
    flex-basis: 100%;
    padding: 20px;
  }
}
.box78 .box78-box .items .item .img img {
  width: 100%;
}
.box78 .box78-box .items .item .value {
  padding: 50px;
  margin-top: 20px;
  font-size: clamp(14px, 0.18rem, 18px);
}
@media screen and (max-width: 768px) {
  .box78 .box78-box .items .item .value {
    padding: 20px;
  }
}
.box79 {
  background: #0c2745;
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box79 {
    padding: 30px 0;
  }
}
.box79 .box79-box {
  background: var(--dominant-color);
  color: #0c2745;
  padding: 0.6rem;
}
@media screen and (max-width: 768px) {
  .box79 .box79-box {
    padding: 20px;
  }
}
.box79 .box79-box .top {
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .box79 .box79-box .top {
    flex-direction: column;
  }
}
.box79 .box79-box .top .left {
  flex-basis: 20%;
  overflow: hidden;
  border-radius: 50%;
}
.box79 .box79-box .top .left img {
  width: 100%;
}
.box79 .box79-box .top .right {
  flex-basis: 75%;
}
.box79 .box79-box .top .right .summary {
  line-height: 1.8;
  font-size: clamp(14px, 0.18rem, 18px);
}
.box79 .box79-box .bottom {
  font-size: clamp(14px, 0.18rem, 18px);
  line-height: 1.5;
  margin-top: 20px;
}
.box80 {
  padding: 0.6rem 0;
  background: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box80 {
    padding: 30px 0;
  }
}
.box80 .box80-box .title {
  text-align: center;
}
.box80 .box80-box .items {
  margin-top: 30px;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .box80 .box80-box .items {
    margin-top: 20px;
    padding: 20px;
  }
}
.box80 .box80-box .items .item {
  background: #0c2745;
  color: var(--dominant-color);
  padding: 40px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .box80 .box80-box .items .item {
    border-width: 5px;
    padding: 20px;
  }
}
.box80 .box80-box .items .item .key {
  font-size: clamp(16px, 0.24rem, 24px);
}
.box80 .box80-box .items .item .value {
  margin-top: 10px;
  font-size: clamp(14px, 0.18rem, 18px);
}
.box81 {
  background: var(--dominant-color);
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box81 {
    padding: 30px 0;
  }
}
.box81 .box81-box {
  background: var(--dominant-color2);
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .box81 .box81-box {
    padding: 20px;
  }
}
.box81 .box81-box .top {
  position: relative;
}
.box81 .box81-box .top .text {
  position: absolute;
  top: 0;
  bottom: 0;
  color: #fff;
  height: fit-content;
  margin: auto;
  font-size: clamp(14px, 0.24rem, 24px);
}
@media screen and (max-width: 768px) {
  .box81 .box81-box .top .text {
    position: initial;
    max-width: 100%;
    padding: 20px;
  }
}
.box81 .box81-box .top .text.left {
  left: 50px;
}
.box81 .box81-box .top .text.right {
  right: 50px;
}
@media screen and (max-width: 768px) {
  .box81 .box81-box .top .text.color2 {
    color: #fff !important;
  }
}
.box81 .box81-box .bottom {
  position: relative;
  background: var(--dominant-color);
  padding: 50px 1rem;
}
@media screen and (max-width: 768px) {
  .box81 .box81-box .bottom {
    padding: 20px;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  .box81 .box81-box .bottom.pd0 {
    padding: 10px !important;
  }
}
.box81 .box81-box .bottom .summary {
  max-width: 1000px;
  margin: 30px auto 0;
  font-size: clamp(14px, 0.18rem, 18px);
}
@media screen and (max-width: 768px) {
  .box81 .box81-box .bottom .summary {
    margin-top: 10px;
  }
}
.box81 .box81-box .bottom .right2 {
  position: absolute;
  right: 50px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
  height: fit-content;
}
@media screen and (max-width: 768px) {
  .box81 .box81-box .bottom .right2 {
    position: initial;
    max-width: 100%;
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .box81 .box81-box .bottom .right2 .color1 {
    color: #000 !important;
  }
}
.box81 .box81-box .bottom .right2.left {
  left: 50px;
  right: auto;
}
.box81 .box81-box .bottom .right {
  flex: 1;
  position: relative;
}
.box82 {
  background: var(--dominant-color);
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box82 {
    padding: 30px 0;
  }
}
.box83 {
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box83 {
    padding: 30px 0;
  }
}
.box83 .box83-box .top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .box83 .box83-box .top {
    grid-template-columns: repeat(1, 1fr);
  }
}
.box83 .box83-box .top .item {
  background: var(--dominant-color);
  padding: 20px;
}
.box83 .box83-box .top .item img {
  width: 100%;
}
.box83 .box83-box .bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .box83 .box83-box .bottom {
    grid-template-columns: repeat(1, 1fr);
  }
}
.box83 .box83-box .bottom .item {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .box83 .box83-box .bottom .item {
    padding-left: 0;
    padding-right: 0;
  }
}
.box83 .box83-box .bottom .item .list {
  background: var(--dominant-color);
}
.box83 .box83-box .bottom .item .list .l-title {
  font-size: clamp(16px, 0.24rem, 24px);
}
.box83 .box83-box .bottom .item .list .l-summary {
  font-size: clamp(14px, 0.2rem, 20px);
}
.box84 {
  padding: 0.6rem 0;
  background: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box84 {
    padding: 30px 0;
  }
}
.box84 .box84-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 20px;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .box84 .box84-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.box84 .box84-box .item {
  background: #ffb962;
  padding: 40px;
  color: var(--dominant-color);
}
.box84 .box84-box .item .list {
  background: var(--dominant-color2);
}
.box84 .box84-box .item .img {
  padding: 20px;
}
.box84 .box84-box .item .img .imgBox {
  padding-bottom: 60%;
}
.box84 .box84-box .item .text {
  text-align: center;
  padding: 10px 30px 50px;
}
.box84 .box84-box .item .text .title {
  font-size: clamp(16px, 0.3rem, 30px);
  font-weight: 600;
  line-height: 1.5;
  border-bottom: 1px dashed var(--dominant-color);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.box84 .box84-box .item .text .summary {
  text-align: center;
  font-size: clamp(16px, 0.2rem, 20px);
}
.box85 {
  background: var(--dominant-color);
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box85 {
    padding: 30px 0;
  }
}
@media screen and (max-width: 768px) {
  .box85 .box85-box {
    padding: 20px 0 ;
  }
}
.box85 .box85-box .items {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(6, 1fr);
}
@media screen and (max-width: 768px) {
  .box85 .box85-box .items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.box85 .box85-box .items .item {
  background: #0c2745;
  color: var(--dominant-color);
  padding: 20px 30px;
  font-size: clamp(16px, 0.24rem, 24px);
  text-align: center;
}
.box86 .box86-box {
  padding-top: 0.5rem;
  background: #fff;
}
.box86 .box86-box .title {
  font-size: clamp(24px, 0.6rem, 0.6rem);
  text-align: center;
}
.box86 .box86-box .img {
  margin-top: 30px;
}
.box86 .box86-box .img img {
  width: 100%;
}
.box86 .box86-box .text {
  background: var(--dominant-color2);
  padding: 40px;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .box86 .box86-box .text {
    padding: 20px;
  }
}
.box87 {
  margin-top: 20px;
}
.box87 .box87-box {
  padding: 20px;
  background: var(--dominant-color2);
}
.box87 .box87-box .title {
  font-size: clamp(24px, 0.48rem, 0.48rem);
  text-align: center;
  color: var(--dominant-color);
}
.box87 .box87-box .items {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .box87 .box87-box .items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.box87 .box87-box .items .text {
  margin-top: 10px;
  color: var(--dominant-color);
}
.box87 .box87-box .items .text .i-title {
  color: var(--dominant-color);
  font-size: clamp(16px, 0.3rem, 30px);
}
.box87 .box87-box .items .text .i-summary {
  color: var(--dominant-color);
  font-size: clamp(14px, 0.18rem, 18px);
}
.box87 .box87-box .map {
  margin-top: 30px;
}
.box87 .box87-box .map .item {
  position: relative;
  margin-bottom: 20px;
}
.box87 .box87-box .map .item img {
  display: block;
}
.box87 .box87-box .map .item .text {
  top: 0;
  height: 100%;
  background: rgba(248, 187, 96, 0.7);
  position: absolute;
  left: 10px;
  width: 0.7rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .box87 .box87-box .map .item .text {
    flex-direction: row;
    width: 100%;
    padding: 10px;
    height: fit-content;
    position: initial;
  }
}
.box88 .box88-box {
  background: #fff;
  padding: 0.7rem;
}
.box88 .box88-box .items {
  gap: 20px;
  display: flex;
  flex-direction: column;
}
.box88 .box88-box .items .item {
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .box88 .box88-box .items .item {
    flex-direction: column;
  }
}
.box88 .box88-box .items .item .left {
  flex-basis: 40%;
}
.box88 .box88-box .items .item .right {
  flex: 1;
  font-size: clamp(14px, 0.2rem, 20px);
}
.box88 .box88-box .lists {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.box88 .box88-box .lists .img {
  position: relative;
}
.box88 .box88-box .lists .img .title {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: clamp(16px, 0.21rem, 21px);
}
.box88 .box88-box .lists .list {
  flex-basis: calc((100% - 40px) / 3);
  background: var(--dominant-color2);
}
@media screen and (max-width: 768px) {
  .box88 .box88-box .lists .list {
    flex-basis: 100%;
  }
}
.box88 .box88-box .lists .list img {
  width: 100%;
}
.box88 .box88-box .lists .list .summary {
  color: var(--dominant-color);
  font-size: clamp(14px, 0.18rem, 18px);
  padding: 20px;
  text-align: center;
}
.box89 {
  background: var(--dominant-color2);
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box89 {
    padding: 30px 0;
  }
}
.box89 .box89-box {
  background: var(--dominant-color);
  padding: 30px;
  color: var(--dominant-color);
}
.box89 .box89-box .items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .box89 .box89-box .items {
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 20px;
  }
}
.box89 .box89-box .items .item {
  background: var(--dominant-color2);
  display: flex;
}
@media screen and (max-width: 768px) {
  .box89 .box89-box .items .item {
    flex-direction: column;
  }
}
.box89 .box89-box .items .item .img {
  flex-basis: 3.6rem;
  overflow: hidden;
  position: relative;
}
.box89 .box89-box .items .item .img img {
  width: 100%;
}
.box89 .box89-box .items .item .img .title {
  text-align: center;
  font-size: clamp(16px, 0.24rem, 24px);
  font-weight: 600;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  left: 0;
  right: 0;
  margin: auto;
  background: rgba(255, 185, 98, 0.5);
  padding: 10px 20px;
  height: fit-content;
  color: #000;
}
.box89 .box89-box .items .item .title {
  font-size: clamp(16px, 0.24rem, 24px);
}
.box89 .box89-box .items .item .text {
  flex: 1;
  padding: 0 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .box89 .box89-box .items .item .text {
    padding: 20px;
  }
}
.box89 .box89-box .items .item .text .summary {
  color: var(--dominant-color);
  font-size: clamp(14px, 0.18rem, 18px);
}
.box90 {
  background: var(--dominant-color1);
  padding: 0.65rem 0;
}
@media screen and (max-width: 768px) {
  .box90 {
    padding: 30px 0;
  }
}
.box90 .box90-box {
  padding: 30px;
  background: var(--dominant-color2);
}
@media screen and (max-width: 768px) {
  .box90 .box90-box {
    padding: 10px;
  }
}
.box90 .box90-box .title {
  font-size: clamp(24px, 0.48rem, 0.48rem);
  text-align: center;
  color: var(--dominant-color);
}
.box90 .box90-box .items {
  margin-top: 30px;
  padding: 50px;
  background: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .box90 .box90-box .items {
    padding: 10px;
    margin-top: 10px;
  }
}
.box90 .box90-box .items .item {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.box90 .box90-box .items .item:first-child .list {
  font-weight: 600;
  text-align: center;
}
.box90 .box90-box .items .item .list {
  font-size: clamp(14px, 0.18rem, 18px);
  flex-basis: calc((100% - 40px) / 3);
}
.box90 .box90-box .items .item .list:first-child {
  font-weight: 600;
}
/*新闻资讯*/
.news-banner {
  position: relative;
  margin-top: 20px;
}
.news {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .news {
    flex-direction: column;
  }
}
.news .left {
  flex: 1;
}
.news .left .news-box {
  display: flex;
  gap: 6px;
  flex-direction: column;
}
.news .left .news-box .item {
  padding: 20px;
  transition: all 0.5s;
  position: relative;
  background: #FFF;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .news .left .news-box .item {
    flex-direction: column;
  }
}
.news .left .news-box .item .img {
  overflow: hidden;
  width: 3.15rem;
  max-width: 315px;
}
@media screen and (max-width: 768px) {
  .news .left .news-box .item .img {
    width: 100%;
    max-width: 100%;
  }
}
.news .left .news-box .item .img .imgBox {
  padding-bottom: 60%;
}
@media screen and (max-width: 768px) {
  .news .left .news-box .item .img .imgBox {
    padding-bottom: 40%;
  }
}
.news .left .news-box .item .text {
  margin-left: clamp(0px, 0.42rem, 40px);
  flex: 1;
  color: #666;
}
@media screen and (max-width: 768px) {
  .news .left .news-box .item .text {
    margin: 0;
  }
}
.news .left .news-box .item .text .title {
  color: #111827;
  transition: all 0.5s;
  font-size: clamp(16px, 0.2rem, 20px);
  font-family: Inter-SemiBold;
}
@media screen and (max-width: 768px) {
  .news .left .news-box .item .text .title {
    margin: 10px 0;
  }
}
.news .left .news-box .item .text .time {
  color: #6B7280;
  transition: all 0.5s;
  margin: 10px 0;
}
.news .left .news-box .item .text .summary {
  margin: 0.1rem 0;
  line-height: 1.6;
  transition: all 0.5s;
  color: #4B5563;
  font-size: clamp(14px, 0.14rem, 14px);
  font-family: Inter-Regular;
}
.news .left .news-box .item .text .bottom {
  width: 100%;
  margin-top: 0.1rem;
}
.news .left .news-box .item .text .bottom .left {
  gap: 6px;
  width: fit-content;
}
.news .left .news-box .item .text .bottom .left span {
  color: red;
}
.news .left .news-box .item .text .bottom .left img {
  width: 20px;
}
.news .left .news-box .item:hover .title {
  color: var(--dominant-color);
}
.news .left .news-box .item:hover .more {
  color: var(--dominant-color);
}
.news .right {
  width: 3.6rem;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .news .right {
    width: 100%;
  }
}
.news .right .items {
  background: #fff;
  padding: 20px;
}
.news .right .items .i-title {
  color: #25a6ff;
  position: relative;
  font-size: clamp(16px, 0.18rem, 18px);
  gap: 10px;
  margin-bottom: 20px;
}
.news .right .items .i-title .line {
  width: 8px;
  height: 20px;
  background: #25a6ff;
}
.news .right .items .list {
  display: flex;
  flex-direction: column;
}
.news .right .items .item {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 768px) {
  .news .right .items .item {
    flex-direction: column;
  }
}
.news .right .items .item .img {
  overflow: hidden;
  width: 1rem;
  max-width: 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news .right .items .item .img {
    width: 100%;
    max-width: 100%;
  }
}
.news .right .items .item .img .imgBox {
  padding-bottom: 75%;
}
@media screen and (max-width: 768px) {
  .news .right .items .item .img .imgBox {
    padding-bottom: 40%;
  }
}
.news .right .items .item .img .num {
  position: absolute;
  top: 0;
  left: 10px;
  width: 20px;
  height: 20px;
  color: #fff;
  background: #a2a2a2;
}
.news .right .items .item:nth-child(1) .img .num {
  background: #f15a24;
}
.news .right .items .item .text {
  margin-left: clamp(0px, 0.2rem, 20px);
  flex: 1;
  color: #666;
}
@media screen and (max-width: 768px) {
  .news .right .items .item .text {
    margin: 0;
    width: 100%;
    margin-top: 10px;
  }
}
.news .right .items .item .text .title {
  color: #111827;
  transition: all 0.5s;
  font-size: clamp(14px, 0.16rem, 16px);
  font-family: Inter-SemiBold;
}
.news .right .items .item .text .time {
  margin-top: 0.1rem;
  font-size: 12px;
}
.news .right .items .item .text .left,
.news .right .items .item .text .right {
  margin-top: 0.1rem;
  gap: 6px;
  width: fit-content;
}
.news .right .items .item:hover .title {
  color: var(--dominant-color);
}
.news .right .items .item:hover .more {
  color: var(--dominant-color);
}
/*新闻详情*/
.news-detail .title {
  font-family: Montserrat-Bold;
  font-size: clamp(18px, 0.26rem, 26rem);
  line-height: 1.3;
  text-align: center;
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 768px) {
  .news-detail .title {
    margin-bottom: 0.3rem;
  }
}
.news-detail .mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #999;
  gap: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .news-detail .mid {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-top: 10px;
  }
}
.news-detail .mid .item {
  display: flex;
  align-items: center;
  color: #999;
}
.news-detail .mid .item span {
  font-family: Montserrat-Bold;
}
.news-detail .details {
  display: flex;
  grid-gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .news-detail .details {
    flex-direction: column;
  }
}
.news-detail .details .left {
  flex: 1;
  max-width: 1015px;
  background: #fff;
  padding: 50px 30px;
}
.news-detail .details .left .details-container {
  margin-top: 0.2rem;
  font-size: clamp(12px, 0.18rem, 18px);
  color: #343434;
  line-height: 1.8;
  min-height: 300px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .news-detail .details .left .details-container {
    font-size: 14px;
    margin-top: 20px;
  }
  .news-detail .details .left .details-container img {
    max-width: 100% !important;
    height: auto !important;
  }
}
.news-detail .details .right {
  width: 3.6rem;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .news-detail .details .right {
    width: 100%;
  }
}
.news-detail .details .right .items {
  background: #fff;
  padding: 20px;
}
.news-detail .details .right .items .i-title {
  color: #25a6ff;
  position: relative;
  font-size: clamp(16px, 0.18rem, 18px);
  gap: 10px;
  margin-bottom: 20px;
}
.news-detail .details .right .items .i-title .line {
  width: 8px;
  height: 20px;
  background: #25a6ff;
}
.news-detail .details .right .items .list {
  display: flex;
  flex-direction: column;
}
.news-detail .details .right .items .item {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 768px) {
  .news-detail .details .right .items .item {
    flex-direction: column;
  }
}
.news-detail .details .right .items .item .img {
  overflow: hidden;
  width: 1rem;
  max-width: 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news-detail .details .right .items .item .img {
    width: 100%;
    max-width: 100%;
  }
}
.news-detail .details .right .items .item .img .imgBox {
  padding-bottom: 75%;
}
@media screen and (max-width: 768px) {
  .news-detail .details .right .items .item .img .imgBox {
    padding-bottom: 40%;
  }
}
.news-detail .details .right .items .item .img .num {
  position: absolute;
  top: 0;
  left: 10px;
  width: 20px;
  height: 20px;
  color: #fff;
  background: #a2a2a2;
}
.news-detail .details .right .items .item:nth-child(1) .img .num {
  background: #f15a24;
}
.news-detail .details .right .items .item .text {
  margin-left: clamp(0px, 0.2rem, 20px);
  flex: 1;
  color: #666;
}
@media screen and (max-width: 768px) {
  .news-detail .details .right .items .item .text {
    margin: 0;
    width: 100%;
    margin-top: 10px;
  }
}
.news-detail .details .right .items .item .text .title {
  margin-bottom: 0;
  color: #111827;
  transition: all 0.5s;
  font-size: clamp(14px, 0.16rem, 16px);
  font-family: Inter-SemiBold;
}
.news-detail .details .right .items .item .text .time {
  margin-top: 0.1rem;
  font-size: 12px;
}
.news-detail .details .right .items .item .text .l-item {
  margin-top: 0.1rem;
  gap: 6px;
  width: fit-content;
}
.news-detail .details .right .items .item:hover .title {
  color: var(--dominant-color);
}
.news-detail .details .right .items .item:hover .more {
  color: var(--dominant-color);
}
.news-detail .detail-pager a {
  font-size: clamp(12px, 0.2rem, 20px);
  transition: all 0.5s;
  font-family: Montserrat-Light;
  color: #333333;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .news-detail .detail-pager a {
    flex-basis: 100%;
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.news-detail .detail-pager a img {
  transition: all 0.5s;
}
.news-detail .detail-pager a:hover {
  color: var(--dominant-color);
}
.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;
  font-family: Montserrat-Light;
  -webkit-appearance: none;
  position: relative;
}
.form input {
  width: 100%;
  height: 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);
  font-family: Montserrat-Light;
  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);
  font-family: Montserrat-Light;
  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);
  font-family: Montserrat-Bold;
  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;
  font-family: Montserrat-Light;
}
.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;
}
.page-title.textC {
  text-align: center;
}
.page-title.colorW {
  color: #fff;
}
.page-title .title {
  line-height: 1.25;
  font-size: clamp(16px, 0.32rem, 32px);
  color: #111827;
  position: relative;
  font-family: Montserrat-Bold;
}
.page-title .title img {
  max-width: 200px;
}
.page-title .summary {
  margin-top: 20px;
  color: #666;
  font-size: clamp(12px, 0.18rem, 18px);
  line-height: 1.6;
  font-family: Montserrat-Light;
}
@media screen and (max-width: 768px) {
  .page-title .summary {
    margin-top: 10px;
  }
}
.page-title .summary a:hover {
  text-decoration: underline;
}
/*内页大图*/
.pageBanner {
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  height: 6.5rem;
  max-height: 650px;
}
@media screen and (max-width: 768px) {
  .pageBanner {
    height: 200px;
  }
}
.pageBanner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #2559B5 0%, rgba(37, 89, 181, 0) 100%);
}
.pageBanner .banner-box {
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 2;
  height: fit-content;
  text-align: left;
}
.pageBanner .banner-box .banner-title {
  color: #fff;
  font-size: clamp(18px, 0.48rem, 48px);
}
.pageBanner .banner-box .banner-summary {
  margin-top: 0.2rem;
  font-size: clamp(14px, 0.2rem, 20px);
  line-height: 1.6;
}
.pageBanner .banner-box .banner-button {
  width: 210px;
  height: 60px;
  background: var(--dominant-color);
  border-radius: 4px;
  margin: 40px auto 0;
  transition: all 0.5s;
  text-transform: uppercase;
}
.pageBanner .banner-box .banner-button:hover {
  opacity: 0.7;
}
.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 {
  position: absolute;
  background: var(--dominant-color);
  bottom: 0;
  width: fit-content;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 10px 10px 0 0;
  z-index: 2;
  padding: 20px 100px;
}
.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;
  overflow: hidden;
  justify-content: flex-start;
}
@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: #6B7280;
  font-size: clamp(14px, 0.16rem, 16px);
  transition: all 0.5s;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .page-menu .menu-box a {
    flex-shrink: 0;
  }
}
.page-menu .menu-box a.active,
.page-menu .menu-box a:hover {
  color: #000;
}
.page-menu .menu-box a::after {
  content: '';
  width: 1px;
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  background: var(--dominant-color2);
  height: 15px;
  transition: all 0.5s;
}
.page-menu .menu-box a:last-child::after {
  display: none;
}
.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;
}
/*面包屑*/
.location {
  display: flex;
  align-items: center;
  color: #fff;
  flex-wrap: wrap;
  position: absolute;
  bottom: 0.8rem;
  justify-content: flex-end;
  gap: 8px;
  z-index: 2;
}
.location i {
  color: #fff;
  font-size: 16px;
}
.location a {
  color: #fff;
  font-size: clamp(12px, 0.14rem, 14px);
}
.location a i {
  color: var(--dominant-color);
  margin-right: 4px;
}
.location a.active {
  color: var(--dominant-color);
}
.location a:hover {
  text-decoration: underline;
}
/*分页*/
.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
}
.pager a {
  width: 32px;
  height: 36px;
  margin: 0 3px;
  color: #374151;
  transition: all 0.5s;
  background: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .pager a {
    width: 30px;
    height: 30px;
    font-size: 12px;
    margin: 0 4px;
  }
}
.pager a:hover,
.pager a.page-num-current {
  background: var(--dominant-color2);
  border-color: var(--dominant-color2);
  color: #fff;
}
.pager a.prev,
.pager a.next {
  width: fit-content;
  padding: 0 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.pager a.prev:hover,
.pager a.next:hover {
  color: #fff;
}
.pager a.disable {
  color: #9CA3AF;
  pointer-events: none;
}
.pager2 {
  margin-top: 140px;
}
@media screen and (max-width: 768px) {
  .pager2 {
    margin-top: 50px;
    flex-direction: column-reverse;
  }
}
.pager2 .left .prev,
.pager2 .left .next {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  color: #000;
  transition: all 0.5s;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.04);
  margin-right: 20px;
  cursor: pointer;
}
.pager2 .left .prev:hover,
.pager2 .left .next:hover {
  background: #000;
  color: #fff;
}
.pager2 .right {
  flex-basis: calc(100% - 220px);
  color: #d5d5d5;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .pager2 .right {
    margin-bottom: 20px;
  }
}
.pager2 .right .line1 {
  height: 1px;
  flex: 1;
  background: #d5d5d5;
}
@media screen and (max-width: 768px) {
  .pager2 .right .line1 {
    display: none;
  }
}
.pager2 .right .number {
  flex-basis: 145px;
}
.pager2 .right .number .num {
  color: #000;
  margin-right: 6px;
}
.pager2 .right .number .max {
  margin-left: 6px;
}
.pager2 .right .line2 {
  height: 1px;
  flex-basis: 270px;
  background: #d5d5d5;
}
@media screen and (max-width: 768px) {
  .pager2 .right .line2 {
    display: none;
  }
}
/*内页左右结构*/
.page-box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page-box {
    flex-direction: column;
  }
}
.page-box .left {
  flex-basis: 340px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .page-box .left {
    flex-basis: 300px;
  }
}
@media screen and (max-width: 768px) {
  .page-box .left {
    width: 100%;
    flex-basis: 100%;
  }
}
.page-box .right {
  flex: 1;
  margin-left: 50px;
}
@media screen and (max-width: 768px) {
  .page-box .right {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .page-box .right .right-content {
    padding: 10px;
  }
}
.pages {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-bottom: 30px;
  border-top: 1px solid #eee;
  padding-top: 50px;
}
.pages .prev,
.pages .next {
  flex-basis: 100%;
  transition: all 0.5s;
  font-size: 20px;
  color: var(--dominant-color);
  margin-bottom: 20px;
  display: inline-block;
}
.pages .prev:hover,
.pages .next:hover {
  text-decoration: underline;
}
/*联系我们*/
.contact .contact1 {
  position: relative;
  max-width: 800px;
}
@media screen and (max-width: 768px) {
  .contact .contact1 {
    flex-direction: column;
  }
}
.contact .contact1 .item {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .contact .contact1 .item {
    position: initial;
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.contact .contact1 .item .icon {
  border-radius: 50%;
  font-size: 42px;
  color: var(--dominant-color);
}
@media screen and (max-width: 1600px) {
  .contact .contact1 .item .icon {
    font-size: 36px;
  }
}
@media screen and (max-width: 1440px) {
  .contact .contact1 .item .icon {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .contact .contact1 .item .icon {
    font-size: 20px;
  }
}
.contact .contact1 .item .text {
  text-align: center;
}
.contact .contact1 .item .text .key {
  font-size: 26px;
  color: #000;
  margin-bottom: 4px;
  margin-top: 10px;
  font-family: Montserrat-Bold;
}
@media screen and (max-width: 1600px) {
  .contact .contact1 .item .text .key {
    font-size: 24px;
  }
}
@media screen and (max-width: 1440px) {
  .contact .contact1 .item .text .key {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .contact .contact1 .item .text .key {
    font-size: 18px;
  }
}
.contact .contact1 .item .text .value {
  font-size: 16px;
  color: #666;
  font-family: Montserrat-Light;
}
@media screen and (max-width: 768px) {
  .contact .contact1 .item .text .value {
    font-size: 14px;
  }
}
.contact .contact2 .contact2-box {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .contact .contact2 .contact2-box {
    margin-top: 10px;
  }
}
.contact .contact2 .contact2-box .form {
  grid-gap: 20px;
}
.contact .contact2 .contact2-box .form label {
  position: relative;
  flex-basis: calc((100% - 40px) / 3);
}
@media screen and (max-width: 768px) {
  .contact .contact2 .contact2-box .form label {
    flex-basis: 100% !important;
  }
}
.contact .contact2 .contact2-box .form label span {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 150px;
  color: #000;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .contact .contact2 .contact2-box .form label span {
    font-size: 14px;
  }
}
.contact .contact2 .contact2-box .form label.w66 {
  flex-basis: calc(((100% - 40px) / 3 * 2) + 20px);
}
.contact .contact2 .contact2-box .form label.w100 {
  flex-basis: 100%;
}
.contact .contact2 .contact2-box .form label input,
.contact .contact2 .contact2-box .form label select {
  background: none;
  border: 1px solid #eee;
  text-indent: 0;
  font-size: 16px;
  border-radius: 0;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .contact .contact2 .contact2-box .form label input,
  .contact .contact2 .contact2-box .form label select {
    font-size: 12px;
    padding-left: 10px;
  }
}
.contact .contact2 .contact2-box .form label textarea {
  background: none;
  border: 1px solid #eee;
  padding: 20px;
  font-size: 16px;
  height: 220px;
  border-radius: 0;
  font-family: '微软雅黑';
}
@media screen and (max-width: 768px) {
  .contact .contact2 .contact2-box .form label textarea {
    height: 100px;
    padding: 10px;
  }
}
.contact .contact2 .contact2-box .form label img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.contact .contact2 .contact2-box .form label .check-box {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
.contact .contact2 .contact2-box .form .tip {
  color: #666;
  width: 100%;
  align-items: baseline;
}
.contact .contact2 .contact2-box .form .tip label {
  width: 24px;
  flex-basis: auto !important;
}
.contact .contact2 .contact2-box .form .tip input {
  width: 16px;
  height: 16px;
  padding: 0;
}
.contact .contact2 .contact2-box .form .tip span {
  flex: 1;
}
.contact .contact2 .contact2-box .form button {
  width: 210px;
  height: 58px;
  border-radius: 3px;
  margin: 45px auto 0;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .contact .contact2 .contact2-box .form button {
    margin-top: 10px;
  }
}
.contact .contact2 .contact2-box .form button:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .contact .contact3 {
    padding-top: 0;
  }
}
.contact .contact3 .contact3-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
@media screen and (max-width: 768px) {
  .contact .contact3 .contact3-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact .contact3 .contact3-box img {
  transition: all 0.5s;
}
.contact .contact3 .contact3-box .item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.contact .contact3 .contact3-box .item .text {
  position: absolute;
  top: 15%;
  left: 50px;
  right: 50px;
  text-align: center;
}
.contact .contact3 .contact3-box .item .text .title {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
}
@media screen and (max-width: 1600px) {
  .contact .contact3 .contact3-box .item .text .title {
    font-size: 24px;
  }
}
@media screen and (max-width: 1440px) {
  .contact .contact3 .contact3-box .item .text .title {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .contact .contact3 .contact3-box .item .text .title {
    font-size: 16px;
  }
}
.contact .contact3 .contact3-box .item .text .summary {
  margin-top: 20px;
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .contact .contact3 .contact3-box .item .text .summary {
    font-size: 14px;
  }
}
.contact .contact3 .contact3-box .item .text .more {
  color: #fff;
  margin-top: 30px;
  transition: all 0.5s;
}
.contact .contact3 .contact3-box .item:hover .more {
  color: var(--dominant-color);
}
.contact .contact-map {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact .contact-map .item {
  overflow: hidden;
  border-radius: 16.713px;
  background: #FFF;
  box-shadow: 0 2.089px 19.533px -5.223px rgba(0, 0, 0, 0.1), 0px 2.089px 10.446px -6.267px rgba(0, 0, 0, 0.1);
}
.contact .contact-map .item .m-title {
  display: flex;
  height: 0.8rem;
  align-items: center;
  flex-shrink: 0;
  color: #fff;
  padding: 0 0.3rem;
  font-size: clamp(16px, 0.22rem, 22px);
  background: linear-gradient(90deg, #5190FF 0%, #75A6FF 100%);
}
@media screen and (max-width: 768px) {
  .contact .contact-map .item .m-title {
    padding: 20px;
  }
}
.contact .contact-map .item .text {
  padding: 0.3rem 0.3rem 0.5rem 0.3rem;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .contact .contact-map .item .text {
    padding: 20px;
    flex-direction: column;
  }
}
.contact .contact-map .item .text .title {
  font-size: clamp(14px, 16rem, 16px);
  margin-bottom: 0.2rem;
}
.contact .contact-map .item .text .left {
  flex-basis: 50%;
}
.contact .contact-map .item .text .left .map-img {
  overflow: hidden;
  border-radius: 8px;
}
.contact .contact-map .item .text .right {
  flex-basis: 50%;
}
.contact .contact-map .item .text .right .map-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.contact .contact-map .item .text .right .map-text .m-item {
  display: flex;
  gap: 18px;
}
.contact .contact-map .item .text .right .map-text .m-item .m-icon {
  border-radius: 8.357px;
  background: rgba(37, 89, 181, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact .contact-map .item .text .right .map-text .m-item .m-text {
  flex: 1;
}
.contact .contact-map .item .text .right .map-text .m-item .m-text .key {
  font-size: clamp(14px, 0, 16rem, 16px);
}
.contact .contact-map .item .text .right .map-text .m-item .m-text .value {
  margin-top: 5px;
  font-family: Montserrat-Light;
  color: #4B5563;
  font-size: clamp(14px, 0, 14rem, 14px);
}
.contact .contact-map .item .text .right .map-text .m-item .m-text .value a {
  transition: all 0.5s;
}
.contact .contact-map .item .text .right .map-text .m-item .m-text .value a:hover {
  color: var(--dominant-color);
}
/*网格布局*/
.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);
}
.gap-10 {
  grid-gap: 10px;
}
.gap-20 {
  grid-gap: 20px;
}
.gap-30 {
  grid-gap: 30px;
}
.gap-40 {
  grid-gap: 40px;
}
@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;
  }
}
.center {
  text-align: center;
}
.mt0 {
  margin-top: 0 !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.mt40 {
  margin-top: 40px !important;
}
.mt50 {
  margin-top: 50px !important;
}
.pd0 {
  padding: 0 !important;
}
.pd10 {
  padding: 10px !important;
}
.pd20 {
  padding: 20px !important;
}
.pd30 {
  padding: 30px !important;
}
.pd40 {
  padding: 40px !important;
}
.pd50 {
  padding: 50px !important;
}
@media screen and (max-width: 768px) {
  .mt20 {
    margin-top: 10px !important;
  }
  .mt30 {
    margin-top: 10px !important;
  }
  .mt40 {
    margin-top: 10px !important;
  }
  .mt50 {
    margin-top: 10px !important;
  }
  .pd30 {
    padding: 20px !important;
  }
  .pd40 {
    padding: 20px !important;
  }
  .pd50 {
    padding: 20px !important;
  }
}
/*# sourceMappingURL=style.css.map */