@font-face {
    font-family: 'Value Sans Pro';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url("../font/Value-Sans-Pro.woff2") format("woff2"), url("../font/Value-Sans-Pro.woff") format("woff");
}

@font-face {
    font-family: 'Value Sans Pro';
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    src: url("../font/Value-Sans-Medium-Pro.woff2") format("woff2"), url("../font/Value-Sans-Medium-Pro.woff") format("woff");
}

@font-face {
    font-family: 'Sohne Mono';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url("../font/sohne-mono.woff2") format("woff2");
}

@font-face {
    font-family: 'Sohne';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url("https://cdn.shopify.com/s/files/1/0115/7375/6000/t/115/assets/sohne.otf?v=70866333389431956631729081445") format("opentype");
}

@font-face {
    font-family: 'Feature Deck';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url("https://cdn.shopify.com/s/files/1/0115/7375/6000/t/115/assets/FeatureDeck-Light.otf?v=139177415078099145081729081438") format("opentype");
}

@font-face {
    font-family: 'Honeymoon Hand';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url("../font/honeymoon-hand.woff2") format("woff2");
}

.navbar-links li {
    cursor: pointer;
}

.home-hero__toAbout {
    position: absolute;
    bottom: 15%;
    left: 5%;
    font-size: 50px;
    z-index: 99999;
    padding: 1% 10%;
    background-color: #2279bf;
    color: #fff;
}

.home-hero__getFreeSamples {
    position: absolute;
    bottom: 15%;
    left: 5%;
    font-size: 40px;
    z-index: 99999;
    padding: 25px 7%;
    background-color: #2279bf;
    color: #fff;
}

.language {
    position: relative;
    min-width: 100px;
    text-align: center;
    height: var(--nav-main-height);
    line-height: var(--nav-main-height);
}

.language .select {
    position: absolute;
    width: 100%;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: ease .5s;
}

.language .select li {
    line-height: 2;
}

.language .select li:hover {
    color: #fff;
    background-color: #2279bf;
}

.language:hover .select {
    opacity: 1;
    visibility: visible;
}

.search__input .btn {
    position: absolute;
    width: 250px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search__input .btn button {
    padding: 8px 25px;
    border: 1px solid #2279bf;
    border-radius: 4px;
    color: #2279bf;
}

.search__input .btn button:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
}

.search__input .btn button:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 0;
}

.search__input .btn button.active {
    color: #fff;
    background-color: #2279bf;
}

.mobile-menu__links>ul a.shop-menu__open {
    /*color: #2279bf;*/
}

.swiper {
    --swiper-theme-color: #2279bf;
    --swiper-navigation-size: 30px;
}

.inside_banner {
    position: relative;
}

.inside_banner img {
    min-height: 200px;
}

.inside_banner .tit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold;
    font-size: clamp(2rem, 1.636rem + 1.55vw, 3.5rem);
}

.pro_box {
    max-width: 1200px;
    margin: 0 auto;
    width: 96%;
    padding: 40px 0;
}

.pro_box .row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.pro_box .col {
    width: 48%;
}

.pro_box .col img {
    border: 1px solid #ddd;
}

.pro_box .table {
    width: 100%;
    margin-bottom: 20px;
}

.pro_box tr>th {
    background-color: #e3efed;
    border-bottom: 1px solid #fff;
    line-height: 32px;
    font-size: 15px;
}

.pro_box tr>td {
    border-bottom: 1px solid #ddd;
    padding-left: 10%;
}

.pro_box button {
    background-color: #03a6a6;
    color: #fff;
    padding: 5px 20px;
    border-radius: 4px;
    font-size: 15px;
    margin-bottom: 20px;
}

.pro_box .download {
    font-size: 15px;
}

.pro_box .download a:hover {
    color: #03a6a6;
}

.pro_detail {
    margin-bottom: 30px;
}

.pro_title {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.pro_other .item {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 30px;
    column-gap: 20px;
}

.pro_other .item img {
    border: 1px solid #ddd;
    border-radius: 5px;
}

.pro_other .item img:hover {
    border-color: #03a6a6;
}

.pro_other .item a {
    text-align: center;
}

/* 遮罩层样式 */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 9999;
    /* 确保遮罩层位于最上层 */
}

/* 放大后的图片样式 */
.enlarged-img {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    display: none;
    z-index: 10000;
    /* 放大图片位于遮罩层之上 */
}

.xpformBox1 .li input,
.xpformBox1 .li textarea {
    border-radius: 0 !important;
    border-color: #292828 !important;
}

.xpformBox1 .submitBtn {
    background-color: #151515 !important;
    border-radius: 0 !important;
}

#page {
    margin: 60px 0;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .search__input .btn {
        position: static;
        justify-content: start;
        margin-left: 25px;
    }

    .search__input .btn button {
        padding: 4px 20px;
        font-size: 14px;
    }

    .search__close {
        top: 0;
        padding-top: 0;
    }

    .help-block {
        background: center;
    }

    .pro_box .row {
        flex-direction: column;
    }

    .pro_box .col {
        width: 100%;
    }

    .pro_box .down {
        display: flex;
        justify-content: space-evenly;
        align-items: baseline;
    }

    .pro_other .item {
        grid-template-columns: repeat(1, 1fr);
    }

    .home-hero__toAbout {
        font-size: 18px;
    }

    .home-hero__getFreeSamples {
        font-size: 18px;
        padding: 1% 1%;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
}

.about-intro__content {
    max-width: 406px;
    margin-left: auto;
}

.about-founders__title {
    text-align: left;
}

#shopify-section-template--16999872954595__refer {
    position: relative;
    height: 572px;
    min-height: 750px;
    width: 100%;
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
}

#shopify-section-template--16999872954595__refer .Screen-container {
    border-radius: 0px;
    top: 0px;
    transform-style: preserve-3d;
    left: 0px;
    background: rgb(255, 255, 255);
    width: 50%;
    position: relative;
    height: 100%;
    overflow: auto;
}

#shopify-section-template--16999872954595__refer #X .ref_desc {
    font-size: 17px;
    line-height: 1.5;
}

#shopify-section-template--16999872954595__refer .checked_box {
    font-family: "Value Sans Medium Pro";
    font-size: 14px;
    line-height: 16px;
    margin-top: 1rem;
    display: flex;
    align-items: flex-start;
    font-weight: 500;
    position: relative;
    cursor: pointer;
}

/* 复选框样式 - 复选框本身 */
#shopify-section-template--16999872954595__refer .checked_box input[type="checkbox"] {
    margin-right: 8px;
    width: 20px;
    height: 20px;
    border: 1px solid;
}

#shopify-section-template--16999872954595__refer .checked_box span {
    width: 50%;
    font-size: 11px;
}

#shopify-section-template--16999872954595__refer .TextInput-input:focus {
    border-color: #4b9ce2;
    box-shadow: 0 0 5px rgba(75, 156, 226, 0.5);
}

#shopify-section-template--16999872954595__refer>div {
    width: 50%;
    background-color: #fff;
    z-index: 9999;
    height: 100%;
    padding: 5%;
}

#shopify-section-template--16999872954595__refer .ref_title {
    font-size: 51px;
    margin-bottom: 20px;
}

#shopify-section-template--16999872954595__refer .ref_desc {
    font-size: 17px;
    margin-bottom: 50px;
}

#shopify-section-template--16999872954595__refer input[type=text] {
    display: block;
    width: 100%;
    height: 50px;
    margin-bottom: 20px;
    border-width: 1px;
    padding: 0 10px;
    color: #333;
}

#shopify-section-template--16999872954595__refer .ref_icon {
    position: absolute;
}

#shopify-section-template--16999872954595__refer .ref_btn {
    outline: 0px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(21, 21, 21);
    color: rgb(41, 40, 40);
    font-family: "Value Sans Medium Pro";
    padding-bottom: 0px;
    margin-top: 30px;
    border-radius: 0px;
    padding-top: 0px;
    height: 50px;
    align-items: center;
    text-align: left;
    letter-spacing: 1px;
    justify-content: center;
    width: 100%;
    font-size: 15px;
    line-height: 40px;
    padding-left: 10px;
    cursor: pointer;
}

#shopify-section-template--16999872954595__refer>img {
    display: none;
}

@media (max-width: 768px) {
    #shopify-section-template--16999872954595__refer {
        flex-direction: column;
    }

    #shopify-section-template--16999872954595__refer>div {
        width: 100%;
    }

    #shopify-section-template--16999872954595__refer .checked_box span {
        min-width: 300px;
    }

    #shopify-section-template--16999872954595__refer>img {
        display: block;
    }

}

