* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.align-center {
    align-items: center;
}

.align-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-around {
    justify-content: space-around;
}

.justify-between {
    justify-content: space-between;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header .logo {
    margin-left: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.header .logo img {
    height: 50px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.header .head-nav {
    margin-right: 30px;
}

.header .head-nav a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
}

.header .head-nav a:hover,
.header .head-nav a.on {
    color: #d32f2f;
}

.header .head-nav a.on::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #d32f2f;
    border-radius: 2px;
}

.header.active {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.swiper-banner {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.swiper-banner .swiper-slide {
    width: 100%;
    height: 100%;
}

.swiper-banner .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-group {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.swiper-pagination {
    display: flex;
    gap: 15px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #fff;
    width: 30px;
    border-radius: 6px;
}

#small-swiper {
    width: 100px;
    height: 60px;
    margin-left: 20px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
}

.icon-scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    width: 32px !important;
    height: 32px !important;
    object-fit: contain !important;
    z-index: 10;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-8px);
    }
    60% {
        transform: translateX(-50%) translateY(-4px);
    }
}



.index-content {
    padding: 60px 0;
}

.index-about {
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    padding: 80px 0;
    text-align: center;
}

.index-about-img {
    width: 420px;
    margin: 0 auto 20px;
    display: block;
}

.index-about .text p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 30px;
}

.index-more {
    display: inline-block;
    padding: 12px 30px;
    background: #d32f2f;
    color: #fff;
    font-size: 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.index-more:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(211, 47, 47, 0.3);
}

.statistics {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    padding: 60px 0;
    color: #fff;
    text-align: center;
}

.statistics h5 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.statistics h5 em {
    font-style: normal;
}

.statistics h5 i {
    font-style: normal;
    font-size: 36px;
}

.statistics p {
    font-size: 16px;
    opacity: 0.9;
}

.index-title {
    text-align: center;
    margin-bottom: 40px;
}

.index-title h1 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.index-title h1 em {
    color: #d32f2f;
    font-style: normal;
}

.index-title h2 {
    font-size: 16px;
    color: #999;
    font-weight: normal;
    letter-spacing: 2px;
}

.index-ingredients {
    padding: 80px 0;
    background: #fff;
}

.index-ingredients .ingredients-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.index-ingredients .item {
    position: relative;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.index-ingredients .item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.index-ingredients .item .bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.index-ingredients .item:hover .bg-img {
    transform: scale(1.08);
}

.index-ingredients .item .txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.index-ingredients .item .txt::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    right: -60px;
    bottom: -60px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    z-index: -1;
}

.index-ingredients .item .txt .icon-img {
    width: 90px;
    height: 90px;
    margin-bottom: 15px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.index-ingredients .item .txt h5 {
    font-size: 22px;
    font-weight: bold;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.index-join {
    background: #fff;
    padding: 80px 0;
}

.index-join .join-banner {
    width: 100%;
    margin-bottom: 60px;
}

.index-join .swiper-join {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.index-join .swiper-join .swiper-slide {
    width: 100%;
}

.index-join .swiper-join .swiper-slide img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.index-join .btn-group {
    justify-content: center;
    gap: 15px;
    margin-top: -45px;
    position: relative;
    z-index: 10;
}

.index-join .swiper-button-prev,
.index-join .swiper-button-next {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-join .swiper-button-prev::after,
.index-join .swiper-button-next::after {
    font-size: 20px;
    color: #d32f2f;
    font-weight: bold;
}

.index-join .swiper-button-prev:hover,
.index-join .swiper-button-next:hover {
    background: #d32f2f;
    transform: translateY(-2px);
}

.index-join .swiper-button-prev:hover::after,
.index-join .swiper-button-next:hover::after {
    color: #fff;
}

.index-join .join-highlights {
    margin-bottom: 60px;
}

.index-join .join-highlights h3 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.index-join .join-highlights h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d32f2f, #ff5252);
    border-radius: 2px;
}

.index-join .highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.index-join .highlight-item {
    background: #fff;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(211, 47, 47, 0.08);
}

.index-join .highlight-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(211, 47, 47, 0.15);
    border-color: rgba(211, 47, 47, 0.2);
}

.index-join .highlight-item .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.08), rgba(211, 47, 47, 0.02));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.index-join .highlight-item:hover .icon-box {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.15), rgba(211, 47, 47, 0.05));
    transform: scale(1.1);
}

.index-join .highlight-item h4 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}

.index-join .highlight-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.index-join .join-cta {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    padding: 45px 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 12px 40px rgba(211, 47, 47, 0.3);
}

.index-join .join-cta .cta-content h3 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
}

.index-join .join-cta .cta-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.index-join .join-cta .index-more {
    background: #fff;
    color: #d32f2f;
    padding: 14px 32px;
    font-weight: bold;
    font-size: 16px;
}

.index-join .join-cta .index-more:hover {
    background: #fff;
    color: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.index-news {
    padding: 80px 0;
    background: #fff;
}

.index-news .items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.index-news .item {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.index-news .item:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.index-news .item .time {
    width: 80px;
    text-align: center;
    padding-right: 20px;
    border-right: 2px solid #d32f2f;
}

.index-news .item .time em {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: #d32f2f;
    font-style: normal;
}

.index-news .item .time span {
    font-size: 14px;
    color: #999;
}

.index-news .item .txt {
    flex: 1;
    padding-left: 20px;
}

.index-news .item .txt h5 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.index-news .item .txt p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.index-news .index-more {
    display: block;
    text-align: center;
    margin-top: 30px;
}

.contact-us {
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    padding: 80px 0;
}

.contact-us .index-title h2:last-child {
    color: #666;
    font-size: 16px;
    margin-top: 10px;
    letter-spacing: normal;
}

.contact-from {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-from .left {
    flex: 1;
}

.contact-from .left img {
    height: 60px;
    margin-bottom: 20px;
}

.contact-from .left p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.contact-from .left p em {
    color: #d32f2f;
    font-style: normal;
    font-size: 20px;
    font-weight: bold;
}

.contact-from .right {
    flex: 1;
}

.m-forms .u-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.m-forms .u-form .flex {
    gap: 15px;
}

.m-forms .u-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
}

.m-forms .u-input:focus {
    border-color: #d32f2f;
}

.m-forms .u-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 6px;
    font-size: 14px;
    height: 120px;
    resize: none;
    transition: all 0.3s ease;
    outline: none;
}

.m-forms .u-textarea:focus {
    border-color: #d32f2f;
}

.m-forms #j_btn {
    align-self: flex-end;
    padding: 12px 40px;
    background: #d32f2f;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.m-forms #j_btn:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(211, 47, 47, 0.3);
}

.footer {
    background: #1a1a1a;
    padding: 20px 30px;
    color: #999;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.footer .contact-info {
    font-size: 12px;
    line-height: 1.8;
}

.footer .contact-info p {
    margin: 4px 0;
}

.footer .contact-info a {
    color: #999;
    transition: color 0.3s ease;
}

.footer .contact-info a:hover {
    color: #d32f2f;
}

.footer .qrcode {
    text-align: center;
}

.footer .qrcode img {
    width: 80px;
    height: 80px;
    margin-bottom: 6px;
}

.footer .qrcode p {
    font-size: 11px;
    line-height: 1.4;
    margin: 0;
}

.footer .qrcode p em {
    color: #d32f2f;
    font-style: normal;
    font-weight: bold;
}

/* ==================== Fast Nav 悬浮导航 ==================== */
.fast-nav {
    position: fixed;
    right: 20px;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fast-nav.fn-show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.fast-nav .fn-item {
    position: relative;
    width: 54px;
    height: 54px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    z-index: 998;
}

.fast-nav .fn-item:hover {
    background: #d32f2f;
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
    transform: translateX(-3px);
}

/* Icons rendered via CSS mask so color follows background-color on hover */
.fast-nav .fn-icon {
    width: 24px;
    height: 24px;
    background-color: #555;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    transition: background-color 0.3s ease;
}

.fast-nav .fn-item:hover .fn-icon,
.fast-nav .fn-qr.fn-active .fn-icon {
    background-color: #fff;
}

.fast-nav .fn-icon-msg {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z'/%3E%3C/svg%3E");
}

.fast-nav .fn-icon-phone {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

.fast-nav .fn-icon-wechat {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8.691 2.188C3.891 2.188 0 5.476 0 9.53c0 2.212 1.17 4.203 3.002 5.55a.59.59 0 01.213.665l-.39 1.48c-.019.07-.048.141-.048.213 0 .163.13.295.29.295a.326.326 0 00.167-.054l1.903-1.114a.864.864 0 01.717-.098 10.16 10.16 0 002.837.403c.276 0 .543-.027.811-.05-.857-2.578.157-4.972 1.932-6.446 1.703-1.415 3.882-1.98 5.853-1.838-.576-3.583-4.196-6.348-8.596-6.348zM5.785 5.991c.642 0 1.162.529 1.162 1.18a1.17 1.17 0 01-1.162 1.178A1.17 1.17 0 014.623 7.17c0-.651.52-1.18 1.162-1.18zm5.813 0c.642 0 1.162.529 1.162 1.18a1.17 1.17 0 01-1.162 1.178 1.17 1.17 0 01-1.162-1.178c0-.651.52-1.18 1.162-1.18zm5.34 2.867c-1.797-.052-3.746.512-5.28 1.786-1.72 1.428-2.687 3.72-1.78 6.22.942 2.453 3.666 4.229 6.884 4.229.826 0 1.622-.12 2.361-.336a.722.722 0 01.598.082l1.584.926a.272.272 0 00.14.047c.134 0 .24-.111.24-.247 0-.06-.023-.12-.038-.177l-.322-1.233a.582.582 0 01.177-.652C23.024 18.48 24 16.82 24 14.98c0-3.21-2.931-5.837-6.656-6.188V8.89c-.135-.01-.269-.03-.407-.03zm-2.53 3.274c.535 0 .969.44.969.982a.976.976 0 01-.969.983.976.976 0 01-.969-.983c0-.542.434-.982.97-.982zm4.844 0c.535 0 .969.44.969.982a.976.976 0 01-.969.983.976.976 0 01-.969-.983c0-.542.434-.982.969-.982z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8.691 2.188C3.891 2.188 0 5.476 0 9.53c0 2.212 1.17 4.203 3.002 5.55a.59.59 0 01.213.665l-.39 1.48c-.019.07-.048.141-.048.213 0 .163.13.295.29.295a.326.326 0 00.167-.054l1.903-1.114a.864.864 0 01.717-.098 10.16 10.16 0 002.837.403c.276 0 .543-.027.811-.05-.857-2.578.157-4.972 1.932-6.446 1.703-1.415 3.882-1.98 5.853-1.838-.576-3.583-4.196-6.348-8.596-6.348zM5.785 5.991c.642 0 1.162.529 1.162 1.18a1.17 1.17 0 01-1.162 1.178A1.17 1.17 0 014.623 7.17c0-.651.52-1.18 1.162-1.18zm5.813 0c.642 0 1.162.529 1.162 1.18a1.17 1.17 0 01-1.162 1.178 1.17 1.17 0 01-1.162-1.178c0-.651.52-1.18 1.162-1.18zm5.34 2.867c-1.797-.052-3.746.512-5.28 1.786-1.72 1.428-2.687 3.72-1.78 6.22.942 2.453 3.666 4.229 6.884 4.229.826 0 1.622-.12 2.361-.336a.722.722 0 01.598.082l1.584.926a.272.272 0 00.14.047c.134 0 .24-.111.24-.247 0-.06-.023-.12-.038-.177l-.322-1.233a.582.582 0 01.177-.652C23.024 18.48 24 16.82 24 14.98c0-3.21-2.931-5.837-6.656-6.188V8.89c-.135-.01-.269-.03-.407-.03zm-2.53 3.274c.535 0 .969.44.969.982a.976.976 0 01-.969.983.976.976 0 01-.969-.983c0-.542.434-.982.97-.982zm4.844 0c.535 0 .969.44.969.982a.976.976 0 01-.969.983.976.976 0 01-.969-.983c0-.542.434-.982.969-.982z'/%3E%3C/svg%3E");
}

.fast-nav .fn-icon-top {
    width: 22px;
    height: 22px;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z'/%3E%3C/svg%3E");
}

/* Sliding label tooltip (desktop hover) */
.fast-nav .fn-label {
    position: absolute;
    right: 64px;
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: rgba(51, 51, 51, 0.95);
    color: #fff;
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.fast-nav .fn-label::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 5px solid rgba(51, 51, 51, 0.95);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.fast-nav .fn-item:hover .fn-label {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* QR code popover (click to toggle — works on touch devices) */
.fast-nav .fn-qr-box {
    position: fixed;
    right: 84px;
    bottom: 230px;
    transform: translateY(8px) scale(0.92);
    background: #fff;
    padding: 14px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    min-width: 188px;
}

.fast-nav .fn-qr-box::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.fast-nav .fn-qr-box img {
    width: 160px;
    height: 160px;
    display: block;
    border-radius: 8px;
}

.fast-nav .fn-qr-box em {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: #666;
    font-style: normal;
}

.fast-nav .fn-qr.fn-active {
    background: #d32f2f;
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
    transform: translateX(-3px);
}

.fast-nav .fn-qr.fn-active .fn-qr-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

@media (max-width: 768px) {
    .fast-nav {
        right: 12px;
        bottom: 80px;
        gap: 8px;
    }
    .fast-nav .fn-item {
        width: 46px;
        height: 46px;
    }
    .fast-nav .fn-icon {
        width: 20px;
        height: 20px;
    }
    .fast-nav .fn-icon-top {
        width: 18px;
        height: 18px;
    }
    .fast-nav .fn-label {
        display: none;
    }
    .fast-nav .fn-qr-box {
        right: 66px;
        bottom: 200px;
        min-width: 168px;
    }
    .fast-nav .fn-qr-box img {
        width: 140px;
        height: 140px;
    }
}

.ellipsis-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page-banner {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.page-banner .swiper-slide {
    width: 100%;
    height: 100%;
}

.page-banner .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-banner .bannertxt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-banner .bannertxt h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
}

.page-banner .bannertxt h2 {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 20px;
    letter-spacing: 8px;
}

.page-banner .bannertxt p {
    font-size: 16px;
    line-height: 1.8;
}

.m-contents {
    padding-top: 80px;
}

.page-cont {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-title {
    text-align: center;
    margin-bottom: 40px;
}

.page-title h1 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.page-title h1 em {
    color: #d32f2f;
    font-style: normal;
}

.page-title h2 {
    font-size: 16px;
    color: #999;
    font-weight: normal;
    line-height: 1.8;
}

.page-title h3 {
    font-size: 18px;
    color: #666;
    font-weight: normal;
    margin-top: 10px;
}

.page-about {
    padding-bottom: 60px;
}

.page-about .floor1 {
    padding: 40px 0;
}

.page-about .txt {
    margin-bottom: 40px;
}

.page-about .txt img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-about .main {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    text-align: justify;
}

.page-about-wide-img {
    max-width: 1920px;
    width: 100%;
}

.text-center {
    text-align: center;
}

.page-product {
    padding-bottom: 60px;
}

.page-product .floor1 {
    padding: 40px 0;
}

.page-product .floor1 .txt {
    gap: 40px;
}

.page-product .floor1 .main {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    font-weight: 500;
}

.page-product .floor1 img {
    max-width: 50%;
    border-radius: 8px;
}

.page-product .floor2 {
    position: relative;
    min-height: 500px;
    color: #fff;
    overflow: hidden;
}

.page-product .floor2 .floor2-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-product .floor2 .floor2-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.page-product .floor2:hover .floor2-bg img {
    transform: scale(1.05);
}

.page-product .floor2 .floor2-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.85) 0%, rgba(183, 28, 28, 0.7) 100%);
    z-index: 1;
}

.page-product .floor2 .floor2-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    text-align: center;
}

.page-product .floor2 .floor2-content .page-title h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-product .floor2 .floor2-content .page-title h2 {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: normal;
    line-height: 1.8;
    margin-bottom: 30px;
}

.page-product .floor2 .floor2-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-product .floor3 {
    padding: 80px 0;
    background: #fafafa;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.page-product .floor3 .ingredient-card {
    text-align: center;
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.page-product .floor3 .ingredient-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(211, 47, 47, 0.15);
}

.page-product .floor3 .ingredient-card .ingredient-img-wrapper {
    margin: 0 auto 20px;
}

.page-product .floor3 .ingredient-card .ingredient-img-wrapper img {
    max-width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.page-product .floor3 .ingredient-card:hover .ingredient-img-wrapper img {
    transform: scale(1.05);
}



.page-product .floor3 .ingredient-card .ingredient-info h3 {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}

.page-product .floor3 .ingredient-card .ingredient-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.page-product .floor4 {
    padding: 40px 0;
    background: #fff;
}

.page-product .floor5 {
    padding: 80px 0;
    background: #fafafa;
}

.page-product .floor4 .feature-block {
    display: flex;
    align-items: center;
    gap: 30px;
}

.page-product .floor4 .feature-block .feature-image {
    flex: 0 0 auto;
    width: 21%;
}

.page-product .floor4 .feature-block .feature-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.page-product .floor4 .feature-block .feature-content {
    flex: 1;
    padding: 0;
}

.page-product .floor5 .feature-block {
    display: flex;
    align-items: center;
    gap: 50px;
}

.page-product .floor5 .feature-block.reverse {
    flex-direction: row-reverse;
}

.page-product .floor5 .feature-block .feature-image {
    flex: 0 0 auto;
    width: 50%;
}

.page-product .floor5 .feature-block .feature-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.page-product .floor5 .feature-block .feature-content {
    flex: 1;
    padding: 20px;
}

.page-product .feature-block .feature-content h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.page-product .feature-block .feature-content h2 em {
    color: #d32f2f;
    font-style: normal;
}

.page-product .feature-block .feature-content h3 {
    font-size: 18px;
    color: #d32f2f;
    font-weight: 500;
    margin-bottom: 20px;
}

.page-product .feature-block .feature-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.page-join {
    padding-bottom: 60px;
}

.page-join .floor1 {
    padding: 40px 0;
    text-align: center;
}

.page-join .floor2 {
    padding: 40px 0;
}

.page-join .floor2 .top {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    border-radius: 10px;
    color: #fff;
}

.page-join .floor2 .top .left h5 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.page-join .floor2 .top .right h5 {
    font-size: 16px;
    margin-bottom: 5px;
}

.page-join .floor2 .top .right .tel {
    font-size: 28px;
    font-weight: bold;
}

.page-join .page-ftitle {
    text-align: center;
    margin-bottom: 40px;
}

.page-join .page-ftitle h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.page-join .page-ftitle h2 {
    font-size: 14px;
    color: #999;
}

.page-join .items {
    gap: 20px;
}

.page-join .items .item {
    flex: 1;
    min-width: calc(33.33% - 14px);
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.page-join .items .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-join .items .item h5 {
    font-size: 16px;
    color: #d32f2f;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-join .items .item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.page-join .floor2 .items .item em {
    display: block;
    font-size: 48px;
    font-weight: bold;
    color: #d32f2f;
    margin-bottom: 15px;
    font-style: normal;
}

.page-join .floor3 {
    padding: 40px 0;
    background: #f8f8f8;
}

.page-join .floor3 h6 {
    text-align: center;
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
}

.page-join .floor3 .items .item {
    flex: 1;
    min-width: calc(11.11% - 18px);
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.page-join .floor3 .items .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-join .floor3 .items .item em {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: #d32f2f;
    margin-bottom: 10px;
    font-style: normal;
}

.page-join .floor3 .items .item h5 {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.page-join .floor3 .items .item p {
    font-size: 12px;
    color: #999;
}

.page-join .floor3 .items .item img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.page-join .floor3 .items .item span {
    display: block;
    font-size: 14px;
    color: #d32f2f;
    font-weight: bold;
    margin-bottom: 5px;
}

.page-join .floor3 .items .item i {
    display: block;
    font-size: 12px;
    color: #999;
}

.page-join .floor4 {
    padding: 40px 0;
}

.page-join .join-condition {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-join .join-condition .items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.page-join .join-condition .items .item {
    flex: 1;
    min-width: calc(50% - 10px);
    padding: 15px 20px;
    background: #f8f8f8;
    border-radius: 8px;
}

.page-join .join-condition .items .item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #d32f2f;
    color: #fff;
    border-radius: 50%;
    margin-right: 15px;
    font-style: normal;
    font-size: 14px;
    font-weight: bold;
}

.page-join .join-condition .items .item span {
    font-size: 14px;
    color: #666;
}

.page-storefront {
    padding-bottom: 60px;
}

.page-storefront .floor1 {
    padding: 40px 0;
}

.page-storefront .floor1 img {
    width: 100%;
    border-radius: 10px;
}

.page-storefront .floor2 {
    padding: 40px 0;
}

.page-storefront .floor2 .item {
    gap: 40px;
    margin-bottom: 40px;
}

.page-storefront .floor2 .item:last-child {
    margin-bottom: 0;
}

.page-storefront .floor2 .item img {
    flex: 1;
    max-width: 50%;
    border-radius: 10px;
}

.page-storefront .floor3 {
    padding: 40px 0;
    gap: 20px;
}

.page-storefront .floor3 img {
    flex: 1;
    max-width: calc(50% - 10px);
    border-radius: 10px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-list .item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.news-list .item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.news-list .item .pic {
    width: 200px;
    height: 150px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
}

.news-list .item .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-list .item .pic .time {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 10px;
    color: #fff;
}

.news-list .item .pic .time em {
    display: block;
    font-size: 20px;
    font-weight: bold;
    font-style: normal;
}

.news-list .item .pic .time span {
    font-size: 12px;
}

.news-list .item .txt {
    flex: 1;
    padding-left: 20px;
}

.news-list .item .txt h5 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-list .item .txt p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
}

.news-list .item .txt .more span {
    color: #d32f2f;
    font-size: 14px;
}

.page-contact {
    padding-bottom: 60px;
}

.page-contact .floor1 {
    padding: 40px 0;
    text-align: center;
}

.page-contact .floor1 h1 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.page-contact .floor1 h2 {
    font-size: 16px;
    color: #999;
    margin-bottom: 20px;
}

.page-contact .floor1 h3 {
    font-size: 18px;
    color: #666;
    font-weight: normal;
    line-height: 1.8;
}

.page-contact .floor2 {
    padding: 40px 0;
}

.page-contact .floor2 .item {
    margin-bottom: 40px;
}

.page-contact .floor2 .item:first-child {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-contact .floor2 .item:first-child h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
}

.page-contact .floor2 .item:first-child h1 em {
    color: #d32f2f;
    font-style: normal;
}

.page-contact .floor2 .item:first-child p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.8;
}

.page-contact .floor2 .item:first-child p a {
    color: #d32f2f;
}

.page-contact .floor2 .item:first-child p a:hover {
    text-decoration: underline;
}

.page-contact .floor2 .item:first-child p a img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 5px;
}

.page-contact .floor2 .item:last-child .txt {
    text-align: center;
}

.page-contact .floor2 .item:last-child .txt h5 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.page-contact .floor2 .item:last-child .txt h6 {
    font-size: 14px;
    color: #999;
    margin-bottom: 5px;
}

.page-contact .floor2 .wx-code {
    width: 120px;
    height: 120px;
    border-radius: 8px;
}

.page-contact .contact-us {
    padding: 40px 0;
}

.page-contact .contact-us h6 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.page-contact .contact-us h6 em {
    color: #d32f2f;
    font-style: normal;
}

.page-contact .contact-from {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.page-contact .contact-from .left img {
    height: 60px;
    margin-bottom: 20px;
}

.page-contact .contact-from .left p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.page-contact .contact-from .left p em {
    color: #d32f2f;
    font-style: normal;
    font-size: 20px;
    font-weight: bold;
}

.page-contact .contact-from .right {
    flex: 1;
}

.page-news-detail {
    padding-bottom: 60px;
}

.page-news-detail .page-cont {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-news-detail .page-title {
    text-align: left;
    margin-bottom: 30px;
}

.page-news-detail .page-title h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.page-news-detail .page-title h2 {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

.page-news-detail .page-title h3 {
    font-size: 14px;
    color: #999;
}

.page-news-detail .content {
    font-size: 16px;
    line-height: 2;
    color: #333;
}

.page-news-detail .content img {
    max-width: 100%;
    margin: 20px 0;
    border-radius: 8px;
}

.page-news-detail .m-clips {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.page-news-detail .m-clips p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.page-news-detail .m-clips p a {
    color: #d32f2f;
}

.page-news-detail .m-clips p a:hover {
    text-decoration: underline;
}

.m-pages {
    text-align: center;
    padding: 30px 0;
}

.m-pages .fl {
    float: none;
}

.m-pages .fl a,
.m-pages .fl span {
    display: inline-block;
    border: 1px solid #ebebeb;
    border-radius: 8px;
    margin: 0 5px;
    color: #333;
    height: 32px;
    line-height: 30px;
    font-size: 14px;
    padding: 0 12px;
    transition: all 0.3s ease;
}

.m-pages .fl a:hover {
    border-color: #d32f2f;
    color: #d32f2f;
}

.m-pages .fl .u-item-act {
    color: #fff;
    background: #d32f2f !important;
    border-color: #d32f2f;
}

.page-news-detail {
    padding-bottom: 60px;
}

.page-news-detail .page-cont {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-news-detail .text-cont {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-news-detail .main {
    font-size: 16px;
    line-height: 2;
    color: #333;
}

.page-news-detail .main .title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.page-news-detail .main p {
    margin-bottom: 15px;
    text-align: justify;
}

.page-news-detail .main img {
    max-width: 100%;
    margin: 20px 0;
    border-radius: 8px;
}

.page-news-detail .main strong {
    color: #d32f2f;
    font-weight: bold;
}

.page-news-detail .m-clips {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.page-news-detail .m-clips p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.page-news-detail .m-clips p a {
    color: #d32f2f;
}

.page-news-detail .m-clips p a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header .head-nav {
        display: none;
    }
    
    .swiper-banner {
        height: 400px;
    }
    
    .statistics {
        padding: 40px 0;
    }
    
    .statistics h5 {
        font-size: 32px;
    }
    
    .index-ingredients .item {
        height: 160px;
    }
    
    .index-ingredients .item .txt .icon-img {
        width: 65px;
        height: 65px;
        margin-bottom: 10px;
    }
    
    .index-ingredients .item .txt h5 {
        font-size: 16px;
    }
    
    .index-ingredients .item .txt::before {
        top: -40px;
        left: -40px;
        right: -40px;
        bottom: -40px;
    }
    
    .index-join .text,
    .contact-from {
        flex-direction: column;
    }
    
    .footer {
        padding: 15px 20px;
    }
    
    .m-forms .u-form .flex {
        flex-direction: column;
    }
    
    .m-forms #j_btn {
        align-self: stretch;
    }
    
    .page-banner {
        height: 280px;
    }
    
    .page-banner .bannertxt h1 {
        font-size: 28px;
    }
    
    .page-banner .bannertxt h2 {
        font-size: 14px;
        letter-spacing: 4px;
    }
    
    .page-banner .bannertxt p {
        font-size: 12px;
    }
    
    .m-contents {
        padding-top: 60px;
    }
    
    .page-cont {
        padding: 20px;
    }
    
    .page-title h1 {
        font-size: 24px;
    }
    
    .page-product .floor1 .txt {
        flex-direction: column;
    }
    
    .page-product .floor1 img {
        max-width: 100%;
    }
    
    .page-product .floor3 {
        flex-direction: column;
        gap: 20px;
    }
    
    .page-product .floor3 .ingredient-card {
        padding: 25px 20px;
    }
    
    .page-product .feature-block,
    .page-product .feature-block.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .page-product .feature-block .feature-image {
        width: 100%;
    }
    
    .page-product .floor2 .floor2-content .page-title h1 {
        font-size: 30px;
    }
    
    .page-product .floor2 .floor2-content .page-title h2 {
        font-size: 16px;
    }
    
    .page-join .floor2 .top {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .page-join .floor2 .items {
        flex-direction: column;
    }
    
    .page-join .floor2 .items .item {
        min-width: 100%;
    }
    
    .page-join .floor3 .items {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .page-join .floor3 .items .item {
        min-width: calc(50% - 10px);
    }
    
    .page-join .join-condition .items {
        flex-direction: column;
    }
    
    .page-join .join-condition .items .item {
        min-width: 100%;
    }
    
    .page-storefront .floor2 .item {
        flex-direction: column;
    }
    
    .page-storefront .floor2 .item img {
        max-width: 100%;
    }
    
    .page-storefront .floor3 {
        flex-direction: column;
    }
    
    .page-storefront .floor3 img {
        max-width: 100%;
    }
    
    .news-list .item {
        flex-direction: column;
    }
    
    .news-list .item .pic {
        width: 100%;
        height: 200px;
    }
    
    .news-list .item .txt {
        padding-left: 0;
        padding-top: 15px;
    }
    
    .page-contact .floor2 .item:last-child .page-cont {
        flex-direction: column;
        gap: 20px;
    }
    
    .page-contact .contact-from {
        flex-direction: column;
        text-align: center;
    }
    
    .page-contact .contact-from .left img {
        margin: 0 auto 20px;
    }
    
    .index-join {
        padding: 50px 0;
    }
    
    .index-join .join-banner {
        margin-bottom: 40px;
    }
    
    .index-join .swiper-join .swiper-slide img {
        height: 200px;
    }
    
    .index-join .btn-group {
        margin-top: -35px;
    }
    
    .index-join .swiper-button-prev,
    .index-join .swiper-button-next {
        width: 36px;
        height: 36px;
    }
    
    .index-join .join-highlights h3 {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .index-join .highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .index-join .highlight-item {
        padding: 24px 20px;
    }
    
    .index-join .highlight-item .icon-box {
        width: 56px;
        height: 56px;
        margin-bottom: 15px;
    }
    
    .index-join .highlight-item .icon-box svg {
        width: 40px;
        height: 40px;
    }
    
    .index-join .highlight-item h4 {
        font-size: 16px;
    }
    
    .index-join .highlight-item p {
        font-size: 13px;
    }
    
    .index-join .join-cta {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 30px 20px;
    }
    
    .index-join .join-cta .cta-content h3 {
        font-size: 20px;
    }
}