body::-webkit-scrollbar{
    display: none;
}

.m-screen{
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
}

/*第一屏banner*/
.m-index-banner{
    position: relative;
    height: 100%;
}
.m-index-banner-wrap{
    position: relative;
    height: 100%;
}
.m-index-banner-item{
    position: relative;
    height: 100%;
}
.m-index-banner-item .index-banner-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.m-index-banner-item .index-banner-title{
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.m-index-banner-item .index-banner-title .index-banner-txt1{
    font-size: 56px;
    color: #fff;
    line-height: 1;
}
.m-index-banner-item .index-banner-title .index-banner-txt2{
    font-size: 50px;
    color: #fff;
    line-height: 1;
    margin-top: 10px;
}
.m-index-banner-item .index-banner-title .index-banner-line{
    width: 150px;
    height: 3px;
    background-color: #fff;
    margin: 23px auto 26px;
}
.m-index-banner-item .index-banner-title .index-banner-txt3{
    font-size: 24px;
}

.m-index-banner .banner-mouse{
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    
}
.m-index-banner .banner-mouse-title{
    font-size: 12px;
    line-height: 1;
    margin-bottom: 22px;
    color: #fff;
    position: relative;
    z-index: 1;
}
.m-index-banner .banner-mouse-icon{
    position: absolute;
    margin-left: -6px;
    top: 50px;
    z-index: 1;
    animation: fadeInDown 1s infinite;
}

.m-index-banner .navigate-btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    left: 96px;
    cursor: pointer;
}
.m-index-banner .navigate-btn.right{
    left: auto;
    right: 96px;
    transform: translateY(-50%) rotate(180deg);
}



/*侧边栏*/
.m-sidebar{
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 62px;
    z-index: 3;
    display: none;
    animation: goInRight 0.4s ease;
}
@keyframes goInRight {
    0% {
        opacity: 0;
        right: 30px;
    }
    100% {
        opacity: 1;
        right: 62px;
    }
}
.m-sidebar .sidebar-line{
    position: relative;
    width: 2px;
    height: 100px;
    background-color: #fff;
    margin-left: 42px;
    margin-bottom: 14px;
}
.m-sidebar .sidebar-item{
    position: relative;
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.m-sidebar .sidebar-item .sidebar-icon{
    border-radius: 50%;
}
.m-sidebar .sidebar-item .sidebar-icon.white{
    display: none;
}
.m-sidebar .sidebar-item-left{
    position: absolute;
    left: -54px;
    top: 0;
}
.m-sidebar .sidebar-item-year{
    font-size: 20px;
    color: #fff;
}
.m-sidebar .sidebar-item.active .sidebar-icon{
    transform: scale(1.1);
    /* animation: glow 2s infinite; */
}
.m-sidebar .sidebar-item.active .sidebar-icon{
    display: none;
}
.m-sidebar .sidebar-item.active .sidebar-icon.white{
    display: block;
    position: relative;
    z-index: 1;
}
.m-sidebar .sidebar-item.active::after{
    content: '';
    position: absolute;
    background-color: #fff;
    filter: blur(30px);
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: glow 2s infinite;
}

@keyframes glow {
    0% { box-shadow: 0 0 10px 4px rgba(255, 255, 255, 0.8); }
    50% { box-shadow: 0 0 60px 6px rgba(255, 255, 255, 1); }
    100% { box-shadow: 0 0 10px 4px rgba(255, 255, 255, 0.8); }
}
/* 移动端隐藏侧边栏 - 使用更高优先级 */
@media (max-width:680px){
    .m-sidebar[data-page-index="1"],
    .m-sidebar[data-page-index="2"],
    .m-sidebar[data-page-index="3"],
    .m-sidebar[data-page-index="4"] {
        display: none !important;
    }
}

.m-sidebar[data-page-index="1"],
.m-sidebar[data-page-index="2"],
.m-sidebar[data-page-index="3"],
.m-sidebar[data-page-index="4"] {
    display:block;
}


/*侍*/
.m-shi{
    position: relative;
    width: 100vw;
    height: 100vh;
}
.m-shi .shi-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.m-shi .shi-leave{
    position: absolute;
    left: 107px;
    bottom: 60px;
    z-index: 1;
    display: none;
}
.m-shi .shi-page1{
    position: absolute;
    top: 23px;
    right: 386px;
    z-index: 1;
    display: none;
}
.m-shi .shi-page2{
    position: absolute;
    top: -29px;
    right: 704px;
    z-index: 1;
    display: none;
}
.m-shi.animate .shi-leave{
    animation: leafFalling 4s ease-out forwards;
    animation-iteration-count: 1;
    display: block;
}
.m-shi.animate .shi-page1{
    animation: leaveIn1 1s 1;
    display: block;
}
.m-shi.animate .shi-page2{
    animation: leaveIn2 1s 1;
    display: block;
}
@keyframes leaveIn1 {
    0% { opacity: 0; transform: translate(10px,-30px);}
    50% { opacity: 0.5; transform: translate(1,-4px);}
    100% { opacity: 1; transform: translate(0,0);}
}
@keyframes leaveIn2 {
    0% { opacity: 0; transform: translate(-10px,-30px);}
    50% { opacity: 0.5; transform: translate(-1,-4px);}
    100% { opacity: 1; transform: translate(0,0);}
}
@keyframes leafFalling {
    0% { 
        transform: translateX(80px) translateY(-60px) rotate(-15deg);
        opacity: 0;
    }
    /* 渐隐出现 */
    15% { 
        transform: translateX(60px) translateY(-30px) rotate(0deg);
        opacity: 0.6;
    }
    /* 开始飘落，轻微摆动 */
    30% { 
        transform: translateX(30px) translateY(50px) rotate(10deg);
        opacity: 1;
    }
    /* 继续向左下飘落 */
    100% { 
        transform: translateX(-10px) translateY(140px) rotate(-5deg);
        opacity: 1;
    }

}
.m-shi .shi-ink-bg{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: none;
}
.m-shi.animate .shi-ink-bg{
    display: block;
    animation: fadeIn 1s 1;
}

.shi-content{
    position: absolute;
    width: 418px;
    height: 443px;
    left: 6%;
    top: 50%;
    margin-top: -370px;
    color: #fff;
    z-index: 1;
    padding-top: 126px;
    box-sizing: border-box;
}
.m-shi .shi-content-wrap{
    display: none;
}

.m-shi.animate .shi-content-wrap{
    display: block;
    position: relative;
    z-index: 1;
}
.m-shi.animate .shi-content-wrap{
    display: block;
    animation: fadeIn 2s 1;
}
.shi-content .shi-title{
    position: relative;
    display: flex;
    align-items: flex-end;
    line-height: 1;
    margin-bottom: 12px;
    z-index: 1;
}
.shi-content .shi-title-left-top{
    position: relative;
    z-index: 1;
    font-size: 30px;
}
.shi-content .shi-title-left-bottom{
    position: relative;
    z-index: 1;
    font-size: 18px;
    line-height: 1.4;
}
.shi-content .shi-title-right{
    position: relative;
    z-index: 1;
    font-size: 30px;
    border-left: 4px solid #fff;
    margin-left: 18px;
    padding-left: 10px;
    font-family: 'fangsong';
}
.shi-content .shi-conent-eng{
    position: relative;
    z-index: 1;
    font-size: 16px;
    margin-bottom: 12px;
    width: 326px;
}
.shi-content .shi-conent-jp{
    position: relative;
    z-index: 1;
    font-size: 16px;
    margin-bottom: 22px;
    width: 326px;
    font-family: 'A1Mincho';
}
.shi-content .shi-conent-btn{
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 196px;
    height: 32px;
    border: 1px solid #fff;
    font-size: 12px;
    border-radius: 16px;
    cursor: pointer;
    overflow: hidden;
}
.shi-content .shi-conent-btn:hover .shi-conent-btn-arrow{
    border-color: #000 !important;
}
.shi-content .shi-conent-btn:hover .shi-conent-btn-arrow::after{
    border-color: #000 !important;
}
.shi-content .shi-conent-btn .shi-btn-txt{
    position: relative;
    z-index: 2;
    color: #fff;
}
.shi-content .shi-conent-btn:hover .shi-btn-txt{
    color: #000;
}
.shi-content .shi-conent-btn-arrow{
    width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    cursor: pointer;
    margin-left: 10px;
    position: relative;
    z-index: 2;
}
.shi-content .shi-conent-btn-arrow::after{
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    margin-left: -2px;
}

/*豪*/
.m-hao{
    position: relative;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
}
.m-hao .hao-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.m-hao .hao-contnet{
    position: absolute;
    z-index: 1;
    color: #fff;
    width: 418px;
    left: 6%;
    top: 166px;
    display: block;
    opacity: 0;
}
.m-hao .hao-contnet .hao-contnet-bg{
    position: absolute;
    width: 646px;
    height: 527px;
    left: 0;
    top: 0;
    max-width: none;
}
.m-hao.animate .hao-contnet{
    opacity: 1;
    animation: fadeIn 1s 1;
}
.m-hao .hao-title{
    position: relative;
    z-index: 1;
}
.m-hao .hao-title-top{
    font-size: 30px;
    line-height: 1;
    margin-bottom: 12px;
} 
.m-hao .hao-title-bottom{
    font-size: 18px;
    /* border-bottom: 2px solid #fff; */
    display: table;
    position: relative;
    /* padding-bottom: 14px; */
}
.m-hao .hao-title-bottom::after{
    content: '';
    display: block;
    width: 230px;
    height: 2px;
    background-color: #fff;
    left: 0;
    bottom: 0;
} 
.m-hao .hao-title-year{
    font-size: 30px;
    font-family: 'fangsong';
}
.m-hao .hao-contnet-eng{
    position: relative;
    z-index: 1;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 16px;
}
.m-hao .hao-contnet-jp{
    position: relative;
    z-index: 1;
    font-size: 14px;
    line-height: 1.4;
    font-family: 'A1Mincho';
}
.m-hao .hao-rank{
    position: absolute;
    width: 270px;
    left: 50%;
    transform: translateX(-50%);
    top: 196px;
    line-height: 1;
    z-index: 1;
}
.m-hao .hao-rank-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.m-hao .hao-rank-num{
    font-size: 134px;
    color: #fbbf24;
    line-height: 1;
}
.m-hao .hao-rank-simbol{
    font-size: 80px;
    color: #fbbf24;
}
.m-hao .hao-rank-title{
    font-size: 14px;
    color: #fff;
    text-align: left;
    margin-bottom: 34px;
    font-family: 'fangsong';
}
.m-hao .hao-rank-store{
    line-height: 1;
}
.m-hao .hao-photo{
    width: 588px;
    height: 455px;
    position: absolute;
    right: 6%;
    left: auto;
    top: 166px;
}
.m-hao .hao-photo-bg{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.m-hao .hao-photo-container{
    width: 365px;
    height: 252px;
    position: absolute;
    left: 67px;
    top: 51px;
}
.m-hao .hao-photo-wrap{
    width: 365px;
    height: 252px;
}
.m-hao .hao-photo-img{
    width: 100%;
    height: 100%;
}
.m-hao .hao-product{
    position: absolute;
    height: 332px;
    width: 100%;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}
.m-hao .hao-product-bg{
    position: absolute;
    left: 0;
    top: 0;
    background-position: -273px 0;
    height: 332px;
    background-repeat: no-repeat;
    background-size: auto 100%;
    width: 0;
    transition: all 0.4s ease;
}
.m-hao.animate .hao-product-bg{
    width: 100%;
}
.m-hao .hao-product-container{
    position: relative;
    z-index: 1;
    top: 60px;
    width: 1340px;
    height: 250px;
    margin: 0 auto;
}
.m-hao .hao-product-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    z-index: 2;
    margin-top: -24px;
    cursor: pointer;
}
.m-hao .hao-product-arrow.next{
    left: auto;
    right: 0;
    transform: translateY(-50%) rotate(180deg);
}
.m-hao .hao-product-item{
    width: 198px;
}

.m-product-item{
    display: block;
    width: 198px;
    text-align: center;
}
.m-product-item .product-image{
    width: 198px;
    height: 198px;
    display: block;
    margin: 0 auto 14px;
}
.m-product-item .product-title{
    font-size: 14px;
    color: #fff;
    margin-bottom: 4;
    line-height: 1;
    font-family: 'Aldus';
}
.m-product-item .product-lear-more{
    line-height: 1;
    font-size: 12px;
    font-family: 'Aldus';
    color: #fff;
}



/*隐*/
.m-yin{
    position: relative;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
}
.m-yin .yin-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.m-yin .yin-contnet{
    position: absolute;
    z-index: 1;
    color: #fff;
    width: 434px;
    left: 6%;
    top: 166px;
    display: none;
}
.m-yin .yin-contnet-bg{
    width: 568px;
    height: 494px;
    position: absolute;
    top: -36px;
    left: -106px;
    max-width: none;
}
.m-yin.animate .yin-contnet-wrap{
    position: relative;
    z-index: 1;
}
.m-yin.animate .yin-contnet{
    display: block;
    animation: fadeIn 1s 1;
}
.m-yin .yin-title-top{
    font-size: 30px;
    line-height: 1;
    margin-bottom: 12px;
} 
.m-yin .yin-title-bottom{
    font-size: 18px;
    /* border-bottom: 2px solid #fff; */
    display: table;
    position: relative;
}
.m-yin .yin-title-bottom::after{
    content: '';
    display: block;
    width: 230px;
    height: 2px;
    background-color: #fff;
    left: 0;
    bottom: 0;
    position: absolute;
}
.m-yin .yin-title-year{
    font-size: 30px;
    font-family: 'fangsong';
}
.m-yin .yin-contnet-eng{
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 16px;
}
.m-yin .yin-contnet-jp{
    font-size: 14px;
    line-height: 1.4;
}
.m-yin .product-btn{
    display: flex;
    align-items: center;
    height: 32px;
    border-radius: 16px;
    border: 1px solid #fff;
    padding: 0 10px;
    position: absolute;
    text-align: center;
    color: #fff;
    top: 20%;
    left: 41%;
    box-sizing: border-box;
    overflow: hidden;
}
.m-yin .product-btn .txt{
    position: relative;
    z-index: 1;
}
.m-yin .product-btn .arrow{
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    margin-left: 10px;
    flex-shrink: 0;
}
.m-yin .product-btn .arrow::after{
    content: '';
    width: 4px;
    height: 4px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    margin-left: -2px;
}
.m-yin .product-btn.right{
    top: 26%;
    left: 67%;
}

.m-yin .product-btn:hover{
  color: #000;
  background: #fff;
  transition: color 0.3s 0s, background 0.4s 0.3s;
}
.m-yin .product-btn:hover::before{
    top: 0;
}
.m-yin .product-btn:before {
  position: absolute;
  left: 0;
  top: 100%;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #fff;
  transition: 0.48s;
}
.m-yin .product-btn:hover .arrow{
    border-color: #000;
}
.m-yin .product-btn:hover .arrow::after{
    border-color: #000;
}


/*隐*/
.m-wang{
    position: relative;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
}
.m-wang .wang-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.m-wang .wang-top-title{
    position: absolute;
    left: 50%;
    top: 150px;
    transform: translateX(-50%);
    color: #fff;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.m-wang .wang-top-title-top{
    font-size: 24px;
    margin-bottom: 14px;
}
.m-wang .wang-contact-btn{
    display: flex;
    align-items: center;
    height: 32px;
    border-radius: 16px;
    border: 1px solid #fff;
    padding: 0 10px;
    text-align: center;
    color: #fff;
    box-sizing: border-box;
    overflow: hidden;
}
.m-wang .wang-contact-btn:hover{
    color: #000;
}
.m-wang .wang-contact-btn:hover .arrow{
    border-color: #000 !important;
}
.m-wang .wang-contact-btn:hover .arrow::after{
    border-color: #000 !important;
}
.m-wang .wang-contact-btn .txt{
    position: relative;
    z-index: 2;
}
.m-wang .wang-contact-btn .arrow{
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    margin-left: 10px;
}
.m-wang .wang-contact-btn .arrow::after{
    content: '';
    width: 4px;
    height: 4px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    margin-left: -2px;
}
.m-wang .wang-title-big{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
    font-family: 'fangsong';
}
.m-wang .wang-title-top{
    font-size: 114px;
    line-height: 1;
    margin-bottom: 20px;
    display: none;
    white-space: nowrap;
}
.m-wang.animate .wang-title-top{
    display: block;
    animation: fadeInDown 1s 1;
}
.m-wang .wang-title-bottom{
    font-size: 20px;
    line-height: 1;
    display: none;
}
.m-wang.animate .wang-title-bottom{
    display: block;
    animation: fadeInUp 1s 1;
}

.g-layout{
    max-width: 1920px;
    margin: 0 auto;
}

/* 侍/豪/隐/王 这些大标题 */
.shi-title-left-top,
.hao-title-top,
.yin-title-top{
  font-family: "Kanteiryu", "Hakushu Hayakaze", serif;
  font-weight: 900;
}


/* 英文副标题和年份 */
.shi-title-left-bottom,
.shi-title-right,
.hao-title-bottom,
.hao-title-year,
.yin-title-bottom,
.yin-title-year {
  font-family: "Apollo", "Adobe Garamond Pro", "Caslon 3", serif;
  font-weight: normal;
}
 
/* 英文描述文字 */
.shi-conent-eng,
.hao-contnet-eng,
.yin-contnet-eng {
  font-family: "Apollo", "Adobe Garamond Pro", serif;
  font-weight: normal;
  line-height: 1.6;
}

.hao-rank-num {
  font-family: "Apollo", "Adobe Garamond Pro", serif;
  font-weight: normal;
  line-height: 1.6;
}

.wang-title-top,.wang-title-bottom{
    font-family: "A1Mincho","Gilroy Bold", "Gilroy ExtraBold", serif;
}



@media (min-width:1900px){
    /* 左侧黑色渐变遮罩 */
    .m-yin::before{
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 200px;
        height: 100%;
        background: linear-gradient(to right, 
                    rgba(0, 0, 0, 1) 0%, 
                    rgba(0, 0, 0, 0.8) 30%,
                    rgba(0, 0, 0, 0.4) 60%,
                    transparent 100%);
        z-index: 1;
        pointer-events: none;
    }

    /* 右侧黑色渐变遮罩 */
    .m-yin::after{
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 200px;
        height: 100%;
        background: linear-gradient(to left, 
                    rgba(0, 0, 0, 1) 0%, 
                    rgba(0, 0, 0, 0.8) 30%,
                    rgba(0, 0, 0, 0.4) 60%,
                    transparent 100%);
        z-index: 1;
        pointer-events: none;
    }
}


/*平板*/
@media (max-width:1200px){
    .m-sidebar{
        right: 34px;
    }
    @keyframes goInRight {
        0% {
            opacity: 0;
            right: 10px;
        }
        100% {
            opacity: 1;
            right: 34px;
        }
    }

    .shi-content{
        transform: scale(0.8);
        left: 0;
    }

    .m-shi .shi-leave{
        transform: scale(0.8);
    }

    .m-shi .shi-page1{
        transform: scale(0.8);
        right: 100px;
    }
    .m-shi .shi-page2{
        transform: scale(0.8);
        right: 274px;
    }
    @keyframes leaveIn1 {
        0% { opacity: 0; transform: translate(10px,-30px),scale(0.6);}
        50% { opacity: 0.5; transform: translate(1,-4px),scale(0.7);}
        100% { opacity: 1; transform: translate(0,0),scale(0.8);}
    }
    @keyframes leaveIn2 {
        0% { opacity: 0; transform: translate(-10px,-30px),scale(0.6);}
        50% { opacity: 0.5; transform: translate(-1,-4px),scale(0.7);}
        100% { opacity: 1; transform: translate(0,0),scale(0.8);}
    }

    .m-hao .hao-contnet{
        width: 300px;
    }

    .m-hao .hao-photo{
        width: 388px;
        height: 323px;
    }

    .m-hao .hao-photo-container{
        width: 247px;
        height: 182px;
        left: 41px;
        top: 34px;
    }
    .m-hao .hao-photo-wrap{
        width: 247px;
        height: 182px;
    }


    .m-wang .wang-title-top{
        font-size: 100px;
    }
}


/*特殊情况*/
@media (max-width:1030px){
    .m-hao .hao-contnet{
        position: relative;
        padding-right: 52%;
        box-sizing: border-box;
        z-index: 2;
        width: 100%;
        box-sizing: border-box;
    }
    .m-hao .hao-rank{
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .m-hao .hao-rank-item{
        margin-left: 20px;
    }
    .m-hao .hao-rank-item:first-child{
        margin-left: 0;
    }


    .m-hao .hao-rank-num{
        font-size: 50px;
        line-height: 1;
    }
    .m-hao .hao-rank-title{
        margin-bottom: 20px;
    }
    .m-hao .hao-rank-simbol{
        font-size: 50px !important;
    }


    .m-hao .hao-product{
        height: 200px;
    }
    .m-hao .hao-product-bg{
        height: 200px;
    }
    .m-hao .hao-product-container{
        height: 150px;
        top: 0;
    }
    .m-product-item{
        height: 100px;
    }
    .m-product-item .product-image{
        height: 100px;
        width: 100px;
    }
    .m-product-item .product-title{
        margin-bottom: 6px;
    }
    .m-product-item .product-image{
        margin-bottom: 4px;
    }
    .m-hao .hao-product-container{
        width: 80%;
    }
}


/*手机*/
@media (max-width:680px){
    .m-hao .hao-contnet{
        position: relative;
        width: 71%;
        padding-right: 0;
        box-sizing: border-box;
        z-index: 2;
        top: 92px;
    }

    .m-hao .hao-contnet .hao-contnet-bg{
        width: 347px;
        height: 503px;
        max-width: fit-content;
        left: -24px;
    }

    .m-hao .hao-photo{
        display: none;
    }

    .m-hao .hao-rank{
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 101px;
        z-index: 2;
    }

    .m-hao .hao-rank-item{
        margin-left: 20px;
        justify-content: center;
        align-items: center;
    }
    .m-hao .hao-rank-item:first-child{
        margin-left: 0;
    }

    .m-hao .hao-rank-num{
        font-size: 30px;
    }
    .m-hao .hao-rank-title{
        margin-bottom: 20px;
    }
    .m-hao .hao-rank-simbol{
        font-size: 30px !important;
    }

    
    .m-hao .hao-product{
        height: 200px;
        bottom: 0;
    }
    .m-hao .hao-product-bg{
        height: 200px;
    }
    .m-hao .hao-product-container{
        height: 150px;
        top: 0;
    }
    .m-product-item{
        height: 100px;
    }
    .m-product-item .product-image{
        height: 100px;
        width: 100px;
    }
    .m-product-item .product-title{
        margin-bottom: 6px;
        font-size: 10px;
    }
    .m-product-item .product-title{
        margin-bottom: 6px;
        font-size: 10px;
    }
    .m-product-item .product-lear-more{
        font-size: 10px;
    }
    .m-product-item .product-image{
        margin-bottom: 4px;
    }
    .m-hao .hao-product-container{
        width: 96%;
    }
    .m-hao{
        z-index: 5;
    }
    .m-hao .hao-rank-store{
        margin-bottom: 6px;
    }

    .m-wang .wang-title-top{
        font-size: 44px;
    }
    .m-wang .wang-title-bottom{
        font-size: 14px;
    }

    .m-sidebar{
        display: none !important;
    }

    .m-index-banner .navigate-btn{
        display: none;
    }

    .m-shi .shi-leave{
        left: 0;
        width: 50%;
    }

    .m-shi .shi-page1{
        right: 0;
        width: 50%;
    }
    .m-shi .shi-page2{
        right: 82px;
        width: 50%;
    }

    .m-yin .yin-contnet{
        width: auto;
        right: 32%;
    }

    .m-yin .yin-contnet-bg{
        height: 100%;
        width: 100%;
    }

    .m-wang .wang-top-title{
        width: 100%;
    }

    .m-wang.animate .wang-title-top{
        font-size: 30px;
    }
    .m-wang.animate .wang-title-bottom{
        font-size: 12px;
    }

    .m-yin .product-btn{
        bottom: 32px;
        top: auto;
        left: 96px;
    }
    .m-yin .product-btn.right{
        top: auto;
        left: 206px;
    }

    .m-sidebar .sidebar-item.active::after{
        animation: none !important;
    }

    .m-shi .shi-ink-bg{
        left: -104px;
    }

    .shi-content{
        left: -27px;
    }
}