/* header 样式 */
/* CSS 变量 */
:root {
  --primary-color: #007BFF;
  --nav-bg-color: rgba(0, 0, 0, 0.5);
  --text-color: #ffffff;
}

/* header_top 样式 */
.header_top {
  position: fixed; /* 固定在顶部 */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  text-align: center;
}

/* 桌面端导航  */
.header_ul {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--nav-bg-color);
  padding: 28px 0;
}

.header_ul li {
  padding: 10px 30px;
  font-size: 18px;
  font-family: 'Didot LT Std';
  color: var(--text-color);
}

.header_ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-family: 'Didot LT Std'; 
  transition: color 0.3s;
}

.header_ul li a:hover {
  color: var(--primary-color); /* 悬停时文字颜色变化 */
}

.header_ul li:nth-child(3) {
  width: 35%;
  text-align: center;
}

.header_ul img {
  width: 260px;
}

/* 移动端导航——默认在桌面端隐藏 */
.m_header_top {
  display: none; /* 桌面端隐藏 */
}

.m_header {
  display: none; /* 默认隐藏 */
}

/* 覆盖层样式 */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none; /* 初始隐藏 */
  z-index: 999; /* 低于侧边栏菜单 */
  opacity: 0;
  transition: opacity 0.3s ease;
}




/*banner*/
.banner {
    position: relative;
    width: 100%; /* 根据需要调整宽度 */
    max-width: 1920px; /* 可选：限制最大宽度 */
    margin: 0 auto;
    height:auto;
}

.banner .banner_img {
    display: block;
    width: 100%; 
    height: 75rem;
    background-image: url(./../images/banner20250712.jpg);
    background-size: contain;
    background-repeat: no-repeat;
}
.m_banner{
    display: none;
}

.banner_item {
    display: block;
    position: absolute;
    bottom: 10%; /* 距离图片底部的距离，可根据需求调整 */
/*    left: 46%;*/
/*    transform: translateX(-50%);*/
    text-align: center;
    color: white; /* 文本颜色 */
    width: 100%;

    padding: 10px 0px;
    border-radius: 8px; /* 可选：让背景更有层次感 */
}
.m_banner_item{
    display: none;
}
.ban_tit{
    display: flex;
    justify-content: center;
    align-items: center;
}
.ban_tit div {
    font-family: TiffanyITCbyBT-Light;
    font-size: 1.2rem; /* 调整字体大小 */
    line-height: 1.2; /* 行高 */
    margin: 5px 20px; /* 调整间距 */
    display: flex;
    font-style: italic;
}
.ban_tit .big_tit{
    font-family: TiffanyITCbyBT-Light;
    font-size: 9rem;
    font-weight: normal;
    font-style: italic;
    font-stretch: normal;
    letter-spacing: 0rem;
    color: #ffffff;
}





/*The Story of  Vhen When*/

.section_story{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin:6rem 0 4.35rem 0;
}
.story_title{
    width: 100%;
    max-width: 1400px;
    text-align: left;
    padding-bottom: 3.4rem;
}
.story_title h2{
    font-size: 2.94rem;
    letter-spacing: 0rem;
    color: #000000;
    font-family: 'TiffanyITCbyBT-Light';
}

.story_details{
    width: 100%;
    max-width: 1420px;
    display: flex;
    justify-content: center;
}

.story_left{
    width: 35%;
    display: block;
    padding: 0 20px 0 0;
    overflow: hidden;
}
.story_left p{
    font-size: 1.06rem;
    font-style: italic;
    line-height: 1.2rem;
    padding: 0.6rem 0;
    font-family: 'TiffanyITCbyBT-Light';
}
.story_left img{
   /*width: 15.12rem;
    height: 14.65rem;*/
    padding: 2rem 0;
    display: block;
}
.story_right{
    width: 65%;
    display: block;
    padding:0 0 0 20px;
    overflow: hidden;
}
.story_right img{
    width: 100%;
/*    height: 34.35rem;*/
}



/*Continuation*/
.section_Legend{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:13.29rem 0 13.29rem 0;
    background-color: #271c1a;
}
.Legend_content{
    width:1420px;
    display: flex;
    justify-content: space-between;
}
.Legend_left{
    width: 50%;
    
}
.Legend_left img{
    width: 37.18rem;
    height: 37.06rem;
}
.Legend_right{
    width: 46%;
    display: flex;
    flex-direction: column;
    justify-content: center;
/*    align-items: center;*/
}
.Legend_right h2{
    font-size: 2.94rem;
    font-weight: 400;
    line-height: 3.3rem;
    padding-bottom: 2.4rem;
    color: white;
    font-family: 'TiffanyITCbyBT-Light';
}
.Legend_right p{
    color: white;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.4rem;
    font-family: 'TiffanyITCbyBT-Light';
}


/* Exploring the romantic balance*/
.section_balance{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:18.17rem 0 20.65rem 0;
    background-image: url(../images/exploring_background.png);
/*    background-repeat: no-repeat;*/
}
.balance_conten{
    width: 100%;
    max-width: 1420px;
    text-align: center;
}
.balance_conten h1{
    font-size: 2.94rem;
    font-weight: 400;
    line-height: 3.2rem;
    margin-bottom:6.41rem ;
    font-family: 'TiffanyITCbyBT-Light';
}
.balance_conten p{
    font-size: 1.12rem;
    font-style: italic;
    font-family: 'TiffanyITCbyBT-Light';
}


/*collagen*/
.section_collagen{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:9.41rem 0 10rem 0;
    background-color: white;
}
.collagen_content{
    width: 100%;
    max-width:1420px;
    display: flex;
    justify-content: space-evenly;
}
.collagen_left{
    display: flex;
}
.collagen_img1{
    padding:0 5px;
}
.collagen_img1 img{
    width: 100%;
}
.collagen_img2{
}
.collagen_img2 img{
    padding:2rem 0 0 1rem;
}

.collagen_shop{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}
.collagen_shop_top{
    display: flex;
    justify-content: center;
    align-items: center;
}
.collagen_shop_top .advantage{
    display: block;
}
.collagen_shop_top .advantage h1{
    font-size: 4.2rem;
    color: #000;
    font-family: 'TiffanyITCbyBT-Light';
    padding-bottom: 2rem;
}
.collagen_shop_top span{
    display: flex;
    flex-direction: column-reverse;
    font-size: 1.76rem;
    font-family: 'TiffanyITCbyBT-Light';
    color: #000;
    font-style: italic;
}
.collagen_shop_top img{
/*    width: 50%;*/
}
.collagen_shop button{
    width: 21.18rem;
    height: 3.76rem;
    background-color: #000000;
    border-radius: 1.88rem;
    color: #fff;
    font-size: 2.32rem;
    margin-top: 3.12rem;
    margin-bottom: 6.88rem;
    font-family: 'TiffanyITCbyBT-Light';
}
.collagen_shop p{
    font-size: 1.2rem;
    font-family: 'TiffanyITCbyBT-Light';
}






/*100% imported */
.section_imported{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:8.17rem 0 10.65rem 0;
    background-color: white;
}
.imported_content{
    width: 100%;
    max-width: 1420px;
    display: flex;
}

.imported_left{
    width: 40%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.imported_left_center{
    width: fit-content;
}
.imported_left h2{
    font-size: 2.94rem;
    font-weight: 400;
    color: #000000;
    font-family: 'TiffanyITCbyBT-Light';
    padding-bottom: 3rem;
    text-align: center;
}
.imported_left strong{
    font-size: 4.23rem;
    font-weight: 500;
}
.imported_left p{
    font-size: 1.12rem;
    font-style: italic;
    font-family: 'TiffanyITCbyBT-Light';
    text-align: center;
    color: #000000;
}

.imported_right{
    width: 60%;
    overflow: hidden;
}

/*swiper 选项卡*/
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.5rem;
    object-fit: cover;
}
/* Swiper wrapper 与下划线 (scrollbar) 之间的距离 */
.mySwiper .swiper-wrapper {
    margin-bottom: 6rem; /* 设置与下划线的距离为 20px */
}

/* 滚动条样式调整 */
.mySwiper .swiper-scrollbar {
    margin-top: 6rem; /* 确保滚动条与其他内容有一定的间距 */
}




/*Sunscreen*/

.section_sunscreen{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:9.41rem 0 13.53rem 0;
    background-color: white;
}
.sunscreen_content{
    width: 100%;
    max-width:1420px;
    display: flex;
    justify-content: space-between;
}
.sunscreen_left{
    width: 64%;
    display: flex;
}
.sunscreen_img1{
    /*width: 30%;
    height: 40.71rem;*/
    padding:0 5px;
}
.sunscreen_img1 img{
    width: 100%;
/*    height: 100%;*/
}
.sunscreen_img2{
/*    width: 21%;*/
/*    height: 30.12rem;*/
/*    padding:0 5px;*/
}
.sunscreen_img2 img{
/*    width: 100%;*/
/*    height: 100%;*/
    padding:0 0 1rem 1rem;
}

.sunscreen_shop{
/*    width:30%;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
/*    padding: 0 0 0 4rem*/
}
.sunscreen_shop_top{
    display: flex;
    justify-content: center;
    align-items: center;
}
.sunscreen_shop_top .advantage{
    display: block;
}
.sunscreen_shop_top .advantage h1{
    font-size: 4.2rem;
    color: #000;
    font-family: 'TiffanyITCbyBT-Light';
    padding-bottom: 2rem;
}
.sunscreen_shop_top span{
    display: flex;
    flex-direction: column-reverse;
/*    width: 50%;*/
    font-size: 1.76rem;
    font-family: 'TiffanyITCbyBT-Light';
    color: #000;
    font-style: italic;
}
.sunscreen_shop_top img{
/*    width: 50%;*/
}
.sunscreen_shop button{
    width: 21.18rem;
    height: 3.76rem;
    background-color: #000000;
    border-radius: 1.88rem;
    color: #fff;
    font-size: 2.32rem;
    margin-top: 3.12rem;
    margin-bottom: 6.88rem;
    font-family: 'TiffanyITCbyBT-Light';
}
.sunscreen_shop p{
    font-size: 1.2rem;
    font-family: 'TiffanyITCbyBT-Light';
}



/*section_streamer 横幅 */
.section_streamer{
    width: 100%;
    display: flex;
/*    flex-wrap: wrap;*/
    justify-content: space-between;
}
.separate_img{
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.separate_img span{
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: bold;
    position: relative;
    bottom: 3.7rem;
    z-index: 2;
    text-transform: uppercase;
}
.section_streamer img{
    width: 100%;
    height: 100%;
    padding: 0 5px;
}
.m_black{
    display: none;
}



/*GP4G SP™*/
.section_extremophile{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 17.9rem 0;
}
.extremophile_content{
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section_extremophile_left{
    width: 40%;
}
.section_extremophile_left h2{
    font-size: 2.9rem;
    color: #000;
    font-family: 'TiffanyITCbyBT-Light';
    padding-bottom: 2.9rem;

}
.section_extremophile_left p{
    font-size: 1.1rem;
    font-family: 'TiffanyITCbyBT-Light';
    color: #000;
    font-style: italic;
}


/*Schminder Technology*/
.section_technology{
    width: 100%;
    height: 63rem;
    display: flex;
}
.technology_left{
    width: 42.5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url(./../images/technologybg.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.technology_left h2{
    font-size: 2.6rem;
    color: #ffffff;
    margin-bottom: 3.3rem;
    font-family: 'TiffanyITCbyBT-Light';
}
.technology_left .line{
    width: 2.8rem;
    height: 1px;
    border-top: solid 0.15rem #ffffff;
    margin-bottom: 3.9rem;
/*    background-color: #ffffff;*/
}
.technology_left p{
    font-size: 1.2rem;
    font-weight: normal;
    font-stretch: normal;
    color: #ffffff;
    font-family: 'TiffanyITCbyBT-Light';
}

.technology_right{
    width: 57.5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #271c1a;
}
.technology_right h2{
    width: 64%;
    font-size: 2.6rem;
    color: #ffffff;
    font-family: 'TiffanyITCbyBT-Light';
    padding-bottom: 2.4rem;
}
.technology_right p{
    width: 64%;
    font-size: 1.1rem;
    font-weight: normal;
    font-stretch: normal;
    font-family: 'TiffanyITCbyBT-Light';
    font-style: italic;
}


/*Resisting oxidation*/

.section_oxidation{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 17.9rem 0;
}
.oxidation_content{
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section_oxidation_left{
    width: 40%;
}
.section_oxidation_left h2{
    font-size: 2.9rem;
    color: #000;
    font-family: 'TiffanyITCbyBT-Light';
    padding-bottom: 2.9rem;
}
.section_oxidation_left p{
    font-size: 1.1rem;
    font-family: 'TiffanyITCbyBT-Light';
    color: #000;
    font-style: italic;
}
.section_oxidation_right{
/*    display: block;*/
    position: relative;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section_oxidation_right p{
    position: absolute;
/*    top: 10px;*/
    font-size: 2.1rem;
    z-index: 2;
    color: #ffffff;
    font-family: 'TiffanyITCbyBT-Light';
    text-align: center;
    text-transform: uppercase;
}





/*footer*/
.footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #271c1a;
    border: solid 1px rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
    padding-bottom: 4rem;
}
.footer_content{
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
    margin-bottom: 10rem;
}
.footer_content .ft_item{
    width: 30%;
/*  padding-bottom: 3rem;*/
}

.footer_content .ft_item:nth-of-type(2){
    text-align: center;
}
.footer_content .ft_item:nth-of-type(3){
    text-align: right;
}

.ft_item_cont{
    padding-bottom: 3rem;

}
.ft_item_cont a{
    font-family: TiffanyITCbyBT-Light;
    font-size: 1rem;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 0rem;
    color: #ffffff;
    padding:0 3rem 0 0rem;
}

.ft_item_logo{
    width: 12rem;
}

.footer_bottom{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 1px rgba(255, 255, 255, 0.1);
}
.footer_bottom .content{
    font-family: TiffanyITCbyBT-Light;
    font-size: 1rem;
    font-weight: normal;
    font-style: italic;
    font-stretch: normal;
    line-height: 4rem;
    letter-spacing: 0rem;
    color: #6c6c6c;
/*  padding-bottom: 8rem;*/
}




@media screen and (max-width: 768px) {
    .nav-container {
        width: 100%;
    }

    .mb_nav_banner{
        position: relative;
        width:100%;
        display: flex; 
        justify-content: space-between;
        align-items: center;
    }

    .nav-header {
        margin-bottom: 10px;
    }

    .menu-icon {
        display: block; /* Show menu icon on mobile */
    }

    .nav-list {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        background-color: #000;
        padding: 0;
    }

    .nav-list li {
        width: 100%;
        margin: 0;
    }

    .nav-list li a {
        width: 100%;
        padding: 14px 20px;
        box-sizing: border-box;
    }

    .logo-placeholder {
        display: none;
    }

    /* 隐藏桌面端导航 */
      .header_ul {
        display: none;
      }

      /* 显示移动端导航容器 */
      .m_header_top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: var(--nav-bg-color);
        padding: 16px 20px;
      }

      /* 汉堡菜单图标 */
      .menu_icon img {
        width: 24px;
        height: 24px;
        cursor: pointer;
        transition: opacity 0.3s;
      }

      /* 移动端Logo */
      .m_logo {
        width: 6rem;
      }

      /* 搜索和购物车图标容器 */
      .m_ricon {
        display: flex;
        gap: 10px;
      }

      /* 搜索和购物车图标 */
      .m_ricon img {
        width: 28px;
        cursor: pointer;
        transition: opacity 0.3s;
      }

      /* 侧边栏菜单 */
      .m_header_sidebar {
        position: fixed;
        top: 0;
        left: -100%; /* 初始隐藏 */
        width: 250px;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 60px 20px;
        transition: left 0.3s ease;
        z-index: 1001;
        display: none; /* 默认隐藏 */
        flex-direction: column;
      }

      /* 显示侧边栏菜单时 */
      .m_header_sidebar.active {
        display: flex; /* 显示侧边栏 */
        left: 0; /* 滑入视图 */
      }

      /* 关闭按钮 */
      .close_icon img {
        width: 24px;
        height: 24px;
        cursor: pointer;
        position: absolute;
        top: 20px;
        right: 20px;
        transition: opacity 0.3s;
      }

      /* 移动端菜单列表 */
      .m_header {
        list-style: none;
        margin-top: 60px;
        display: block;
        flex-direction: column;
        gap: 20px;
      }

      .m_header.active {
        display: flex; /* 显示菜单 */
      }

      .m_header li {
        font-size: 20px;
        line-height: 3rem;
      }

      .m_header li a {
        text-decoration: none;
        color: var(--text-color);
        transition: color 0.3s;
      }

      .m_header li a:hover {
        color: var(--primary-color);
      }

      /* 增加动画反馈 */
      .menu_icon img:hover, .close_icon img:hover, .m_ricon img:hover {
        opacity: 0.7;
      }


    /* banner*/
    .banner{
        width: 100%;
    }
    .banner_item{
        width: 100%;
        overflow: hidden;
        display: none;
    }
    .banner .banner_img{
        display: none;
    }
    .m_banner{
        display: block;
        background-image:
            linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
            url(../../static/images/banner20250712.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        width: 100%;
        height: 34rem;
    }

    .banner_item{
        bottom: auto;
        top: 0px;
        padding: 0px;
    }
    .ban_tit{
        flex-wrap: wrap;
    }
    .m_banner_item{
        display: block;
        width: 100%;
        top: 24%;
        position: absolute;
        text-align: center;
    }
    .m_ban_tit{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .tit_name{
        font-family:TiffanyLtBTLight;
        font-size: 2rem;
        font-weight: normal;
        font-stretch: normal;
        color: #ffffff;
        margin-bottom: .8rem;
    }
    .tit_sup{
        font-family: Didot;
        font-size: 2rem;
        font-weight: normal;
        font-stretch: normal;
        letter-spacing: 0rem;
        color: #ffffff;
        margin-bottom: .5rem;
    }
    .m_ban_tit .line{
        width: 60%;
        height: 1px;
        /*border: 1px solid #fff;*/
        /*background: linear-gradient(244deg, rgba(255，255，255， 0) 0% ，lightgreen 50% ,rgba(255， 255. 255， 0) 100%);*/
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 50%, rgba(255, 255, 255, 0) 100%);
        margin-bottom: .8rem;
    }
    .tit_key{
        font-family: TiffanyLtBTLight;
        font-size: 1rem;
        font-weight: normal;
        font-stretch: normal;
        line-height: 1.2rem;
        color: #ffffff;
    }


    /*story*/
    .section_story{
        overflow: hidden;
        margin: 2.8rem 0;
    }
    .story_title{
        padding-bottom: 1.3rem;
    }
    .story_title h2{
        text-align: center;
        font-weight: bold;
        font-size: 1.7rem;
    }
    .story_details{
        flex-direction: column;
        align-items: center;
    }
    .story_left{
        width: 92%;
        padding: 0rem;
    }
    .story_left img{
        display: none;
    }
    .story_left p{
        font-size: .8rem;
        line-height: 1.1rem;
        text-align: center;
        padding: 0.4rem 0rem;
    }
    .story_left p:nth-child(6){
        display: none;
    }
    .story_left p:nth-child(7){
        display: none;
    }
    .story_right{
        width: 92%;
        padding: 0;
    }


    /* Continuation*/
    .section_Legend{
        overflow: hidden;
        padding: 2.8rem 0;
    }
    .Legend_content{
        flex-direction: column;
        align-items: center;
    }
    .Legend_left{
        width: 92%;
    }
    .Legend_left img{
        width: 100%;
        height: 100%;
    }
    .Legend_right{
        width: 92%;
    }
    .Legend_right h2{
        font-size: 1.7rem;
        font-weight: bold;
        line-height: 2rem;
        padding-top: 1.7rem;
    }
    .Legend_right p{
        font-size: 0.9rem;
    }

    /*Resisting oxidation */
    .oxidation_content{
        flex-direction: column;
    }



    /* Exploring the romantic balance*/
    .section_balance{
        overflow: hidden;
        padding: 5.7rem 0;
    }
    .balance_conten h1{
        font-size: 1.7rem;
        line-height: 2rem;
        font-weight: bold;
        margin-bottom: 2.7rem;
    }
    .balance_conten p{
        font-size: 0.9rem;
    }


    /*   collagen */
    .section_collagen{
        overflow: hidden;
        padding: 2rem 0;
    }
    .collagen_left{
        display: none;
    }
    .collagen_shop_top .advantage h1{
        font-size: 2.3rem;
        font-weight: bold;
        text-transform: capitalize;
    }
    .collagen_shop_top span{
        font-size: 1rem;
        line-height: 1.3rem;
        
    }
    .collagen_shop_top img{
        width: 50%;
    }

    .collagen_shop{
        align-items: center;
    }
    .collagen_shop button{
        width: 64%;
        height: 3.4rem;
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }
    .collagen_shop p{
        font-size: .7rem;
    }




    /* 100% imported*/
    .section_imported{
        overflow: hidden;
        padding: 2rem 0;
    }
    .imported_content{
        flex-direction: column;
        align-items: center;
        padding: 2rem;
    }
    .imported_left{
        width: 92%;
        justify-content: center;
    }
    .imported_left h2 {
        font-size: 2rem;
        padding-bottom: 1.7rem;
    }
    .imported_left strong{
        font-size: 2.8rem;
        font-weight: bold;
    }
    .imported_left p{
        font-size: 0.9rem;
        line-height: 1.3rem;
        text-transform: capitalize;
    }


    .imported_right{
        width: 97%;
        padding-top: 2.7rem;
    }

    .mySwiper .swiper-wrapper{
        margin-bottom: 3rem;
    }





    /* Sunscreen*/
    .section_sunscreen{
        overflow: hidden;
        padding: 2rem 0;
    }
    .sunscreen_left{
        display: none;
    }
    .sunscreen_shop_top .advantage h1{
        font-size: 2.3rem;
        font-weight: bold;
        text-transform: capitalize;
    }
    .sunscreen_shop_top span{
        font-size: 1rem;
        line-height: 1.3rem;
        
    }
    .sunscreen_shop_top img{
        width: 50%;
    }

    .sunscreen_shop{
        width: 100%;
        align-items: center;
    }
    .sunscreen_shop button{
        width: 64%;
        height: 3.4rem;
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }
    .sunscreen_shop p{
        font-size: .7rem;
    }





    /*横幅*/
    .section_streamer{
        width: 100%;
        overflow: hidden;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
    .separate_img{
        width: 45%;
    }
    .separate_img span{
        font-size: 0.9rem;
        bottom: 2.7rem;
        font-family: 'TiffanyITCbyBT-Light';
    }
    .section_streamer img{
        padding: 0rem;
        object-fit: cover;
    }

    .m_black{
        display: block;
    }
    .m_separate_more{
        overflow: hidden;
        border: 1px solid #eee;
        border-radius: 10px;
    }
    .m_separate_more span{
        color: #000000;
        top:-50%;
        left: 30%;
    }


    /* GP4G SP™*/
    .section_extremophile{
        overflow: hidden;
        width: 97%;
        padding:5rem 0;
    }
    .extremophile_content{
        flex-direction: column;
    }
    .section_extremophile_left{
        width: 97%;
    }
    .section_extremophile_left h2{
        font-size: 2rem;
        font-weight: bold;
        padding-bottom: 1.7rem;
        text-align: center;
        text-transform:capitalize;
    }
    .section_extremophile_left p{
        font-size:0.9rem;
        line-height: 1.3rem;
        text-align: center;
    }
    .section_extremophile_right{
        display: none;
        width: 97%;
        text-align: center;
        padding: 2rem 0 0 0;
    }
    .section_extremophile_right img{
        width: 100%;
    }



    /*Schminder Technology */
    .section_technology{
        flex-wrap: wrap;
        flex-direction: column;
        overflow: hidden;
        height: 100%;
    }

    .technology_left{
        width: 100%;
        padding: 12rem 0rem;
    }
    .technology_left h2{
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .technology_left .line{
        margin-bottom: 1rem;
    }
    .technology_left p{
        font-size: 1rem;
        text-align: center;
    }

    .technology_right{
        width: 100%;
        padding: 12rem 0rem;
    }
    .technology_right h2{
        width: 100%;
        font-size: 2rem;
        text-align: center;
        text-transform: uppercase;
    }
    .technology_right p{
        width: 92%;
        font-size: 0.9rem;
        text-align: center;
    }




    /*Resisting oxidation*/
    .section_oxidation{
        padding: 5rem 0;
        overflow: hidden;
    }
    .section_oxidation_left{
        width: 92%;
        padding-bottom: 1.7rem;
    }
    .section_oxidation_left h2{
        font-size: 2rem;
        padding-bottom: 1.4rem;
    }
    .section_oxidation_left p{
        font-size: 0.9rem;
        line-height: 1.1rem;
    }
    .section_oxidation_right p{
        font-size: 1.7rem;
    }





    .ft_item_cont{
        display: flex;
        justify-content: space-between;
    }


    .footer_content {
        width: 90%;
        margin-bottom: 1rem;
    }

    .ft_item_cont a{
        font-size: 0.7rem;
        padding: 0 0.2rem 0 0rem;
    }
    .footer_content .ft_item{
        text-align: center;
    }
    .ft_item_logo{
        width: 80%;
    }
    .footer_bottom{
        border: none;
    }
    .footer_bottom .content{
        font-size: .6rem;
        line-height: 2rem;
    }




}
