/* 1.定义基础样式 一般图片使用一倍图jpg，使用tying进行压缩,图标使用二部图的png*/
/* 2.尽量使用标准流,其余则有规律的容器使用flex,无规律使用定位 */
/* 3.使用img构图,非必要不使用背景图 */
/* 4.标题当pc与mobile换行一致时可使用br标签,否则在pc端固定h4标题的宽度用于换行 */
/* 5.图片--pc端使用固定宽高,mobile端使用vw进行自适应 */
/* 6.一般position为absolute的元素使用vw自适应 */
/* 7.使用vw自适应时,一般使用vw,不使用vh,因为vh在部分手机上会出现滚动条 */
/* 8.mobile端中的动画--图片，必须处于正方形的div中，且整个动画内容尽量保持 3/2 的高宽比,留出空隙用于顶底部的交互 */

* {
    margin: 0;
    padding: 0;
}

.is-pc {
    display: block;
}

.is-mobile {
    display: none;
}

.large-width {
    max-width: 1200px;
    margin: 0 auto;
}

.medium-width {
    max-width: 950px;
    margin: 0 auto;
}

.part-bg {
    background-color: #0C1317;
}

.main-bg {
    background-color: #000000;
}

.cosmo-c1 {
    text-align: center;
    background-color: #000000;
    font-family: HarmonyOS Sans;
    overflow: hidden;
    word-wrap: break-word;
    text-wrap: pretty;
}

.cosmo-c1 h4 {
    color: white;
    font-size: 48px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 0;
}

.cosmo-c1 h6 {
    color: #4992FF;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 0;
}

.cosmo-c1 p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 20px;
    font-weight: 500;
    line-height: 36px;
    word-wrap: break-word;
    margin-bottom: 0;
}

/* page style */
.product-introduce {
    width: 100%;
    height: 52.08vw;
    background: url("https://hollyland.oss-us-east-1.aliyuncs.com/official-website/Cosmo-C1/banner-3-1.jpg") no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: center;
}

.product-introduce h2 {
    color: white;
    font-size: 64px;
    font-weight: 700;
    word-wrap: break-word;
    line-height: normal;
    text-align: left;
    margin-bottom: 0;
}

.product-introduce p:nth-child(1) {
    color: white;
    font-size: 32px;
    font-weight: 500;
    word-wrap: break-word;
    line-height: normal;
    margin-bottom: 30px;
    text-align: left;
    display: none;
}

.product-introduce p:nth-child(3) {
    color: white;
    font-size: 24px;
    font-weight: 400;
    word-wrap: break-word;
    line-height: normal;
    text-align: left;
    margin-top: 30px;
}

/* product profile */
.product-profile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 300px 0 185px 0;
}

.product-profile .product-profile-item {
    flex: 25%;
    margin-bottom: 115px;
}

.product-profile-item>img {
    width: 72px;
    height: 72px;
    object-fit: cover;
}

.product-profile-item>p {
    color: white;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    word-wrap: break-word;
    margin-top: 40px;
}

/* product-features-noflicker */
.product-features-noflicker {
    width: 100%;
    height: 750px;
    background: url("https://hollyland.oss-us-east-1.aliyuncs.com/official-website/Cosmo-C1/noflicker-pc.jpg") no-repeat;
    background-position: center;
    background-size: cover;
}

.product-features-noflicker>h4 {
    margin-top: 30px;
}

/* product-features-adaptive */
.product-features-adaptive {
    padding-top: 200px;
    text-align: left;
}

.product-features-adaptive>h4 {
    margin-top: 30px;
}

.product-features-adaptive>p {
    margin: 50px 0;
}

.product-features-adaptive-compare {
    width: 100%;
    height: 535px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}

.product-features-adaptive-compare img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-features-adaptive-compare .adaptive-left-btn {
    width: 250px;
    height: 40px;
    border-radius: 50px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    line-height: 36px;
    word-wrap: break-word;
    padding: 2px 0;
    position: absolute;
    left: 113px;
    bottom: 48px;
    background: rgba(0, 0, 0, 0.80);
}

.product-features-adaptive-compare .adaptive-right-btn {
    width: 250px;
    height: 40px;
    border-radius: 50px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    line-height: 36px;
    word-wrap: break-word;
    padding: 2px 0;
    position: absolute;
    right: 112px;
    bottom: 48px;
    background: linear-gradient(90deg, rgba(0, 75.13, 187.21, 0.80) 0%, rgba(73.31, 146.23, 255, 0.80) 100%);
}

/* product-features-seamless */
.product-features-seamless {
    padding-top: 200px;
    text-align: left;
}

.product-features-seamless>h4 {
    margin-top: 30px;
}

.product-features-seamless>p {
    margin: 50px 0;
}

.product-features-seamless>img {
    width: 100%;
    height: 675px;
    object-fit: cover;
    border-radius: 10px;
}

/* product-features-all */
.product-features-all {
    width: 800px;
    margin: 0 auto;
    padding-top: 200px;
    text-align: left;
}

.product-features-all>h4 {
    margin-top: 30px;
}

.product-features-all>p {
    margin: 50px 0;
}

.product-features-all em {
    font-size: 18px;
    font-style: normal;
}

.product-features-all-scene {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    position: relative;
}

.product-features-all-scene>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    /* => inset(0 0 0 100%); 左侧 100% => 80% => 60% => 10% => 0 从右到左 */
    /* clip-path: inset(0 0 0 100%); */
    transition: clip-path 0.4s, opacity 0.8s;
}

.product-features-all-scene .active {
    opacity: 1;
    /* clip-path: inset(0 0 0 0); */
}

.product-features-all-scene .scene-btn {
    width: 100px;
    height: 200px;
    background: #262626;
    border-radius: 50px;
    position: absolute;
    top: 0;
    right: -150px;
}

.scene-btn .circle {
    width: 80px;
    height: 80px;
    margin: 10px;
    border-radius: 50%;
    background-color: #004BBB;
    transition: all 0.5s;
}

.scene-btn .scene-top-btn {
    width: 40px;
    height: auto;
    object-fit: cover;
    position: absolute;
    top: 34px;
    left: 30px;
    cursor: pointer;
}

.scene-btn .scene-bottom-btn {
    width: 40px;
    height: auto;
    object-fit: cover;
    position: absolute;
    bottom: 34px;
    left: 30px;
    cursor: pointer;
}

/* product-features-a */
.product-features-a {
    padding-top: 200px;
    padding-bottom: 200px;
    text-align: left;
}

.product-features-a>h4 {
    margin-top: 30px;
    line-height: 56px;
}

.product-features-a>p {
    margin: 50px 0;
}

.product-features-a-img {
    width: 100%;
    height: 675px;
    object-fit: cover;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.product-features-a-img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-features-a-img>h1 {
    color: #4992FF;
    font-size: 160px;
    font-weight: 700;
    line-height: 36px;
    word-wrap: break-word;
    margin-bottom: 0;
    position: absolute;
    top: 127px;
    left: 50%;
    transform: translate(-50%, 0);
}

.product-features-a-img>h2 {
    color: #4992FF;
    font-size: 64px;
    font-weight: 700;
    line-height: 36px;
    word-wrap: break-word;
    margin-bottom: 0;
    position: absolute;
    top: 269px;
    left: 50%;
    transform: translate(-50%, 0);
}

/* product-features-hdmi , product-features-cosmo*/
.product-features-hdmi,
.product-features-cosmo {
    width: 100%;
    height: 100vh;
    position: relative;
}

.animate-progress-bg {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}

.animate-progress-bg img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.animate-progress-cover {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000000;
    opacity: 0;
}

.animate-progress-content {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.animate-progress-content>h4,
.animate-progress-content>h6,
.animate-progress-content>p {
    width: 1250px;
}

.animate-progress-content>h4 {
    margin-top: 30px;
    line-height: 56px;
}

.animate-progress-content>p {
    font-size: 24px;
    margin-top: 50px;
}

.product-features-cosmo .animate-progress-content>h4 {
    margin-top: 0;
    padding: 0 50px 0 25px;
}

.product-features-cosmo .animate-progress-content>p {
    color: white;
}

/* product-features-port */
.product-features-port {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.port-item {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
}

.port-item-content,
.port-item-prototype {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: left;
    flex-direction: column;
    justify-content: center;
}

.port-item-prototype {
    align-items: start;
}

.port-item-content {
    min-width: 500px;
}

.port-item-text {
    width: 500px;
}

.port-item-content h4 {
    line-height: 56px;
    margin-bottom: 50px;
}

.port-item-prototype {
    padding: 50px 0;
}

.port-item-prototype>img {
    /* width: 100%; */
    height: 80%;
    object-fit: contain;
}

/* product-features-technology */
.product-features-technology {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.product-technology-item {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-technology-item>.product-technology-item-img {
    width: 500px;
    height: 500px;
    margin-right: 100px;
}

.product-technology-item-img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-technology-item .product-technology-item-content {
    width: 600px;
    text-align: left;
}

.product-technology-item-content h4 {
    margin-top: 30px;
    line-height: 56px;
}

.product-technology-item-content p {
    color: white;
    margin-top: 50px;
}

/* product-final-applications */
.product-final-applications {
    padding-top: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-final-img {
    flex: 1;
    margin-right: 10px;
}

.product-final-img>img {
    width: 100%;
    height: 676px;
    object-fit: cover;
    border-radius: 10px;
}

.product-final-img-more {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.product-final-img-more>img {
    flex: 1;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.product-final-img-more :first-child {
    margin-bottom: 10px;
}

/* packing list */
.packing-list {
    padding-top: 250px;
}

.packing-list>h4 {
    color: #FFF;
    font-family: HarmonyOS Sans;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
    /* 133.333% */
}

.packing-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 64px 0 69px 0;
}

.packing-left,
.packing-right {
    flex: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.packing-left img {
    width: calc(100% - 6px);
    object-fit: cover;
    border-radius: 12px;
    background-color: #101010;
}

.packing-left h6 {
    color: #F5F5F7;
    text-align: center;
    font-family: HarmonyOS Sans;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    /* 116.667% */
    position: absolute;
    bottom: 70px;
    left: 0;
    text-align: center;
    width: calc(100% - 6px);
}

.packing-right-item {
    flex: calc((100% - 30px) / 3) 0 0;
    position: relative;
    margin: 6px;
}

.packing-right-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    background-color: #101010;
}

.packing-right-item p {
    color: #F5F5F7;
    font-family: HarmonyOS Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    /* 128.571% */
    position: absolute;
    left: 20px;
    top: 20px;
    text-align: left;
    width: calc(100% - 40px);
}

/* setup list */
.setup-list {
    padding: 175px 0 200px 0;
}

.setup-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 100px;
}

.setup-header h4 {
    font-size: 48px;
    font-weight: 700;
    line-height: 64px;
    word-wrap: break-word;
}

.setup-header div {
    color: #02A1F9;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    word-wrap: break-word;
    cursor: pointer;
}

.setup-header div img {
    width: 17px;
    height: 8.5px;
    transform: rotate(270deg);
    margin-left: 6.5px;
}

.setup-header div a {
    text-decoration: none;
    color: #02A1F9;
}

.setup-list .swiper {
    height: 500px;
    --swiper-pagination-bullet-horizontal-gap: 8px;
    --swiper-pagination-bullet-width: 15px;
    --swiper-pagination-bullet-height: 15px;
    --swiper-pagination-bullet-inactive-color: #2D2D2D;
    --swiper-theme-color: #02A1F9;
    --swiper-pagination-bullet-inactive-opacity:1;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 7px !important;
}

.setup-list .swiper-slide {
    letter-spacing: 0em;
    text-align: center;
    height: 419px;
    background: #111111;
    border-radius: 10px;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.setup-list .swiper-slide img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    padding: 20px;
}

.setup-list .swiper-slide a {
    text-decoration: none;
}

.setup-list .swiper-slide p {
    color: white;
    width: 280px;
    max-height: 90px;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    word-wrap: break-word;
    margin: 0 auto;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
    /* 显示行数 */
    text-overflow: ellipsis;
}

/* profile-specifications */
.profile-specifications-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.profile-specifications-header h4 {
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    word-wrap: break-word;
}

.profile-specifications-header .nav {
    --bs-nav-pills-link-active-bg: transparent;
    --bs-nav-link-padding-x: 0;
    --bs-nav-link-padding-y: 0;
}

.profile-specifications-header .btn-container {
    background: #262626;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px;
    width: 333px;
    position: relative;
}

.profile-specifications-header .btn-container::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 160px;
    height: calc(100% - 12px);
    /* 设置透明度 */
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: #C10016;
    transition: transform 0.5s ease;
    /* 添加过渡效果 */
}

.profile-specifications-header .btn-container li {
    flex: 1;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 56px;
    position: relative;
    z-index: 11;
}

.profile-specifications-header .btn-container li button {
    width: 100%;
    height: 100%;
    color: white;
}

.highlighted::after {
    transform: translateX(100%);
    /* 将伪元素移动到右侧 */
}

.profile-desc-item {
    text-align: left;
    border-top: 1px rgba(255, 255, 255, 0.50) solid;
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
    flex: 50%;
}

.profile-desc-item h6 {
    color: white;
    font-size: 20px;
    font-weight: 400;
    line-height: 56px;

    text-align: left;
    background: transparent;
    background-clip: unset;
    -webkit-text-fill-color: white;
}

.profile-desc-item .light-color {
    color: #FF0000;
}

.profile-desc-item p {
    color: #898A8E;
    font-size: 20px;
    font-weight: 400;
    line-height: 56px;
    text-align: left;
}

.profile-desc-item h6,
.profile-desc-item p {
    flex: 1;
}

@media screen and (min-width: 1200px) {
    .packing-left img {
        width: 100%;
    }
}

@media screen and (min-width:768px) {
    .packing-right :nth-child(3n+3) {
        margin-right: 0;
    }
}

@media screen and (max-width: 991px) {
    .is-pc {
        display: none;
    }

    .is-mobile {
        display: block;
    }

    .large-width,
    .medium-width,
    .large-title,
    .medium-title {
        width: 100%;
    }

    .cosmo-c1 h4 {
        font-size: 27px;
        line-height: 32px;
    }

    .cosmo-c1 h6 {
        font-size: 15px;
        line-height: 18px;
    }

    .cosmo-c1 p {
        font-size: 12px;
        line-height: 18px;
    }

    /* product profile */
    .product-profile {
        padding: 75px 0 25px 0;
    }

    .product-profile .product-profile-item {
        flex: 50%;
        margin-bottom: 50px;
    }

    .product-profile-item>img {
        width: 32.5px;
        height: 32.5px;
    }

    .product-profile-item>p {
        font-size: 12px;
        line-height: 18px;
        margin-top: 15px;
    }

    /* product-features-noflicker */
    .product-features-noflicker {
        height: 500px;
    }

    .product-features-noflicker>h4 {
        padding: 0 30px;
        margin-top: 25px;
    }

    /* product-features-adaptive */
    .product-features-adaptive {
        padding-top: 100px;
        background-color: #000000;
    }

    .product-features-adaptive>h4,
    .product-features-adaptive>h6,
    .product-features-adaptive>p {
        padding: 0 25px;
    }

    .product-features-adaptive>h4 {
        margin-top: 15px;
    }

    .product-features-adaptive>p {
        margin: 25px 0;
    }

    .product-features-adaptive-compare {
        height: 71.33vw;
        border-radius: 0;
    }

    .product-features-adaptive-compare .adaptive-left-btn {
        width: 33.33vw;
        max-width: 160px;
        height: 10.66vw;
        max-height: 40px;
        border-radius: 25px;
        font-size: 12px;
        line-height: 15px;
        padding: 6px 10px;
        left: 10vw;
        bottom: 6.66vw;
    }

    .product-features-adaptive-compare .adaptive-right-btn {
        width: 33.33vw;
        max-width: 160px;
        height: 10.66vw;
        max-height: 40px;
        border-radius: 25px;
        font-size: 12px;
        line-height: 15px;
        padding: 6px 10px;
        right: 10vw;
        bottom: 6.66vw;
    }

    /* product-features-seamless */
    .product-features-seamless {
        padding-top: 100px;
        background-color: #000000;
    }

    .product-features-seamless>h4,
    .product-features-seamless>h6,
    .product-features-seamless>p {
        padding: 0 25px;
    }

    .product-features-seamless>h4 {
        margin-top: 15px;
    }

    .product-features-seamless>p {
        margin: 25px 0;
    }

    .product-features-seamless>img {
        height: 90vw;
        max-height: 675px;
        border-radius: 0;
    }

    /* product-features-all */
    .product-features-all {
        width: 100%;
        padding-top: 100px;
        background-color: #000000;
    }

    .product-features-all>h4,
    .product-features-all>h6,
    .product-features-all>p {
        padding: 0 25px;
    }

    .product-features-all>h4 {
        margin-top: 15px;
    }

    .product-features-all>p {
        margin: 25px 0;
    }

    .product-features-all em {
        font-size: 11px;
    }

    .all-mobile-swiper {
        width: 100%;
        height: 80vw;
        --swiper-theme-color: #02A1F9;
        --swiper-pagination-bullet-inactive-opacity:1;
        --swiper-pagination-color: linear-gradient(90deg, #004BBB 0%, #4992FF 100%);
        --swiper-pagination-bullet-inactive-color: rgba(255, 255, 255, 0.40);
    }

    .all-mobile-swiper .swiper-slide {
        height: 71.33vw;
    }

    .all-mobile-swiper .swiper-slide>img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* product-features-a */
    .product-features-a {
        padding-top: 100px;
        padding-bottom: 100px;
        background-color: #000000;
    }

    .product-features-a>h4,
    .product-features-a>h6,
    .product-features-a>p {
        padding: 0 25px;
    }

    .product-features-a>h4 {
        margin-top: 15px;
    }

    .product-features-a>p {
        margin: 25px 0;
    }

    .product-features-a-img {
        height: 90vw;
        border-radius: 0;
    }

    .product-features-a-img>img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .product-features-a-img>h1 {
        font-size: 64px;
        line-height: 18px;
        top: 32.93vw;
    }

    .product-features-a-img>h2 {
        font-size: 32px;
        line-height: 18px;
        top: 48.93vw;
    }

    .animate-progress-content {
        text-align: left;
    }

    .animate-progress-content>h4,
    .animate-progress-content>h6,
    .animate-progress-content>p {
        width: 100%;
        padding: 0 25px;
    }

    .animate-progress-content>h4 {
        margin-top: 15px;
    }

    .animate-progress-content>p {
        margin-top: 25px;
    }

    /* product-features-port 手机端*/
    .product-features-port {
        height: 100vh;
    }

    .port-item {
        padding-top: 50px;
        justify-content: flex-end;
        flex-direction: column-reverse;
    }

    .port-item-content {
        margin-top: 50px;
        justify-content: start;
    }

    .port-item-content {
        flex: none;
        min-width: 100%;
        height: 50vw;
    }

    .port-item-prototype {
        padding: 0;
        flex: none;
        width: 100vw;
        max-width: 600px;
        max-height: 600px;
        height: 100vw;
    }

    .port-item-prototype>img {
        width: 100%;
        height: 100%;
    }

    .port-item-text {
        width: calc(100% - 25px);
    }

    .port-item-content h4 {
        margin-bottom: 25px;
    }

    .port-item-content p {
        font-size: 15px;
    }

    /* product-final-applications */
    .product-final-applications {
        padding-top: 100px;
        flex-direction: column;
    }

    .product-final-img {
        width: calc(100% - 75px);
        height: 90vw;
        margin-right: 0;
        margin-bottom: 15px;
        border-radius: 5px;
    }

    .product-final-img-more {
        width: calc(100% - 75px);
        height: 44.4vw;
        border-radius: 5px;
    }

    .product-final-img>img,
    .product-final-img-more>img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .product-final-img-more :first-child {
        margin-bottom: 15px;
    }

    /* packing-list */
    .packing-list {
        padding-top: 100px;
    }

    .packing-list>h4 {
        font-size: 24px;
        line-height: 32px;
    }

    .packing-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 35px 0 0 0;
    }

    .packing-left {
        width: calc(100% - 50px);
        justify-content: center;
    }

    .packing-right {
        width: calc(100% - 50px);
        justify-content: flex-start;
    }

    .packing-left img {
        width: 100%;
        max-height: 600px;
    }

    .packing-left h6 {
        font-size: 12px;
        line-height: 14px;
        width: 100%;
        bottom: 35px;
    }

    .packing-right-item {
        flex: calc((100% -24px) / 3) 1 1;
        height: auto;
        margin: 12px 12px 0 0;
    }

    .packing-right-item p {
        font-size: 12px;
        line-height: 15px;
        top: 15px;
        left: 15px;
        width: calc(100% - 30px);
    }

    .learn-more {
        color: #02A1F9;
        text-decoration: none;
        font-size: 12px;
        font-weight: 500;
        line-height: 18px;
        word-wrap: break-word;
        margin-top: 35px;
        display: block;
        cursor: pointer;
    }

    .learn-more img {
        width: 8.5px;
        height: 4.25px;
        margin-left: 5.37px;
    }

    /* setup list */
    .setup-list {
        padding: 100px 0;
    }

    .setup-header {
        align-items: center;
        justify-content: center;
        margin-bottom: 35px;
    }

    .setup-header h4 {
        font-size: 24px;
        line-height: 32px;
        text-align: center;
    }

    .setup-list .learn-more {
        margin-top: 50px;
        font-size: 12px;
        line-height: 18px;
        font-weight: 500;
        word-wrap: break-word;
    }

    .setup-list .learn-more img {
        width: 8.5px;
        height: 4.25px;
        transform: rotate(270deg);
        margin-left: 7.5px;
    }

    .setup-list .learn-more a {
        text-decoration: none;
        color: #02A1F9;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .setup-list .swiper {
        height: 65.86vw;
        max-height: 500px;
        --swiper-pagination-bullet-horizontal-gap: 4px;
        --swiper-pagination-bullet-width: 8px;
        --swiper-pagination-bullet-height: 8px;
        --swiper-pagination-bullet-inactive-opacity:1;
    }

    .swiper-horizontal>.swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal {
        bottom: 0px !important;
    }

    .setup-list .swiper-slide {
        width: calc((100% - 65px)/2);
        height: 54.66vw;
        max-height: 410px;
        border-radius: 5px;
    }

    .setup-list .swiper-slide img {
        width: 100%;
        height: 41.33vw;
        max-height: 310px;
        border-radius: 5px;
    }

    .setup-list .swiper-slide p {
        width: 100%;
        font-size: 12px;
        line-height: 15px;
        text-align: center;
        padding: 0 10px;
        max-height: 45px;
    }

    /* profile-specifications */
    .profile-specifications {
        padding: 0 37.5px;
    }

    .profile-specifications-header {
        flex-direction: column;
        align-items: normal;
        margin-bottom: 0px;
    }

    .profile-specifications-header h4 {
        font-size: 24px;
        line-height: 28px;
        text-align: left;
    }

    .profile-specifications-header .btn-container {
        margin: 35px 0px;
        border-radius: 25px;
        padding: 0 3px;
        width: 206px;
    }

    .profile-specifications-header .btn-container::after {
        top: 3px;
        left: 3px;
        width: 100px;
        height: calc(100% - 6px);
        border-radius: 25px;
    }

    .profile-specifications-header .btn-container li {
        flex: 1;
        font-size: 12px;
        line-height: 28px;
        cursor: pointer;
        padding: 2px 0;
    }

    .profile-desc-item {
        padding: 25px 0;
    }

    .profile-desc-item>h6 {
        font-size: 12px;
        line-height: 18px;
    }

    .profile-desc-item>p {
        font-size: 12px;
        line-height: 18px;
    }

    .profile-desc-item h6 {
        flex: 32%;
        color: white;
        margin-right: 50px;
    }

    .profile-desc-item p {
        flex: 68%;
        padding: 0;
        color: #898A8E;
    }
}

@media screen and (max-width: 767px) {
    /* baner */
    .product-introduce {
        height: 133.33vw;
        background: url("https://hollyland.oss-us-east-1.aliyuncs.com/official-website/Cosmo-C1/banner-3-1-mobile.jpg") no-repeat;
        background-position: center;
        background-size: cover;
        align-items: center;
        justify-content: start;
    }

    .product-introduce h2 {
        font-size: 32px;
        margin-left: 0;
        padding-top: 50px;
        text-align: center;
    }

    .product-introduce p:nth-child(1) {
        font-size: 12px;
        margin-left: 0;
        margin-bottom: 25px;
        margin-top: 20px;
        text-align: center;
    }

    .product-introduce p:nth-child(3) {
        font-size: 12px;
        margin-left: 0;
        margin-top: 15px;
        text-align: center;
    }

    /* port */
    .port-item{
        justify-content: center;
    }

    /* product-features-technology */
    .product-technology-item {
        flex-direction: column;
    }

    .product-technology-item>.product-technology-item-img {
        width: 100vw;
        height: 100vw;
        margin-right: 0;
        margin-bottom: 25px;
    }

    .product-technology-item-img>img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .product-technology-item .product-technology-item-content {
        width: calc(100% - 50px);
        text-align: left;
    }

    .product-technology-item-content h4 {
        margin-top: 15px;
    }

    .product-technology-item-content p {
        margin-top: 25px;
    }

    /* 调整packing list */
    .packing-right-item {
        flex: calc((100% - 12px) / 2) 0 0;
        height: auto;
        margin: 12px 12px 0 0;
    }

    .packing-right :nth-child(2n+2) {
        margin-right: 0;
    }
}