/* 导入字体 */
@font-face {
    font-family: 'NataSans';
    src: url('font/NataSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'NataSans-Bold';
    src: url('font/NataSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Hikara';
    src: url('font/Hikara.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'NataSans-Medium';
    src: url('font/NataSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'NataSans-SemiBold';
    src: url('font/NataSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'NataSans-Regular';
    src: url('font/NataSans-Medium.ttf') format('truetype');
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* body {
    font-family: 'NataSans', sans-serif;
    background-color: #0a2342;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
} */

/* Banner1 样式 */
.banner {
    position: relative;
    width: 100%;
    height: 56.25vw;
}
.banner1 {
    position: relative;
    width: 100%;
    height: 56.25vw;
    background: url('./images/banner1-bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.banner1 .pros {
    position: absolute;
    width: 67.8125vw;
    top: 20.46875vw;
    left: 15.625vw;
    z-index: 2;
    animation: pros_animation 2s ease-out;
}

.banner1 .text1 {
    position: absolute;
    width: 8.8vw;
    top: 3.125vw;
    left: 45.57vw;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out;
}

.banner1 .text2 {
    position: absolute;
    width: 55.937vw;
    top: 6.302vw;
    left: 20.416vw;
    z-index: 2;
    animation: fadeInUp 1.4s ease-out;
}

.banner1 .text3 {
    position: absolute;
    width: 16.666vw;
    top: 12.812vw;
    right: 20vw;
    z-index: 2;
    animation: fadeInUp 1.6s ease-out;
}

.banner1 .text4 {
    position: absolute;
    width: 61.614vw;
    bottom: 2.708vw;
    left: 19.166vw;
    z-index: 2;
    animation: fadeInUp 1.8s ease-out;
}

.banner2 {
    background: url('./images/banner2-bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.banner2 .content{
    width: 100%;
    padding-top: 3.28125vw;
}

/* 飞机动画 */
.airplane-container {
    position: absolute;
    top: 3.2vw;
    left: 0;
    width: 100%;
    height: 52.9vw;
    pointer-events: none;
    z-index: 5;
}

.airplane {
    position: absolute;
    width: 4.322vw;
    transform: translate(45.1vw, 6.6vw) rotate(0deg);
    opacity: 0;
}

.airplane_animation {
    animation: flyPath 5s linear;
    opacity: 1;
}

@keyframes flyPath {
    0% {
        transform: translate(-2vw, 14vw) rotate(-10deg);
        opacity: 0.5;
    }
    5% {
        transform: translate(0, 16vw) rotate(-34deg);
        opacity: 0.8;
    }
    10% {
        transform: translate(5vw, 17vw) rotate(-64deg);
        opacity: 0.8;
    }
    15% {
        transform: translate(9vw, 16vw) rotate(-81deg);
        opacity: 0.8;
    }
    20% {
        transform: translate(13vw, 12.5vw) rotate(-110deg);
        opacity: 0.8;
    }
    25% {
        transform: translate(15.5vw, 7vw) rotate(-137deg);
        opacity: 0.8;
    }
    30% {
        transform: translate(16vw, 3vw) rotate(-169deg);
        opacity: 0.8;
    }
    35% {
        transform: translate(13vw, 0vw) rotate(-255deg);
        opacity: 0.8;
    }
    45% {
        transform: translate(10vw, 4vw) rotate(-358deg);
        opacity: 0.8;
    }
    55% {
        transform: translate(18vw, 11vw) rotate(-404deg);
        opacity: 0.8;
    }
    65% {
        transform: translate(24vw, 10vw) rotate(-481deg);
        opacity: 0.8;
    }
    70% {
        transform: translate(27vw, 2vw) rotate(-481deg);
        opacity: 0.8;
    }
    80% {
        transform: translate(32vw, -2vw) rotate(-429deg);
        opacity: 0.8;
    }
    90% {
        transform: translate(40vw, 0vw) rotate(-369deg);
        opacity: 0.8;
    }
    100% {
        transform: translate(45.1vw, 6.6vw) rotate(-360deg);
        opacity: 1;
    }
}

.hover_to_big{
    transition: transform 0.3s ease-in;
    cursor: pointer;
}
.hover_to_big:hover {
    transform: scale(1.05);
}

/* 360度视图样式 */
.hqd-go-360 {
    width: 100%;
    height: 56.25vw;
    position: relative;
    background-image: url('loading.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.hqd-go-360-title1 {
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 5.2vw;
    font-family: 'Hikara';
    text-align: center;
    white-space: nowrap;
    line-height: 5.21vw;
    margin-top: 4.11vw;
}

.hqd-go-360-title2 {
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 1.77vw;
    font-family: 'NataSans-Medium';
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    line-height: 1;
    margin-top: 1.56vw;
}

.hqd-go-360-pro {
    position: relative;
    width: 21.875vw;
    margin-top: 3.54vw;
    border-radius: 8px;
    position: relative;
}

.hqd-go-360-pro img {
    position: absolute;
    top: 2.8vw;
    left: 22vw;
    z-index: 10;
    width: 6.2vw;
    height: 5.89vw;
}

.text_diy{
    overflow-wrap: break-word;
    color: #fff;
    font-size: 1.77vw;
    font-family: 'NataSans-Medium';
    font-weight: 500;
    line-height: 1.2;
}


.hqd-go-360-pro .text_diy {
    position: absolute;
    left: 22vw;
    top: 10vw;
    width: 20vw;
}
/* .cloudimage-360 {
    width: 42.08vw;
    height: 69.06vw;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto;
} */

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes pros_animation{
  0%{
    transform:scale(0.8);
    opacity: 0.9;
  }
  100%{
    transform: scale(1.0);
    opacity: 1;
  }
}
@keyframes to_near {
    0% {
        transform: scale(0.3) translateX(20vw) translateY(-12vw);
    }
    100% {
        transform: scale(1) translateX(0) translateY(0);
    }
}



.banner2 .text1 {
    position: absolute;
    overflow-wrap: break-word;
    color: #fff;
    font-size: 5.2vw;
    font-family: 'Hikara';
    text-align: center;
    white-space: nowrap;
    line-height: 1;
    top: 16.56vw;
    left: 18.38vw;
    z-index: 9;
}

.banner2 .text2{
    width: 62.14vw;
    overflow-wrap: break-word;
    color: #fff;
    font-size: 1.77vw;
    font-family: 'NataSans-Medium';
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    position: absolute;
    top: 31.77vw;
    left: 18.95vw;
    z-index: 9;
    opacity: 0;
}

.banner2 .text2.fadeInUpAnimation{
    opacity: 1;
}

.fadeInUpAnimation{
    animation: fadeInUp 1.5s ease-out;
}

.flex-col {
  display: flex;
  flex-direction: column;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.justify-start {
  display: flex;
  justify-content: flex-start;
}
.justify-center {
  display: flex;
  justify-content: center;
}

.justify-end {
  display: flex;
  justify-content: flex-end;
}
.justify-evenly {
  display: flex;
  justify-content: space-evenly;
}
.justify-around {
  display: flex;
  justify-content: space-around;
}
.justify-between {
  display: flex;
  justify-content: space-between;
}
.align-start {
  display: flex;
  align-items: flex-start;
}
.align-center {
  display: flex;
  align-items: center;
}
.align-end {
  display: flex;
  align-items: flex-end;
}


/* banner3 */
.banner3{
    background: url('./images/banner3-bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    gap:1.66vw;
}

.banner3 .section_1 {
    width: 55vw;
    height: 43.08vw;
    margin: 6.61vw 0 0 8.33vw;
}

.banner3 .section_2 {
  width: 55vw;
  height: 22.66vw;
}

.banner3 .text-wrapper_1 {
    background: url('./images/card1.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    height: 22.66vw;
    width: 18.13vw;
}

.banner3 .text_1 {
  width: 15.37vw;
  height: 1.98vw;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 2.08vw;
  font-family: 'NataSans-SemiBold';
  text-align: left;
  white-space: nowrap;
  line-height: 2.09vw;
  margin: 2.96vw 0 0 1.35vw;
}

.banner3 .block_1 {
    background: url('./images/card2.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    width: 35.21vw;
    height: 23.5vw;
}


.banner3 .paragraph_1 {
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 2.08vw;
    font-family: 'NataSans-SemiBold';
    text-align: left;
    line-height: 2.09vw;
    margin: 1.71vw 0 0 2vw;
}

.banner3 .section_3 {
  width: 55vw;
  height: 18.91vw;
  margin-top: 1.52vw;
}

.banner3 .text-wrapper_2 {
    background: url('./images/card4.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    height: 18.91vw;
    width: 26.67vw;
}

.banner3 .paragraph_2 {
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 2.08vw;
  font-family: 'NataSans-SemiBold';
  text-align: left;
  white-space: nowrap;
  line-height: 2.09vw;
  margin: 13.22vw 0 0 14.42vw;
}

.banner3 .text-wrapper_3 {
    background: url('./images/card5.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    height: 18.91vw;
    width: 26.67vw;
}

.banner3 .paragraph_3 {
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 2.08vw;
  font-family: 'NataSans-SemiBold';
  text-align: left;
  line-height: 2.09vw;
  margin: 1.61vw 0 0 14.53vw;
}

.banner3 .text-wrapper_4 {
    background: url('./images/card3.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    height: 43.08vw;
    width: 26.67vw;
    margin: 6.61vw 8.33vw 0 0;
}

.banner3 .paragraph_4 {
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 2.08vw;
  font-family: 'NataSans-SemiBold';
  text-align: left;
  white-space: nowrap;
  line-height: 2.09vw;
  margin: 2.18vw 0 0 2.13vw;
}


.banner4 {
    background: url('./images/banner4-bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.banner4 .content{
    width: 33.86vw;
    height: 50vw;
    position: absolute;
    top: 3.9vw;
    right: 22.03vw;
    opacity: 0;
}


.banner4 .text1 {
    position: absolute;
    overflow-wrap: break-word;
    color: #fff;
    font-size: 5.2vw;
    font-family: 'Hikara';
    text-align: center;
    white-space: nowrap;
    line-height: 1;
    top: 35vw;
    left: 11.09vw;
    z-index: 9;
    opacity: 0;
}

.banner4 .text2{
    overflow-wrap: break-word;
    color: #fff;
    font-size: 1.77vw;
    font-family: 'NataSans-Medium';
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    position: absolute;
    z-index: 9;
    top: 41vw;
    left: 16.66vw;
    opacity: 0;
}

.to_near{
    animation: to_near 3s ease-out;
}


.fadeInUp_to_near{
    animation: fadeInUp 1.5s ease-out;
}

.banner4 .content.to_near{
    opacity: 1;
}


.banner4 .fadeInUp_to_near{
    opacity: 1;
}

@keyframes fadeInUp_to_near {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    75% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* .banner5 */
.banner5 {
    background: url('./images/banner5-bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.banner5 .content{
    width: 59.0625vw;
    height: 26.25vw;
    position: absolute;
    top: 23vw;
    left: 33.5vw;
    opacity: 0;
    transform: translateX(5vw);
    transition: transform 0.5s ease-in-out;     
    animation-delay: 0.3s;
}


.banner5 .text1 {
    position: absolute;
    overflow-wrap: break-word;
    color: #fff;
    font-size: 5.2vw;
    font-family: 'Hikara';    
    text-align: center;
    line-height: 1.1;
    top: 7.65vw;
    left: 50.72vw;
    z-index: 9;
    opacity: 0;
}

.banner5 .text2{
    overflow-wrap: break-word;
    color: #fff;
    font-size: 1.77vw;
    font-family: 'NataSans-Medium';
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    position: absolute;
    z-index: 9;
    top: 20vw;
    left: 57.6vw;
    opacity: 0;
}


.banner5 .content.to_left{
    opacity: 1;
    transform: translateX(0);
}

.banner5 .fadeInUpAnimation{
    opacity: 1;
}



/* .banner6 */
.banner6 {
    background: url('./images/banner6-bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner6 .text1{
    overflow-wrap: break-word;
    color: #fff;
    font-size: 4.68vw;
    font-family: 'Hikara';
    text-align: center;
    line-height: 1.1;
    padding-top: 4.79vw;
    width: 100%;
    opacity: 1;
}
.banner6 .models_card{
    margin-top: 2.92vw;
    opacity: 1;
    width: 81.46vw;
    height: 32.86vw;
    display: flex;
    justify-content: space-between;
}
.soft-mode,.regular-mode,.boost-mode{
    width: 26.31vw;
    height: 32.87vw;
    display: flex;
    flex-direction: column;
    z-index: 1;
    transition: transform 0.8s ease-in-out;
}
.soft-mode{
    background: url('./images/soft-mode.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    transform: translateX(27.6vw);
}
.regular-mode{
    background: url('./images/regular-mode.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 2;
}
.boost-mode{
    background: url('./images/boost-mode.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    transform: translateX(-27.6vw);
}
.text11{
    overflow-wrap: break-word;
    color: #fff;
    font-size: 2.6vw;
    font-family: 'NataSans-Bold';
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    line-height: 2.61vw;
    margin-top: 23vw;
}
.text12{
    font-family: 'NataSans-Medium';    
    overflow-wrap: break-word;
    color: #fff;
    font-size: 1.77vw;
    font-weight: 500;
    text-align: center;
    line-height: 1;
    margin-top: 1.71875vw;
}


.soft-mode.translateX_hy,.boost-mode.translateX_hy{
    transform: translateX(0);
}


/* .banner7 */
.banner7 {
    background: url('./images/banner7-bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.banner7 .text1{
    overflow-wrap: break-word;
    color: #fff;
    font-size: 5.2vw;
    font-family: 'Hikara';
    text-align: center;
    line-height: 1;
    width: 100%;
    bottom: 9vw;
    position: absolute;
}

.banner7 .text2{
    overflow-wrap: break-word;
    color: #fff;
    text-align: center;
    width: 100%;
    bottom: 5.2vw;
    position: absolute;
    font-size: 1.77vw;
    font-family: 'NataSans-Medium';
    font-weight: 500;
    line-height: 1.2;
    bottom: 5.625vw;
}


/* .banner8 */
.banner8 {
    background: url('./images/banner8-bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.banner8 .text1{
    top: 12.96vw;
    left: 50vw;
    overflow-wrap: break-word;
    color: #fff;
    font-size: 5.2vw;
    font-family: 'Hikara';
    white-space: nowrap;
    line-height: 1;
    position: absolute;
}

.banner8 .text2{
    overflow-wrap: break-word;
    color: #fff;
    font-size: 1.77vw;
    font-family: 'NataSans-Medium';
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    position: absolute;
    top: 19.93vw;
    left: 57.44vw;
}


/* .banner9 */
.banner9 {
    background: url('./images/banner9-bg.png?v1');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.banner9 .pro {
    position: absolute;
    left: 42.3vw;
    top: 7.77vw;
    width: 45.99vw;
    height: 43.29vw;
}

.banner9 .text1{
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 5.2vw;
    text-align: center;
    font-family: 'Hikara';
    position: absolute;
    top: 32.29vw;
    left: 8.8vw;
    line-height: 1.1;
}

.banner9 .text2{
    overflow-wrap: break-word;
    color: #fff;
    font-size: 1.77vw;
    font-family: 'NataSans-Medium';
    font-weight: 500;
    text-align: center;
    top: 45.72vw;
    left: 11.04vw;
    line-height: 1.2;
    position: absolute;
}

/* .banner11 */
.banner11 {
    background: url('./images/banner11-bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.banner11 .text-wrapper_1 {
  width: 26.57vw;
  height: 4.85vw;
  margin: 6.77vw 0 0 7.29vw;
}

.banner11 .text_1 {
  width: 26.57vw;
  height: 4.85vw;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 5.2vw;
  font-family: Hikara;
  font-weight: NaN;
  text-align: center;
  white-space: nowrap;
  line-height: 5.21vw;
}

.banner11 .group_1 {
  width: 87.66vw;
  height: 37.35vw;
  margin: 3.33vw 0 3.9vw 6.51vw;
}

.banner11 .grid_1 {
  width: 48.29vw;
  height: 33.81vw;
  flex-wrap: wrap;
}

.banner11 .text-wrapper_2-0 {
  width: 23.49vw;
  height: 10.32vw;
  background-size: 100% 100%;
  margin: 0 1.3vw 1.45vw 0;
    background: url('./images/banner11-item-bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.banner11 .text_2-0 {
  width: 10.32vw;
  height: 0.94vw;
  overflow-wrap: break-word;
  color: rgba(0, 116, 196, 1);
  font-size: 1.25vw;
  font-family: NataSans-Regular;
  font-weight: NaN;
  text-align: left;
  white-space: nowrap;
  line-height: 1.25vw;
  margin: 2.03vw 0 0 1.92vw;
}

.banner11 .text_3-0 {
  width: 14.43vw;
  height: 1.46vw;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 2.08vw;
  font-family: NataSans-Bold;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
  line-height: 2.09vw;
  margin: 3.85vw 0 2.03vw 1.92vw;
}

.banner11 .text-wrapper_2-1 {
  width: 23.49vw;
  height: 10.32vw;
  background-size: 100% 100%;
  margin: 0 1.3vw 1.45vw 0;
  margin-right: 0;
    background: url('./images/banner11-item-bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.banner11 .text_2-1 {
  width: 10.32vw;
  height: 0.94vw;
  overflow-wrap: break-word;
  color: rgba(0, 116, 196, 1);
  font-size: 1.25vw;
  font-family: NataSans-Regular;
  font-weight: NaN;
  text-align: left;
  white-space: nowrap;
  line-height: 1.25vw;
  margin: 2.03vw 0 0 1.92vw;
}

.banner11 .text_3-1 {
  width: 14.43vw;
  height: 1.46vw;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 2.08vw;
  font-family: NataSans-Bold;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
  line-height: 2.09vw;
  margin: 3.85vw 0 2.03vw 1.92vw;
}

.banner11 .text-wrapper_2-2 {
  width: 23.49vw;
  height: 10.32vw;
  background-size: 100% 100%;
  margin: 0 1.3vw 1.45vw 0;
    background: url('./images/banner11-item-bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.banner11 .text_2-2 {
  width: 10.32vw;
  height: 0.94vw;
  overflow-wrap: break-word;
  color: rgba(0, 116, 196, 1);
  font-size: 1.25vw;
  font-family: NataSans-Regular;
  font-weight: NaN;
  text-align: left;
  white-space: nowrap;
  line-height: 1.25vw;
  margin: 2.03vw 0 0 1.92vw;
}

.banner11 .paragraph_1-2 {
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 2.08vw;
  font-family: NataSans-Bold;
  font-weight: 700;
  text-align: left;
  line-height: 2.09vw;
  margin: 1.14vw 0 2.03vw 1.87vw;
}

.banner11 .text-wrapper_2-3 {
  width: 23.49vw;
  height: 10.32vw;
  background-size: 100% 100%;
  margin: 0 1.3vw 1.45vw 0;
  margin-right: 0;
    background: url('./images/banner11-item-bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.banner11 .text_2-3 {
  width: 10.32vw;
  height: 0.94vw;
  overflow-wrap: break-word;
  color: rgba(0, 116, 196, 1);
  font-size: 1.25vw;
  font-family: NataSans-Regular;
  font-weight: NaN;
  text-align: left;
  white-space: nowrap;
  line-height: 1.25vw;
  margin: 2.03vw 0 0 1.92vw;
}

.banner11 .text_3-3 {
  width: 14.43vw;
  height: 1.46vw;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 2.08vw;
  font-family: NataSans-Bold;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
  line-height: 2.09vw;
  margin: 3.85vw 0 2.03vw 1.92vw;
}

.banner11 .text-wrapper_2-4 {
  width: 23.49vw;
  height: 10.32vw;
  background-size: 100% 100%;
  margin: 0 1.3vw 1.45vw 0;
  margin-bottom: 0;
    background: url('./images/banner11-item-bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.banner11 .text_2-4 {
  width: 10.32vw;
  height: 0.94vw;
  overflow-wrap: break-word;
  color: rgba(0, 116, 196, 1);
  font-size: 1.25vw;
  font-family: NataSans-Regular;
  font-weight: NaN;
  text-align: left;
  white-space: nowrap;
  line-height: 1.25vw;
  margin: 2.03vw 0 0 1.92vw;
}

.banner11 .text_3-4 {
  width: 14.43vw;
  height: 1.46vw;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 2.08vw;
  font-family: NataSans-Bold;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
  line-height: 2.09vw;
  margin: 3.85vw 0 2.03vw 1.92vw;
}

.banner11 .text-wrapper_2-5 {
  width: 23.49vw;
  height: 10.32vw;
  background-size: 100% 100%;
  margin: 0 1.3vw 1.45vw 0;
  margin-right: 0;
  margin-bottom: 0;
    background: url('./images/banner11-item-bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.banner11 .text_2-5 {
  width: 10.32vw;
  height: 0.94vw;
  overflow-wrap: break-word;
  color: rgba(0, 116, 196, 1);
  font-size: 1.25vw;
  font-family: NataSans-Regular;
  font-weight: NaN;
  text-align: left;
  white-space: nowrap;
  line-height: 1.25vw;
  margin: 2.03vw 0 0 1.92vw;
}

.banner11 .text_3-5 {
  width: 14.43vw;
  height: 1.46vw;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 2.08vw;
  font-family: NataSans-Bold;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
  line-height: 2.09vw;
  margin: 3.85vw 0 2.03vw 1.92vw;
}

.banner11 .image-wrapper_1 {
  height: 34.64vw;
  background: url('./images/banner11-b.png')
    100% no-repeat;
  background-size: 100% 100%;
  margin-top: 2.71vw;
  width: 24.69vw;
}

.banner11 .image_1 {
  width: 22.61vw;
  height: 32.56vw;
  margin: -12.13vw 0 0 -10.67vw;
}


/* .banner12 */
.banner12 {
    background: url('./images/banner12-bg.png?v1');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.banner12 .text1{
    top: 5.625vw;
    width: 100%;
    overflow-wrap: break-word;
    color: #fff;
    font-size: 5.2vw;
    font-family: 'Hikara';
    white-space: nowrap;
    line-height: 1;
    position: absolute;
    text-align: center;
}


.banner10{
    background: url('./images/banner10/bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner10 .text1{
    margin-top: 5.98vw;
    width: 100%;
    overflow-wrap: break-word;
    color: #fff;
    font-size: 5.2vw;
    font-family: 'Hikara';
    white-space: nowrap;
    line-height: 1;
    text-align: center;
}

.banner10 .swiper{
    margin-top: 3.12vw;
    width: 83.59vw;
    height: 31.77vw;
}

.banner10 .swiper-slide {
    width: 100%;
    display: flex;
    justify-content: left;
    gap: 1.5vw;
}

.banner10 .swiper-slide .card{
    width: 26.77vw;
    height: 26.56vw;
    position: relative;
}

.swiper-slide .pro,.swiper-slide .bgh,.swiper-slide .bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.swiper-slide .pro{
    z-index: 3;
    width: 9.11vw;
    top: 1.5vw;
    left: 50%;
    transform: translateX(-50%);
}
.swiper-slide .bgh{
    z-index: 2;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}
.swiper-slide .bg{
    z-index: 1;
}
.banner10 .swiper-slide .card:hover .bgh{
    opacity: 1;
}
.banner10 .swiper-slide .card .text{
    position: absolute;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-family: NataSans-Bold;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    line-height: 1;
    font-size: 2.08vw;
    bottom: 2vw;
    width: 100%;
    z-index: 5;
}


.swiper-pagination-bullet{
	background-color: #fff !important;
	width: 27px !important;
    height: 27px !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active{
	background-color: #FFE024 !important;
}
