@font-face {
    font-family: "m";
    src: url("../fonts/m.otf") format("truetype");
}

@font-face {
    font-family: "bold";
    src: url("../fonts/bold.otf") format("truetype");
}

body {
    font-family: "m";
    max-width: 750px;
    margin: auto;
}

.Heater {
    width: 100%;
    height: 1.4rem;
    background: rgb(255, 255, 255);
    box-shadow: 0px 1px 4px rgba(51, 51, 51, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
}

.Heater_max {
    width: calc(100% - 0.8rem);
    height: 0.7rem;
    border-radius: 0.7rem;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}

.An {
    width: 0.6rem;
}

.suosouaa {
    width: 96%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transform-origin: center center;
    background: #ffffff;
    border-radius: 0.2rem;
    padding: 0.4rem;
    box-shadow: 0px 0px 15px 3px #00000020;
    z-index: 99999;
    transition: all 0.2s;
}

.suosouaa form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.suosouaa_s {
    flex: 1;
    height: 1rem;
    border: 1px solid rgb(0, 0, 0);
    font-size: 0.28rem;
    color: rgb(0, 0, 0);
    padding: 0 0.4rem;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.suosouaa_t {
    width: 2rem;
    height: 1rem;
    border: transparent;
    background: rgb(5, 5, 5);
    color: #ffffff;
    font-size: 0.28rem;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.En {
    width: 50%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transform-origin: center center;
    background: #ffffff;
    border-radius: 0.2rem;
    padding: 0.4rem;
    box-shadow: 0px 0px 15px 3px #00000020;
    z-index: 99999;
    transition: all 0.2s;
}

.En ul{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.4rem;
}
.En ul li{
    width: 100%;
    text-align: center;
    font-size: 0.28rem;
    color: #000;
    text-align: center
}

.menu_button {
    cursor: pointer;
    width: 100%;
    aspect-ratio: 4 / 4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu_button svg {
    display: block;
}

.menu_button:focus {
    outline: none;
}

.menu_button .line {
    fill: none;
    stroke: rgba(102, 102, 102, 1);
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.menu_button .line1 {
    stroke-dasharray: 60 207;
}

.menu_button .line2 {
    stroke-dasharray: 60 60;
}

.menu_button .line3 {
    stroke-dasharray: 60 207;
}

.menu_button.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}

.menu_button.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
}

.menu_button.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}

.Heater p {
    font-size: 0.24rem;
    color: rgba(102, 102, 102, 1);
    margin-left: 0.14rem;
}

.Heater h1 {
    font-size: 0.36rem;
    color: rgba(51, 51, 51, 1);
    line-height: 1;
    font-family: 'bold';
    margin: auto;
}

.menu_button_box {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.14rem;
}

.menu_button_box a {
    width: max-content;
    display: block;
    font-size: 0.26rem;
    line-height: 1;
    color: rgba(102, 102, 102, 1);
}

.menu_button_box svg {
    width: 0.36rem;
    aspect-ratio: 4 / 4;
    object-fit: contain;
    display: block;
    transition: all 0.3s;
}
.share-button__button {
    font-size: 0.28rem;
    display: flex;
    align-items: center;
    color: rgb(var(--color-link));
    margin-left: 0;
    padding-left: 0;
}
.share-button__button .icon-share
{
    height: 0.28rem;
    margin-right: 0.45rem;
    min-width: 0.28rem;
}
.Nav {
    width: 90%;
    height: calc(100vh - 1.4rem);
    background: rgba(255, 255, 255);
    position: fixed;
    top: 1.4rem;
    left: 0;
    z-index: 100;
    display: none;
}

.Nav ul {
    width: 100%;
    max-height: calc(100vh - 1.4rem);
    overflow: auto;
    padding: 0 0.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem;
    margin-top: 0.6rem;
}

.Nav ul li {
    width: 100%;
}

.Nav ul li a {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 0.32rem;
    color: #333333;
    line-height: calc(1 + 0.3 / var(--font-body-scale));

}

.Nav ul li a svg {
    width: 0.30rem;
    height: auto;
    display: block;
    transition: all 0.3s;
}

.Nav_ul{
    padding: 0.4rem 0 0 0.4rem;
    display: none
}
.Nav_ul a{
    padding: 0.1rem 0;
}

.Nav_li_with_sub {
    position: relative;
}

.Nav_ul_third {
    padding: 0.2rem 0 0 0.4rem;
    display: none;
}

.Nav_ul_third a {
    display: block;
    padding: 0.08rem 0;
    font-size: 0.28rem;
    color: #666666;
    text-decoration: none;
    transition: color 0.3s;
}

.Nav_ul_third a:hover {
    color: #333333;
}



.Nav_box {
    width: calc(100% - 0.8rem);
    overflow-x: auto;
    margin: auto;
    border-bottom: 1px solid rgba(238, 238, 238, 1);
    margin-top: 1.4rem;
}

.Nav_box::-webkit-scrollbar {
    height: 2px;
}

.Nav_box::-webkit-scrollbar-thumb {
    background: rgba(187, 187, 187, 1);
    border-radius: 2px;
}

.Nav_box::-webkit-scrollbar-track {
    background: transparent;
}

.Nav_box ul {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 0.32rem;
}

.Nav_box ul li {
    font-size: 0.24rem;
    color: rgba(102, 102, 102, 1);
    line-height: 1.2rem;
}

.Nav_box ul li.active {
    color: rgba(34, 34, 34, 1);
    font-family: 'bold';
}

.List {
    width: calc(100% - 0.8rem);
    margin: 0.6rem auto 1rem;
}

.List h2 {
    font-size: 0.4rem;
    color: rgba(51, 51, 51, 1);
    line-height: 1;
    font-family: 'bold';
    text-align: center;
}

.List ul {
    width: 100%;
    margin-top: 0.6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem;
}

.List ul li {
    width: 100%;
}

.List_img {
    width: 100%;
    position: relative;
}

.List_img img {
    width: 100%;
    aspect-ratio: 100 / 150;
    object-fit: cover;
    display: block;
}

.List_img svg {
    width: 0.30rem;
    height: auto;
    display: block;
    position: absolute;
    top: 0.1rem;
    right: 0.1rem;
}

.List_img svg.active {
    fill: rgba(255, 101, 66, 1);
}

.List ul li h3 {
    font-size: 0.28rem;
    color: rgba(51, 51, 51, 1);
    line-height: 1;
    font-family: 'bold';
    margin-top: 0.2rem;
    word-break: break-all;
    word-wrap: break-word;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.Trenchora {
    width: 100%;
    overflow: hidden;
    background: rgba(249, 249, 249, 1);
}

.Trenchora>h2 {
    text-align: center;
    font-size: 0.4rem;
    color: rgba(51, 51, 51, 1);
    padding: 0.6rem 0;
}

.Trenchora ul {
    width: 100%;
}

.Trenchora ul li {
    width: 100%;
    border-top: 1px solid rgba(237, 237, 237, 1);
    padding: 0.4rem;
}

.Trenchora_title {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.4rem;
}

.Trenchora_title h3 {
    flex: 1;
    font-size: 0.32rem;
    color: rgba(51, 51, 51, 1);
}

.Trenchora_title svg {
    width: 0.2rem;
    height: auto;
    display: block;
}



.Trenchora_text {
    width: 100%;
    margin-top: 0.4rem;
    font-size: 0.28rem;
    color: rgba(102, 102, 102, 1);
    line-height: 1.5;
    word-break: break-all;
    word-wrap: break-word;
    display: none;
    transition: auto;
}

.Footer {
    width: 100%;
}

.Footer ul {
    width: calc(100% - 0.8rem);
    margin: 0.4rem auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
}

.Footer ul li {
    width: 0.6rem;
}

.Footer ul li img {
    width: 100%;
    height: auto;
    display: block;
}

.Show {

    width: calc(100% - 0.8rem);
    margin: 0.6rem auto 1rem;
}

.Show_title {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.2rem;
}

.Show_title h2 {
    font-size: 0.4rem;
    color: rgba(51, 51, 51, 1);
    line-height: 1;
    font-family: 'bold';
    text-align: center;
}

.Show_title a {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.15rem;
    font-size: 0.24rem;
    color: rgba(153, 153, 153, 1);
}

.Show_title a svg {
    width: 0.3rem;
    height: auto;
    display: block;
}

.Show_title button {
    width: 0.3rem;
    height: auto;
    display: block;
}

.Show_title button {
    width: 0.3rem;
    background: transparent;
    border: transparent;
    cursor: pointer;
}

.Show_title button svg {
    width: 100%;
    height: auto;
    display: block;
}

.Swiper {
    width: 100%;
    margin-top: 0.3rem;
}

.Swiper img {
    width: 100%;
    height: auto;
}

.Swiper_box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.4rem;
}

.prev,
.pager1,
.next {
    width: max-content;
    height: auto;
    background: transparent;
    position: static;
    inset: 0;
    transform: translate(0, 0);
    cursor: pointer;
}

.prev:hover svg path,
.next:hover svg path {
    fill: rgba(255, 101, 66, 1);
}

.pager1 {
    font-size: 0.24rem;
    color: rgba(153, 153, 153, 1);
    line-height: 1;
}

.Discover {
    width: 100%;
    margin-top: 0.6rem;
}

.Discover h2 {
    font-size: 0.32rem;
    color: rgba(51, 51, 51, 1);
}

.Discover ul {
    width: 100%;
    margin-top: 0.4rem;
}

.Discover ul li {
    width: 100%;
    padding: 0.4rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.3rem;
    border-top: 1px solid rgba(238, 238, 238, 1);
}

.Discover ul li img {
    width: 0.4rem;
    height: auto;
}

.Discover ul li p {
    flex: 1;
    font-size: 0.28rem;
    color: rgba(102, 102, 102, 1);
}

.Show_list {
    width: 100%;
    margin-top: 0.6rem;
}

.Show_list h2 {
    font-size: 0.32rem;
    color: rgba(51, 51, 51, 1);
    line-height: 1;
}

.Show_list ul {
    width: 100%;
    margin-top: 0.3rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.3rem;
}

.Show_list ul li {
    width: 100%;
}

.Show_list ul li h3 {
    font-size: 0.28rem;
    color: rgba(51, 51, 51, 1);
    line-height: 1;
    font-family: 'bold';
    margin-top: 0.2rem;
    word-break: break-all;
    word-wrap: break-word;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.Trust {
    width: calc(100% - 0.8rem);
    margin: 1.2rem auto;
}

.Trust h2 {
    font-size: 0.4rem;
    color: rgba(51, 51, 51, 1);
    text-align: center;
}

.Trust p {
    font-size: 0.3rem;
    color: rgba(102, 102, 102, 1);
    line-height: 2.5;
    text-align: center;
    margin-top: 0.2rem;
}

.Trust a {
    width: 2.8rem;
    line-height: 0.8rem;
    border: 1px solid rgba(51, 51, 51, 1);
    text-align: center;
    display: block;
    margin: auto;
    font-size: 0.36rem;
    color: rgba(51, 51, 51, 1);
    text-align: center;
    margin-top: 0.4rem;
}

.Process {
    width: 100%;
    overflow: hidden;
    background: rgba(255, 247, 245, 1);
}

.Process_max {
    width: calc(100% - 0.8rem);
    margin: 0.6rem auto 0.8rem;
}

.Process_max h2 {
    font-size: 0.4rem;
    color: rgba(51, 51, 51, 1);
    text-align: center;
}

.Process_swiper {
    width: 100%;
    margin-top: 0.4rem;
}

.Process_swiper img {
    width: 100%;
    height: auto;
}

.pager2,
.pager3 {
    width: 2.2rem;
    position: static;
    margin: auto;
    margin-top: 0.4rem;
    transform: translate(0, 0);
    gap: 0;
    height: 5px;
}

.pager2 .zhenshangyin-pager-bullets-bullet,
.pager3 .zhenshangyin-pager-bullets-bullet {
    width: max-content;
    flex: 1;
    height: 1px;
    background: rgba(153, 153, 153, 1);
    border-radius: 2px;
}

.pager2 .zhenshangyin-pager-bullets-bullet.active,
.pager3 .zhenshangyin-pager-bullets-bullet.active {
    height: 5px;
}

.Order {
    width: calc(100% - 0.8rem);
    margin: 0.6rem auto;
}

.Order h2 {
    font-size: 0.4rem;
    color: rgba(51, 51, 51, 1);
    text-align: center;
}

.Order ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin-top: 0.6rem;
}

.Order ul li {
    width: 100%;
}

.Order_title {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.2rem;
}

.Order_title img {
    width: 0.4rem;
    height: auto;
}

.Order_title h3 {
    flex: 1;
    font-size: 0.28rem;
    color: rgba(51, 51, 51, 1);
}

.Order_text {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.2rem;
    margin-top: 0.3rem;
}

.Order_text svg {
    width: 0.4rem;
    aspect-ratio: 4 / 4;
    object-fit: contain;
}

.Order_text p {
    flex: 1;
    font-size: 0.28rem;
    color: rgba(102, 102, 102, 1);
    line-height: 1.5;
}

.Postage {
    width: 100%;
    margin: 1.2rem auto;
}

.Postage h2 {
    font-size: 0.4rem;
    color: rgba(51, 51, 51, 1);
    text-align: center;
}

.Postage>p {
    font-size: 0.28rem;
    color: rgba(102, 102, 102, 1);
    line-height: 1.5;
    text-align: center;
}

.Postage img {
    width: 100%;
    margin-top: 0.3rem;
}

.Postage ul {
    width: calc(100% - 0.8rem);
    margin: auto;
    margin-top: 0.4rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.2rem 0.3rem;
}

.Postage ul li {
    width: 100%;
}

.Postage_img {
    width: 100%;
    aspect-ratio: 100 / 60;
    border: 1px solid rgba(238, 238, 238, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.Postage_img img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.Postage ul li h3 {
    text-align: center;
    font-size: 0.32rem;
    color: rgba(51, 51, 51, 1);
    margin-top: 0.2rem;
}

.Postage ul li p {
    text-align: center;
    font-size: 0.28rem;
    color: rgba(102, 102, 102, 1);
}

.List>a {
    width: 2.8rem;
    line-height: 0.8rem;
    border: 1px solid rgba(51, 51, 51, 1);
    text-align: center;
    display: block;
    margin: auto;
    font-size: 0.36rem;
    color: rgba(51, 51, 51, 1);
    text-align: center;
    margin-top: 0.6rem;
}

.Sel {
    width: calc(100% - 0.8rem);
    margin: 1.2rem auto;
}

.Sel h2 {
    font-size: 0.4rem;
    color: rgba(51, 51, 51, 1);
    line-height: 1;
    font-family: 'bold';
    text-align: center;
}

.Hot {
    width: 100%;
    margin-top: 0.6rem;
}

.Hot ul li {
    width: 100%;
}

.Hot ul li h3 {
    font-size: 0.28rem;
    color: rgba(51, 51, 51, 1);
    line-height: 1;
    font-family: 'bold';
    margin-top: 0.2rem;
    word-break: break-all;
    word-wrap: break-word;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.Sel>a {
    width: 2.8rem;
    line-height: 0.8rem;
    border: 1px solid rgba(51, 51, 51, 1);
    text-align: center;
    display: block;
    margin: auto;
    font-size: 0.36rem;
    color: rgba(51, 51, 51, 1);
    text-align: center;
    margin-top: 0.6rem;
}

.Sel_text{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 0.28rem;
    color: rgba(102, 102, 102, 1);
    gap: 0.1rem;
    margin-top: 0.2rem;
}
.Sel_text img{
    width: 0.2rem;
    height: auto;
    display: block;
}

.Banner{
    width: 100%;
    overflow: hidden;
}
.Banner img{
    width: 100%;
    height: auto;
}

.Sin {
    width: calc(100% - 0.8rem);
    margin: auto;
}

.Sin h2 {
    font-size: 0.4rem;
    color: rgba(51, 51, 51, 1);
    line-height: 1;
    font-family: 'bold';
    text-align: center;
}
.Sin p{
    text-align: center;
    font-size: 0.28rem;
    color: rgba(102, 102, 102, 1);
}