:root {
    --jz-bg: #f6f5f3;
    --jz-surface: #ffffff;
    --jz-text: #231815;
    --jz-muted: #7e7a76;
    --jz-line: #ece8e2;
    --jz-accent: #111111;
    --jz-gold: #b98a39;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background: var(--jz-bg);
    color: var(--jz-text);
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--jz-gold);
    text-decoration: none;
}

.jz-main {
    padding-top: 84px;
    min-height: calc(100vh - 84px - 88px);
}

.jz-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--jz-surface);
    border-bottom: 1px solid var(--jz-line);
    z-index: 200;
}

.jz-header-inner {
    max-width: 1320px;
    margin: 0 auto;
    height: 84px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.jz-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
}

.jz-logo img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.jz-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.jz-nav ul {
    display: flex;
    align-items: center;
    gap: 34px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.jz-nav .v1 {
    display: block;
    font-size: 14px;
    letter-spacing: 0.06em;
    color: #666;
    position: relative;
    padding: 2px 0;
}

.jz-nav .v1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--jz-text);
    transition: width 0.25s ease;
}

.jz-nav .v1:hover::after {
    width: 100%;
}

.jz-header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: 20px;
}

.jz-search-btn,
.jz-menu-btn {
    width: 22px;
    height: 22px;
    border: 0;
    padding: 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
}

.jz-search-btn {
    background-image: url("../images/icon-search.png");
}

.jz-menu-btn {
    background-image: url("../images/icon-menu.png");
}

.jz-search {
    display: none;
    border-top: 1px solid var(--jz-line);
    background: #f3f2ef;
}

.jz-search.is-open {
    display: block;
}

.jz-search-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 20px 32px;
}

.jz-search form {
    display: flex;
    align-items: center;
    gap: 12px;
}

.jz-search .inp {
    width: 100%;
    max-width: 460px;
    height: 42px;
    border: 1px solid #d9d5ce;
    background: #fff;
    border-radius: 4px;
    padding: 0 14px;
    font-size: 15px;
    color: var(--jz-text);
}

.jz-search .btn {
    width: 42px;
    height: 42px;
    border: 1px solid #d9d5ce;
    background: #fff url("../images/icon-search.png") center no-repeat;
    background-size: 18px 18px;
    border-radius: 4px;
    cursor: pointer;
}

.jz-menu-panel {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 300;
}

.jz-menu-panel.is-open {
    opacity: 1;
    visibility: visible;
}

.jz-menu-box {
    width: min(880px, calc(100vw - 40px));
    min-height: 460px;
    background: #e7eceb;
    border-radius: 8px;
    padding: 42px 56px;
    position: relative;
    transform: translateY(-16px);
    transition: transform 0.3s ease;
}

.jz-menu-panel.is-open .jz-menu-box {
    transform: translateY(0);
}

.jz-menu-close {
    position: absolute;
    right: 20px;
    top: 14px;
    border: 0;
    background: transparent;
    font-size: 34px;
    line-height: 1;
    color: #6b6b6b;
    cursor: pointer;
}

.jz-menu-brand {
    width: 52px;
    margin-bottom: 30px;
}

.jz-menu-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.jz-menu-nav li {
    margin-bottom: 14px;
}

.jz-menu-nav a {
    font-size: 30px;
    line-height: 1.35;
    color: #8a8f8d;
    letter-spacing: 0.02em;
}

.jz-menu-nav a:hover {
    color: var(--jz-text);
}

.jz-menu-extra {
    margin-top: 32px;
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
}

.jz-menu-extra a {
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid transparent;
}

.jz-menu-extra a:hover {
    border-bottom-color: #666;
}

body.menu-open {
    overflow: hidden;
}

.jz-footer {
    background: #111;
    color: #ccc;
}

.jz-footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 26px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    letter-spacing: 0.04em;
}

.jz-btn {
    display: inline-block;
    min-width: 132px;
    text-align: center;
    padding: 10px 18px;
    border: 1px solid #111;
    background: #111;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.08em;
    transition: all 0.25s ease;
}

.jz-btn:hover {
    background: transparent;
    color: #111;
}

.jz-btn.ghost {
    background: transparent;
    color: #111;
}

.jz-btn.ghost:hover {
    background: #111;
    color: #fff;
}

.jz-hero {
    height: min(70vh, 640px);
    min-height: 480px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.jz-hero-mask {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.12));
    display: flex;
    align-items: center;
}

.jz-hero-content {
    width: min(1320px, calc(100vw - 64px));
    margin: 0 auto;
    color: #fff;
}

.jz-hero-content h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 600;
    letter-spacing: 0.06em;
}

.jz-hero-content p {
    margin: 0 0 30px;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.jz-hero-content .jz-btn {
    border-color: transparent;
    background: rgba(17, 17, 17, 0.72);
    color: #fff;
}

.jz-hero-content .jz-btn:hover {
    background: #fff;
    border-color: #fff;
    color: #111;
}

.jz-intro {
    padding: 70px 0 52px;
    background: #f4f4f4;
}

.jz-title-block {
    text-align: center;
    margin-bottom: 34px;
}

.jz-title-block h2 {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 500;
}

.jz-title-block p {
    margin: 0 auto;
    max-width: 760px;
    color: var(--jz-muted);
    font-size: 14px;
}

.jz-feature-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.jz-feature-list .item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.jz-feature-list img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    display: block;
}

.jz-feature-list span {
    display: block;
    font-size: 15px;
    color: #4c4a47;
    line-height: 1.4;
}

.jz-products {
    padding: 56px 0;
    background: #f1eeea;
}

.jz-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.jz-products-grid .card {
    border: 0;
    border-radius: 0;
    background: #f6f2ed;
    padding: 20px 20px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.jz-products-grid .card .thumb {
    height: 250px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 16px;
}

.jz-products-grid .card img {
    width: 100%;
    height: 100%;
    max-width: 260px;
    object-fit: contain;
    display: block;
}

.jz-products-grid .card h3 {
    font-size: 16px;
    margin: 0 0 6px;
}

.jz-products-grid .card p {
    margin: 0 0 12px;
    color: var(--jz-muted);
    font-size: 13px;
    min-height: 44px;
}

.jz-products-grid .card a {
    display: inline-block;
    font-size: 12px;
    color: #fff;
    background: #111;
    padding: 7px 22px;
    letter-spacing: 0.08em;
    margin-top: auto;
}

.jz-products-grid .card a:hover {
    background: #333;
    color: #fff;
}

.jz-story {
    padding: 70px 0;
    background: #fff;
}

.jz-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: center;
}

.jz-story-grid .text h2 {
    margin: 0 0 12px;
    font-size: 32px;
    letter-spacing: 0.02em;
}

.jz-story-grid .text p {
    margin: 0 0 24px;
    color: #5f5a55;
    max-width: 520px;
}

.jz-story-grid .media img {
    width: 100%;
    display: block;
}

.jz-wave {
    height: 420px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.jz-wave .text {
    color: #fff;
    max-width: 420px;
}

.jz-wave h2 {
    margin: 0 0 10px;
    font-size: 34px;
}

.jz-wave p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
}

.jz-page-hero {
    background: #efece7;
    padding: 56px 0 42px;
    border-bottom: 1px solid #e8e2d8;
}

.jz-page-hero h1 {
    margin: 0 0 8px;
    font-size: 34px;
    letter-spacing: 0.03em;
}

.jz-page-hero p {
    margin: 0;
    color: #6d6862;
}

.jz-list-wrap {
    padding: 40px 0 72px;
}

.jz-article-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.jz-article-card {
    background: #fff;
    border: 1px solid #ece8e2;
}

.jz-article-card .cover {
    display: block;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.jz-article-card .cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.jz-article-card:hover .cover img {
    transform: scale(1.04);
}

.jz-article-card .content {
    padding: 16px 16px 18px;
}

.jz-article-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.4;
}

.jz-article-card p {
    margin: 0 0 12px;
    color: #6c6661;
    font-size: 13px;
    height: 44px;
    overflow: hidden;
}

.jz-article-card .meta {
    font-size: 12px;
    color: #999;
}

.jz-empty {
    padding: 44px 0;
    text-align: center;
    color: #8e8882;
}

.jz-pager {
    margin-top: 30px;
}

.jz-pager .pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.jz-pager .pagination li {
    list-style: none;
}

.jz-pager .pagination a,
.jz-pager .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    border: 1px solid #dfd8cf;
    background: #fff;
    color: #5a554f;
    padding: 0 10px;
    font-size: 13px;
}

.jz-pager .pagination .active span {
    color: #fff;
    background: #111;
    border-color: #111;
}

.jz-article-view {
    background: #fff;
}

.jz-article-head {
    border-bottom: 1px solid #ece8e2;
    padding: 50px 0 34px;
}

.jz-article-head .crumb {
    margin: 0 0 12px;
    font-size: 13px;
    color: #87827c;
}

.jz-article-head h1 {
    margin: 0 0 14px;
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.35;
}

.jz-article-head .meta {
    font-size: 13px;
    color: #8b8680;
}

.jz-article-body {
    padding: 32px 0 40px;
}

.jz-article-content {
    max-width: 920px;
}

.jz-article-content img {
    max-width: 100%;
    height: auto;
}

.jz-article-content table {
    display: block;
    width: 100%;
    overflow-x: auto;
}

.jz-article-foot {
    border-top: 1px solid #ece8e2;
    padding: 26px 0 44px;
}

.jz-prev-next {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.jz-prev-next .prev,
.jz-prev-next .next {
    border: 1px solid #ece8e2;
    padding: 14px 16px;
    background: #faf9f7;
}

.jz-prev-next span {
    display: block;
    margin-bottom: 6px;
    color: #9b948d;
    font-size: 12px;
}

.jz-prev-next a,
.jz-prev-next em {
    font-size: 14px;
    font-style: normal;
    color: #2f2a24;
}

.jz-page-wrap {
    padding: 56px 0 64px;
    background: #fff;
}

.jz-page-head {
    margin-bottom: 24px;
    border-bottom: 1px solid #ece8e2;
    padding-bottom: 16px;
}

.jz-page-head h1 {
    margin: 0 0 8px;
    font-size: 34px;
}

.jz-page-head .meta {
    color: #938d85;
    font-size: 13px;
}

.jz-page-content {
    max-width: 980px;
}

.jz-page-content img {
    max-width: 100%;
    height: auto;
}

.jz-aboutus-banner img {
    width: 100%;
    display: block;
}

.jz-aboutus-intro {
    background: #f3f1ee;
    padding: 72px 0 0;
}

.jz-aboutus-intro-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 56px;
    padding-bottom: 36px;
}

.jz-aboutus-intro-side h1 {
    margin: 0 0 36px;
    font-size: 48px;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.jz-aboutus-intro-side .icon {
    width: 96px;
}

.jz-aboutus-intro-side .icon img {
    width: 100%;
    display: block;
}

.jz-aboutus-intro-main {
    max-width: 900px;
}

.jz-aboutus-intro-main p {
    margin: 0 0 30px;
    font-size: 17px;
    line-height: 1.95;
    color: #282521;
}

.jz-aboutus-intro-main p:last-child {
    margin-bottom: 0;
}

.jz-aboutus-principle {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 58px 0 64px;
}

.jz-aboutus-principle h2 {
    margin: 0 0 20px;
    font-size: clamp(26px, 2.1vw, 34px);
    letter-spacing: 0.04em;
    font-weight: 500;
}

.jz-aboutus-principle-grid {
    width: max-content;
    display: grid;
    grid-template-columns: repeat(2, 186px);
    gap: 12px 14px;
    margin-left: 120px;
}

.jz-aboutus-principle-card {
    display: block;
}

.jz-aboutus-principle-card img {
    width: 100%;
    display: block;
}

.jz-aboutus-what {
    background: #f3f4f5;
    padding: 74px 0 88px;
}

.jz-aboutus-what-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 34px;
}

.jz-aboutus-what-head h2 {
    margin: 0;
    font-size: 48px;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.jz-aboutus-what-head p {
    margin: 14px 0 0;
    font-size: 19px;
    line-height: 1.9;
    color: #2c2926;
}

.jz-aboutus-what-grid {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 56px;
    align-items: end;
}

.jz-aboutus-what-grid .small img,
.jz-aboutus-what-grid .large img {
    width: 100%;
    display: block;
}

.jz-aboutus-extra {
    background: #fff;
    border-top: 1px solid #ece8e2;
    padding: 42px 0 64px;
}

.jz-qa-banner img {
    width: 100%;
    display: block;
}

.jz-qa-main {
    background: #efeff1;
    padding: 0 0 54px;
}

.jz-qa-list {
    max-width: 1120px;
    margin: -8px auto 0;
}

.jz-qa-item {
    background: rgba(255, 255, 255, 0.78);
    margin-bottom: 14px;
    padding: 14px 20px 12px;
}

.jz-qa-item .line {
    display: flex;
    align-items: center;
    gap: 12px;
}

.jz-qa-item .line + .line {
    margin-top: 6px;
}

.jz-qa-item .line.line-a {
    margin-top: 10px;
}

.jz-qa-item .mark {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: 20px;
    flex: 0 0 20px;
    padding: 0;
    font-size: 30px;
    line-height: 1;
    font-weight: 400;
    font-family: "Times New Roman", Georgia, serif;
    color: #a7773f;
    text-align: center;
}

.jz-qa-item h3 {
    margin: 0;
    font-size: clamp(18px, 1.45vw, 28px);
    line-height: 1.32;
    letter-spacing: 0.02em;
    font-weight: 500;
    color: #1f1c19;
}

.jz-qa-item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.72;
    color: #2e2a26;
    max-width: 100%;
}

.jz-qa-contact {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}

.jz-qa-contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.22);
}

.jz-qa-contact .container {
    position: relative;
    z-index: 1;
}

.jz-qa-contact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 34px 0;
}

.jz-qa-contact .left h2 {
    margin: 0 0 10px;
    font-size: 34px;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.jz-qa-contact .left p {
    margin: 0;
    font-size: 14px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.9);
}

.jz-qa-contact .right {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.jz-qa-contact .right .icon {
    font-size: 30px;
    line-height: 1;
    color: #f4d29f;
}

.jz-qa-contact .right strong {
    font-size: clamp(28px, 3.2vw, 56px);
    line-height: 1;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.jz-safety-hero {
    min-height: 300px;
    height: min(58vh, 440px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.jz-safety-hero .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.jz-safety-hero-title {
    width: min(420px, 42%);
    text-align: center;
    margin-right: 6%;
}

.jz-safety-hero-title h1 {
    margin: 0 0 12px;
    font-size: clamp(32px, 5vw, 44px);
    letter-spacing: 0.38em;
    font-weight: 500;
}

.jz-safety-hero-title p {
    margin: 0;
    font-size: 14px;
    color: #5f5953;
    line-height: 1.9;
}

.jz-safety-core {
    background: #f3f0eb;
    padding: 72px 0 64px;
}

.jz-safety-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px;
    align-items: center;
    margin-bottom: 72px;
}

.jz-safety-row:last-child {
    margin-bottom: 0;
}

.jz-safety-row.reverse .jz-safety-text {
    order: 2;
}

.jz-safety-row.reverse .jz-safety-media {
    order: 1;
}

.jz-safety-text h2 {
    margin: 0 0 16px;
    font-size: 34px;
    letter-spacing: 0.2em;
    font-weight: 500;
}

.jz-safety-text ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.jz-safety-text li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 14px;
    font-size: 14px;
    line-height: 1.9;
    color: #4f4a44;
}

.jz-safety-text li:last-child {
    margin-bottom: 0;
}

.jz-safety-text li::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #c4a66f;
    position: absolute;
    left: 0;
    top: 0.9em;
}

.jz-safety-media img {
    width: 100%;
    display: block;
    aspect-ratio: 812 / 637;
    object-fit: cover;
}

.jz-safety-duty {
    min-height: 238px;
    display: flex;
    align-items: center;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}

.jz-safety-duty::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.jz-safety-duty .container {
    position: relative;
    z-index: 1;
}

.jz-safety-duty-box {
    max-width: 480px;
    padding: 34px 0;
}

.jz-safety-duty h2 {
    margin: 0 0 12px;
    font-size: 34px;
    letter-spacing: 0.18em;
    font-weight: 500;
}

.jz-safety-duty p {
    margin: 0;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
}

.jz-safety-extra {
    background: #fff;
    border-top: 1px solid #ece8e2;
    padding: 42px 0 64px;
}

.jz-product-hero {
    height: min(68vh, 760px);
    min-height: 420px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.jz-product-main {
    background: #ece2dc;
    padding: 0 0 68px;
}

.jz-product-filter {
    position: relative;
    top: 0;
    transform: translateY(-110px) !important;
    margin-top: 0;
    margin-bottom: -74px;
    background: #fff;
    padding: 30px 28px;
    z-index: 2;
}

.jz-product-filter .hint {
    font-size: 12px;
    color: #676a73;
    display: inline-block;
    margin-bottom: 24px;
}

.jz-product-filter .finder {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
}

.jz-product-filter .finder h3 {
    margin: 0 0 14px;
    font-size: 28px;
    color: #231815;
}

.jz-product-filter .current {
    width: 100%;
    border: 1px solid #cdcecd;
    background: #fff;
    height: 72px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 24px;
    color: #231815;
    cursor: pointer;
}

.jz-product-filter .current span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.jz-product-filter .current em {
    font-style: normal;
    background: #231815;
    color: #fff;
    height: 34px;
    line-height: 34px;
    padding: 0 14px;
    font-size: 13px;
    flex: 0 0 auto;
}

.jz-product-filter .dropdown {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% - 1px);
    border: 1px solid #cdcecd;
    border-top: 0;
    background: #fff;
    z-index: 20;
}

.jz-product-filter .finder.open .dropdown {
    display: block;
}

.jz-product-filter .dropdown a {
    display: block;
    height: 58px;
    line-height: 58px;
    padding: 0 20px;
    border-top: 1px solid #ececec;
    color: #332d28;
    font-size: 18px;
}

.jz-product-filter .dropdown a:first-child {
    border-top: 0;
}

.jz-product-filter .dropdown a:hover,
.jz-product-filter .dropdown a.active {
    background: #f7f6f4;
    color: #111;
}

.jz-product-grid {
    margin: 0 -9px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.jz-product-item {
    width: 33.3333%;
    padding: 9px;
}

.jz-product-item .con {
    display: block;
    background: #fff;
    height: 100%;
    position: relative;
}

.jz-product-item .pic {
    position: relative;
    display: block;
    background: #f4f1ed;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.jz-product-item .pic img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
}

.jz-product-item .txt {
    position: relative;
    padding: 26px 18px 20px;
}

.jz-product-item .info {
    min-height: 34px;
    margin-bottom: 12px;
    font-size: 11px;
    line-height: 1.3;
    color: #565960;
}

.jz-product-item .info span {
    display: inline-block;
    margin-bottom: 6px;
    border-bottom: 1px solid #923b2f;
}

.jz-product-item .info span a {
    color: #923b2f;
}

.jz-product-item .info em {
    display: block;
    font-style: normal;
}

.jz-product-item .tit {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.4;
    min-height: 2.8em;
}

.jz-product-item .tit a {
    color: #090913;
}

.jz-product-item .desc {
    font-size: 14px;
    color: #676a73;
    min-height: 1.7em;
}

.jz-product-item .desc p {
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.jz-product-item .badge-recommend {
    position: absolute;
    top: -24px;
    right: 18px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.jz-product-item .badge-recommend b {
    font-size: 13px;
    letter-spacing: 0.06em;
}

.jz-product-foot {
    margin-top: 12px;
}

.jz-product-foot p {
    margin: 0 0 14px;
    color: #6a645f;
    font-size: 13px;
}

.jz-product-pager .pagination {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.jz-product-pager .pagination li {
    list-style: none;
}

.jz-product-pager .pagination a,
.jz-product-pager .pagination span {
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dbd3c9;
    background: #fff;
    color: #5a554f;
    padding: 0 10px;
    font-size: 13px;
}

.jz-product-pager .pagination .active span {
    border-color: #111;
    background: #111;
    color: #fff;
}

.jz-product-empty {
    background: #fff;
    border: 1px solid #e7dfd6;
    color: #6f6861;
    text-align: center;
    padding: 42px 20px;
}

.jz-pd-hero {
    min-height: 520px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.jz-pd-hero-mask {
    min-height: inherit;
    display: flex;
    align-items: center;
}

.jz-pd-hero-mask .container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.jz-pd-hero-content {
    color: #fff;
    width: min(100%, 386px);
    background: #000;
    padding: 34px 30px;
}

.jz-pd-hero-content .series {
    display: none;
    font-size: 13px;
    letter-spacing: 0.18em;
    opacity: 0.86;
    margin-bottom: 12px;
}

.jz-pd-hero-content h1 {
    margin: 0 0 8px;
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.24;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.jz-pd-hero-content em {
    font-style: normal;
    display: block;
    margin-bottom: 12px;
    font-size: clamp(18px, 1.8vw, 28px);
    font-weight: 500;
    opacity: 0.95;
    line-height: 1.2;
}

.jz-pd-hero-content p {
    margin: 0 0 22px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.jz-pd-hero-content .jz-btn {
    border-color: #fff;
    border-radius: 999px;
    background: transparent;
    color: #fff;
    min-width: 112px;
    padding: 8px 20px;
    letter-spacing: 0;
    font-size: 14px;
    line-height: 1.2;
}

.jz-pd-hero-content .jz-btn:hover {
    background: #fff;
    border-color: #fff;
    color: #111;
}

.jz-pd-main {
    padding: 0 0 88px;
    background: #f6f3ef;
    overflow-x: hidden;
}

.jz-pd-section + .jz-pd-section {
    margin-top: 68px;
}

.jz-pd-intro,
.jz-pd-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
}

.jz-pd-intro {
    gap: 0;
    background: #000;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.jz-pd-intro-text h2,
.jz-pd-feature-text h2 {
    margin: 0 0 14px;
    font-size: 35px;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.jz-pd-intro .jz-pd-intro-text {
    min-height: 640px;
    padding: 86px 76px 78px;
    background: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.jz-pd-intro .jz-pd-intro-text h2 {
    margin-bottom: 16px;
    color: #fff;
    font-size: 36px;
    line-height: 1.25;
}

.jz-pd-intro-text > p {
    margin: 0 0 22px;
    color: #57514b;
    font-size: 15px;
    line-height: 1.9;
}

.jz-pd-intro .jz-pd-intro-text > p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    line-height: 1.95;
    margin-bottom: 30px;
}

.jz-pd-specs {
    border-top: 1px solid #ddd4ca;
}

.jz-pd-intro .jz-pd-specs {
    border-top-color: rgba(255, 255, 255, 0.32);
}

.jz-pd-specs dl {
    margin: 0;
    padding: 14px 0;
    border-bottom: 1px solid #ddd4ca;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 10px 12px;
    align-items: start;
}

.jz-pd-intro .jz-pd-specs dl {
    border-bottom-color: rgba(255, 255, 255, 0.32);
}

.jz-pd-specs dt {
    margin: 0;
    font-size: 14px;
    color: #1f1b16;
    font-weight: 600;
}

.jz-pd-intro .jz-pd-specs dt,
.jz-pd-intro .jz-pd-specs dd {
    color: rgba(255, 255, 255, 0.94);
}

.jz-pd-specs dd {
    margin: 0;
    color: #5c554e;
    font-size: 14px;
    line-height: 1.85;
}

.jz-pd-intro .jz-pd-intro-media {
    min-height: 640px;
    background: #242628;
}

.jz-pd-media-box {
    position: relative;
    background: #f0ebe4;
    border: 1px solid #e2d9cd;
    min-height: 480px;
    padding: 36px;
    overflow: hidden;
}

.jz-pd-intro .jz-pd-media-box {
    min-height: 100%;
    background: transparent;
    border: 0;
    padding: 68px 56px 54px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.jz-pd-media-box img {
    width: 100%;
    height: 100%;
    max-height: 410px;
    object-fit: contain;
    display: block;
}

.jz-pd-intro .jz-pd-media-box img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 520px;
    object-position: center bottom;
    position: relative;
    z-index: 2;
}

.jz-pd-media-box .track {
    position: absolute;
    left: 0;
    right: 0;
    height: 38px;
    background: rgba(17, 17, 17, 0.86);
    color: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
}

.jz-pd-intro .jz-pd-media-box .track {
    display: none;
}

.jz-pd-media-box .track.top {
    top: 0;
}

.jz-pd-media-box .track.bottom {
    bottom: 0;
}

.jz-pd-media-box .track span {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.24em;
    padding-left: 16px;
}

.jz-pd-intro .jz-pd-media-box .ghost-word {
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(148, 166, 145, 0.13);
    font-size: clamp(88px, 10vw, 178px);
    line-height: 0.88;
    letter-spacing: 0.04em;
    font-weight: 500;
    text-transform: uppercase;
    white-space: pre-line;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.jz-pd-feature-text .series {
    display: inline-block;
    margin-bottom: 8px;
    color: #7a6e61;
    letter-spacing: 0.16em;
    font-size: 13px;
}

.jz-pd-feature-text .line + .line {
    margin-top: 14px;
}

.jz-pd-feature-text strong {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 17px;
    color: #201b16;
}

.jz-pd-feature-text p {
    margin: 0;
    color: #5f5953;
    font-size: 15px;
    line-height: 1.9;
}

.jz-pd-feature-media {
    background: #ece4da;
    border: 1px solid #dfd4c8;
    min-height: 520px;
    padding: 32px;
}

.jz-pd-feature-media img {
    width: 100%;
    height: 100%;
    max-height: 456px;
    object-fit: contain;
    display: block;
}

.jz-pd-recommend h3 {
    margin: 0 0 20px;
    text-align: center;
    font-size: 34px;
    letter-spacing: 0.08em;
}

.jz-pd-recommend-grid {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jz-pd-recommend-grid > li {
    display: flex;
}

.jz-pd-recommend-grid .card {
    background: #fff;
    border: 1px solid #e6ddd3;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.jz-pd-recommend-grid .pic {
    background: #f2ede7;
    height: 360px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
}

.jz-pd-recommend-grid .pic img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center bottom;
}

.jz-pd-recommend-grid .txt {
    padding: 18px 16px 16px;
    text-align: center;
    min-height: 168px;
    display: flex;
    flex-direction: column;
}

.jz-pd-recommend-grid h4 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.35;
}

.jz-pd-recommend-grid p {
    margin: 0 0 14px;
    color: #6a635d;
    font-size: 13px;
    min-height: 42px;
}

.jz-pd-recommend-grid a {
    display: inline-block;
    min-width: 120px;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: #fff;
    background: #111;
    padding: 8px 20px;
    margin-top: auto;
    align-self: center;
}

.jz-pd-recommend-grid a:hover {
    color: #fff;
    background: #333;
}

@media (max-width: 1199.98px) {
    .jz-main {
        padding-top: 72px;
    }

    .jz-header-inner {
        height: 72px;
        padding: 0 20px;
    }

    .jz-nav {
        display: none;
    }

    .jz-search-inner {
        padding: 16px 20px;
    }

    .jz-menu-box {
        padding: 30px 26px;
        min-height: 0;
    }

    .jz-menu-nav a {
        font-size: 24px;
    }

    .jz-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .jz-story-grid {
        grid-template-columns: 1fr;
    }

    .jz-article-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .jz-product-item {
        width: 50%;
    }

    .jz-product-filter {
        top: 0;
        transform: translateY(-84px) !important;
        margin-bottom: -48px;
    }

    .jz-product-filter .finder h3 {
        font-size: 24px;
    }

    .jz-product-filter .current {
        height: 62px;
        font-size: 20px;
    }

    .jz-pd-intro,
    .jz-pd-feature {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .jz-pd-intro {
        gap: 0;
    }

    .jz-pd-intro .jz-pd-intro-text {
        min-height: 0;
        padding: 48px 40px 42px;
    }

    .jz-pd-intro .jz-pd-intro-media {
        min-height: 0;
    }

    .jz-pd-intro .jz-pd-media-box {
        min-height: 420px;
        padding: 46px 40px 34px;
    }

    .jz-pd-intro .jz-pd-media-box .ghost-word {
        left: 0;
        font-size: clamp(78px, 16vw, 142px);
    }

    .jz-pd-feature-media {
        min-height: 0;
    }

    .jz-pd-recommend-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .jz-pd-recommend h3 {
        font-size: 30px;
    }

    .jz-pd-recommend-grid .pic {
        height: 300px;
    }

    .jz-aboutus-intro-wrap {
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 34px;
    }

    .jz-aboutus-intro-side h1,
    .jz-aboutus-what-head h2 {
        font-size: 40px;
    }

    .jz-aboutus-principle h2 {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .jz-aboutus-intro-main p {
        font-size: 15px;
    }

    .jz-aboutus-principle-grid {
        margin-left: 80px;
        grid-template-columns: repeat(2, 162px);
        gap: 10px 12px;
    }

    .jz-aboutus-what-head p {
        font-size: 17px;
    }

    .jz-qa-item {
        padding: 14px 16px 12px;
    }

    .jz-qa-item .mark {
        width: 18px;
        flex-basis: 18px;
        font-size: 24px;
    }

    .jz-qa-item h3 {
        font-size: clamp(17px, 1.65vw, 24px);
    }

    .jz-qa-item p {
        font-size: 13px;
        line-height: 1.65;
    }

    .jz-qa-contact .left h2 {
        font-size: 30px;
    }

    .jz-safety-row {
        gap: 34px;
        margin-bottom: 56px;
    }

    .jz-safety-text h2 {
        font-size: 30px;
    }

    .jz-safety-duty h2 {
        font-size: 30px;
    }
}

@media (max-width: 767.98px) {
    .jz-main {
        padding-top: 64px;
    }

    .jz-header-inner {
        height: 64px;
        padding: 0 14px;
    }

    .jz-logo {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .jz-header-actions {
        gap: 14px;
        margin-left: 0;
    }

    .jz-search-btn,
    .jz-menu-btn {
        width: 20px;
        height: 20px;
    }

    .jz-search .inp {
        max-width: none;
        width: 100%;
    }

    .jz-search .btn {
        flex: 0 0 42px;
    }

    .jz-hero {
        min-height: 360px;
        height: 60vh;
    }

    .jz-hero-content {
        width: calc(100vw - 30px);
    }

    .jz-pd-hero {
        min-height: 320px;
    }

    .jz-pd-hero-mask .container {
        justify-content: flex-end;
    }

    .jz-pd-hero-content {
        width: min(100%, 286px);
        padding: 20px 16px;
    }

    .jz-pd-hero-content h1 {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .jz-pd-hero-content em {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .jz-pd-hero-content p {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .jz-pd-hero-content .jz-btn {
        font-size: 13px;
        min-width: 88px;
        padding: 7px 16px;
    }

    .jz-pd-main {
        padding: 0 0 44px;
    }

    .jz-pd-section + .jz-pd-section {
        margin-top: 32px;
    }

    .jz-pd-intro-text h2,
    .jz-pd-feature-text h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .jz-pd-intro-text > p,
    .jz-pd-feature-text p {
        font-size: 13px;
        line-height: 1.8;
    }

    .jz-pd-intro {
        gap: 0;
    }

    .jz-pd-intro .jz-pd-intro-text {
        padding: 26px 16px;
    }

    .jz-pd-intro .jz-pd-intro-text h2 {
        font-size: 24px;
    }

    .jz-pd-intro .jz-pd-intro-text > p {
        font-size: 12px;
        line-height: 1.85;
        margin-bottom: 16px;
    }

    .jz-pd-specs dl {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 8px;
        padding: 10px 0;
    }

    .jz-pd-specs dt,
    .jz-pd-specs dd {
        font-size: 12px;
    }

    .jz-pd-intro .jz-pd-intro-media {
        min-height: 0;
    }

    .jz-pd-intro .jz-pd-media-box {
        min-height: 280px;
        padding: 24px 16px 20px;
    }

    .jz-pd-intro .jz-pd-media-box img {
        max-height: 240px;
    }

    .jz-pd-intro .jz-pd-media-box .ghost-word {
        left: 0;
        font-size: clamp(52px, 19vw, 92px);
    }

    .jz-pd-feature-media {
        padding: 16px;
    }

    .jz-pd-media-box .track {
        height: 30px;
    }

    .jz-pd-media-box .track span {
        font-size: 10px;
        letter-spacing: 0.14em;
    }

    .jz-pd-recommend h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .jz-pd-recommend-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .jz-pd-recommend-grid .pic {
        height: 240px;
    }

    .jz-pd-recommend-grid .txt {
        padding: 14px 12px;
        min-height: 0;
    }

    .jz-pd-recommend-grid h4 {
        font-size: 16px;
    }

    .jz-pd-recommend-grid p {
        min-height: 0;
        font-size: 12px;
        margin-bottom: 10px;
    }

    .jz-feature-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .jz-feature-list .item {
        gap: 8px;
    }

    .jz-feature-list img {
        width: 74px;
        height: 74px;
    }

    .jz-feature-list span {
        font-size: 13px;
    }

    .jz-products-grid {
        grid-template-columns: 1fr;
    }

    .jz-products-grid .card .thumb {
        height: 220px;
    }

    .jz-wave {
        height: 300px;
    }

    .jz-wave h2 {
        font-size: 26px;
    }

    .jz-article-grid {
        grid-template-columns: 1fr;
    }

    .jz-prev-next {
        grid-template-columns: 1fr;
    }

    .jz-footer-inner {
        padding: 18px 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .jz-product-hero {
        min-height: 220px;
        height: 34vh;
    }

    .jz-product-main {
        padding-bottom: 34px;
    }

    .jz-product-filter {
        top: 0;
        transform: translateY(-40px) !important;
        margin: 0 0 -16px;
        padding: 22px 14px 16px;
    }

    .jz-product-filter .hint {
        display: none;
    }

    .jz-product-filter .finder h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .jz-product-filter .current {
        height: 50px;
        font-size: 13px;
        padding: 0 12px;
    }

    .jz-product-filter .current em {
        width: 72px;
        text-align: center;
        height: 30px;
        line-height: 30px;
        font-size: 12px;
        padding: 0;
    }

    .jz-product-filter .dropdown a {
        height: 44px;
        line-height: 44px;
        font-size: 13px;
        padding: 0 12px;
    }

    .jz-product-grid {
        margin: 0 -3px;
    }

    .jz-product-item {
        width: 50%;
        padding: 3px;
    }

    .jz-product-item .txt {
        padding: 20px 10px 12px;
    }

    .jz-product-item .tit {
        font-size: 16px;
        margin-bottom: 9px;
    }

    .jz-product-item .desc {
        font-size: 12px;
    }

    .jz-product-item .badge-recommend {
        width: 42px;
        height: 42px;
        top: -20px;
        right: 10px;
    }

    .jz-product-item .badge-recommend b {
        font-size: 11px;
    }

    .jz-aboutus-intro {
        padding-top: 34px;
    }

    .jz-aboutus-intro-wrap {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-bottom: 0;
    }

    .jz-aboutus-intro-side h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .jz-aboutus-intro-side .icon {
        width: 64px;
    }

    .jz-aboutus-intro-main p {
        font-size: 13px;
        line-height: 1.8;
        margin-bottom: 16px;
    }

    .jz-aboutus-principle {
        padding: 34px 0;
    }

    .jz-aboutus-principle h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .jz-aboutus-principle-grid {
        margin: 0 auto;
        width: max-content;
        grid-template-columns: repeat(2, 132px);
        gap: 8px;
    }

    .jz-aboutus-principle-card {
        padding: 0;
    }

    .jz-aboutus-what {
        padding: 34px 0 42px;
    }

    .jz-aboutus-what-head {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 18px;
    }

    .jz-aboutus-what-head h2 {
        font-size: 28px;
    }

    .jz-aboutus-what-head p {
        margin-top: 0;
        font-size: 13px;
        line-height: 1.75;
    }

    .jz-aboutus-what-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .jz-aboutus-extra {
        padding: 30px 0 42px;
    }

    .jz-qa-main {
        padding-bottom: 28px;
    }

    .jz-qa-list {
        margin-top: 0;
    }

    .jz-qa-item {
        margin-bottom: 8px;
        padding: 10px 8px;
    }

    .jz-qa-item .line {
        gap: 6px;
    }

    .jz-qa-item .line + .line {
        margin-top: 4px;
    }

    .jz-qa-item .line.line-a {
        margin-top: 6px;
    }

    .jz-qa-item .mark {
        width: 12px;
        flex-basis: 12px;
        font-size: 18px;
    }

    .jz-qa-item h3 {
        font-size: 15px;
        line-height: 1.35;
    }

    .jz-qa-item p {
        font-size: 11px;
        line-height: 1.55;
    }

    .jz-qa-contact {
        min-height: 0;
    }

    .jz-qa-contact-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 22px 0;
    }

    .jz-qa-contact .left h2 {
        margin-bottom: 6px;
        font-size: 22px;
    }

    .jz-qa-contact .left p {
        font-size: 12px;
        line-height: 1.7;
    }

    .jz-qa-contact .right {
        gap: 6px;
    }

    .jz-qa-contact .right .icon {
        font-size: 16px;
    }

    .jz-qa-contact .right strong {
        font-size: 22px;
        letter-spacing: 0.03em;
    }

    .jz-safety-hero {
        min-height: 220px;
        height: 35vh;
        background-position: left center;
    }

    .jz-safety-hero-title {
        width: 100%;
        margin-right: 0;
        padding: 0 8px;
    }

    .jz-safety-hero-title h1 {
        letter-spacing: 0.28em;
        margin-bottom: 6px;
    }

    .jz-safety-hero-title p {
        font-size: 12px;
        line-height: 1.75;
    }

    .jz-safety-core {
        padding: 34px 0;
    }

    .jz-safety-row {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 28px;
    }

    .jz-safety-row.reverse .jz-safety-text,
    .jz-safety-row.reverse .jz-safety-media {
        order: initial;
    }

    .jz-safety-text h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .jz-safety-text li {
        font-size: 13px;
        line-height: 1.75;
    }

    .jz-safety-duty {
        min-height: 190px;
    }

    .jz-safety-duty-box {
        padding: 26px 0;
    }

    .jz-safety-duty h2 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .jz-safety-duty p {
        font-size: 12px;
        line-height: 1.75;
    }

    .jz-safety-extra {
        padding: 30px 0 42px;
    }
}
