/* +----------------------------------------------------------------------
/* | Static Plugin for ThinkAdmin
/* +----------------------------------------------------------------------
/* | 官方网站: https://thinkadmin.top
/* +----------------------------------------------------------------------
/* | 版权所有 2014~2024 ThinkAdmin [ thinkadmin.top ]
/* +----------------------------------------------------------------------
/* | 开源协议 ( https://mit-license.org )
/* | 免责声明 ( https://thinkadmin.top/disclaimer )
/* +----------------------------------------------------------------------
/* | gitee 代码仓库：https://gitee.com/zoujingli/think-plugs-static
/* | github 代码仓库：https://github.com/zoujingli/think-plugs-static
/* +----------------------------------------------------------------------
/* | 自定义后台扩展样式，需要在加载 console.css 后载入
/* | 使用 composer require zoujingli/think-plugs-static 时不会更新此文件
/* +---------------------------------------------------------------------- */

[v-cloak]{
    display: none;
}

body{
    font: 14px PingFang SC,Tahoma,Arial,sans-serif;
}

/* 去除thinkadmin阴影效果 START */
.layui-layout>.layui-body>.think-page-body>.layui-card>.layui-card-line{
    box-shadow: none !important;
}
.layui-layout>.layui-body>.think-page-body>.layui-card>.layui-card-body>.layui-card-table>form.layui-form.layui-card{
    box-shadow: none !important;
}
.layui-layout>.layui-side{
    box-shadow: none !important;
}
.layui-layout>.layui-body{
    background-color: #f5f7f9;
}
.layui-tab-card{
    box-shadow: none !important;
}
.layui-layout>.layui-body>.think-page-body>.layui-card>.layui-card-body>div>.layui-tab.layui-tab-card{
    box-shadow: none !important;
}
.think-box-shadow{
    box-shadow: none !important;
}
.think-box-notify{
    box-shadow: none !important;
}
.shadow{
    box-shadow: none !important;
}
.layui-layout-admin>.layui-body>.think-page-body>.layui-card:before{
    box-shadow: none !important;
}
.layui-layout>.layui-body>.think-page-body>.layui-card>.layui-card-body>.layui-card-html>form.layui-form.layui-card{
    box-shadow: none !important;
}
/* 去除thinkadmin阴影效果 END */

.shop-toolbar{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-bottom: 10px;
}
.shop-toolbar > a {
    margin: 0 5px !important;
}


/* 字体大小 */
.tn-text-xs {
    font-size: 10px;
}

.tn-text-sm {
    font-size: 12px;
}

.tn-text-md {
    font-size: 14px;
}

.tn-text-lg {
    font-size: 16px;
}

.tn-text-xl {
    font-size: 18px;
}

.tn-text-xxl {
    font-size: 20px;
}

.tn-text-xl-xxl {
    font-size: 24px;
}

.tn-text-xxl-xxl {
    font-size: 28px;
}

.tn-text-xxxl {
    font-size: 32px;
}

.tn-text-xxxl-xl {
    font-size: 36px;
}

.tn-text-xxxl-xxl {
    font-size: 38px;
}

.tn-text-xxxl-xxxl {
    font-size: 42px;
}

.ldl-main-gradient-blue {
    color: #fff;
    background: repeating-linear-gradient(45deg,#3d7eff,#31c9e8);
}


/* 白色 */
.shop-color-white {
	color: #ffffff !important;
}
.shop-bg-white {
	background-color: #ffffff !important;
}

/* 灰色 */
.shop-color-gray {
	color: #999999 !important;
}
.shop-bg-gray {
	background-color: #999999 !important;
}
/* 黄色 */
.shop-color-yellow {
	color: #ffa726 !important;
}
.shop-bg-yellow {
	background-color: #ffa726 !important;
}
/* 橙色 */
.shop-color-orange {
	color: #ff7043 !important;
}
.shop-bg-orange {
	background-color: #ff7043 !important;
}
/* 灰色 */
.shop-color-grey {
	color: #78909c !important;
}
.shop-bg-grey {
	background-color: #78909c !important;
}
.shop-color-grey-light {
	color: #f5f7fa !important;
}
.shop-bg-grey-light{
    background-color: #f5f7fa !important;
}
/* 蓝色 */
.shop-color-blue {
	color: #3D7EFF !important;
}
.shop-bg-blue {
	background-color: #3D7EFF !important;
}
/* 绿色 */
.shop-color-green {
	color: #31E749 !important;
}
.shop-bg-green {
	background-color: #31E749 !important;
}
/* 青色 */
.shop-color-cyan {
	color: #2DE88D !important;
}
.shop-bg-cyan {
	background-color: #2DE88D !important;
}
/* 红色 */
.shop-color-red {
	color: #e83a30 !important;
}
.shop-bg-red {
	background-color: #e83a30 !important;
}


/* 全部大写 */
.tn-text-upper {
    text-transform: uppercase;
}
/* 首字母大写 */
.tn-text-cap {
    text-transform: capitalize;
}
/* 全部小写 */
.tn-text-lower {
    text-transform: lowercase;
}
/* 加粗 */
.tn-text-bold {
    font-weight: bold;
}

/* 字体对齐方式 */
.tn-text-center {
    text-align: center;
}
.tn-text-left {
    text-align: left;
}
.tn-text-right {
    text-align: right;
}

/* 显示一行 */
.tn-text-ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
/* 显示两行 */
.tn-text-ellipsis-2 {
    display: -webkit-box;
    overflow: hidden;
    white-space: normal !important;
    text-overflow: ellipsis;
    word-wrap: break-word;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Flex布局 */
.tn-flex {
    display: -webkit-flex;
    display: flex;
}
/* 换行 */
.tn-flex-wrap {
    flex-wrap: wrap;
}
/* 不换行 */
.tn-flex-nowrap {
    flex-wrap: nowrap;
}
/* 垂直布局 */
.tn-flex-direction-column {
    flex-direction: column;
}
/* 水平布局 */
.tn-flex-direction-row {
    flex-direction: row;
}
/* 反向垂直布局 */
.tn-flex-direction-column-reverse {
    flex-direction: column-reverse;
}
/* 反向水平布局 */
.tn-flex-direction-row-reverse {
    flex-direction: row-reverse;
}
.tn-flex-center {
    align-self: center;
}

.tn-flex-top {
    align-self: flex-start;
}

.tn-flex-end {
    align-self: flex-end;
}

.tn-flex-stretch {
    align-self: stretch;
}
.tn-flex-col-center {
    align-items: center;
}

.tn-flex-col-top {
    align-items: flex-start;
}

.tn-flex-col-bottom {
    align-items: flex-end;
}
.tn-flex-row-center {
    justify-content: center;
}

.tn-flex-row-left {
    justify-content: flex-start;
}

.tn-flex-row-right {
    justify-content: flex-end;
}

.tn-flex-row-between {
    justify-content: space-between;
}

.tn-flex-row-around {
    justify-content: space-around;
}
.tn-flex-1 {
    flex: 1;
}
.tn-flex-2 {
    flex: 2;
}
.tn-flex-3 {
    flex: 3;
}
.tn-flex-4 {
    flex: 4;
}
.tn-flex-5 {
    flex: 5;
}
.tn-flex-6 {
    flex: 6;
}
.tn-flex-7 {
    flex: 7;
}
.tn-flex-8 {
    flex: 8;
}
.tn-flex-9 {
    flex: 9;
}
.tn-flex-10 {
    flex: 10;
}
.tn-flex-11 {
    flex: 11;
}
.tn-flex-12 {
    flex: 12;
}
.tn-flex-basic-xs {
    flex-basis: 20%;
}

.tn-flex-basic-sm {
    flex-basis: 40%;
}

.tn-flex-basic-md {
    flex-basis: 50%;
}

.tn-flex-basic-lg {
    flex-basis: 60%;
}

.tn-flex-basic-xl {
    flex-basis: 80%;
}

.tn-flex-basic-full {
    flex-basis: 100%;
}


/* 渐变背景 */
.tn-main-gradient-blue--reverse{
    background-image: repeating-linear-gradient(
-45deg,#3d7eff,#31c9e8);
    color: #fff;
}
.tn-main-gradient-blue {
    background-image: repeating-linear-gradient(
45deg,#3d7eff,#31c9e8);
    color: #fff;
}
.tn-main-gradient-indigo {
    background-image: repeating-linear-gradient(
45deg,#31c9e8,#2de88d);
    color: #fff;
}
.tn-main-gradient-cyan {
    background-image: repeating-linear-gradient(
45deg,#2de88d,#24f083);
    color: #fff;
}
.tn-main-gradient-teal {
    background-image: repeating-linear-gradient(
45deg,#24f083,#31e749);
    color: #fff;
}
.tn-main-gradient-green {
    background-image: repeating-linear-gradient(
45deg,#31e749,#a4e82f);
    color: #fff;
}

/* 圆角 */
.tn-round {
	border-radius: 1000px !important;
}
.tn-radius {
	border-radius: 10px;
}
.tn-radius-sx {
	border-radius: 5px;
}


/* 内边距 */
.tn-no-margin {
	margin: 0;
}
.tn-margin-xs {
	margin: 5px;
}
.tn-margin-sm {
	margin: 10px;
}
.tn-margin {
	margin: 15px;
}
.tn-margin-lg {
	margin: 20px;
}
.tn-margin-xl {
	margin: 25px;
}
.tn-no-margin-top {
	margin-top: 0;
}
.tn-margin-top-xs {
	margin-top: 5px;
}
.tn-margin-top-sm {
	margin-top: 10px;
}
.tn-margin-top {
	margin-top: 15px;
}
.tn-margin-top-lg {
	margin-top: 20px;
}
.tn-margin-top-xl {
	margin-top: 25px;
}
.tn-no-margin-right {
	margin-right: 0;
}
.tn-margin-right-xs {
	margin-right: 5px;
}
.tn-margin-right-sm {
	margin-right: 10px;
}
.tn-margin-right {
	margin-right: 15px;
}
.tn-margin-right-lg {
	margin-right: 20px;
}
.tn-margin-right-xl {
	margin-right: 25px;
}
.tn-no-margin-bottom {
	margin-bottom: 0;
}
.tn-margin-bottom-xs {
	margin-bottom: 5px;
}
.tn-margin-bottom-sm {
	margin-bottom: 10px;
}
.tn-margin-bottom {
	margin-bottom: 15px;
}
.tn-margin-bottom-lg {
	margin-bottom: 20px;
}
.tn-margin-bottom-xl {
	margin-bottom: 25px;
}
.tn-no-margin-left {
	margin-left: 0;
}
.tn-margin-left-xs {
	margin-left: 5px;
}
.tn-margin-left-sm {
	margin-left: 10px;
}
.tn-margin-left {
	margin-left: 15px;
}
.tn-margin-left-lg {
	margin-left: 20px;
}
.tn-margin-left-xl {
	margin-left: 25px;
}

/* 外边距 */
.tn-no-padding {
	padding: 0px !important;
}
.tn-padding-xs {
	padding: 5px !important;
}
.tn-padding-sm {
	padding: 10px !important;
}
.tn-padding {
	padding: 15px !important;
}
.tn-padding-lg {
	padding: 20px !important;
}
.tn-padding-xl {
	padding: 25px !important;
}
.tn-no-padding-top {
	padding-top: 0px !important;
}
.tn-padding-top-xs {
	padding-top: 5px !important;
}
.tn-padding-top-sm {
	padding-top: 10px !important;
}
.tn-padding-top {
	padding-top: 15px !important;
}
.tn-padding-top-lg {
	padding-top: 20px !important;
}
.tn-padding-top-xl {
	padding-top: 25px !important;
}
.tn-no-padding-right {
	padding-right: 0px !important;
}
.tn-padding-right-xs {
	padding-right: 5px !important;
}
.tn-padding-right-sm {
	padding-right: 10px !important;
}
.tn-padding-right {
	padding-right: 15px !important;
}
.tn-padding-right-lg {
	padding-right: 20px !important;
}
.tn-padding-right-xl {
	padding-right: 25px !important;
}
.tn-no-padding-bottom {
	padding-bottom: 0px !important;
}
.tn-padding-bottom-xs {
	padding-bottom: 5px !important;
}
.tn-padding-bottom-sm {
	padding-bottom: 10px !important;
}
.tn-padding-bottom {
	padding-bottom: 15px !important;
}
.tn-padding-bottom-lg {
	padding-bottom: 20px !important;
}
.tn-padding-bottom-xl {
	padding-bottom: 25px !important;
}
.tn-no-padding-left {
	padding-left: 0px !important;
}
.tn-padding-left-xs {
	padding-left: 5px !important;
}
.tn-padding-left-sm {
	padding-left: 10px !important;
}
.tn-padding-left {
	padding-left: 15px !important;
}
.tn-padding-left-lg {
	padding-left: 20px !important;
}
.tn-padding-left-xl {
	padding-left: 25px !important;
}

/* 浮动 */
.tn-float-left {
	float: left !important;
}
.tn-float-right {
	float: right !important;
}
.tn-clear-float {
	clear: both !important;
}

.shop-card{
    background-color: #fff;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 5%);
    border-radius: 3px;
    margin-bottom: 10px;
    padding: 10px 20px;
}
.shop-card-no-border{
    box-shadow: none !important;
}
.shop-info{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    position: relative;
}
.shop-info-title{
    /* font-size: 18px;
    font-weight: bold;
    color: #01BEFF; */
    font-size: 16px;
    padding: 10px 0px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.shop-info-item{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    margin-bottom: 10px;
    width: 100%;
    padding-right: 10px;
    box-sizing: border-box;
    font-size: 14px;
    height: 38px;
    line-height: 38px;
}
.shop-info-item-no{
    margin-bottom: 0px !important;
}
.shop-info-item-xs{
    margin-bottom: 5px !important;
}
.shop-info-item-xs .shop-info-item-title{
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}
.shop-info-item-title{
    position: relative;
    float: left;
    display: block;
    /* padding: 9px 15px; */
    font-weight: 400;
    line-height: 20px;
    width: 120px;
    text-align: right;
    height: 38px;
    line-height: 38px;
}
.shop-info-item-info{
    flex: 1;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}
.shop-info-item-btn{
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}


/* 会员卡 */
.shop-user-card{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
}
.shop-user-card-item{
    cursor: pointer;
    width: 270px;
    min-height: 150px;
    background-color: #E6E6E6;
    border-radius: 5px;
    padding: 5px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0px 5px 10px 5px;
    color: #838383;
}
.shop-user-card-top{
    text-align: right;
    padding-bottom: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.shop-user-card-body{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.shop-user-card-name{
    text-align: center;
    font-size: 20px;
}
.shop-user-card-price{
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    padding-top: 5px;
}
.shop-user-card-price-selling{
    font-size: 20px;
    font-weight: bold;
}
.shop-user-card-price-market{
    text-decoration: line-through;
    padding-left: 10px;
    font-size: 14px;
}
.shop-user-card-footer{
    text-align: center;
    padding-top: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.shop-user-card-footer>div{
    padding: 0px 5px;
    display: contents;
}

.shop-user-card-item-active{
    background-image: repeating-linear-gradient(45deg,#3d7eff,#31c9e8) !important;
    color: #FFFFFF !important;
}
.shop-user-card-btn{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: 5px 0px;
}

/* 优惠券 */
.shop-user-coupon{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
}
.shop-user-coupon-item{
    cursor: pointer;
    width: 320px;
    min-height: 100px;
    background-color: #E6E6E6;
    border-radius: 5px;
    padding: 5px 10px;
    display: flex;
    flex-direction: row;
    margin: 0px 5px 10px 5px;
    color: #838383;
    flex-wrap: nowrap;
    align-items: center;
}
.shop-user-coupon-item-xs{
    width: 270px !important;
}
.shop-user-coupon-item-active{
    background-image: repeating-linear-gradient(
45deg,#ff3181,#ff8331);
    color: #fff;
}
.shop-user-coupon-left{
    width: 120px;
    text-align: center;
}
.shop-user-coupon-money{
    font-size: 30px;
}
.shop-user-coupon-center{
    flex: 1;
}
.shop-user-coupon-name{
    font-size: 26px;
}
.shop-user-coupon-time{
    line-height: 15px;
    padding-top: 10px;
}


/* 支付方式 */
.shop-payment-list{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
}
.shop-payment-list-item{
    cursor: pointer;
    min-height: 110px;
    background-color: #E6E6E6;
    border-radius: 5px;
    padding: 5px 10px;
    display: flex;
    flex-direction: column;
    margin: 0px 5px 10px 5px;
    color: #838383;
    flex-wrap: nowrap;
    align-items: center;
    flex-basis: calc(50% - 10px);
    box-sizing: border-box;
    justify-content: center;
}
.shop-payment-list-item-sm{
    min-height: 80px;
    flex-basis: calc(25% - 10px);
}
.shop-payment-list-item-sm .shop-payment-list-item-name{
    font-size: 18px;
}
.shop-payment-list-item-sm .shop-payment-list-item-tips{
    font-size: 14px;
    padding-top: 5px;
}
.shop-payment-list-item-active{
    background-image: repeating-linear-gradient(
        45deg,#3646ff,#3d7eff);
    color: #fff;
}
.shop-payment-list-item-name{
    font-size: 24px;
}
.shop-payment-list-item-tips{
    font-size: 18px;
    padding-top: 15px;
}

/* 会员个人信息展示 */
.shop-user-info-green{
    background-image: repeating-linear-gradient( 
45deg,#d3fce6,#d6fadb);
    color: #666666;
    width: 600px;
    padding: 10px 5px;
    border-radius: 5px
}

/* 收银台 */
.cashier-menu{
    width: 120px;
    margin-right: 15px;
    background-color: #FFFFFF;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    font-size: 14px;
    height: 100%;
    overflow: hidden;
    justify-content: space-between;
}
.cashier-menu-top{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
}
.cashier-menu-bottom{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
}
.cashier-menu-item{
    padding: 25px 0px;
    width: 100%;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
}
.cashier-menu-item-active{
    background-color: #3D7EFF;
    color: #FFFFFF;
}

/* 预约单 */
.shop-reserve-status{
    display: inline-block;
    padding: 2px 10px;
    color: #FFFFFF;
    background-color: #AAAAAA;
    border-radius: 5px;
    height: 20px;
    line-height: 20px;
}

/* 空文字 */
.shop-empty-text{
    width: 100%;
    text-align: center;
    padding: 50px 0px;
    font-size: 14px;
    color: #AAAAAA;
}
.shop-empty-text-sm{
    width: 100%;
    text-align: center;
    padding: 10px 0px;
    font-size: 14px;
    color: #AAAAAA;
}

/* 固定底部的按钮区 */
.shop-absolute-footer{
    position: fixed;
    height: 60px;
    bottom: 0px;
    left: 0px;
    width: 100%;
    text-align: right;
    padding: 10px 20px 10px 20px;
    box-sizing: border-box;
    border-top: 1px solid #E6E6E6;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #FFFFFF;
}

/* 功能按钮 */
.ldl-home-block{
    padding: 10px 15px;
    background-color: #FFFFFF;
    border-radius: 5px;
}
.ldl-home-block-gray{
    border: 1px solid #3D7EFF;
}
.ldl-home-quick{
    cursor: pointer;
    text-align: center;
    padding: 10px 0px;
}
.ldl-home-quick-icon{
    font-size: 32px;
    color: #3D7EFF;
}
.ldl-home-quick-num{
    font-size: 32px;
    color: #3D7EFF;
}
.ldl-home-quick-title{
    padding-top: 10px;
    font-size: 14px;
}

/* 分隔线 */
.shop-divider{
    background-color: #e5eeff;
    margin: 0 0 12px 0;
    display: block;
    height: 1px;
    width: 100%;
}


.shop-select-input{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.shop-select-input-btn{
    margin: 0px;
    padding-right: 0px;
}

/* 预约单卡片样式 */
.shop-reserve-card-new{

}
