/* You can add global styles to this file, and also import other style files */

header{
    width: 100%;
    height: 60px;
    background-color: #000000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    color: #ffffff;
}

footer{
    width: 100%;
    height: auto;
    background-color: #000000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    color: #ffffff;
}


html, body {
    height: 100%;        /* 为html和body设置高度为100%-60px */
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* 设置视频容器的宽度，使其始终填满容器 */
.video-wrapper {
    position: relative;
    width: 100%;         /* 确保容器宽度为100% */
    height: 990%;        /* 使容器高度为100% */
    overflow: hidden;    /* 隐藏超出部分 */
    z-index: 1;
}

.video-wrapper video {
    width: 100%;         /* 视频宽度填满容器 */
    height: 100%;        /* 视频高度填满容器 */
    object-fit: cover;   /* 覆盖整个容器，保持宽高比，裁剪超出部分 */
    object-position: center center; /* 确保视频的中心是容器的中心 */
}

/* ----- gallery --------------------------------------------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 每行3张图 */
    gap: 20px;                              /* 图片之间的空隙 */
    max-width: 1000px;                      /* 控制整体宽度，防止太宽 */
    margin: 30px auto;                      /* 居中并有上下边距 */
    padding: 0 20px;                        /* 左右留白 */
}
  
.gallery-img {
    width: 100%;                            /* 填满格子 */
    aspect-ratio: 1 / 1;                    /* 强制变成正方形 */
    object-fit: cover;                      /* 裁切图片不变形 */
    border-radius: 10px;                    /* 圆角（可选） */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* 阴影效果 */
}

.gallery-img:hover {
    filter: brightness(0.6); /* 鼠标移上去时变暗 */
}
  
  /* 全屏模态框 */
#lightbox {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
  
#lightbox img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
}
  
#lightbox .caption {
    color: white;
    margin-top: 10px;
}
  
#lightbox .close,
#lightbox .prev,
#lightbox .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}
  
#lightbox .close {
    top: 20px;
    right: 30px;
    font-size: 40px;
}
  
#lightbox .prev {
    left: 20px;
}
  
#lightbox .next {
    right: 20px;
}

/* ----- gallery fin --------------------------------------------- */

.carousel {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    display: flex;
    width: 100%;
    flex-shrink: 0;
}

.slide img {
    width: 50%;
    display: block;
}

.text {
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.dots {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
}

.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* flex */

.flex{
    display: flex;
}
.flex-start-start{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.flex-start-center{
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.flex-start-end{
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}
.flex-center-start{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.flex-center-center{
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-center-end{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.flex-end-start{
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.flex-end-center{
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.flex-end-end{
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}


/* padding */

.content-padding-h-none{
    padding-left: 0px;
    padding-right: 0px;
}
.content-padding-h-5{
    padding-left: 5px;
    padding-right: 5px;
}
.content-padding-h-10{
    padding-left: 10px;
    padding-right: 10px;
}
.content-padding-h-15{
    padding-left: 15px;
    padding-right: 15px;
}
.content-padding-h-20{
    padding-left: 20px;
    padding-right: 20px;
}
.content-padding-h-25{
    padding-left: 25px;
    padding-right: 25px;
}
.content-padding-h-30{
    padding-left: 30px;
    padding-right: 30px;
}
.content-padding-h-35{
    padding-left: 35px;
    padding-right: 35px;
}
.content-padding-h-40{
    padding-left: 40px;
    padding-right: 40px;
}
.content-padding-h-45{
    padding-left: 45px;
    padding-right: 45px;
}
.content-padding-h-50{
    padding-left: 50px;
    padding-right: 50px;
}
.content-padding-h-55{
    padding-left: 55px;
    padding-right: 55px;
}
.content-padding-h-60{
    padding-left: 60px;
    padding-right: 60px;
}
.content-padding-h-70{
    padding-left: 70px;
    padding-right: 70px;
}
.content-padding-h-80{
    padding-left: 80px;
    padding-right: 80px;
}
.content-padding-h-90{
    padding-left: 90px;
    padding-right: 90px;
}
.content-padding-h-100{
    padding-left: 100px;
    padding-right: 100px;
}
.content-padding-h-value{
    padding-left: var(--left);
    padding-right: var(--right);
}

.content-padding-v-none{
    padding-top: 0px;
    padding-bottom: 0px;
}
.content-padding-v-5{
    padding-top: 5px;
    padding-bottom: 5px;
}
.content-padding-v-10{
    padding-top: 10px;
    padding-bottom: 10px;
}
.content-padding-v-15{
    padding-top: 15px;
    padding-bottom: 15px;
}
.content-padding-v-20{
    padding-top: 20px;
    padding-bottom: 20px;
}
.content-padding-v-25{
    padding-top: 25px;
    padding-bottom: 25px;
}


.content-padding-none{
    padding: none;
}
.content-padding-5{
    padding: 5px;
}
.content-padding-10{
    padding: 10px;
}
.content-padding-15{
    padding: 15px;
}
.content-padding-20{
    padding: 20px;
}
.content-padding-25{
    padding: 25px;
}





.content-padding-value{
    padding: var(--padding);
}

.content-padding-r-none{
    padding-right: 0px;
}
.content-padding-r-5{
    padding-right: 5px;
}
.content-padding-r-10{
    padding-right: 10px;
}
.content-padding-r-15{
    padding-right: 15px;
}
.content-padding-r-20{
    padding-right: 20px;
}
.content-padding-r-25{
    padding-right: 25px;
}

.content-padding-l-none{
    padding-left: 0px;
}
.content-padding-l-5{
    padding-left: 5px;
}
.content-padding-l-10{
    padding-left: 10px;
}
.content-padding-l-15{
    padding-left: 15px;
}
.content-padding-l-20{
    padding-left: 20px;
}
.content-padding-l-25{
    padding-left: 25px;
}


.content-padding-b-none{
    padding-bottom: 0px;
}
.content-padding-b-5{
    padding-bottom: 5px;
}
.content-padding-b-10{
    padding-bottom: 10px;
}
.content-padding-b-15{
    padding-bottom: 15px;
}
.content-padding-b-20{
    padding-bottom: 20px;
}
.content-padding-b-25{
    padding-bottom: 25px;
}


.content-padding-t-none{
    padding-top: 0px;
}
.content-padding-t-5{
    padding-top: 5px;
}
.content-padding-t-10{
    padding-top: 10px;
}
.content-padding-t-15{
    padding-top: 15px;
}
.content-padding-t-20{
    padding-top: 20px;
}
.content-padding-t-25{
    padding-top: 25px;
}


.content-100p-5p{
    width: 100%;
    height: 5%;
}
.content-100p-10p{
    width: 100%;
    height: 10%;
}
.content-100p-15p{
    width: 100%;
    height: 15%;
}
.content-100p-20p{
    width: 100%;
    height: 20%;
}
.content-100p-25p{
    width: 100%;
    height: 25%;
}
.content-100p-30p{
    width: 100%;
    height: 30%;
}
.content-100p-33p{
    width: 100%;
    height: 33.33%;
}
.content-100p-35p{
    width: 100%;
    height: 35%;
}
.content-100p-40p{
    width: 100%;
    height: 40%;
}
.content-100p-45p{
    width: 100%;
    height: 45%;
}
.content-100p-50p{
    width: 100%;
    height: 50%;
}
.content-100p-55p{
    width: 100%;
    height: 55%;
}
.content-100p-60p{
    width: 100%;
    height: 60%;
}
.content-100p-65p{
    width: 100%;
    height: 65%;
}
.content-100p-70p{
    width: 100%;
    height: 70%;
}
.content-100p-75p{
    width: 100%;
    height: 75%;
}
.content-100p-80p{
    width: 100%;
    height: 80%;
}
.content-100p-85p{
    width: 100%;
    height: 85%;
}
.content-100p-90p{
    width: 100%;
    height: 90%;
}
.content-100p-95p{
    width: 100%;
    height: 95%;
}
.content-100p-100p{
    width: 100%;
    height: 100%;
}

.content-5p-100p{
    width: 5%;
    height: 100%;
}
.content-10p-100p{
    width: 10%;
    height: 100%;
}
.content-15p-100p{
    width: 15%;
    height: 100%;
}
.content-20p-100p{
    width: 20%;
    height: 100%;
}
.content-25p-100p{
    width: 25%;
    height: 100%;
}
.content-30p-100p{
    width: 30%;
    height: 100%;
}
.content-33p-100p{
    width: 33.33%;
    height: 100%;
}
.content-35p-100p{
    width: 35%;
    height: 100%;
}
.content-40p-100p{
    width: 40%;
    height: 100%;
}
.content-45p-100p{
    width: 45%;
    height: 100%;
}
.content-50p-100p{
    width: 50%;
    height: 100%;
}
.content-55p-100p{
    width: 55%;
    height: 100%;
}
.content-60p-100p{
    width: 60%;
    height: 100%;
}
.content-65p-100p{
    width: 65%;
    height: 100%;
}
.content-70p-100p{
    width: 70%;
    height: 100%;
}
.content-75p-100p{
    width: 75%;
    height: 100%;
}
.content-80p-100p{
    width: 80%;
    height: 100%;
}
.content-85p-100p{
    width: 85%;
    height: 100%;
}
.content-90p-100p{
    width: 90%;
    height: 100%;
}
.content-95p-100p{
    width: 95%;
    height: 100%;
}
.content-100p-100p{
    width: 100%;
    height: 100%;
}

.content-auto-5p{
    width: auto;
    height: 5%;
}
.content-auto-10p{
    width: auto;
    height: 10%;
}
.content-auto-15p{
    width: auto;
    height: 15%;
}
.content-auto-20p{
    width: auto;
    height: 20%;
}
.content-auto-25p{
    width: auto;
    height: 25%;
}
.content-auto-30p{
    width: auto;
    height: 30%;
}
.content-auto-35p{
    width: auto;
    height: 35%;
}
.content-auto-40p{
    width: auto;
    height: 40%;
}
.content-auto-45p{
    width: auto;
    height: 45%;
}
.content-auto-50p{
    width: auto;
    height: 50%;
}
.content-auto-55p{
    width: auto;
    height: 55%;
}
.content-auto-60p{
    width: auto;
    height: 60%;
}
.content-auto-65p{
    width: auto;
    height: 65%;
}
.content-auto-70p{
    width: auto;
    height: 70%;
}
.content-auto-75p{
    width: auto;
    height: 75%;
}
.content-auto-80p{
    width: auto;
    height: 80%;
}
.content-auto-85p{
    width: auto;
    height: 85%;
}
.content-auto-90p{
    width: auto;
    height: 90%;
}
.content-auto-95p{
    width: auto;
    height: 95%;
}
.content-auto-100p{
    width: auto;
    height: 100%;
}

.content-5p-auto{
    width: 5%;
    height: auto;
}
.content-10p-auto{
    width: 10%;
    height: auto;
}
.content-15p-auto{
    width: 15%;
    height: auto;
}
.content-20p-auto{
    width: 20%;
    height: auto;
}
.content-25p-auto{
    width: 25%;
    height: auto;
}
.content-30p-auto{
    width: 30%;
    height: auto;
}
.content-33p-auto{
    width: 33.33%;
    height: auto;
}
.content-35p-auto{
    width: 35%;
    height: auto;
}
.content-40p-auto{
    width: 40%;
    height: auto;
}
.content-45p-auto{
    width: 45%;
    height: auto;
}
.content-50p-auto{
    width: 50%;
    height: auto;
}
.content-55p-auto{
    width: 55%;
    height: auto;
}
.content-60p-auto{
    width: 60%;
    height: auto;
}
.content-65p-auto{
    width: 65%;
    height: auto;
}
.content-70p-auto{
    width: 70%;
    height: auto;
}
.content-75p-auto{
    width: 75%;
    height: auto;
}
.content-80p-auto{
    width: 80%;
    height: auto;
}
.content-85p-auto{
    width: 85%;
    height: auto;
}
.content-90p-auto{
    width: 90%;
    height: auto;
}
.content-95p-auto{
    width: 95%;
    height: auto;
}
.content-100p-auto{
    width: 100%;
    height: auto;
}

.content-50p-5p{
    width: 50%;
    height: 5%;
}
.content-50p-10p{
    width: 50%;
    height: 10%;
}
.content-50p-15p{
    width: 50%;
    height: 15%;
}
.content-50p-20p{
    width: 50%;
    height: 20%;
}
.content-50p-25p{
    width: 50%;
    height: 25%;
}
.content-50p-30p{
    width: 50%;
    height: 30%;
}
.content-50p-35p{
    width: 50%;
    height: 35%;
}
.content-50p-40p{
    width: 50%;
    height: 40%;
}
.content-50p-45p{
    width: 50%;
    height: 45%;
}
.content-50p-50p{
    width: 50%;
    height: 50%;
}
.content-50p-55p{
    width: 50%;
    height: 55%;
}
.content-50p-60p{
    width: 50%;
    height: 60%;
}
.content-50p-65p{
    width: 50%;
    height: 65%;
}
.content-50p-70p{
    width: 50%;
    height: 70%;
}
.content-50p-75p{
    width: 50%;
    height: 75%;
}
.content-50p-80p{
    width: 50%;
    height: 80%;
}
.content-50p-85p{
    width: 50%;
    height: 85%;
}
.content-50p-90p{
    width: 50%;
    height: 90%;
}
.content-50p-95p{
    width: 50%;
    height: 95%;
}
.content-50p-100p{
    width: 50%;
    height: 100%;
}

.content-5p-50p{
    width: 5%;
    height: 50%;
}
.content-10p-50p{
    width: 10%;
    height: 50%;
}
.content-15p-50p{
    width: 15%;
    height: 50%;
}
.content-20p-50p{
    width: 20%;
    height: 50%;
}
.content-25p-50p{
    width: 25%;
    height: 50%;
}
.content-30p-50p{
    width: 30%;
    height: 50%;
}
.content-35p-50p{
    width: 35%;
    height: 50%;
}
.content-40p-50p{
    width: 40%;
    height: 50%;
}
.content-45p-50p{
    width: 45%;
    height: 50%;
}
.content-50p-50p{
    width: 50%;
    height: 50%;
}
.content-55p-50p{
    width: 55%;
    height: 50%;
}
.content-60p-50p{
    width: 60%;
    height: 50%;
}
.content-65p-50p{
    width: 65%;
    height: 50%;
}
.content-70p-50p{
    width: 70%;
    height: 50%;
}
.content-75p-50p{
    width: 75%;
    height: 50%;
}
.content-80p-50p{
    width: 80%;
    height: 50%;
}
.content-85p-50p{
    width: 85%;
    height: 50%;
}
.content-90p-50p{
    width: 90%;
    height: 50%;
}
.content-95p-50p{
    width: 95%;
    height: 50%;
}
.content-100p-50p{
    width: 100%;
    height: 50%;
}

.content-auto-auto{
    width: auto;
    height: auto;
}
.content-100p-auto{
    width: 100%;
    height: auto;
}
.content-auto-100p{
    width: auto;
    height: 100%;
}
.content-100p-100p{
    width: 100%;
    height: 100%;
}
.content-100v-100p{
    width: 100vh;
    height: 100%;
}
.content-100p-100v{
    width: 100%;
    height: 100vh;
}
.content-100v-auto{
    width: 100vh;
    height: auto;
}
.content-auto-100v{
    width: auto;
    height: 100vh;
}

.content-33p-20p{
    width: 33.33%;
    height: 20%;
}

.content-wh-value-100p{
    width: calc(100vh - var(--width));
    height: 100%;
}
.content-100p-wh-value{
    width: 100%;
    height: calc(100vh - var(--height));
}
.content-w-value-100p{
    width: calc(100% - var(--width));
    height: 100%;
}
.content-100p-w-value{
    width: 100%;
    height: calc(100% - var(--height));
}
.content-wp-value-100p{
    width: calc(100% - var(--width));
    height: 100%;
}
.content-100p-wp-value{
    width: 100%;
    height: calc(100% - var(--height));
}
.content-wp-value-auto{
    width: calc(100% - var(--width));
    height: auto;
}
.content-h-100p{
    height: 100%;
}
.content-w-100p{
    width: 100%;
}
.content-w-value{
    width: var(--width);
}
.content-h-value{
    height: var(--height);
}
.content-auto-value{
    width: auto;
    height: var(--height);
}
.content-value-auto{
    width: var(--width);
    height: auto;
}
.content-value-100p{
    width: var(--width);
    height: 100%;
}
.content-100p-value{
    width: 100%;
    height: var(--height);
}
.content-value-value{
    width: var(--width);
    height: var(--height);
}

/* Image */

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

.icon-20-20{
    width: 20px;
    height: 20px;
}
.icon-30-30{
    width: 30px;
    height: 30px;
}
.icon-40-40{
    width: 40px;
    height: 40px;
}
.icon-60-40{
    width: 60px;
    height: 40px;
}
.icon-80-60{
    width: 100px;
    height: 50px;
}
.icon-100p-500{
    width: 100%;
}

.img-d4-m2{
    width: 24%;
}

.blur-5{
    backdrop-filter: blur(5px);
}
.pointer-events-none{
    pointer-events: none
}



/* color  */
.c-orange{
    color: orange;
}
.c-gray {
    color: gray;
}
.c-black {
    color: black;
}


.desktop{
    display: flex;
}
.desktop-376{
    display: flex;
}
.t-desktop {
    display: block;
}

.mobile{
    display: none;
}


.click{
    color: #FFFFFF;
    text-decoration: none; /* 移除下划线 */
}

.click-noir{
    color: black;
    text-decoration: none; /* 移除下划线 */
}

.big-button {
    font-size: 18px;
    padding: 10px 20px; /* 上下 10px，左右 20px */
  
}


.click:hover, .click:focus {
    text-decoration: underline; /* 鼠标悬停或聚焦时添加下划线 */
    text-decoration-color: #FF0000; /* 下划线颜色变红 */
}


/* 设置视频容器的宽度，使其始终填满容器 */
.video-container {
    width: 100%; /* 容器宽度为100% */
    position: relative; /* 设置相对定位 */
    padding-bottom: 56.25%; /* 高度为宽度的56.25%，这是16:9视频的宽高比 */
    height: 0; /* 初始高度设为0 */
}
.video-container video {
    position: absolute; /* 视频绝对定位，相对于父容器 */
    top: 0;
    left: 0;
    width: 100%; /* 视频宽度为100% */
    height: 100%; /* 视频高度为100% */
}

.fugai {
    z-index: 6;
    position: relative; 
}

.m-flex {
    display: flex; 
}

.m-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* 或 space-around，根据您的设计需求 */
}

.m-content-33p-auto {
    flex: 1 1 32%; /* 三列布局 */
    margin: 5px; /* 根据需要调整间距 */
    box-sizing: border-box; /* 包括边距和边框在内的宽度计算 */
}

.m-content-50p-auto {
    flex: 1 1 46%; /* 三列布局 */
    margin: 5px; /* 根据需要调整间距 */
    box-sizing: border-box; /* 包括边距和边框在内的宽度计算 */
}

.m-content-40p-auto{
    width: 40%;
    height: auto;
}
.m-content-60p-auto{
    width: 60%;
    height: auto;
}

.d{
    display: block;  
}

.beijing{
    background: #472211;
    color: #ccbda8;
}
.f-beijing{
    background: #ccbda8;
    color: #472211;
}

.arrow-btn { /* 箭头按钮的样式 */
    background-color: white; /*  背景颜色 */
    border: 2px solid #ccc; /*  边框样式*/
    font-size: 30px; /*  字体大小 */
    padding: 10px; /*  内边距 */
    border-radius: 10px; /*  边角圆滑 */
    cursor: pointer; /*  鼠标悬停时指针样式*/
    user-select: none; /*  禁止文本选择 */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /*  阴影效果 */

    background: #ccbda8;
    color: #472211;
}

.review-container {
    padding: 10px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    width: 100%; /* 全宽 */
}

.reviews {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

/* 默认每个评论宽度占三分之一 - 适配大部分屏幕 */
.review {
    background: #f1e3d0;
    color: #472211;
    margin: 0 5px;
    padding: 10px;
    border-radius: 5px;
    flex: 0 0 calc((100% - 30px) / 3);  /* 3个评论显示 + 左右margin共30px */
    box-sizing: border-box;
}

.btn { /* 内容内边距样式 */
    overflow: hidden; /* 隐藏溢出内容 */
    display: flex; /* 弹性盒模型显示 */
    width: 100%; /* 宽度为100% */
}

@media only screen and (max-width: 720px) {

    .review {
        flex: 0 0 calc((100% - 20px) / 2); /* 小屏时每次只显示一个评论 */
    }

    .slide {
        flex-direction: column; /* 横向改成纵向排列 */
        align-items: center;    /* 居中对齐（可选） */
    }

    .slide img {
        width: 100%; /* 图片宽度改为100% */
    }

    .text {
        width: 100%; /* 文本宽度也100% */
        text-align: center; /* 可选：居中文本 */
    }
    
    .desktop{
        display: none;
    }

    .t-desktop {
        display: none;
    }

    .m-block {
        display: flex; 
    }

    .m-flex {
        display: block; 
    }

    .d{
        display: none;  
    }
    .mobile{
        display: block;        
    }

    .img-d4-m2{
        width: 49%;
    }

    .m-wrap {
        display: block;
    }
    
    .m-content-20p-auto {
        width: calc(100% - 20px);
        height: auto;
        padding: 10px; 
    }
    .m-content-33p-auto {
        width: 100%;
        height: auto;
        padding: 10px; 
    }

    .m-content-40p-auto{
        width: 100%;
        height: auto;
    }

    .m-content-60p-auto{
        width: 100%;
        height: auto;
    }

    .m-content-50p-auto {
        width: calc(100% - 10px);
        height: auto;
        padding: 10px; 
    }

    .review-container {
        padding: 10px;
        border-radius: 5px;
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: center;
        width: calc(100% - 20px); /* 全宽 */
    }

}

@media only screen and (max-width: 431px) {
    .review {
        flex: 0 0 calc(100% - 10px); /* 小屏时每次只显示一个评论 */
        min-width: 0 !important; /* ← 重点！！否则最小宽度限制还在 */
    }

    .desktop-376{
        display: none;
    }

}

/*---------------------------meiyong--------------------------------------------------------------*/


.box-shadow-0-3-6-0000004D{
    box-shadow: 0px 3px 6px #0000004D;
}

.bg-C1C1C1{
    background-color: #C1C1C1;
}

.max-w-100{
    max-width: 100px;
}
.max-w-value{
    max-width: var(--width);
}


/* shadow */

.text-shadow{
    text-shadow: 2px 4px 3px rgb(0,0,0,0.3);
}
.box-shadow{
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.radius-25{
    border-radius: 25px;
}

/* border */

.border-none{
    border: none;
}

/* outline */

.outline-none{
    outline: none;
}



/* margin */

.margin-t-auto{
    margin-top: auto;
}
.margin-l-auto{
    margin-left: auto;
}
.margin-r-auto{
    margin-right: auto;
}
.margin-b-auto{
    margin-bottom: auto;
}

/* display */
.block{
    display: block;
}
.grid{
    display: grid;
}

/* align */

.content-start{
    align-content: flex-start;
}
.content-center{
    align-content: center;
}
.overflow-hidden{
    overflow: hidden;
}
.text-left{
    text-align: left;
}
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}
.text-bottom{
    text-align: bottom;
}
.text-last-center{
    text-align-last: center;
}


/* text */

.wrap{
    flex-wrap: wrap;
}
.flex-basis{
    flex-basis: 50%;
}
.bold{
    font-weight: bold;
}
.uppercase{
    text-transform: uppercase;
}
.lowercase{
    text-transform: lowercase;
}
.uppercase-first{
    display: block;
}
.uppercase-first::first-letter{
    text-transform: uppercase;
}
.capitalize{
    text-transform: capitalize;
}

/* style */

.pointer{
    cursor: pointer;
}
.decoration-none{
    text-decoration: none;
}
.decoration-underline{
    text-decoration: underline;
}


.d-hidden{
    display: none;
}
.m-hidden{
    display: block;
}
.hidden{
    display: none;
}

/* size */

.s12{
    font-size: 12px;
}
.s14{
    font-size: 14px;
}
.s16{
    font-size: 16px;
}
.s18{
    font-size: 18px;
}
.s20{
    font-size: 20px;
}
.s22{
    font-size: 22px;
}
.s24{
    font-size: 24px;
}
.s26{
    font-size: 26px;
}
.s28{
    font-size: 28px;
}
.s30{
    font-size: 30px;
}
.s32{
    font-size: 32px;
}
.s34{
    font-size: 34px;
}
.s36{
    font-size: 36px;
}
.s38{
    font-size: 38px;
}
.s40{
    font-size: 40px;
}
.s80{
    font-size: 80px;
}



.top-0{
    top: 0;
}
.top-value{
    top: var(--top);
}
.left-0{
    left: 0;
}
.left-value{
    left: var(--left);
}
.right-0{
    right: 0;
}
.right-value{
    right: var(--right);
}
.bottom-0{
    bottom: 0;
}
.bottom-value{
    bottom: var(--bottom);
}

