* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

:root {
    --black: #36393E;
    --shadow-color: rgba(112, 112, 112, .25);
    --font-medium: 500;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin-inline: auto;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.bold {
    font-weight: bold;
}

.small-height {
    line-height: .5;
}

.banners {
    display: flex;
    max-width: 1200px;
    padding-block: 60px;
    padding-inline: 30px;
    gap: 30px;
    margin-inline: auto;
}

.banners img {
    width: 50%;
    height: auto;
}

.-margin {
    margin-top: -48px;
}

.demos {
    padding-inline: 0 !important;
}

.demos img {
    width: 426px !important;
    height: auto !important;
    left: -50px !important;
    bottom: unset !important;
    top: 50% !important;
    transform: translateY(-50%);
}

.demos > .info > .title {
    font-size: 32px !important;
}

.demos > .info > .tips > span {
    padding-inline: 28px !important;
}

.carousel-pre,
.carousel-next {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #858585;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.carousel-next > svg,
.carousel-pre > svg {
    width: 24px;
    height: 24px;
    color: white;
}

.carousel-pre {
    left: -50px;
}

.carousel-next {
    right: -50px;
}

.carousel-indicator {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    height: 15px;
    gap: 16px;
}

.carousel-indicator > i {
    width: 15px;
    height: 15px;
    display: block;
    border-radius: 50%;
    cursor: pointer;
    background-color: #D9D9D9;
}

.carousel-indicator > i.active {
    background-color: #BBBBBB;
}

/*---------------------------------------------------*/
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 40px;
}

.header .logo {
    height: 38px;
    width: auto;
}

.header .nav {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: normal;
    gap: 30px;
    height: 80px;
}

.header .nav a {
    color: var(--black);
    transition: .2s ease all;
}

.header .nav a:hover,
.header .nav a.active {
    text-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}

/*---------------------------------------------------*/
.section-1 {
    width: 100%;
    padding-top: calc(636 / 1439 * 100%);
    background-image: url("../images/hero.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center top;
    position: relative;
}

.section-1 .join-box {
    position: absolute;
    left: 3vw;
    bottom: 12%;
    width: 100%;
    max-width: 40vw;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: scale-animated 1500ms ease-in-out infinite alternate;
}

@keyframes scale-animated {
    0% {
        transform: scale(1);
    }
    85% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.section-1 .join-box .tip {
    text-align: center;
    font-size: 16px;
    display: block;
    margin-bottom: -20px;
    padding: 10px 40px;
    border-radius: 16px;
    font-weight: 500;
    background-color: whitesmoke;
    border: 1px solid #333333;
    z-index: 5;
}

.section-1 .join-box .join-btn {
    width: 100%;
    display: block;
    padding-top: 24px;
    padding-bottom: 15px;
    background-color: #ff5a00;
    border-radius: 50px;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 40px;
    box-shadow: 5px 5px 8px #7c7b7b;
}
/*---------------------------------------------------*/
.section-2 {
    display: flex;
    justify-content: center;
    padding-inline: 20px;
    padding-top: 60px;
    padding-bottom: 50px;
    margin-top: -4%;
}

.section-2 .content {
    display: inline-block;
    min-width: 745px;
    transition: .2s ease width;
}

.section-2 .content .head {
    background: linear-gradient(to right, #FF5A00, #FF5A00);
    padding-block: 15px;
    border-radius: 10px 10px 0 0;
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
}

.section-2 .content .head .tip {
    position: absolute;
    left: -15px;
    top: -35px;
    color: var(--black);
    background-color: white;
    border: 1px solid #4A4A4A;
    border-radius: 25px;
    padding: 6px 30px;
    font-size: 20px;
    font-weight: bold;
}

.section-2 .content .head .tip:before {
    position: absolute;
    content: '';
    left: 65%;
    top: calc(100% - 1px);
    border-bottom: 9px solid var(--black);
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    transform: rotateZ(45deg);
}

.section-2 .content .head .tip:after {
    position: absolute;
    content: '';
    left: 65%;
    top: calc(100% - 2px);
    border-bottom: 8px solid white;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    transform: rotateZ(45deg);
}

.section-2 .content .head .title {
    font-size: 32px;
    font-weight: bold;
    color: white;
}

.section-2 .content .body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    box-shadow: 4px 4px 10px var(--shadow-color);
}

.section-2 .content .body .steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    position: relative;
}

.section-2 .content .body .steps:before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    height: 1px;
    width: 100%;
    top: 50%;
    z-index: -1;
    background-color: #D9D9D9;
    transform: translateY(-50%);
}

.section-2 .content .body .step {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #D9D9D9;
    color: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.1;
    user-select: none;
    flex-shrink: 0;
    font-size: 12px;
}

.section-2 .content .body .step.active {
    background-color: #FF5A00;
    color: white;
}

.section-2 .content .body .item {
    display: none;
    transition: all .3s ease;
}

.section-2 .content .body .item .title {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.section-2 .content .body .item .options {
    display: flex;
}

.section-2 .content .body .item .options span {
    padding-block: 10px;
    text-align: center;
    border-radius: 10px;
    font-weight: bold;
    color: var(--black);
    cursor: pointer;
    background-color: #d6d3d3;
    transition: .2s ease all;
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-2 .content .body .item .options span.selected {
    background-color: #e83e24;
    color: #fff;
}

.section-2 .content .body .item .options.first {
    gap: 30px;
}

.section-2 .content .body .item .options.first span {
    font-size: 30px;
    width: 250px;
}

.section-2 .content .body .item .options.second {
    gap: 16px;
}

.section-2 .content .body .item .options.second span {
    font-size: 14px;
    width: 120px;
}

.section-2 .content .body .item .options.third {
    gap: 7px;
}

.section-2 .content .body .item .details .detail {
    display: none;
}

.section-2 .content .body .item .details .detail.active {
    display: block;
}

.section-2 .content .body .item .options.third span {
    font-size: 12px;
    width: 100px;
}

.section-2 .content .body .item .bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.section-2 .content .body .item .bottom button {
    outline: none;
    border: none;
    font-size: 20px;
    font-weight: bold;
    color: white;
    padding: 6px 24px;
    cursor: pointer;
    border-radius: 20px;
    margin-inline: auto;
    background: linear-gradient(to right, #FF5A00, #FF5A00);
    transition: .2s ease all;
    display: flex;
    align-items: center;
}

.section-2 .content .body .item .bottom .next-tip {
    color: var(--black);
    font-size: 12px;
    display: inline-block;
    margin-inline: auto;
    font-weight: normal;
    margin-top: 10px;
    text-align: center;
}

.section-2 .content .body .item .bottom button svg {
    width: 20px;
    height: 20px;
}

.section-2 .content .body .item .bottom button:hover {
    box-shadow: 0 0 4px rgba(0, 0, 0, .25);
}

.section-2 .content .body .item .bottom .pre {
    color: var(--black);
    font-size: 10px;
    font-weight: normal;
    margin-top: 10px;
    position: relative;
    cursor: pointer;
    transition: .2s ease color;
    display: flex;
    align-items: center;
}

.section-2 .content .body .item .bottom .pre svg {
    width: 12px;
    height: 12px;
}

.section-2 .content .body .item.active {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.section-2 .content .body .item table {
    width: 100%;
    max-width: 530px;
    border-radius: 5px;
    overflow: hidden;
    color: var(--black);
    border-spacing: 0;
    border: 1px solid #D9D9D9;
    margin-bottom: 15px;
}

.section-2 .content .body .item table td {
    padding-block: 5px;
    font-weight: bold;
    text-align: center;
    font-size: 12px;
    border-right: 1px solid #D9D9D9;
    border-top: 1px solid #D9D9D9;
}

.section-2 .content .body .item table td:last-child {
    border-right: none;
}

.section-2 .content .body .item table thead td {
    border-top: none;
    color: white;
    background-color: #F39800;
}

.section-2 .content .body .item table td img {
    vertical-align: middle;
    width: 30px;
    height: 30px;
    object-position: center;
    object-fit: contain;
}

.section-2 .content .body .item .explanation {
    background-color: #D9D9D9;
    color: var(--black);
    padding: 14px 46px;
    width: 100%;
    max-width: 530px;
    border-radius: 5px;
    font-size: 0;
}

.section-2 .content .body .item .explanation .title {
    font-weight: bold;
    font-size: 12px;
    text-align: left;
}

.section-2 .content .body .item .explanation .info {
    margin-top: 5px;
    font-size: 12px;
    text-align: left;
    word-break: break-all;
}

.section-2 .content .body .item .explanation .ps {
    margin-top: 10px;
    font-size: 10px;
    text-align: left;
    word-break: break-all;
}

.section-2 .content .body .item .form {
    display: flex;
    gap: 30px;
    width: 100%;
    min-width: 530px;
}

.section-2 .content .body .item .form input {
    flex: 1;
    outline: none;
    border: 1px solid transparent;
    background-color: #FFEE91;
    color: var(--black);
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: bold;
}

.section-2 .content .body .item .form span {
    flex: 1;
    background-color: #d6d3d3;
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}

.section-2 .content .body .item .form span.selected {
    background-color: #e83e24;
}

.section-2 .content .body .item .form input:focus {
    border: 1px solid #FCC202;
}

.section-2 .content .body .item .rule {
    color: var(--black);
    font-size: 10px;
    display: flex;
    align-items: center;
}

.section-2 .content .body .item .rule a {
    color: var(--black);
    text-decoration: underline;
    font-size: 10px;
    margin-left: 5px;
}

.section-3 {
    background: linear-gradient(to right, #F3AA31, #F3C67A);
    padding: 50px 70px;
}

.container > .title {
    text-align: center;
    color: var(--black);
    font-weight: bold;
}

.container > .title > h3 {
    font-size: 35px;
    letter-spacing: 5px;
}

.container > .title > h3 > br {
    display: none;
}

.container > .title > p {
    font-size: 16px;
    letter-spacing: 2px;
}

.section-3 .title,
.section-10 .title {
    color: white;
}

.section-3 .content {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: visible;
}

.section-3 .content > img {
    margin-top: -30px;
    width: 50%;
}

.section-3 .content .info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
    margin-right: -95px;
    align-items: start;
}

.section-3 .content .info .rects {
    width: 100%;
    padding: 20px 30px;
    border-radius: 5px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    background: linear-gradient(to right, #FBF0B2, #FBF5D5);
}

.section-3 .content .info .rects p {
    font-size: 28px;
    font-weight: bold;
    color: var(--black);
    margin-top: 15px;
    white-space: nowrap;
}

.section-3 .content .info .rects p:first-child {
    margin-top: 0;
}

.section-3 .content .info .rects .rect {
    font-size: 30px;
    background-color: white;
    padding: 2px 15px;
    border: 1px solid var(--black);
    margin-right: 5px;
}

.section-3 .content .info .logos {
    display: flex;
    gap: 30px;
    overflow: hidden;
}

.section-3 .content .info .logos .logo {
    color: var(--black);
    font-size: 14px;
    padding: 10px 30px;
    border-radius: 5px;
    background-color: white;
    box-shadow: 2px 2px 10px var(--shadow-color);
    display: flex;
    align-items: center;
    white-space: nowrap;
    user-select: none;
}

.section-3 .content .info .logos .logo > img {
    margin-right: 4px;
}

.section-3 .content .info .logos .logo svg {
    width: 10px;
    height: 10px;
}

.section-3 .group {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
        "img title"
        "img content";
    column-gap: 20px;
    background: white;
    border-radius: 32px;
    margin-top: 50px;
    padding: 42px 42px 46px;
    box-shadow: rgba(150, 80, 0, 0.22) 0px 24px 60px;
}

.section-3 .group>img{
    grid-area: img;
    align-self: center;
    width: min(626px, 32.6041666667vw);
    height: auto;
}

.section-3 .group>.group-title {
    grid-area: title;
    align-self: end;
    margin: 0px;
    font-weight: 900;
    font-size: 30px;
    line-height: 1.55;
    color: rgb(63, 63, 70);
}

.section-3 .group>.group-content {
    grid-area: content;
    align-self: start;
}

.section-3 .group>.group-title>span{
    color: rgb(240, 131, 0);
}

.section-3 .group .group-content .group-desc {
    margin: 20px 0px 26px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.95;
    color: rgb(107, 107, 114);
}
.section-3 .group .group-content .group-desc>span{
    color: rgb(240, 131, 0);
}
.section-3 .group .group-content>ol.items{
    list-style: none;
    counter-reset: item;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.section-3 .group .group-content>ol.items>li{
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.7;
    color: rgb(107, 107, 114);
}
.section-3 .group .group-content>ol.items>li::before{
    counter-increment: item;
    content: counter(item);
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgb(240, 131, 0);
    color: rgb(255, 255, 255);
    font-weight: 900;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-3 .group .group-content>ol>li>span{
    color: rgb(63, 63, 70);
    font-weight: bold;
    display: contents;
}
.section-3 .group .group-content>a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    background: rgb(255, 90, 0);
    color: rgb(255, 255, 255);
    font-weight: 900;
    font-size: 19px;
    line-height: 1.4;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 14px;
    box-shadow: rgba(255, 90, 0, 0.28) 0px 8px 20px;
}
.section-3 .group .group-content>a::after{
    content: "";
    width: 10px;
    height: 10px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    top: 50%;
    right: 4%;
    transform-origin: center;
    transform: rotate(-45deg);
    margin-left: 15px;
}

.section-4 {
    padding: 100px 0;
}

.section-4 .card {
    width: 660px;
    margin-top: 50px;
    display: flex;
    margin-inline: auto;
    flex-direction: column;
    background-color: #EDEDED;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}

.section-4 .card .aix {
    width: 600px;
    height: auto;
}

.section-4 .card .slogan {
    margin-top: 30px;
    text-align: center;
}

.section-4 .card .first-slogan {
    margin-bottom: 3px;
    font-size: 28px;
    font-weight: bold;
    color: var(--black);
    display: block;
    transform: skew(-15deg, 0deg);
    white-space: nowrap;
}

.section-4 .card .first-slogan .rect {
    color: white;
    background: linear-gradient(to right, #F39800, #F3BC61);
    padding: 0 15px;
}

.section-4 .card .second-slogan {
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 1px;
    background: linear-gradient(to right, #FFA000, #FFC666);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    transform: skew(-15deg, 0deg);
    white-space: nowrap;
}

.section-4 .card .info {
    margin-top: 15px;
    font-size: 16px;
    color: var(--black);
    line-height: 1.8;
    letter-spacing: 1px;
}

.section-5 {
    padding-bottom: 100px;
}

.section-5 .content {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.section-5 .content .item {
    width: 380px;
    height: 459px;
    background-color: #FFF9D7;
    border-radius: 10px;
    position: relative;
    box-shadow: 4px 4px 10px var(--shadow-color);
}

.section-5 .content .item .img {
    width: 100%;
    height: 226px;
    position: relative;
    overflow-y: visible;
}

.section-5 .content .item .img span {
    position: absolute;
    left: 20px;
    bottom: -12px;
    padding: 2px 15px;
    border-radius: 50px;
    background: linear-gradient(to right, #36393E, #626770);
    color: white;
    font-size: 14px;
}

.section-5 .content .item .img img {
    height: 100%;
    width: 100%;
    object-position: center;
    object-fit: cover;
}

.section-5 .content .item .info {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    height: 120px;
}

.section-5 .content .item .info h3 {
    background: linear-gradient(to right, #F39800, #F3BC61);
    font-weight: bold;
    font-size: 20px;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-5 .content .item .info p {
    margin-top: 10px;
    font-size: 15px;
    font-weight: normal;
    color: var(--black);
    line-height: 1.5;
}

.section-5 .content .item .tag {
    color: var(--black);
    display: inline;
    background-color: white;
    border-radius: 50px;
    font-size: 12px;
    padding: 2px 15px;
    font-weight: var(--font-medium);
    margin-top: 5px;
    position: absolute;
    bottom: 25px;
    left: 20px;
}

.section-common {
    position: relative;
    padding-top: 48px;
}

.section-common > .title {
    background: linear-gradient(to bottom, #36393E, #626770);
    width: 603px;
    height: 109px;
    color: white;
    font-weight: bold;
    font-size: 36px;
    text-align: center;
    padding-top: 20px;
    position: absolute;
    -webkit-clip-path: polygon(100% 0, 100% 65%, 70% 100%, 0 70%, 0 0);
    clip-path: polygon(100% 0, 100% 70%, 50% 100%, 0 70%, 0 0);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-common > .content {
    background-image: url("../images/background.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.section-common > .content > .container {
    padding-top: 80px;
    padding-bottom: 50px;
    padding-inline: 20px;
}

.section-common > .content .card {
    display: flex;
    padding-inline: 60px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, .7);
    height: 461px;
    position: relative;
}

.section-common > .content .card > img {
    height: 511px;
    width: auto;
    position: absolute;
    left: 50px;
    bottom: 0;
}

.section-common > .content .card > .info {
    width: 700px;
    max-width: 60%;
    margin-left: auto;
    margin-right: 30px;
    color: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-common > .content .card > .info .tips {
    width: 100%;
    height: 90px;
    max-width: 558px;
    margin-inline: auto;
    position: relative;
}

.section-common > .content .card > .info .tips.full {
    max-width: 100%;
}

.section-common > .content .card > .info .tips span {
    position: absolute;
    padding: 8px 30px;
    border-radius: 30px;
    border: 1px solid var(--black);
    background-color: white;
    color: var(--black);
    font-size: 21px;
    font-weight: var(--font-medium);
    white-space: nowrap;
}

.section-common > .content .card > .info .tips span:last-child {
    right: 0;
    top: 35px;
}

.section-common > .content .card > .info .tips span:after {
    content: '';
    position: absolute;
    left: 50%;
    top: calc(100% - 1px);
    transform: translateX(-50%);
    border-top: 10px solid white;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
}

.section-common > .content .card > .info .tips span:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border-top: 11px solid var(--black);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
}

.section-common > .content .card > .info .title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}

.section-common > .content .card > .info .tip {
    font-size: 24px;
    text-align: center;
    margin-top: 20px;
}

.section-common > .content .card > .info .join {
    margin-top: 10px;
    outline: none;
    border: none;
    margin-inline: auto;
    display: block;
    border-radius: 50px;
    padding: 20px;
    text-align: center;
    font-size: 36px;
    color: white;
    font-weight: bold;
    width: 100%;
    max-width: 632px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 4px 4px 10px var(--shadow-color);
    background: linear-gradient(to bottom, #FF5A00, #FF5A00);
}

.section-video {
    padding-bottom: 100px;
}

.section-video .content {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    gap: 15px;
}

.section-video .title h3>span {
    color: #FFA000;
}

.section-video .title .sub-p {
    font-size: 18px;
    color: rgb(107, 107, 114);
    line-height: 1.9;
    margin-top: 30px;
}

.section-video .videos {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: center;
}

.section-video .videos .video {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 576px;
}

.section-video .videos .video .video-wrapper{
    width: 100%;
    aspect-ratio:16/9;
    position:relative;
    overflow:hidden;
    background-color: black;
    border-radius: 16px;
    margin-top: 25px;
}

.section-video .videos .video>span {
    font-size: 24px;
    font-weight: 900;
    color: rgb(63, 63, 70);;
}

.section-video .videos .video .desc {
    width: 100%;
    background-color: rgb(253, 246, 211);
    margin-top: 16px;
    border-radius: 14px;
    padding: 20px 26px;
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    font-weight: 700;
    font-size: 17px;
    color: rgb(138, 122, 58);
}

.section-video .videos .video .desc>span{
    font-weight: 900;
    font-size: 30px;
    color: rgb(240, 131, 0);
}

.section-6 {
    padding-top: 100px;
}

.section-6 .content {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    gap: 15px;
}

.section-6 .content .item {
    display: flex;
    gap: 45px;
    align-items: center;
    padding: 30px 50px;
}

.section-6 .content .item img {
    width: 351px;
    height: 249px;
    object-fit: cover;
}

.section-6 .content .item:nth-child(even) {
    flex-direction: row-reverse;
}

.section-6 .content .item .reason {
    border-radius: 10px;
    padding: 30px 45px;
    background-color: #FFF9D7;
    box-shadow: 4px 4px 10px var(--shadow-color);
    display: flex;
    flex-direction: column;
    align-items: start;
}

.section-6 .content .item .reason span {
    color: #FCC202;
    font-size: 16px;
    letter-spacing: 2px;
    white-space: nowrap;
    font-weight: var(--font-medium);
}

.section-6 .content .item .reason h4 {
    margin-top: 5px;
    font-size: 20px;
    font-weight: bold;
}

.section-6 .content .item .reason p {
    color: var(--black);
    margin-top: 20px;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.6;
}

.section-7 {
    padding-top: 100px;
}

.section-7 .content {
    margin-top: 50px;
    display: flex;
    gap: 50px;
}

.section-7 .content .item {
    width: 379px;
    height: 453px;
    border-radius: 10px;
    padding: 30px;
    background: linear-gradient(to right, #F39800, #F3BC61);
}

.section-7 .content .item .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-7 .content .item .head span {
    font-size: 64px;
    font-weight: bold;
    color: white;
}

.section-7 .content .item .head img {
    height: 178px;
    object-fit: cover;
    object-position: center;
}

.section-7 .content .item:first-child .head img {
    margin-right: 20px;
}

.section-7 .content .item h4 {
    margin-top: 20px;
    font-size: 25px;
    color: white;
    font-weight: bold;
}

.section-7 .content .item p {
    margin-top: 15px;
    font-size: 16px;
    font-weight: normal;
    color: white;
    line-height: 1.5;
}

.section-8 {
    padding: 100px;
}

.section-8 .content {
    margin-top: 50px;
    display: flex;
    position: relative;
}

.section-8 .content .item {
    display: none;
    width: 100%;
    transition: all .3s ease;
}

.section-8 .content .item .flex {
    gap: 60px;
    align-items: center;
}

.section-8 .content .item .flex .photo {
    width: 400px;
    height: 300px;
    text-align: center;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-8 .content .item .flex .photo > img {
    height: 100%;
}

.section-8 .content .item .flex > .info {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 15px;
}

.section-8 .content .item .flex > .info .name {
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
    color: var(--black);
}

.section-8 .content .item .flex > .info .skill {
    font-size: 20px;
    font-weight: bold;
    color: white;
    background-color: var(--black);
    border-radius: 5px;
    padding-inline: 15px;
    white-space: nowrap;
}

.section-8 .content .item .message,
.section-8 .content .item .flex > .info .introduce {
    border-radius: 5px;
    border: 2px solid var(--black);
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
}

.section-8 .content .item .message span,
.section-8 .content .item .flex > .info .introduce span {
    font-size: 24px;
    font-weight: bold;
}

.section-8 .content .item .flex > .info .introduce ul {
    margin-top: 10px;
    padding-left: 20px;
}

.section-8 .content .item .flex > .info .introduce ul li {
    font-size: 16px;
    margin-bottom: 5px;
    position: relative;
    line-height: 1.6;
}

.section-8 .content .item .flex > .info .introduce ul li:before {
    width: 10px;
    height: 10px;
    display: inline-block;
    background-color: var(--black);
    content: '';
    position: absolute;
    left: -20px;
    top: 8px;
}

.section-8 .content .item .flex > .info .introduce ul li:last-child {
    margin-bottom: 0;
}

.section-8 .content .item.active {
    display: block;
}

.section-8 .content .item .message {
    margin-top: 30px;
}

.section-9 {
    padding: 100px 20px;
    overflow: hidden;
}

.section-9 .cost {
    margin-top: 50px;
    margin-inline: auto;
    max-width: 920px;
    width: 100%;
    background: linear-gradient(to right, #F39800, #F3BC61);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-block: 30px;
    color: white;
    font-size: 64px;
    font-weight: bold;
}

.section-9 .cost .rect {
    padding: 5px 30px;
    border-radius: 5px;
    font-size: 24px;
    font-weight: bold;
    border: 2px solid white;
    margin-right: 40px;
    white-space: nowrap;
}

.section-9 .cost .smaller {
    font-size: 36px;
    margin-inline: -25px;
    margin-top: 20px;
}

.section-9 .tip {
    margin-top: 15px;
    text-align: center;
    color: var(--black);
    font-size: 15px;
}

.section-9 .content {
    margin-top: 50px;
    position: relative;
}

.slide-carousel {
    display: flex;
    gap: 90px;
    position: relative;
    transition: all .3s ease;
}

.section-9 .content .item-box {
    width: 100%;
    flex-shrink: 0;
}

.section-9 .content .item {
    display: flex;
    gap: 35px;
    margin-inline: auto;
    padding: 60px 50px;
    border-radius: 15px;
    box-shadow: 4px 4px 9px rgba(82, 82, 82, .25), inset 2px 2px 10px rgba(169, 169, 169, .25);
}

.section-9 .content .item > img {
    width: 390px;
    height: 276px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.section-9 .content .item .info {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.section-9 .content .item .info .tags > span {
    background-color: var(--black);
    border-radius: 5px;
    font-size: 20px;
    color: white;
    text-align: center;
    padding: 5px 15px;
}

.section-9 .content .item .info .tags > span:first-child {
    background-color: #F39800;
}


.section-9 .content .item .info > h4 {
    margin-top: 15px;
    font-size: 36px;
    font-weight: bold;

}

.section-9 .content .item .info > .cost-per {
    margin-top: 15px;
    font-size: 22px;
}

.section-9 .content .item ul {
    margin-top: 30px;
}

.section-9 .content .item ul li {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 18px;
    font-weight: normal;
    color: var(--black);
    margin-bottom: 10px;
}

.section-9 .content .item ul li:last-child {
    margin-bottom: 0;
}

.section-9 .content .item ul li .icon {
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-10 {
    padding: 100px 120px 150px 120px;
    background: linear-gradient(to right, #F39800, #F3BC61);
}

.section-10 .title {
    margin-bottom: 50px;
}

.section-10 .content {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 46px;
}

.section-10 .content .item {
    width: 844px;
    display: flex;
    align-items: center;
    color: white;
    margin-inline: auto;
}

.section-10 .content .item:last-child {
    margin-bottom: 0;
}

.section-10 .content .item .cost {
    width: 115px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    position: relative;
    flex-shrink: 0;
}

.section-10 .content .item .cost .time {
    border-radius: 50%;
    width: 52px;
    height: 41px;
    background-color: white;
    text-align: center;
    color: var(--black);
    position: absolute;
    font-size: 12px;
    white-space: nowrap;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -48px;
    left: 4px;
}

.section-10 .content .item .cost .time:after {
    position: absolute;
    content: '';
    display: inline-block;
    border-top: 10px solid white;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    top: 37px;
    left: 33px;
    transform: rotateZ(-30deg);
}

.section-10 .content .item .divide {
    width: 30px;
    flex-shrink: 0;
    border-top: 3px solid white;
    border-bottom: 3px solid white;
    margin-right: 21px;
    display: block;
    align-self: stretch;
    position: relative;
}

.section-10 .content .item .divide:before {
    width: 3px;
    height: 100%;
    content: '';
    background-color: white;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-10 .content .item .info {
    display: flex;
    flex-direction: column;
    gap: 46px;
}

.section-10 .content .item .info .info-item {
    display: flex;
    gap: 30px;
    align-items: center;
}

.section-10 .content .item .info .info-item .icon {
    width: 88px;
    height: 88px;
    flex-shrink: 0;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-10 .content .item .info .info-item .icon img {
    width: 53px;
    object-position: center;
    object-fit: cover;
}

.section-10 .content .item .info .info-item .text h4 {
    font-size: 20px;
    font-weight: bold;
}

.section-10 .content .item .info .info-item .text p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: var(--font-medium);
}

.section-11 {
    padding-top: 100px;
}

.section-11 .steps {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.section-11 .steps .step {
    position: relative;
    border-radius: 10px;
    background-color: #FFF9D7;
    width: 320px;
    padding: 50px 30px 20px 30px;
}

.section-11 .steps .step .head {
    position: absolute;
    top: -68px;
    left: 0;
    right: 0;
    display: flex;
    height: 133px;
    padding-inline: 30px;
    align-items: center;
    justify-content: space-between;
}

.section-11 .steps .step .head img {
    margin-bottom: 30px;
}

.section-11 .steps .step .head span {
    font-size: 22px;
    font-weight: var(--font-medium);
    color: white;
    display: block;
    padding: 7px 20px;
    border-radius: 3px;
    background: linear-gradient(to right, #F39800, #F3BC61);
}

.section-11 .steps .step:before {
    position: absolute;
    z-index: -1;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 12px;
    content: '';
    top: -2px;
    left: -2px;
    background: linear-gradient(to right, #F39800, #F3BC61);
}

.section-11 .steps .step h4 {
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(to right, #F39800, #F3BC61);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-11 .steps .step p {
    margin-top: 10px;
    font-size: 16px;
    color: var(--black);
    line-height: 1.5;
}

.section-11 .steps .step p span {
    color: var(--black);
    text-decoration: underline;
}

.section-12 {
    padding-block: 100px;
}

.section-12 .content {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section-12 .content .item {
    width: 656px;
    margin-inline: auto;
}

.section-12 .content .item .q {
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(to right, #F39800, #F3BC61);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    position: relative;
    letter-spacing: 2px;
}

.section-12 .content .item .a {
    margin-top: 8px;
    font-size: 16px;
    font-weight: var(--font-medium);
    color: var(--black);
    display: flex;
    position: relative;
}

.section-12 .content .item .q:before {
    letter-spacing: 0;
    flex-shrink: 0;
    content: 'Q';
    background: linear-gradient(to right, #F39800, #F3BC61);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -8px;
    -webkit-text-fill-color: initial !important;
    margin-right: 30px;
}

.section-12 .content .item .q:after {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    border-bottom: 10px solid #F39800;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    transform: rotateZ(-60deg);
}

.section-12 .content .item .a:before {
    flex-shrink: 0;
    content: 'A';
    background: linear-gradient(to right, #FBF0B2, #FBF8E4);
    color: var(--black);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
}

.section-12 .content .item .a:after {
    content: '';
    position: absolute;
    left: 43px;
    top: 5px;
    border-bottom: 10px solid #FBF8E4;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    transform: rotateZ(55deg);
}

.footer {
    height: 111px;
    padding-block: 30px;
    background: linear-gradient(to right, #F39800, #F39800);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: white;
}

.footer .nav {
    display: flex;
    gap: 30px;
    font-size: 14px;
    font-weight: normal;
}

.footer .nav a {
    color: white;
}

.footer .nav a:hover {
    text-decoration: underline;
}

.footer .copyright {
    font-size: 16px;
    font-weight: var(--font-medium);
}

@media screen and (max-width: 593px) {
    .banners {
        flex-direction: column;
    }
    
    .banners img {
        width: 100%;
    }

    .section-video .videos {
        padding-inline: 20px;
    }
}

@media screen and (max-width: 1000px) {
    .header {
        height: 80px;
        justify-content: center;
        align-items: center;
    }

    .header .nav {
        display: none;
    }

    .section-1 {
        padding-top: calc(503 / 373 * 100%);
        background-image: url("../images/hero-sp.png");
    }
    .section-1 .join-box {
        position: unset;
        width: 100%;
        max-width: 100%;
        padding-block: 20px;
    }

    .section-1 .join-box .tip {
        font-size: 14px;
        padding: 5px 50px;
        border-radius: 12px;
    }

    .section-1 .join-box .join-btn {
        font-size: 20px;
        width: 100%;
        max-width: 400px;
        margin-inline: auto;
    }

    .section-2 {
        margin-top: -20px;
    }

    .section-2 .content {
        min-width: unset;
        width: 100%;
    }

    .section-2 .content .head {
        padding-block: 10px;
        width: 100%;
        max-width: 480px;
        margin-inline: auto;
    }

    .section-2 .content .head .title {
        font-size: 20px;
    }

    .section-2 .content .head .tip {
        left: 50%;
        top: -28px;
        white-space: nowrap;
        transform: translateX(-50%);
        z-index: 1;
        font-size: 14px;
    }

    .section-2 .content .head .tip:before {
        border-top: 9px solid var(--black);
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: none;
        transform: rotateZ(0) translateX(-50%);
        left: 50%;
        top: 100%;
        z-index: -1;
    }

    .section-2 .content .head .tip:after {
        border-top: 9px solid white;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: none;
        transform: rotateZ(0) translateX(-50%);
        left: 50%;
        top: calc(100% - 2px);
        z-index: -1;
    }

    .section-2 .content .body {
        padding: 30px 15px;
        width: 100%;
        max-width: 480px;
        margin-inline: auto;
    }

    .section-2 .content .body .steps {
        gap: 20px;
    }

    .section-2 .content .body .step {
        width: 40px;
        height: 40px;
        font-size: 11px;
    }

    .section-2 .content .body .item .title {
        font-size: 16px;
    }

    .section-2 .content .body .item table {
        margin-bottom: 5px;
    }

    .section-2 .content .body .item .options.first span {
        width: 150px;
        height: 68px;
        font-size: 20px;
    }

    .section-2 .content .body .item .bottom button {
        font-size: 16px;
    }

    .section-2 .content .body .item .bottom button svg {
        width: 16px;
        height: 16px;
    }

    .section-2 .content .body .item {
        width: 100%;
    }

    .section-2 .content .body .item .options.third,
    .section-2 .content .body .item .options.second {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .section-2 .content .body .item .options.third span,
    .section-2 .content .body .item .options.second span {
        width: 150px;
        flex-shrink: 0;
        height: auto;
        font-size: 14px;
    }

    .section-2 .content .body .item .form {
        min-width: 0;
    }

    .section-2 .content .body .item .form input {
        width: 100%;
    }

    .section-2 .content .body .item .col-sp {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .container > .title > h3 {
        font-size: 32px;
        letter-spacing: 0;
    }

    .container > .title > h3 > br {
        display: inline;
    }

    .container > .title > p {
        font-size: 16px;
    }

    .section-3 {
        padding: 50px 16px;
    }

    .section-3 .content {
        flex-direction: column;
        gap: 0;
        align-items: center;
    }

    .section-3 .content .info {
        margin: 0;
        width: 100%;
        gap: 15px;
    }

    .section-3 .content .info .rects p {
        font-size: 15px;
    }

    .section-3 .content .info .rects .rect {
        font-size: 16px;
    }

    .section-3 .content .info .logos {
        width: 100%;
        gap: 4px;
    }

    .section-3 .content .info .logos .logo {
        font-size: 11px;
        flex: 1;
        padding: 8px 4px;
    }

    .section-3 .content .info .logos .logo > img {
        width: 30px;
        height: 26px;
        object-fit: cover;
        object-position: center;
    }

    .section-3 .content > img {
        margin-top: 30px;
        width: 100%;
        max-width: 550px;
    }

    .section-3 .group {
        grid-template-columns: 1fr;
        grid-template-areas:
            "title"
            "img"
            "content";
        padding: 28px 20px 32px;
    }

    .section-3 .group>.group-title {
        align-self: auto;
        font-size: clamp(18px, 5.2vw, 26px)
    }

    .section-3 .group>img {
        align-self: center;
        justify-self: center;
        width: 118%;
    }

    .section-3 .group>.group-content {
        align-self: auto;
    }

    .section-4 {
        padding: 70px 10px;
    }

    .section-4 .card {
        width: 100%;
        max-width: 666px;
        padding: 30px 16px;
    }

    .section-4 .card .aix {
        width: 100%;
        max-width: 600px;
    }

    .section-4 .card .slogan {
        margin-top: 20px;
    }

    .section-4 .card .first-slogan {
        font-size: 20px;
    }

    .section-4 .card .first-slogan .rect {
        padding: 0 10px;
    }

    .section-4 .card .second-slogan {
        font-size: 24px;
    }

    .section-4 .card .info {
        margin-top: 10px;
        font-size: 14px;
        padding-inline: 14px;
    }

    .section-5 {
        padding-bottom: 70px;
    }

    .section-5 .content {
        margin-top: 30px;
        padding-inline: 12px;
        flex-direction: column;
    }

    .section-5 .content .item {
        width: 100%;
        height: 450px;
    }

    .section-5 .content .item .tag {
        left: 15px;
        bottom: 20px;
    }

    .section-5 .content .item .info {
        padding: 30px 15px;
    }

    .section-5 .content .item .info h3 {
        font-size: 18px;
    }

    .section-5 .content .item .info p {
        font-size: 14px;
    }

    .section-common {
        padding-top: 24px;
    }

    .section-common > .title {
        width: 290px;
        height: 64px;
        font-size: 20px;
        padding-top: 11px;
    }

    .section-common > .content .card > img {
        display: none;
    }

    .section-common > .content > .container {
        padding-top: 60px;
    }

    .section-common > .content .card {
        height: auto;
        padding: 0;
        width: 100%;
        margin-inline: auto;
        max-width: 500px;
    }

    .section-common > .content .card > .info {
        padding: 30px 10px;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }

    .section-common > .content .card > .info .tips {
        margin-top: 0;
        height: 60px;
        width: 315px;
    }

    .section-common > .content .card > .info .tips span {
        font-size: 12px;
        padding: 5px 15px;
    }

    .section-common > .content .card > .info .tips span:last-child {
        top: 20px;
    }

    .section-common > .content .card > .info .title {
        font-size: 24px;
        margin-top: 0;
    }

    .section-common > .content .card > .info .tip {
        font-size: 20px;
    }

    .section-common > .content .card > .info .join {
        font-size: 22px;
        width: 100%;
        padding: 20px 0;
        max-width: 450px;
        text-align: center;
    }

    .section-6 {
        padding-top: 70px;
        padding-inline: 10px;
    }

    .section-6 .content .item {
        flex-direction: column;
        padding: 30px 15px;
        background-color: #FFF9D7;
        border-radius: 10px;
        gap: 10px;
        width: 100%;
        max-width: 480px;
        margin-inline: auto;
        box-shadow: 4px 4px 10px var(--shadow-color);
    }

    .section-6 .content {
        margin-top: 30px;
    }

    .section-6 .content .item .reason {
        background: none;
        box-shadow: none;
    }

    .section-6 .content .item > img {
        width: 100%;
        height: 250px;
        object-fit: contain;
        object-position: center;
    }

    .section-6 .content .item:nth-child(even) {
        flex-direction: column;
    }

    .section-6 .content .item .reason {
        padding: 0;
    }

    .section-6 .content .item .reason h4 {
        font-size: 15px;
    }

    .section-6 .content .item .reason p {
        margin-top: 10px;
        font-size: 14px;
    }

    .section-7 {
        padding-top: 70px;
    }

    .section-7 .content {
        margin-top: 30px;
        flex-direction: column;
        align-items: center;
    }

    .section-7 .content .item {
        width: 100%;
        height: auto;
        max-width: 355px;
    }

    .section-7 .content .item h4 {
        font-size: 24px;
    }

    .section-7 .content .item p {
        font-size: 14px;
        margin-top: 10px;
    }

    .section-8 {
        padding: 70px 0;
    }

    .section-8 .content {
        margin-top: 30px;
    }

    .section-8 .content .item {
        padding-inline: 48px;
    }

    .section-8 .content .item > .flex {
        flex-direction: column;
    }

    .section-8 .content .item > .flex {
        gap: 20px;
    }

    .section-8 .content .item .flex .photo {
        width: calc(100% + 42px);
    }

    .section-8 .content .item .flex .photo img {
        border-radius: 15px;
    }

    .section-8 .content .item .flex > .info {
        gap: 8px;
    }

    .section-8 .content .item .flex > .info .name {
        font-size: 20px;
    }

    .section-8 .content .item .flex > .info .skill {
        font-size: 14px;
    }

    .section-8 .content .item .flex > .info .introduce {
        padding: 10px;
    }

    .section-8 .content .item .flex > .info .introduce span {
        font-size: 20px;
    }

    .section-8 .content .item .flex > .info .introduce ul li {
        font-size: 14px;
    }

    .section-8 .content .item .flex > .info .introduce ul li:before {
        top: 6px;
    }

    .section-8 .content .item .message {
        margin-top: 15px;
        padding: 10px;
        font-size: 14px;
    }

    .section-8 .content .item .message span {
        font-size: 20px;
    }

    .section-8 .content .item .message p {
        margin-top: 10px;
    }

    .section-9 {
        padding: 70px 12px 115px 12px;
    }

    .section-9 .cost {
        margin-top: 30px;
        font-size: 36px;
        padding-block: 15px;
    }

    .section-9 .cost .rect {
        padding: 5px 15px;
        font-size: 14px;
        margin-right: 10px;
    }

    .section-9 .cost .smaller {
        font-size: 16px;
        margin-inline: -10px;
        margin-top: 15px;
    }

    .section-9 .tip {
        margin-top: 5px;
        font-size: 10px;
    }

    .section-9 .content .carousel-pre {
        left: -5px;
    }

    .section-9 .content .carousel-next {
        right: -5px;
    }

    .section-9 .content .item {
        padding: 30px 15px;
        width: 100%;
        flex-direction: column;
        gap: 20px;
        box-shadow: 4px 4px 9px rgba(82, 82, 82, .25);
    }

    .section-9 .content .item > img {
        width: 100%;
        height: auto;
    }

    .section-9 .content .item .info > span {
        font-size: 12px;
        padding: 5px 12px;
        background-color: #F39800;
    }

    .section-9 .content .item .info > h4 {
        font-size: 20px;
        margin-top: 5px;
    }

    .section-9 .content .item .info > .cost-per {
        margin-top: 5px;
        font-size: 15px;
    }

    .section-9 .content .item ul {
        margin-top: 10px;
    }

    .section-9 .content .item ul li {
        font-size: 14px;
    }

    .section-9 .content .item ul li .icon {
        width: 32px;
        margin-right: 5px;
    }

    .section-10 {
        padding: 70px 10px;
    }

    .section-10 .content .item {
        width: 100%;
        max-width: 844px;
    }

    .section-10 .content .item .cost {
        font-size: 8px;
    }

    .section-10 .content .item .cost .time {
        width: 30px;
        height: 22px;
        font-size: 7px;
        top: -28px;
        left: 30px;
    }

    .section-10 .content .item .cost .time:after {
        border-top: 6px solid white;
        border-left: 2px solid transparent;
        border-right: 2px solid transparent;
        top: 19px;
        left: 19px;
    }

    .section-10 .content .item .info {
        gap: 30px;
    }

    .section-10 .content .item .info .info-item {
        gap: 10px;
    }

    .section-10 .content .item .info .info-item .icon {
        width: 44px;
        height: 44px;
    }

    .section-10 .content .item .info .info-item .icon img {
        width: 26px;
    }

    .section-10 .content .item .info .info-item .text h4 {
        font-size: 16px;
    }

    .section-10 .content .item .info .info-item .text p {
        margin-top: 5px;
        font-size: 12px;
    }

    .section-10 .content .item .divide {
        width: 16px;
        margin-right: 10px;
    }

    .-margin {
        margin-top: -24px;
    }

    .demos > .info > .tips > span {
        font-size: 9px !important;
    }

    .demos > .info > .title {
        font-size: 24px !important;
    }

    .section-common > .content .card > .info .tips span:before {
        border-top: 8px solid var(--black);
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
    }

    .section-common > .content .card > .info .tips span:after {
        border-top: 8px solid white;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
    }

    .section-11 {
        padding: 70px 25px 0 25px;
    }

    .section-11 .steps {
        margin-top: 90px;
        flex-direction: column;
        gap: 110px;
    }

    .section-11 .steps .step {
        width: 100%;
    }

    .section-12 {
        padding-block: 70px;
    }

    .section-12 .content {
        margin-top: 30px;
        padding: 0 15px;
    }

    .section-12 .content .item {
        width: 100%;
    }

    .section-12 .content .item .q {
        font-size: 18px;
    }

    .section-12 .content .item .a {
        margin-top: 6px;
        font-size: 14px;
    }

    .section-12 .content .item .q:before {
        width: 30px;
        height: 30px;
        margin-right: 10px;
        font-size: 12px;
    }

    .section-12 .content .item .q:after {
        left: -3px;
        top: -3px;
    }

    .section-12 .content .item .a:before {
        width: 30px;
        height: 30px;
        margin-right: 10px;
        font-size: 12px;
        margin-top: -3px;
    }

    .section-12 .content .item .a:after {
        left: 26px;
        top: 3px;
    }

    .footer {
        height: 76px;
        gap: 10px;
        padding-block: 20px;
    }

    .footer .nav {
        font-size: 10px;
        gap: 10px;
    }

    .footer .copyright {
        font-size: 12px;
    }

    .slide-carousel {
        margin-inline: 30px;
    }

    .carousel-pre {
        top: 55%;
        left: 8px;
        width: 28px;
        height: 28px;
    }

    .carousel-next {
        top: 55%;
        right: 8px;
        width: 28px;
        height: 28px;
    }

    .carousel-pre > svg,
    .carousel-next > svg {
        width: 20px;
        height: 20px;
    }

    .carousel-indicator {
        bottom: -40px;
    }
}


#popup_area{
	width: 500px;
	max-width: 95%;
	padding: 1%;
	border-radius: 10px;
	box-sizing: border-box;
    display: none;
}
    #popup_area div.popup_area_btn{
		width: 100%;
		text-align: right;
	}
	#popup_area div.popup_image{
		width: 100%;
		text-align: center;
	}
    #popup_area div.popup_image img{
        border-radius:10px;
    }
	