img {
    display: block;
    width: 100%;
    max-width: unset;
}

svg {
    /* --color: rgb(51, 51, 51); */
    --color: rgb(0, 0, 0);
}

.logo-wrap img {
    width: auto;
}

.backtop img {
    width: auto;
    max-width: 100%;
}

.ld100-page {
    --ratio-size: calc(100vw / 1920);
    --left-area: calc(var(--ratio-size) * 160);
    --right-area: calc(var(--ratio-size) * 120);
    --main-color: rgb(230, 0, 18);

    width: 100vw;
    height: 100%;
}

.ld100-page .swiper-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.content-main {
    width: 100%;
    padding-left: var(--left-area);
    padding-right: var(--right-area);
}

.product-title {
    font-size: calc(var(--ratio-size) * 98);
    font-weight: bolder;
    line-height: 1.6;
}

.content-title {
    font-size: calc(var(--ratio-size) * 88);
    font-weight: bolder;
}

.swiper-container>.swiper-wrapper>.swiper-slide {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.screen-1 {
    background: url('../images/ld100/bg-1.jpg') no-repeat center/cover;
}

.screen-2 {
    background: url('../images/ld100/bg-2.jpg') no-repeat center/cover;
}

.screen-3 {
    background: url('../images/ld100/bg-3.jpg') no-repeat center/cover;
}

.screen-4 {
    background: url('../images/ld100/bg-4.jpg') no-repeat center/cover;
}

.screen-5 {
    background: url('../images/ld100/bg-5.jpg') no-repeat center/cover;
}

.screen-1 .content-main {
    display: flex;
    justify-content: space-between;
    margin-top: calc(var(--ratio-size) * 100);
}

.screen-1 .text {
    margin-top: calc(var(--ratio-size) * 100);
    font-size: calc(var(--ratio-size) * 50);
}

.screen-1 .text .mask-content {
    position: relative;
}

.screen-1 .text .mask-content .title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: calc(var(--ratio-size) * 78);
    opacity: 0;
    transform: translateY(100%);
    transition: all .5s;
}

.screen-1.had-animated .text .mask-content .title {
    opacity: 1;
    transform: translateY(0);
}

.screen-1 .text .mask-content .product-title {
    position: relative;
    color: #000;
}

.screen-1 .text .mask-content .product-title .mask-title {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    color: var(--main-color);
}

.screen-1 .text .mask-content .mask-title {
    mask-image: url('../images/ld100/screen-1-masker.png');
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-image: url('../images/ld100/screen-1-masker.png');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
}

.screen-1 .text .mask-content .desc {
    font-size: calc(var(--ratio-size) * 48);
    font-weight: bold;
    opacity: 0;
    transform: translateY(100%);
    transition: all .5s .3s;
}

.screen-1.had-animated .text .mask-content .desc {
    opacity: 1;
    transform: translateY(0);
}

.screen-1 .pic {
    width: calc(var(--ratio-size) * 795);
    opacity: 0;
    transform: translateX(30px);
    transition: all 1s .5s;
}

.screen-1.had-animated .pic {
    opacity: 1;
    transform: translateX(0);
}

.common-title-content .title {
    position: relative;
    opacity: 0;
    transform: translateX(-100%);
    transition: all .5s;
}

.common-title-content .mask-title {
    position: absolute;
    left: 0;
    top: 0;

    mask-image: url('../images/ld100/screen-title-masker.png');
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-image: url('../images/ld100/screen-title-masker.png');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;

    color: var(--main-color);
}

.common-title-content.reverse-style .mask-title {
    left: auto;
    right: 0;
}

.common-title-content .decoration {
    width: calc(var(--ratio-size) * 370);
    transform: translateX(calc(var(--left-area) * -1 + 50%));
    opacity: 0;
    transition: all 1s cubic-bezier(0.25, 0.1, 0.07, 1.97) .1s;
}

.common-title-content.reverse-style {
    text-align: right;
}

.common-title-content.reverse-style .title {
    transform: translateX(100%);
}

.common-title-content.reverse-style .decoration {
    margin-left: auto;
    transform: translateX(calc(var(--left-area) + 50%));
}

.common-title-content.reverse-style .decoration img {
    transform: rotateY(180deg);
}

.had-animated .common-title-content .title {
    opacity: 1;
    transform: translateX(0);
}

.had-animated .common-title-content .decoration {
    opacity: 1;
    transform: translateX(calc(var(--left-area) * -1));
}

.had-animated .common-title-content.reverse-style .title {
    opacity: 1;
    transform: translateX(0);
}

.had-animated .common-title-content.reverse-style .decoration {
    opacity: 1;
    transform: translateX(calc(var(--left-area)));
}


.screen-2 .content-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.screen-2 .common-title-content p {
    margin-top: calc(var(--ratio-size) * 180);
}

.screen-2 .switch-btn-list {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    width: 100%;
    margin-top: calc(var(--ratio-size) * 100);

    transform: translateY(100%);
    opacity: 0;
    transition: all .5s .3s;
}

.had-animated.screen-2 .switch-btn-list {
    transform: translateY(0);
    opacity: 1;
}

.screen-2 .switch-btn-list .btn-item {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.screen-2 .switch-btn-list .btn-item .icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    aspect-ratio: 1/1;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .15);
    overflow: hidden;
}

.screen-2 .switch-btn-list .btn-item .icon::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('../../skin/images/ld100/icon-bg.jpg') no-repeat center/cover;
    opacity: 0;
    transform: scale(1.3);
    transition: all .5s;
}

.screen-2 .switch-btn-list .btn-item .icon svg {
    position: relative;
    z-index: 2;
    max-width: 60%;
    max-height: 50%;
    transition: all .5s;
}

.screen-2 .switch-btn-list .btn-item .text {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    font-size: calc(var(--ratio-size) * 38);
    transition: backgroundColor .5s;
    background-color: rgba(0, 0, 0, .05);
}

.screen-2 .switch-btn-list .btn-item .text p {
    opacity: .3;
    padding: calc(var(--ratio-size) * 3) calc(var(--ratio-size) * 20);
    transition: opacity .5s, fontWeight .5s;
}

.screen-2 .switch-btn-list .btn-item .text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--main-color);
    width: 0;
    transition: all .5s;
}

.screen-2 .switch-btn-list .btn-item .arrow-icon {
    position: absolute;
    right: 0;
    width: calc(var(--ratio-size) * 20);
    transform: translateY(100%);
    opacity: 0;
}

.screen-2 .switch-btn-list .btn-item.active .text {
    position: relative;
    width: calc(var(--ratio-size) * 320);
    margin-left: calc(var(--ratio-size) * 20);
    background-color: transparent;
}

.screen-2 .switch-btn-list .btn-item.active .text p {
    padding-left: 0;
}

.screen-2 .switch-btn-list .btn-item.active .arrow-icon {
    transform: translateY(0);
    opacity: 1;
    transition: all .5s;
}

.screen-2 .switch-btn-list .btn-item.active .icon svg {
    --color: rgba(255, 255, 255);
}

.screen-2 .switch-btn-list .btn-item:hover .icon svg {
    --color: rgba(255, 255, 255);
}

.screen-2 .switch-btn-list .btn-item.active .icon::after {
    opacity: 1;
    transform: scale(1);
}

.screen-2 .switch-btn-list .btn-item:hover .icon::after {
    opacity: 1;
    transform: scale(1);
}

.screen-2 .switch-btn-list .btn-item.active .text p {
    font-weight: bold;
    opacity: 1;
}

.screen-2 .switch-btn-list .btn-item.active .text::after {
    width: 100%;
}

.screen-2 .screen-product-swiper {
    width: 50%;
    text-align: center;
    font-size: calc(var(--ratio-size) * 28);

    opacity: 0;
    transform: translateY(-100px);
    transition: all .5s .1s;
}

.had-animated.screen-2 .screen-product-swiper {
    opacity: 1;
    transform: translateY(0);
}

.screen-2 .screen-product-swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
}


.screen-2 .screen-product-swiper .content img {
    margin: 0 auto;
}

.screen-2 .product-1 .content {
    margin-top: calc(var(--ratio-size) * 10);
}

.screen-2 .product-1 .content .pic-area {
    position: relative;
    width: calc(var(--ratio-size) * 840);
}

.screen-2 .product-1 .content img,
.screen-2 .product-1 .content svg {
    width: 100%;
}

.screen-2 .product-1 .content svg {
    position: absolute;
    top: 0;
    left: 0;
}

.screen-2 .product-2 .content {
    margin-top: calc(var(--ratio-size) * 10);
}

.screen-2 .product-2 .content img {
    width: calc(var(--ratio-size) * 760);
}

.screen-2 .product-3 .content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* height: calc(var(--ratio-size) * 436); */
    padding-bottom: 10%;
    width: 100%;
    height: 100%;
}

.screen-2 .product-3 .content .tips {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 12px;
    opacity: .5;
}

.screen-2 .product-3 .bg {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    height: 90%;
}

.screen-2 .product-3 .bg img {
    width: auto;
    height: 100%;
}

.screen-2 .product-3 .usage-rate {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(var(--ratio-size) * 280);
    padding: 2px;
    margin-top: calc(var(--ratio-size) * 30);
    background-color: rgba(230, 0, 18, .2);
    border-radius: 5000px;
    overflow: hidden;
    font-size: calc(var(--ratio-size) * 48);
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
}

.screen-2 .product-3 .usage-rate::after {
    content: '';
    position: absolute;
    width: 300%;
    height: 40%;
    background-color: var(--main-color);
    animation: rotate 2s infinite linear;
}

.screen-2 .product-3 .usage-rate .mask-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding-top: 5px;
    padding-bottom: 10px;
    border-radius: 5000px;
    background-color: #ffffff;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.screen-2 .product-4 .pic-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: calc(var(--ratio-size) * 95);
}

.screen-2 .product-4 .content .main-pic {
    position: relative;
    width: calc(var(--ratio-size) * 350);
}

.screen-2 .product-4 .content .main-pic .red-circle {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    border: 1px solid var(--main-color);
    opacity: 0;
}

.screen-2 .product-4 .content .user-area {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(80%, -20%);
}

.screen-2 .product-4 .content .user-area img {
    margin: 0;
}

.screen-2 .product-4 .content .user-area .chat {
    width: calc(var(--ratio-size) * 192);
    margin-top: 5%;
}

.screen-2 .product-4 .content .ai-area {
    position: absolute;
    left: -6%;
    bottom: 5%;
}

.screen-2 .product-4 .content .ai-area img {
    margin: 0;
}

.screen-2 .product-4 .content .ai-area .chat {
    position: absolute;
    right: 0;
    transform: translateY(-120%);
    width: calc(var(--ratio-size) * 272);
}

.screen-2 .product-4 .content .icon {
    width: calc(var(--ratio-size) * 60);
}

.screen-3 .prove-content {
    display: flex;
    justify-content: space-between;
    margin-top: calc(var(--ratio-size) * 40);
    opacity: 0;
    transform: translateY(50px);
    transition: all .5s .2s;
}

.had-animated.screen-3 .prove-content {
    opacity: 1;
    transform: translateY(0);
}

.screen-3 .prove-content .pic-swiper {
    width: 50%;
}

.screen-3 .prove-content .pic-swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
}

.screen-3 .prove-content .pic-swiper .swiper-slide .pic-area {
    position: relative;
}

.screen-3 .prove-content .pic-swiper .swiper-slide .pic-area img {
    margin: 0 auto;
}

.screen-3 .prove-content .pic-swiper .prove-1 .pic-area {
    width: calc(var(--ratio-size) * 905);
}

.screen-3 .prove-content .pic-swiper .prove-1 .pic-area img,
.screen-3 .prove-content .pic-swiper .prove-1 .pic-area svg {
    width: 100%;
}

.screen-3 .prove-content .pic-swiper .prove-1 .pic-area svg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.screen-3 .prove-content .pic-swiper .prove-2 {
    position: relative;
}

.screen-3 .prove-content .pic-swiper .prove-2 .pic {
    width: calc(var(--ratio-size) * 785);
}

.screen-3 .prove-content .pic-swiper .prove-3 .pic {
    width: calc(var(--ratio-size) * 683);
}

.screen-3 .prove-content .pic-swiper .prove-4 .pic {
    width: calc(var(--ratio-size) * 553);
}

.screen-3 .prove-content .pic-swiper .prove-5 .pic {
    /* width: calc(var(--ratio-size) * 860); */
    max-width: calc(var(--ratio-size) * 860);
    max-height: 100%;
}

.screen-3 .prove-content .pic-swiper .prove-5 {
    position: relative;
    padding-bottom: 35px;
}

.screen-3 .prove-content .pic-swiper .prove-5 .tips {
    position: absolute;
    bottom: 0;
    left: 1.5%;
    font-size: 10px;
    opacity: .5;
}

.screen-3 .prove-content .pic-swiper .prove-2 .circle-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.9);
    z-index: -1;
    width: calc(var(--ratio-size) * 785);

    animation: circleBgAn 3s infinite linear;
}

@keyframes circleBgAn {
    100% {
        transform: translate(-50%, -50%) scale(.9) rotate(360deg);
    }
}

.screen-3 .prove-content .pic-swiper .prove-4 {
    margin-top: calc(var(--ratio-size) * -100);
}

.screen-3 .prove-content .pic-swiper .prove-4 .text {
    text-align: center;
    font-size: calc(var(--ratio-size) * 28);
}

.screen-3 .prove-content .pic-swiper .prove-4 .title {
    font-size: calc(var(--ratio-size) * 38);
    color: var(--main-color);
}

.screen-3 .prove-content .pic-swiper .prove-4 .more-info {
    margin-top: calc(var(--ratio-size) * 20);
}

.screen-3 .prove-content .list {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: calc(var(--ratio-size) * 10);
    width: 40%;
}

.screen-3 .prove-content .item {
    position: relative;
    padding: calc(var(--ratio-size) * 10);
    padding-right: calc(var(--ratio-size) * 20);
    background-color: rgba(0, 0, 0, .05);
    backdrop-filter: blur(10px);
}

.screen-3 .prove-content .item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('../../skin/images/ld100/screen-3-item-bg.jpg') no-repeat center/cover;
    opacity: 0;
    transition: all .5s;
}

.screen-3 .prove-content .item.active::after {
    opacity: 1;
}

.screen-3 .prove-content .item .icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background-color: #fff;
}

.screen-3 .prove-content .item .icon::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('../../skin/images/ld100/icon-bg.jpg') no-repeat center/cover;
    opacity: 0;
    transform: scale(1.3);
    transition: all .5s;
}

.screen-3 .prove-content .item.active .icon::after {
    opacity: 1;
}

.screen-3 .prove-content .item .icon svg {
    position: relative;
    z-index: 2;
    max-width: 60%;
    max-height: 50%;
    transition: all .5s;
}

.screen-3 .prove-content .item.active .icon svg {
    --color: rgba(255, 255, 255);
}

.screen-3 .prove-content .item .top {
    position: relative;
    z-index: 2;
    display: flex;
    align-self: center;
    gap: calc(var(--ratio-size) * 20);
    font-size: calc(var(--ratio-size) * 38);
    height: 60px;
    cursor: pointer;
}

.screen-3 .prove-content .item .top .text {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.screen-3 .prove-content .item .top .text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--main-color);
    width: 0;
    transition: all .5s;
}

.screen-3 .prove-content .item.active .top .text::after {
    width: 100%;
}

.screen-3 .prove-content .item .top p {
    opacity: .5;
    transition: all .5s;
}

.screen-3 .prove-content .item.active .top p {
    opacity: 1;
    font-weight: bolder;
}

.screen-3 .prove-content .item .top .arrow-icon {
    width: calc(var(--ratio-size) * 20);
}

.screen-3 .prove-content .item .top .arrow-icon img {
    transform: rotate(90deg);
    transition: all .5s;
}

.screen-3 .prove-content .item.active .top .arrow-icon img {
    transform: rotate(180deg);
}

@media screen and (max-width: 1200px) {
    .screen-3 .prove-content .item .top {
        height: 40px;
        font-size: calc(var(--ratio-size) * 30);
    }

    .screen-3 .prove-content .item .more-text {
        padding-bottom: calc(var(--ratio-size) * 10);
    }

    .screen-3 .prove-content .item .more-text {
        font-size: calc(var(--ratio-size) * 20);
    }
}

@media screen and (max-width: 768px) {
    .screen-3 .prove-content .item .top .arrow-icon img {
        opacity: 0;
    }

    .screen-3 .prove-content .item.active .top .arrow-icon img {
        opacity: 1;
        transform: rotate(0);
    }
}

.screen-3 .prove-content .item .more-text {
    display: none;
    position: relative;
    z-index: 2;
    padding-bottom: calc(var(--ratio-size) * 20);
    padding-left: calc(var(--ratio-size) * 20 + 60px);
    margin-top: calc(var(--ratio-size) * 15);
    font-size: calc(var(--ratio-size) * 24);
    line-height: 1.6;
}

.screen-4 .content-main .info-content {
    position: relative;
    width: calc(var(--ratio-size) * 1320);
    margin-top: calc(var(--ratio-size) * 100);
}

.screen-4 .content-main .info-content .title {
    opacity: 0;
    transition: all .5s .5s;
}

.screen-4 .content-main .info-content .line {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 1s .8s;
}

.screen-4 .content-main .info-content .detail {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 1s 1.2s;
}

.had-animated.screen-4 .content-main .info-content .title {
    opacity: 1;
}

.had-animated.screen-4 .content-main .info-content .line {
    opacity: 1;
}

.had-animated.screen-4 .content-main .info-content .detail {
    opacity: 1;
}


.screen-4 .content-main .product-pic {
    position: absolute;
    right: 15%;
    top: 20%;
    width: calc(var(--ratio-size) * 630);

    opacity: 0;
    transform: translateY(30px);
    transition: all .5s;
}

.had-animated.screen-4 .content-main .product-pic {
    opacity: 1;
    transform: translateY(0);
}

.screen-5 .content-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.screen-5 .content-main .right .text {
    margin-top: calc(var(--ratio-size) * 35);
    font-size: calc(var(--ratio-size) * 28);
    line-height: 1.7;
    text-align: right;
    opacity: 0;
    transform: translateY(50px);
    transition: all .5s;
}

.had-animated.screen-5 .content-main .right .text {
    opacity: 1;
    transform: translateY(0);
}

.screen-5 .content-main .industry {
    width: 50%;
    height: 100vh;
    opacity: 0;
    transition: all .5s .3s;
}

.had-animated.screen-5 .content-main .industry {
    opacity: 1;
}

.screen-5 .content-main .industry-bg {
    position: absolute;
    left: var(--left-area);
    top: 50%;
    transform: translateY(-50%);
    width: calc(var(--ratio-size) * 200);
}

.screen-5 .content-main .industry .industry-swiper {
    height: 100%;
    overflow: hidden;
}

.screen-5 .content-main .industry .swiper-slide {
    width: calc(var(--ratio-size) * 450);
    height: auto;

    transition: all .5s;
}

.screen-5 .content-main .industry .industry-swiper .swiper-slide {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.screen-5 .content-main .industry .industry-swiper .swiper-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, .5), transparent 50%);
}

.screen-5 .content-main .industry .swiper-slide p {
    position: absolute;
    left: calc(var(--ratio-size) * 20);
    bottom: calc(var(--ratio-size) * 10);
    z-index: 2;
    font-size: calc(var(--ratio-size) * 28);
    color: #fff;
}

.screen-5 .content-main .industry .swiper-slide.swiper-slide-active {
    transform: translateX(70%) scale(1);
}

.screen-5 .content-main .industry .swiper-slide.siblings-1 {
    transform: translateX(40%) scale(.7);
}

.screen-5 .content-main .industry .swiper-slide.siblings-2 {
    transform-origin: bottom;
    transform: translateX(20%) scale(.5);
}

.screen-5 .content-main .industry .swiper-slide.siblings-2.next {
    transform-origin: top;
}

.screen-5 .content-main .industry .swiper-slide.siblings-3 {
    transform: translateX(0%) scale(.3);
}

.screen-5 .common-title-content .mask-title {
    mask-image: url('../images/ld100/screen-title-masker-long.png');
    -webkit-mask-image: url('../images/ld100/screen-title-masker-long.png');
}

.swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    transition: all .3s;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    height: 30px;
    background: var(--main-color);
    border-radius: 10000px;
}

.screen-6 .section {
    width: 100%;
    height: 100%;
}

.screen-6 .section .sec-cont-tb {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.screen-6 .section .sec-cont-tb .sec-txt {
    font-size: calc(var(--ratio-size) * 58);
    font-weight: bolder;
    text-align: center;
    margin-top: calc(var(--ratio-size) * 100);
}

.screen-6 .section .sec-cont-tb .container {
    margin-top: calc(var(--ratio-size) * 70);
}

.screen-6 .handle img {
    width: auto;
    max-width: 100%;
}

.screen-6 .section .sec-cont-tb .copyright.page-copyright {
    margin-top: auto;
}

.industry-swiper-pagination {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.industry-swiper-pagination .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
}

.industry-swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--main-color);
}

.mobile-show {
    display: none;
}

@media screen and (max-width: 768px) {
    .swiper-pagination {
        display: none;
    }

    .swiper-container>.swiper-wrapper>.swiper-slide {
        height: auto;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .swiper-container>.swiper-wrapper>.swiper-slide:nth-child(1) {
        min-height: 100vh;
    }

    .screen-1 .content-main {
        display: block;
    }

    .product-title {
        font-size: 30px;
    }

    .content-title {
        font-size: 26px;
    }

    .screen-1 .text {
        margin-top: 50px;
    }

    .screen-1 .text .mask-content .title {
        font-size: 34px;
    }

    .screen-1 .pic {
        width: 100%;
        margin-top: 40px;
    }

    .screen-1 .text .mask-content .desc {
        font-size: 24px;
    }

    .screen-2 .content-main {
        display: block;
    }

    .screen-2 .screen-product-swiper {
        width: 100%;
        margin-top: 30px;
        font-size: 16px;
    }

    .screen-2 .product-1 .content .pic-area {
        width: 100%;
    }

    .screen-2 .product-2 .content img {
        width: 100%;
    }

    .screen-2 .product-3 .content {
        height: 100%;
    }

    .screen-2 .product-3 .usage-rate {
        width: auto;
    }

    .screen-2 .product-4 .content .main-pic {
        width: 50%;
    }

    .screen-2 .product-4 .content .icon {
        width: 30px;
    }

    .screen-2 .product-4 .content .user-area .chat {
        width: 100px;
    }

    .screen-2 .product-4 .content .ai-area .chat {
        width: 150px;
    }

    .screen-2 .product-4 .content .ai-area {
        left: 10%;
    }

    .screen-2 .common-title-content p {
        margin-top: 0;
    }

    .screen-2 .switch-btn-list {
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 30px;
        justify-content: flex-start;
    }

    .screen-2 .switch-btn-list .btn-item {
        width: calc(50% - 5px);
        height: 50px;
    }

    .screen-2 .switch-btn-list .btn-item .text {
        height: 100%;
        font-size: 16px;
    }

    .screen-2 .switch-btn-list .btn-item .arrow-icon {
        width: 20px;
    }

    .screen-2 .product-3 .usage-rate {
        margin-top: 20px;
        font-size: 20px;
    }

    .screen-2 .product-3 .usage-rate .mask-content {
        padding: 10px 50px;
    }

    .screen-2 .product-1 .content {
        margin-top: 30px;
    }

    .screen-2 .product-2 .content {
        margin-top: 30px;
    }

    .screen-2 .product-4 .pic-content {
        margin-top: 50px;
    }

    .had-animated.screen-3 .prove-content {
        display: block;
        margin-top: 30px;
    }

    .screen-3 .prove-content .pic-swiper .prove-1 .pic-area {
        width: 100%;
    }

    .screen-3 .prove-content .pic-swiper {
        width: 100%;
    }

    .screen-3 .prove-content .list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
        margin-top: 20px;
    }

    .screen-3 .prove-content .item {
        width: calc(50% - 5px);
        padding: 0;
    }

    .screen-3 .prove-content .item .top {
        height: 40px;
        font-size: 16px;
    }

    .screen-3 .prove-content .item .more-text {
        margin-top: 10px;
        font-size: 14px;
        padding-bottom: 15px;
    }

    .screen-3 .prove-content .item .top .arrow-icon {
        width: 20px;
    }

    .screen-3 .prove-content .pic-swiper .prove-2 .pic {
        width: 100%;
    }

    .screen-3 .prove-content .pic-swiper .prove-2 .circle-bg {
        width: 100%;
    }

    .screen-3 .prove-content .pic-swiper .prove-3 .pic {
        width: 80%;
    }

    .screen-3 .prove-content .pic-swiper .prove-4 .pic {
        width: 80%;
    }

    .screen-3 .prove-content .pic-swiper .prove-4 .text {
        font-size: 16px;
    }

    .screen-3 .prove-content .pic-swiper .prove-4 .title {
        font-size: 18px;
    }

    .screen-3 .prove-content .pic-swiper .prove-5 .pic {
        width: 100%;
        max-width: 100%;
    }

    .screen-3 .prove-content .pic-swiper .prove-4 {
        margin-top: 0;
    }

    .screen-3 .prove-content .pic-swiper .prove-2 .pic-area {
        margin-top: 20px;
    }

    .screen-3 .prove-content .pic-swiper .prove-3 .pic-area {
        margin-top: 10px;
    }

    .screen-3 .prove-content .pic-swiper .prove-5 .pic-area {
        margin-top: 20px;
    }

    .screen-4 .content-main .product-pic {
        position: relative;
        width: 100%;
        margin-top: 20px;
    }

    .screen-4 .content-main .info-content {
        width: 100%;
    }

    .screen-5 .content-main {
        flex-direction: column-reverse;
    }

    .screen-5 .content-main .industry {
        width: 100%;
    }

    .screen-5 .content-main .right .text {
        font-size: 16px;
    }

    .screen-5 .content-main .industry .swiper-slide.swiper-slide-active {
        transform: translateX(0);
    }

    .common-title-content.reverse-style {
        text-align: left;
    }

    .common-title-content.reverse-style .mask-title {
        left: 0;
        right: auto;
    }

    .common-title-content .decoration {
        width: 100px;
    }

    .common-title-content.reverse-style .title {
        transform: translateX(-100%);
    }

    .common-title-content.reverse-style .decoration {
        margin-left: 0;
    }

    .had-animated .common-title-content.reverse-style .decoration {
        transform: translateX(calc(var(--left-area) * -1 + 50%));
    }

    .had-animated .common-title-content.reverse-style .decoration {
        opacity: 1;
        transform: translateX(calc(var(--left-area) * -1));
    }

    .had-animated.screen-5 .content-main .right .text {
        margin-top: 30px;
    }

    .screen-5 .content-main .industry .industry-swiper {
        height: auto;
        margin-top: 20px;
    }

    .screen-5 .content-main .right .text {
        text-align: left;
    }

    .screen-5 .content-main .industry {
        height: auto;
    }

    .screen-5 .content-main .industry-bg {
        display: none;
    }

    .screen-5 .content-main .industry .swiper-slide p {
        left: 15px;
        bottom: 15px;
        font-size: 16px;
    }

    .swiper-container>.swiper-wrapper>.swiper-slide.screen-6 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .screen-6 .section .sec-cont-tb .sec-txt {
        font-size: 26px;
    }

    .screen-6 .section .sec-cont-tb .container {
        margin-top: 20px;
    }

    .mobile-show {
        display: block;
    }

    .pc-show {
        display: none;
    }
}