/* 通用样式 */
body,
html{
    color: #333;
    font-family: Arial!important;
    margin:0!important;
    padding:0!important;
    border:0;
    outline:none;
    word-break: break-all;
}
html {
    /* 核心代码：让 1rem 永远等于设计稿的 100px */
    font-size: 13.33333vw;
}

body {
    /* 修正 body 的字体，避免继承过大的字体 */
    /* 0.28rem 对应设计稿 28px，或者你可以重置为 16px */
    font-size: 0.28rem;
    margin: 0;
    padding: 0;
}
/* =========================================
   2. PC 端适配 (基于 1980px 设计稿)
   策略：当屏幕 > 1024px 时，覆盖移动端样式
   ========================================= */
@media screen and (min-width: 768px) {

    /* [关键步骤] 重置 html 字体大小
       原因：PC端不需要 1rem=100px 这种巨大的比例，
       恢复成浏览器默认（通常 12px），或者直接用 px 写布局。
    */
    html,body {
        font-size: 12px;
    }
}

/* =========================================
   3. 超大屏适配 (可选，针对 1980px 全屏背景等)
   ========================================= */
@media screen and (min-width: 1600px) {
    .container {
        /* 如果设计稿内容区特别宽 */
        width: 1400px;
    }
}

div,
blockquote,
label,
p,
h1,h2,h3,h4,h5,h6,
pre,
ul,ol,li,
dl,dt,dd,
form,
a,
fieldset,
input,
th,
td{
    margin:0;
    padding:0;
    border:0;
    outline:none;
    font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif;
    /* 核心属性：允许长单词换行，但优先在空格处换行 */
    overflow-wrap: break-word;
    /* 辅助属性：使用默认断行规则（禁止在单词中间强行断开） */
    word-break: normal;}
select,textarea{
    outline:none;
    font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif}
table {
    border-collapse:collapse;
    border-spacing:0}
fieldset,img {
    border:0;
    vertical-align: top;
}
address,caption,cite,code,dfn,strong,th,var{
    font-weight:normal}
em,i{
    font-style:normal;
}
ol,ul {
    list-style:none;
    list-style-position:inside}
a{
    color:#333;
    text-decoration:none}
caption,th{
    text-align:left;}
h1,h2,h3,h4,h5,h6{
    font-size:100%;
    font-weight:normal}
q:before,q:after{
    content:'.';
    display:block;
    height:0;
    clear:both;
    visibility:hidden}
abbr,acronym{
    border:0}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #ccc !important;
}
input:-moz-placeholder ,
textarea:-moz-placeholder {
    color: #ccc !important;
}
input::-moz-placeholder ,
textarea::-moz-placeholder {
    color: #ccc !important;
}
input:-ms-input-placeholder ,
textarea:-ms-input-placeholder {
    color: #ccc !important;
}

/* 字体图标 */
@font-face {
    font-family: 'iconfont';  /* Project id 5095826 */
    src: url('//at.alicdn.com/t/c/font_5095826_lc5ga66x4zm.woff2?t=1769743630002') format('woff2'),
    url('//at.alicdn.com/t/c/font_5095826_lc5ga66x4zm.woff?t=1769743630002') format('woff'),
    url('//at.alicdn.com/t/c/font_5095826_lc5ga66x4zm.ttf?t=1769743630002') format('truetype');
}
.iconfont {
    display: inline-block;
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --primary-bg-color: #ffffff; /* 背景颜色 - 白色 */
    --primary-bg-color-theme: #c75000; /* 背景颜色 - 主题*/
    --primary-color: #ff5a3c; /* 页面主橙色 */
    --text-dark: #333;
    --bg-light: #f8f9fa;
}
.text-orange {
    color: var(--primary-color) !important;
}
.bg-orange {
    background-color: var(--primary-color) !important;
    color: white;
}
.btn-orange {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 25px;
}
.btn-orange:hover {
    background-color: #e04e33;
    color: white;
}
.top-container{
    display: flex;
    max-width: 100%;
    padding: 0 1.67rem;
}
@media screen and (max-width: 768px) {
    .container{
        padding: 0 0.24rem;
        max-width: 100%;
    }
    .top-container{
        padding: 0 !important;
    }
}

/* 网站顶部 */
.st-web-top{
    padding: 18px 0;
    background-color: var(--primary-bg-color);
}
.web-top-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.st-web-top .web-top-logo{
    height: 56px;
}
.st-web-top  .web-top-logo-app{
    display: none;
}
.web-top-datas-app{
    display: none;
}
.st-web-top .web-top-datas{
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.st-web-top .web-top-datas .menu-item{
    display: flex;
    align-items: center;
    margin-left: 23px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.st-web-top .web-top-datas .flag-menu-item{
    margin-left: 23px;
    position: relative;
}
.st-web-top .web-top-datas .menu-item:first-child{
    margin-left: 0;
}
.st-web-top .web-top-datas .menu-item .icon{
    display: block;
    font-size: 122px;
    width: 30px;
    height: 30px;
    text-align: center;
    margin-right: 4px;
    overflow: hidden;
}
.st-web-top .web-top-datas .menu-item .icon.WhatsApp{
    background: url("../images/web-top-icon01.png") no-repeat center center;
    background-size: cover;
}
.st-web-top .web-top-datas .menu-item .icon.WeChat{
    background: url("../images/web-top-icon02.png") no-repeat center center;
    background-size: cover;
}
.st-web-top .web-top-datas .menu-item .icon.phone{
    background: url("../images/web-top-icon03.png") no-repeat center center;
    background-size: cover;
}
.st-web-top .web-top-datas .menu-item .icon.order{
    background: url("../images/web-top-icon04.png") no-repeat center center;
    background-size: cover;
}
.st-web-top .web-top-datas .menu-item .flag{
    display: block;
    width: 30px;
    margin-right: 7px;
    position: relative;
}
.st-web-top .web-top-datas .menu-item .line{
    width: 1px;
    height: 21px;
    background-color: #d8d8d8;
    margin-right: 7px;
}
.st-web-top .web-top-datas .menu-item .top-arr{
    display: block;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-top: 8px solid #b9b9b9;
    margin: 8px 0 0 12px;
}
.st-web-top .web-top-datas .menu-item .text{
    font-size: 16px;
    font-family: Arial;
}
.st-web-top .web-top-datas .menu-item .text.order{
    color: #c75000;
}

@media screen and (max-width: 1000px) {
    .st-web-top .web-top-datas .menu-item .text{
        display: none;
    }
}

/* 手机端适配 */
@media screen and (max-width: 768px) {
    .page-container{
        padding: 0;
    }
    .st-web-top {
        padding: 0.3rem 0.24rem;
    }
    .st-web-top .web-top-logo{
        display: none;
    }
    .st-web-top .web-top-logo-app{
        display: block;
        width: 2.17rem;
        height: 0.56rem;
    }
    .st-web-top .web-top-logo-app img{
        width: 100%;
        height: 100%;
    }
    .st-web-top .web-top-datas{
        display: none;
    }
    .st-web-top .web-top-datas-app{
        height: 0.5rem;
        display: flex;
        align-items: center;
    }
    .st-web-top .web-top-datas-app .menu-item{
        display: block;
        width: 0.5rem;
        height: 0.5rem;
        margin-left: 0.3rem;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    .st-web-top .web-top-datas-app .menu-item:first-child{
        margin-left: 0;
    }
    .st-web-top .web-top-datas-app .menu-item.WhatsApp{
        background: url("../images/web-top-icon01.png") no-repeat center center;
        background-size: cover;
    }
    .st-web-top .web-top-datas-app .menu-item.WeChat{
        background: url("../images/web-top-icon02.png") no-repeat center center;
        background-size: cover;
    }
}

/* 网站导航 */
.st-nav-menu{
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 11;
    background-color: var(--primary-bg-color-theme);
}
.st-nav-menu .st-nav-app{
    display: none;
}
.nav-menu-list{
    width: 100%;
}
.nav-menu-list .nav-item{
    display: block;
    /*flex: 1 1 auto;*/
    /*text-align: center;*/
    height: 60px;
    font-size: 18px;
    font-weight: bold;
    font-family: Arial;
    color: #fff;
    position: relative;
}
.nav-menu-list .nav-item.on:before{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 66px;
    height:3px;
    background-color: var(--primary-bg-color);
    transform: translateX(-50%);
}
.nav-menu-list .nav-item:last-child{
    margin-right: 0;
}
.header-nav-box{
    display: none;
}
@media screen and (max-width: 1200px) {
    .st-nav-container{
        width: 100%;
    }
    .nav-menu-list{
        width: 100%;
        white-space: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
    }
    .nav-menu-list .nav-item{
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .container{
        max-width: 100%;
    }
}

/* 网站导航手机端适配 */
@media screen and (max-width: 768px) {
    .st-nav-menu .st-nav-container{
        display: none;
    }
    .st-nav-menu .st-nav-app{
        padding: 0 0.24rem;
        height: 0.8rem;
        background-color: #C75000;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: sticky;
        top: 0;
        left: 0;
    }
    .st-nav-menu .st-nav-app .nav-app-menu{
        font-size: 0.46rem;
        color: #fff;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    .st-nav-menu .st-nav-app .nav-app-center,
    .st-nav-menu .st-nav-app .nav-app-right{
        display: flex;
        align-items: center;
    }
    .st-nav-menu .st-nav-app .nav-app-phone,
    .st-nav-menu .st-nav-app .nav-app-booking,
    .st-nav-menu .st-nav-app .nav-app-search{
        font-size: 0.46rem;
        color: #fff;
    }
    .st-nav-menu .st-nav-app .nav-app-booking{
        margin-left: 0.5rem;
    }
    .st-nav-menu .st-nav-app .nav-app-language{
        display: flex;
        align-items: center;
        margin-left: 0.30rem;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    .st-nav-app .nav-app-language .flag{
        display: block;
        width: 0.64rem;
        height: 0.32rem;
        margin-right: 0.16rem;
        position: relative;
    }
    .st-nav-app .nav-app-language .line{
        width: 1px;
        height: 0.36rem;
        background-color: #d8d8d8;
        margin-right: 0.11rem;
    }
    .st-nav-app .nav-app-language .top-arr{
        display: block;
        border-left: 0.12rem solid transparent;
        border-right: 0.12rem solid transparent;
        border-bottom: 0.12rem solid transparent;
        border-top: 0.12rem solid #fff;
        margin: 0.08rem 0 0 0.12rem;
    }
    .st-nav-app .nav-app-language .text{
        font-size: 0.32rem;
        color: #fff;
        font-family: Arial;
    }

    /* 移动端侧边导航 */
    .header-nav-box{
        width: 100%;
        display: none;
        background: rgba(0,0,0,0.5);
        position: fixed;
        z-index: 1001;
        top: 0;
        left: 0;
        bottom: 0;
        transition:all 0.4s;
        opacity:0;
    }
    .header-navBox-list{
        /*display: none;*/
        position: fixed;
        z-index: 1002;
        top: 0;
        left: 0;
        bottom: 0;
        width: 5.4rem;
        background-color:#fff;
        transform: translateX(-100%);
        transition:all 0.6s;
        overflow: auto;
    }
    .header-navBox-top{
        height: 0.8rem;
        position: relative;
    }
    .header-navBox-top .header-navBox-close{
        position: absolute;
        top: 0.4rem;
        right: 0.3rem;
        transform: translateY(-50%);
        font-size: 0.32rem;
        color: #aaa;
    }
    .header-navBox-ul{

    }
    .header-navBox-li{
        position:relative;
        border-bottom: 1px solid #f1f5f9;
    }
    .header-navBox-p{
        display: block;
        color: #333;
        font-size: 0.32rem;
        padding: 0.3rem;
        /*height:1.1rem;*/
        line-height: 0.5rem;
        position:relative;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    .header-navBox-p:after{
        content: '';
        position: absolute;
        right: 0.3rem;
        top: 50%;
        transform: translateY(-50%);
        width: 0.32rem;
        height: 0.32rem;
        background-size: contain;
        transition: all .3s;
    }
    .header-navBox-p.active:after{
        transform: rotate(-180deg) translateY(50%);
    }
    .header-navBox-innerUl{
        transition:all 0.2s;
        background-color:#f8f8f8;
        overflow: hidden;
        height:0;
    }
    .header-navBox-innerLi{
        padding: 0.18rem;
    }
    .header-navBox-innerLi .item{
        float: left;
        width: 33.33%;
        height: 0.9rem;
    }
    .header-navBox-innerLi .item:last-child{
        border-bottom:0;
    }
    .header-navBox-innerLi a{
        display: block;
        color: #666;
        font-size: 0.3rem;
        line-height: 0.9rem;
        -webkit-tap-highlight-color: transparent;
    }
    .header-navBox-seek{
        padding: 0.66rem 0.18rem;
        text-align: center;
    }
    .header-navBox-seek a{
        display: inline-block;
        padding: 0.15rem 0.56rem;
        border-radius: 1rem;
        border: 1px solid #0089ff;
        color: #0089ff;
        font-size: 0.3rem;
        margin: 0 0.12rem;
        -webkit-tap-highlight-color: transparent;
    }
    .header-navBox-seek a.tap{
        color: #fff;
        background-color: #0089ff;
    }

    .header-page-back{
        position: absolute;
        top: 0.6rem;
        left: 0.3rem;
        transform: translateY(-50%);
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    .header-right-btn{
        position:absolute;
        right: 0.3rem;
        top: 50%;
        transform:translateY(-50%);
        font-size: 0.28rem;
        -webkit-tap-highlight-color: transparent;
    }

    .mlc-inner-header{
        height: 0.84rem;
        padding: 0 0.3rem;
        background-color: #fff;
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        z-index: 11;
        transition: all 0.4s;
        border-bottom: 1px solid #e5e5e5;
    }
    .mlc-inner-header .inner-header-title{
        color: #333;
        font-size: 0.32rem;
        line-height: 0.84rem;
        text-align: center;
    }


}

/* 通屏轮播图 */
.st-swiper-container{
    width: 100%;
    /*max-height: 420px;*/
    overflow: hidden;
}
.st-swiper-container .swiper-item{
    position: relative;
}
.st-swiper-container .swiper-item img{
    width: 100%;
    display: block;
    max-height: 420px;
}
.swiper-pagination-bullet-active {
    background: var(--primary-bg-color);
}
/* 通屏轮播图-手机端适配 */
@media screen and (max-width: 768px) {
    .st-swiper-container,
    .st-swiper-container .swiper-item img{
        height: auto;
        /*max-height: 4rem;*/
    }
}

/* 通用模块样式 */
.module-title-bar{
    padding: 50px 0;
    text-align: center;
}
.module-title-bar .module-title{
    /*height: 44px;*/
    line-height: 44px;
    font-size: 30px;
    font-weight: bold;
    color: #121826;
}
.module-title-bar .module-text{
    margin-top: 26px;
    line-height: 26px;
    font-size: 18px;
    color: #333;
}
.module-content{
    padding-bottom: 20px;
    overflow: hidden;
}
.module-view-btn{
    display: block;
    width: 390px;
    height: 50px;
    font-size: 20px;
    color: #fff;
    text-align: center;
    line-height: 50px;
    background-color: #C75000;
    box-sizing: border-box;
    margin: 34px auto 0;
}
/*.module-view-btn:hover{*/
/*    color: #fff;*/
/*    border-color: #C75000;*/
/*    background-color: #C75000;*/
/*}*/
@media screen and (max-width: 1200px) {
    .module-title-bar .module-title{
        font-size: 24px;
    }
    .module-title-bar .module-text{
        font-size: 16px;
    }
}
/* 通用模块样式-手机端适配 */
@media screen and (max-width: 768px) {
    .module-title-bar{
        padding: 0.46rem 0 0.46rem!important;
    }
    .module-title-bar .module-title{
        font-size: 0.36rem;
        line-height: 0.52rem;
    }
    .module-title-bar .module-text{
        font-size: 0.24rem;
        line-height: 0.36rem;
        margin-top: 0.2rem;
    }
    .module-view-btn{
        display: block;
        width: 3.9rem;
        height: 0.6rem;
        font-size: 0.24rem;
        color: #fff;
        text-align: center;
        line-height: 0.6rem;
        background-color: #C75000;
        box-sizing: border-box;
        margin: 0.4rem auto 0;
        border: none;
    }
}

/* 模块栏横屏广告位 */
.column-ad-block{
	display: block;
    max-height: 160px;
    margin-top: 20px;
	overflow:hidden;
}
.column-ad-block img{
    width: 100%;
    display: block;
    height: auto;
}
/* 模块栏横屏广告位-手机端适配 */
@media screen and (max-width: 768px) {
    .column-ad-block{
        height: 1.6rem;
        margin-top: 0.36rem;
    }
    .column-ad-block img{
        height: 100%;
    }
}

/* 真实评论 */
.genuine-reviews-container{
    padding-bottom: 80px;
}
.genuine-reviews-container .module-content{
    padding: 0 65px;
    position: relative;
}
.genuine-reviews-container .module-text{
    display: flex;
    align-items: center;
    justify-content: center;
}
.genuine-reviews-container .genuine-reviews-icon{
    display: block;
    width: 227px;
    height: 36px;
    background: url("../images/genuine-reviews-icon.png") no-repeat;
    margin-right: 12px;
}
.genuine-reviews-swiper{
    width: 100%;
    position: relative;
    overflow: hidden;
}
.genuine-reviews-swiper-wap{
    display: none;
}
.genuine-reviews-swiper .swiper-wrapper{
    position: relative;
}
.genuine-reviews-container .genuine-reviews-prev,
.genuine-reviews-container .genuine-reviews-next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.7);
    box-sizing: border-box;
    border: 1px solid rgba(10, 169, 124, 0.302);
    border-radius: 50%;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after{
    font-size: 24px;
    font-weight: bold;
    color: #0AA97C;
}
.genuine-reviews-container .genuine-reviews-prev{
    left: 0;
}
.genuine-reviews-container .genuine-reviews-next{
    right: 0;
}
.genuine-reviews-item{
    border: 1px solid #DADFE6;
    padding: 24px 0;
}
.genuine-reviews-item .genuine-reviews-tit{
    padding: 0 24px;
    font-size: 18px;
    color: #121826;
    height: 26px;
    line-height: 26px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.genuine-reviews-item .genuine-reviews-txt{
    padding: 0 24px;
    font-size: 16px;
    color: #333;
    height: 144px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 12px;
}
.genuine-reviews-item .genuine-reviews-data{
    border-top: 10px solid #0AA97C;
    padding: 16px 24px 0;
    display: flex;
    align-items: center;
    margin-top: 24px;
}
.genuine-reviews-item .genuine-reviews-data .genuine-reviews-header{
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
}
.genuine-reviews-item .genuine-reviews-data .genuine-reviews-header img {
    display: block;
    width: 100%;
    height: 100%;
}
.genuine-reviews-item .genuine-reviews-data .genuine-reviews-author{
    flex: 1;
    margin-left: 10px;
    display: block;
    color: #818181;
    line-height: 27px;
}
.genuine-reviews-item .genuine-reviews-data .genuine-reviews-author .name{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.genuine-reviews-item .genuine-reviews-data .genuine-reviews-author .date{
    display: flex;
    align-items: center;
}
.genuine-reviews-item .genuine-reviews-data .genuine-reviews-author .date-icon{
    display: block;
    width: 72px;
    height: 16px;
    background: url("../images/icon-circular.jpg") no-repeat;
    background-size: contain;
    margin-right: 10px;
}
@media screen and (max-width: 1200px) {
    .genuine-reviews-container{
        padding-bottom: 40px;
    }
}
@media screen and (max-width: 990px) {
    .genuine-reviews-item .genuine-reviews-data {
        padding: 16px 10px 0;
    }
}
/* 手机端适配——真实评论 */
@media screen and (max-width: 768px) {
    .genuine-reviews-container{
        padding-bottom: 0.4rem;
    }
    .genuine-reviews-container .genuine-reviews-prev,
    .genuine-reviews-container .genuine-reviews-next{
        display: none;
    }
    .genuine-reviews-swiper {
        margin-top: 0;
    }
    .genuine-reviews-container .module-content {
        padding: 0;
    }
    .genuine-reviews-container .genuine-reviews-icon {
        display: block;
        width: 2.27rem;
        height: 0.36rem;
        background-size: contain;
        margin-right: 0.12rem;
    }
    .genuine-reviews-item {
        padding: 0.3rem 0 0.24rem;
    }
    .genuine-reviews-item .genuine-reviews-tit {
        padding: 0 0.3rem;
        font-size: 0.32rem;
        height: 0.46rem;
        line-height: 0.46rem;
    }
    .genuine-reviews-item .genuine-reviews-txt {
        padding: 0 0.3rem;
        font-size: 0.22rem;
        height: 1.6rem;
        line-height: 0.32rem;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-top: 0.2rem;
    }
    .genuine-reviews-item .genuine-reviews-data {
        border-top: 0.1rem solid #0AA97C;
        padding: 0.16rem 0.3rem 0;
        margin-top: 0.24rem;
    }
    .genuine-reviews-item .genuine-reviews-data .genuine-reviews-header {
        width: 0.56rem;
        height: 0.56rem;
    }
    .genuine-reviews-item .genuine-reviews-data .genuine-reviews-author {
        margin-left: 0.1rem;
        line-height: 0.32rem;
        font-size: 0.24rem;
    }
    .genuine-reviews-item .genuine-reviews-data .genuine-reviews-author .date-icon{
        display: block;
        width: 0.72rem;
        height: 0.16rem;
        background-size: contain;
        margin-right: 0.1rem;
    }
}

/* 公司荣誉 */
.company-accolades-img{
    display: block;
    width: 100%;
    height: auto;
}

/* 回到顶部 */
.scroll-top-btn{
    position: fixed;
    bottom: 300px;
    right: 20px;
    z-index: 11;
    width: 51px;
    height: 57px;
    background: url("../images/scroll-top-icon.png") no-repeat center center;
    background-size: contain;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent!important;
    display: none;
}
/* 回到顶部-手机端适配 */
@media screen and (max-width: 768px) {
    .scroll-top-btn{
        display: none!important;
    }
}

/* 弹出框 */
.layer-container{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1111;
    background-color: rgba(0,0,0,.6);
}
.layer-block{
    position: fixed;
    background: #fff;
    border: 1px solid #ccc;
    width: 290px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 25px;
    z-index: 999999;
}
.layer-container .layer-close{
    position: absolute;
    top: -10px;
    right: -10px;
    display: block;
    height: 40px;
    width: 40px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
}
.layer-container .layer-close .iconfont{
    font-size: 14px;
    color: #548a8f;
    font-weight: normal;
}
.callus-layer-block .callus-title{
    background: #efefef;
    border-radius: 25px 25px 0 0;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    color: #333;
    text-align: center;
}
.callus-layer-block .callus-list li{
    border-top: 1px solid #d1d1d1;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    color: #333;
    text-align: center;
}
.money-layer-block{
    width: 660px;
    border-radius: 10px;
}
.money-layer-block .money-layer-tab-nav{
    padding: 0 16px;
    align-items: center;
    box-sizing: border-box;
    display: flex;
    height: 62px;
    border-bottom: 1px solid #d1d1d1;
}
.money-layer-block .tab-nav-item{
    color: #6f7685;
    font-size: 18px;
    height: 62px;
    line-height: 62px;
    margin-right: 40px;
}
.money-layer-block .tab-nav-item.active{
    font-weight: bold;
    color: #121826;
    position: relative;
}
.money-layer-block .tab-nav-item.active:after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 0;
    height: 2px;
    background-color: #121826;
}
.money-layer-block .money-layer-tab-content{
    display: none;
}
.money-layer-block .money-layer-tab-content.on{
    display: block;
}
.money-layer-tab-tit{
    font-size: 14px;
    line-height: 34px;
    margin-bottom: 10px;
}
.money-layer-block .money-layer-tab-scroll{
    padding: 24px 16px;
    height: 452px;
    overflow-y: auto;
}
.money-layer-block .money-layer-tab-list{
    display: grid;
    margin: 0 auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.money-layer-block .money-layer-tab-list li{
    padding: 12px 8px;
    font-size: 12px;
    /*height: 48px;*/
    line-height: 18px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 6px;
    cursor: pointer;
}
.money-layer-block .money-layer-tab-list li:hover,
.money-layer-block .money-layer-tab-list li.active{
    background-color: rgba(0, 0, 0, .04);
}
.money-layer-block .money-layer-tab-list li.active{
    color: #c75000;
}
.money-layer-block .money-layer-tab-list li img{
    width: 30px;
    height: 20px;
    margin-right: 10px;
    /*border-radius: 50%;*/
    overflow: hidden;
}
.layer-container .product-introduce-block{
    position: fixed;
    background: #fff;
    border: 1px solid #ccc;
    width: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 10px;
    z-index: 999999;
}
.layer-container .product-introduce-block .product-introduce-title{
    padding: 0 24px;
    font-weight: bold;
    color: #121826;
    font-size: 18px;
    height: 62px;
    line-height: 62px;
}
.layer-container .product-introduce-block .product-introduce-content{
    padding: 0 15px;
    margin-top: 10px;
    max-height: 600px;
    overflow: hidden;
    overflow-y: auto;
    -webkit-tap-highlight-color: transparent;
}
.product-piclist-group{
    width: 100%;
    overflow: hidden;
}
.car-piclist-group{
    padding-bottom: 30px;
}
.product-piclist-swiper{
    width: 100%;
    position: relative;
    overflow: hidden;
}
.product-piclist-swiper .swiper-wrapper{
    position: relative;
}
.product-piclist-swiper .swiper-pagination{
    display: none;
}
.product-piclist-swiper .product-piclist-prev,
.product-piclist-swiper .product-piclist-next{
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.7);
    box-sizing: border-box;
    border: 1px solid #979797;
    border-radius: 50%;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after{
    font-size: 16px;
    font-weight: bold;
    color: #979797;
}
.product-piclist-swiper .product-piclist-prev{
    left: 0;
}
.product-piclist-swiper .product-piclist-next{
    right: 0;
}
.product-piclist-item{
    width: 100%;
    /*height: 268px;*/
}

.product-text-info{
    padding: 16px 0;
    color: #666;
    font-size: 14px;
    border-top: 1px solid #e5e5e5;
    overflow: hidden;
}
.product-text-info *{
    color: #666;
    font-size: 14px;
}
.product-facilities-info{
    padding: 16px 0;
    border-top: 1px solid #e5e5e5;
}
.product-facilities-info .facilities-item-stitle{
    font-size: 14px;
}
.product-facilities-info .facilities-item-list{
    margin-top: 8px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.product-facilities-info .facilities-item-list .facility-t{
    font-size: 14px;
    margin: 0 30px 20px 0;
}
.product-facilities-info .facilities-item-list .facility-t .iconfont {
    font-size: 14px;
    margin-right: 10px;
}


@media screen and (max-width: 768px) {
    .layer-block{
        border-radius: 0.2rem;
    }
    .layer-container .layer-close{
        top: -0.4rem;
        right: -0.2rem;
        height: 0.6rem;
        width: 0.6rem;
        background: #efefef;
    }
    .layer-container .layer-close .iconfont{
        font-size: 0.22rem;
    }
    .callus-layer-block .callus-title{
        border-radius: 0.2rem 0.2rem 0 0;
        font-size: 0.32rem;
        height: 0.9rem;
        line-height: 0.9rem;
    }
    .callus-layer-block .callus-list li{
        font-size: 0.32rem;
        height: auto;
		line-height: inherit;
    }
    .callus-layer-block .callus-list li a{
		display: block;
        font-size: 0.32rem;
        padding: 0.2rem 0;
        line-height: 0.5rem;
    }

    .money-layer-block{
        display: block;
        width: 100%;
        border-radius: 0.1rem 0.1rem 0 0;
        top: auto;
        bottom: 0;
        border: none;
        left: 0;
        right: 0;
        transform: none;
    }
    .money-layer-block .layer-close{
        right: 0.2rem;
        top: 0.2rem;
        background-color: transparent;
        border: none ;
    }
    .money-layer-block .layer-close .iconfont{
        color: #666;
        font-weight: normal;
    }
    .money-layer-block .money-layer-tab-nav{
        padding: 0 0.3rem;
        height: 1rem;
    }
    .money-layer-block .tab-nav-item{
        font-size: 0.28rem;
        height: 1rem;
        line-height: 1rem;
        /*width: 50%;*/
        text-align: center;
        margin-right: 0.6rem;
    }
    .money-layer-block .tab-nav-item.active:after{
        /*content: '';*/
        /*position: absolute;*/
        left: -0.1rem;
        right: -0.1rem;
        height: 0.06rem;
        /*width: 1.2rem;*/
        /*border-radius: 0.03rem;*/
        /*background-color: #121826;*/
        /*transform: translateX(-50%);*/
    }
    .money-layer-block .money-layer-tab-content{
        display: none;
        height: 5rem;
        padding: 0;
        /*height: 6rem;*/
    }
    .money-layer-block .money-layer-tab-scroll{
        padding: 0.24rem 0.16rem;
        height: 5rem;
        overflow-y: auto;
    }
    .money-layer-tab-tit{
        display: none;
    }
    .money-layer-block .money-layer-tab-list{
        grid-template-columns: repeat(1, 1fr);
        gap: 0.18rem;
    }
    .money-layer-block .money-layer-tab-list li{
        padding: 0 0.6rem 0 0.12rem;
        font-size: 0.24rem;
        height: 0.6rem;
        line-height: 0.6rem;
        position: relative;
    }
    .money-layer-block .money-layer-tab-list li.active::after{
        font-family: 'iconfont';
        content: '\e6cc';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.4rem;
        color: #c75000;
    }
    .money-layer-block .money-layer-tab-list li:hover,
    .money-layer-block .money-layer-tab-list li.active{
        background-color: transparent;
    }
    .money-layer-block .money-layer-tab-list li img{
        width: 0.3rem;
        height: .2rem;
        margin-right: 0.1rem;
    }

    .layer-container .product-introduce-block{
        width: 100%;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        transform: translate(0,0);
        border-radius: 0.1rem 0.1rem 0 0;
        border: none;
    }
    .layer-container .product-introduce-block .layer-close {
        top: 0.2rem;
        right: 0.2rem;
        height: 0.6rem;
        width: 0.6rem;
        background: none;
        border: none;
    }
    .layer-container .product-introduce-block .product-introduce-title{
        padding: 0 0.2rem;
        font-size: 0.32rem;
        height: 0.9rem;
        line-height: 0.9rem;
    }
    .layer-container .product-introduce-block .product-introduce-content{
        padding: 0 0.2rem;
        margin-top: 0;
        max-height: 8rem;
    }
    .product-piclist-group{
        width: 100%;
        overflow: hidden;
    }
    .car-piclist-group{
        padding-bottom: 0;
    }
    .product-piclist-swiper{
        width: 100%;
        position: relative;
        overflow: hidden;
    }
    .product-piclist-swiper .swiper-wrapper{
        position: relative;
    }
    .product-piclist-swiper .swiper-pagination{
        display: none;
    }
    .product-piclist-swiper .product-piclist-prev,
    .product-piclist-swiper .product-piclist-next{
        position: absolute;
        top: 50%;
        width: .6rem;
        height: .6rem;
    }
    .product-piclist-swiper .swiper-button-prev:after,
    .product-piclist-swiper .swiper-rtl .swiper-button-prev:after,
    .product-piclist-swiper .swiper-button-next:after,
    .product-piclist-swiper .swiper-rtl .swiper-button-prev:after{
        font-size: 0.24rem;
    }
    .product-piclist-item{
        /*height: 3rem;*/
    }
    .product-basic-info{
        padding: 0.2rem 0.06rem;
    }
    .product-basic-info li{
        padding: 0.08rem 0;
        font-size: 0.24rem;
    }
    .product-text-info{
        padding: 0.2rem 0;
        font-size: 0.24rem;
    }
    .product-text-info *{
        font-size: 0.24rem;
    }
    .product-facilities-info{
        padding: 0.16rem 0;
    }
    .product-facilities-info .facilities-item{
        margin-bottom: .2rem;
    }
    .product-facilities-info .facilities-item:last-child{
        margin-bottom: 0;
    }
    .product-facilities-info .facilities-item-stitle{
        font-size: 0.24rem;
    }
    .product-facilities-info .facilities-item-list{
        margin-top: 0.1rem;
    }
    .product-facilities-info .facilities-item-list .facility-t{
        font-size: 0.24rem;
        margin: 0 .3rem 0.2rem 0;
    }
    .product-facilities-info .facilities-item-list .facility-t .iconfont {
        font-size: 0.24rem;
        margin-right: 0.1rem;
    }

}

/* 底部 */
.st-web-footer{
    background-color: #F2F2F2;
    padding: 42px 0;
}
.st-web-footer .web-footer-block{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.st-web-footer .web-footer-wrap{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex: 1;
}
.st-web-footer .web-footer-wrap .footer-item-list{
    margin-top: 8px;
}
.st-web-footer .web-footer-wrap .footer-popular-destinations{
    width: 70%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}
.st-web-footer .web-footer-wrap .web-footer-item{
    flex: 1;
}
.st-web-footer .web-footer-wrap .web-footer-item a{
    display: block;
    padding: 6px 0;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.st-web-footer .web-footer-wrap a:hover{
    text-decoration: underline;
}
.st-web-footer .web-footer-wrap .footer-popular-destinations a{
    width: 50%;
}
.st-web-footer .web-footer-wrap .web-footer-item .footer-item-title{
    /*height: 30px;*/
    line-height: 30px;
    font-size: 20px;
    font-weight: bold;
}
.footer-popular-destinations{

}
.official-social-media-accounts{
    width: 310px;
}
.official-social-media-accounts .social-media-title{
    /*height: 30px;*/
    line-height: 30px;
    font-size: 20px;
    font-weight: bold;
}
.official-social-media-accounts .social-media-img{
    margin-top: 26px;
    display: flex;
    align-items: center;
    height: 38px;
}
.official-social-media-accounts .social-media-img .social-media-item{
    display: block;
    width: 38px;
    height: 38px;
    margin-right: 20px;
    cursor: pointer;
}
.official-social-media-accounts .social-media-img .social-media-item:nth-of-type(1){
    background: url("../images/social-media-img01.png") no-repeat;
    background-size: contain;
}
.official-social-media-accounts .social-media-img .social-media-item:nth-of-type(2){
    background: url("../images/social-media-img02.png") no-repeat;
    background-size: contain;
}
.official-social-media-accounts .social-media-img .social-media-item:nth-of-type(3){
    background: url("../images/social-media-img03.png") no-repeat;
    background-size: contain;
}
.official-social-media-accounts .social-media-img .social-media-item:nth-of-type(4){
    background: url("../images/social-media-img04.png") no-repeat;
    background-size: contain;
}
.official-social-media-accounts .social-media-img .social-media-item:last-child{
    margin-right: 0;
}
.official-social-media-accounts .footer-copyright{
    margin-top: 26px;
    font-size: 16px;
}
@media screen and (max-width: 1200px) {
    .st-web-footer .web-footer-wrap .web-footer-item .footer-item-title,
    .official-social-media-accounts .social-media-title{
        font-size: 16px;
    }
    .st-web-footer .web-footer-wrap .web-footer-item a{
        font-size: 14px;
    }
}
@media screen and (max-width: 990px) {
    .web-footer-block{
        display: block!important;
    }
    .web-footer-wrap{
        justify-content: space-around;
    }
    .official-social-media-accounts{
        width: 100%;
        text-align: center;
        margin-top: 40px;
    }
    .official-social-media-accounts .social-media-img{
        justify-content: center;
    }
}
@media screen and (max-width: 768px) {
    .st-web-footer{
        display: none;
    }
}


.st-footer-copyright{
    display: none;
}
/* 底部快捷链接 */
.st-footer-link{
    padding: 26px 0;
    background-color: #C75000;
}
.st-footer-link .footer-link-list{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.st-footer-link .footer-link-list a{
    display: block;
    padding: 10px 38px;
    font-size: 16px;
    color: #fff;
    position: relative;
}
.st-footer-link .footer-link-list a:hover{
    text-decoration: underline;
}
.st-footer-link .footer-link-list a:before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
}
.st-footer-link .footer-link-list li:first-child a:before{
    display: none;
}
@media screen and (max-width: 768px) {
    .st-footer-copyright{
        display: block;
        font-size: 0.28rem;
        padding:  0 0.3rem 0.3rem;
        text-align: center;
    }
    .st-footer-link {
        padding: 0.3rem 0;
    }
    .st-footer-link .footer-link-list li{

    }
    .st-footer-link .footer-link-list a{
        padding: 0 0.4rem;
        font-size: 0.28rem;
    }
    .st-footer-link .footer-link-list li:nth-child(n+4) {
        display: none;
    }
    .st-footer-link .footer-link-list a:before{
        width: 0.1rem;
        height: 0.1rem;
    }
}


/* 社交媒体账号 */
.social-media-container{
    display: none;
}
/* 手机端适配——社交媒体账号 */
@media screen and (max-width: 768px) {
    .social-media-container {
        display: block;
    }
    .social-media-container .social-media-img{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 0.64rem;
    }
    .social-media-container .social-media-img .social-media-item{
        display: block;
        width: 0.64rem;
        height: 0.64rem;
        margin: 0 0.2rem;
        cursor: pointer;
    }
    .social-media-container .social-media-img .social-media-item:nth-of-type(1){
        background: url("../images/social-media-img01.png") no-repeat;
        background-size: contain;
    }
    .social-media-container .social-media-img .social-media-item:nth-of-type(2){
        background: url("../images/social-media-img02.png") no-repeat;
        background-size: contain;
    }
    .social-media-container .social-media-img .social-media-item:nth-of-type(3){
        background: url("../images/social-media-img03.png") no-repeat;
        background-size: contain;
    }
    .social-media-container .social-media-img .social-media-item:nth-of-type(4){
        background: url("../images/social-media-img04.png") no-repeat;
        background-size: contain;
    }
}


/* 评论 */
.product-comment-box{
    margin-top: 20px;
    padding: 20px 24px;
    border: 1px solid #DADFE6;
    border-radius: 10px;
}
.product-comment-box .product-comment-title{
    font-size: 22px;
    line-height: 28px;
}
.product-comment-group{
    margin-top: 20px;
}
.product-comment-group .comment-nav {
    height: 36px;
    display: flex;
    align-items: center;
}
.product-comment-group .comment-nav .nav-item{
    color: #333;
    /*height: 36px;*/
    /*line-height: 36px;*/
    padding: 8px 14px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 6px;
    margin-right: 10px;
    background-color: #F2F2F2;
}
.product-comment-group .comment-nav .nav-item.on{
    color: #fff;
    background-color: #FF9600;
}
.product-comment-group .comment-con{
    margin-top: 12px;
}
.product-comment-group .comment-con dl {
    padding: 18px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.product-comment-group .comment-con dl dt {
    width: 98px;
    text-align: center;
}
.product-comment-group .comment-con dl dt .header{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}
.product-comment-group .comment-con dl dt .header img{
    width: 100%;
    height: 100%;
}
.product-comment-group .comment-con dl dt .nickname{
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-top: 8px;
}
.product-comment-group .comment-con dl dd {
    flex: 1;
    padding-left: 12px;
}

.product-comment-group .comment-con .grade-date-bar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 26px;
}
.product-comment-group .comment-con .grade-date-bar .grade{
    display: flex;
    align-items: center;
    color: #9E9E9E;
    font-size: 14px;
}
.product-comment-group .comment-con .grade-date-bar .number{
    display: flex;
    align-items: center;
    margin-right: 14px;
    height: 26px;
    padding: 0 12px;
    font-size: 16px;
    color: #fff;
    background-color: #FF9600;
    border-radius: 10px 10px 10px 0;
}
.product-comment-group .comment-con .grade-date-bar .date{
    color: #9E9E9E;
    font-size: 14px;
}
.product-comment-group .comment-con .comment-txt {
    margin-top: 13px;
    line-height: 22px;
    font-size: 14px
}
.product-comment-group .comment-con .comment-imgs {
    margin-top: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.product-comment-group .comment-con .comment-imgs .my-thumb {
    display: block;
    width: 100px;
    height: 100px;
    margin: 0 12px 12px 0;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}
@media screen and (max-width: 768px) {
    .product-comment-box{
        margin-top: 0.28rem;
        padding: 0.24rem;
        border-radius: 0.1rem;
    }
    .product-comment-box .product-comment-title{
        font-size: 0.28rem;
        line-height: 0.42rem;
    }
    .product-comment-group{
        margin-top: 0.2rem;
    }
    .product-comment-group .comment-nav {
        height: auto;
		flex-wrap: wrap;
    }
    .product-comment-group .comment-nav .nav-item{
        height: auto;
        line-height: 0.32rem;
        padding: 0.1rem 0.16rem;
        font-size: 0.24rem;
        border-radius: 0.06rem;
        margin: 0 .1rem 0.1rem;
    }
    .product-comment-group .comment-con {
        margin-top: 0.2rem;
    }
    .product-comment-group .comment-con dl {
        padding: 0.2rem 0;
        display: block;
    }
    .product-comment-group .comment-con dl dt{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .product-comment-group .comment-con dl dt .header {
        width: 0.6rem;
        height: 0.6rem;
        margin: 0;
    }
    .product-comment-group .comment-con dl dt .nickname {
        font-size: 0.24rem;
        line-height: 0.6rem;
        margin: 0 0 0 0.16rem;
    }
    .product-comment-group .comment-con dl dd {
        padding-left: 0;
        margin-top: 0.18rem;
    }
    .product-comment-group .comment-con .grade-date-bar {
        height: 0.36rem;
    }
    .product-comment-group .comment-con .grade-date-bar .grade{
        font-size: 0.24rem;
    }
    .product-comment-group .comment-con .grade-date-bar .number{
        margin-right: 0.1rem;
        height: 0.36rem;
        padding: 0 0.2rem;
        font-size: 0.24rem;
        border-radius: 0.1rem 0.1rem 0.1rem 0;
    }
    .product-comment-group .comment-con .grade-date-bar .date{
        font-size: 0.24rem;
    }
    .product-comment-group .comment-con .comment-txt {
        margin-top: 0.1rem;
        line-height: 0.36rem;
        font-size: 0.24rem
    }
    .product-comment-group .comment-con .comment-imgs {
        margin-top: 0.2rem;
    }
    .product-comment-group .comment-con .comment-imgs .my-thumb {
        display: block;
        width: 1.4rem;
        height: 1.4rem;
        margin: 0 0.12rem 0.12rem 0;
        border-radius: 0.06rem;
    }
}


/**
*右侧边栏
 **/
.tuan-detail-block .tuan-detail-right{
    width: 320px;
    margin-left: 20px;
    position: sticky;
    top: 60px;
}
@media screen and (max-width: 990px) {
    .tuan-detail-block .tuan-detail-right{
        display: none;
    }
}

/*我们的优势*/
.our-advantages-block{
    padding:  8px 12px 20px;
    border-top: 5px solid #C75000;
    background-color: #F2F2F2;
    margin-bottom: 20px;
}
.our-advantages-block .our-advantages-title{
    font-size: 18px;
    font-weight: bold;
    line-height: 26px;
}
.our-advantages-block .our-advantages-list{
    margin-top: 13px;
}
.our-advantages-block .our-advantages-item{
    margin-bottom: 20px;
}
.our-advantages-block .our-advantages-item:last-child{
    margin-bottom: 0;
}
.our-advantages-block .our-advantages-item .advantages-tit{
    font-weight: bold;
    font-size: 18px;
    color: #B24742;
}
.our-advantages-block .our-advantages-item .advantages-li{
    font-size: 18px;
    line-height: 26px;
    margin-top: 6px;
}
.detail-side-block{
    margin-bottom: 20px;
}
.detail-side-block .detail-side-title{
    padding-left: 10px;
    border-left: 8px solid #C75000;
    height: 28px;
    font-size: 16px;
    font-weight: bold;
    line-height: 28px;
}
.detail-side-block .detail-side-list{

}
.detail-side-block .detail-side-list .detail-side-item{
    display: block;
    padding: 10px 0 10px 26px;
    border-bottom: 1px solid #f2f2f2;
    font-size: 14px;
    line-height: 20px;
    position: relative;
}
.detail-side-block .detail-side-list .detail-side-item::before {
    content: "\e640";
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 28px;
    font-family: 'iconfont';
    color: #C75000;
    transform: rotateZ(180deg);
}

/* guide */
.guide-crumb-container{
    padding: 14px 0;
    border-bottom: 1px solid #D8D8D8;
    margin-bottom: 20px;
}
.guide-crumb-container .guide-crumb-bar{
    height: 20px;
    font-size: 14px;
    line-height: 20px;
}
@media screen and (max-width: 768px) {
    .guide-crumb-container{
        padding: 0.23rem 0;
        border-bottom: none;
        margin-bottom: 0;
    }
    .guide-crumb-container .guide-crumb-bar{
        font-size: 0.24rem;
        line-height: 0.36rem;
		height: auto;
    }
}

/* 选择数量 */
.meal-amount{
    width: 184px;
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #E4E4E4;
}
.meal-amount .sub-btn,
.meal-amount .add-btn{
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.meal-amount .iconfont{
    font-size: 14px;
}
.meal-amount .num-text{
    width: 108px;
    height: 36px;
    font-size: 16px;
    text-align: center;
    background: transparent;
    border-left: 1px solid #E4E4E4;
    border-right: 1px solid #E4E4E4;
}
@media screen and (max-width: 768px) {
    .meal-amount{
        width: 2.72rem;
    }
    .meal-amount .sub-btn,
    .meal-amount .add-btn{
        width: 0.56rem;
        height: 0.56rem;
    }
    .meal-amount .iconfont{
        font-size: 0.22rem;
    }
    .meal-amount .num-text{
        width: 1.6rem;
        height: 0.56rem;
        font-size: 0.28rem;
    }
}

/* 没有数据 */
.no-product-msg{
    padding: 30px 0;
}
.no-product-msg .nothing-icon{
    display: block;
    width: 200px;
    height: 200px;
    background: url("../images/no-product-msg-icon.png") no-repeat;
    background-size: contain;
    margin: 0 auto;
}
.no-product-msg .nothing-words{
    font-size: 20px;
    color: #9E9E9E;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .no-product-msg{
        padding: 0.3rem 0;
    }
    .no-product-msg .nothing-icon{
        width: 2rem;
        height: 2rem;
    }
    .no-product-msg .nothing-words{
        font-size: 0.24rem;
    }
}

/* 404 500 */
.error-module-container{
    padding: 40px 0;
}
.nofound-page-block {
    height: 610px;
    border-radius: 10px;
    border: 1px solid #d8d8d8;
}
.nofound-page-block .pic-box {
    margin-top: 150px;
    text-align: center;
}
.nofound-page-block .pic-text{
    text-align: center;
    font-size: 18px;
}
.nofound-page-block .pic-text-404{
    color: #00b7ee;
}
.nofound-page-block .pic-text-500{
    color: #009944;
}
.nofound-page-block .btn-box {
    text-align: center;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nofound-page-block .btn-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 40px;
    line-height: 40px;
    margin: 0 15px;
    text-align: center;
    font-size: 16px;
    color: #C75000;
    border: 1px solid #C75000;
    border-radius: 6px;
}
.nofound-page-block .btn-box a.back-home-btn {
    color: #fff;
    background-color: #C75000;
}
.nofound-page-block .btn-box a.back-home-btn:hover {
    border: 1px solid #C75000;
    background-color: #C75000;
}
.nofound-page .btn-box a.back-prev-btn:hover {
    color: #fff;
    background-color: #C75000;
}
@media screen and (max-width: 768px) {
    .error-module-container{
        padding: 0.4rem 0;
    }
    .nofound-page-block {
        height: auto;
        padding: 0.4rem 0;
        border: none;
    }
    .nofound-page-block .pic-box {
        margin-top: 0;
    }
    .nofound-page-block .pic-box img{
        height: 2rem;
    }
    .nofound-page-block .pic-text{
        font-size: 0.32rem;
    }
    .nofound-page-block .btn-box {
        margin-top: 0.3rem;
    }
    .nofound-page-block .btn-box a {
        width: 1.6rem;
        height: 0.6rem;
        line-height: 0.6rem;
        margin: 0 0.2rem;
        font-size: 0.24rem;
        border-radius: 0.06rem;
    }
}