@charset "UTF-8";

/* 防止 Vue 模板闪烁 */
[v-cloak] {
    display: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: Microsoft YaHei, Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Noto Sans CJK SC, WenQuanYi Micro Hei, Arial, sans-serif;
    background-color: #fff;
    color: #333;
    font-size: var(--字号);
}

input[type="text"],
input[type="number"],
input[type="password"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 4px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: var(--字号);
    background-color: #f8f9fa
}

input[type="file"] {
    display: none;
}

input[type="radio"],
input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: -2px 2px 0 0;
    vertical-align: middle;
    cursor: pointer;
    accent-color: var(--主色)
}

pre {
    font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Noto Sans CJK SC, WenQuanYi Micro Hei, Arial, sans-serif
}

table {
    padding: 0 5px;
    border-collapse: collapse;
}

table tr {
    height: var(--行高);
    line-height: var(--行高);
}

table tr td {
    border-top: 1px solid #dbdbdb;
}

table tr:last-child td {
    border-bottom: 1px solid #dbdbdb;
}



.fa-image {
    font-size: 34px;
    vertical-align: middle;
}

.tl {
    text-align: left;
}

.w2 {
    /* width: 40px; */
    min-width: 54px;
}

.w3 {
    /* width: 61px; */
    min-width: 80px;
}

.w7 {
    /* width: 114px; */
    min-width: 114px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50%) scale(0.5);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}




#app {
    display: flex;
    min-height: 100vh
}

@media (min-width:1188px) {

    #app .pc-yc {
        display: none;
    }

}

#app .强制居中 {
    text-align: center !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
}

.锁定 {
    color: var(--主色);
}

/* 消息提示 */

.提示弹层 .主体 {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 15px 30px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    animation: slideIn 0.1s;
}

.提示弹层 .主体.ok {
    background-color: #67C23A
}

.提示弹层 .主体.x {
    background-color: #ff0000
}


/* 确认提示弹层样式 */
.confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 9998;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.confirm-overlay .confirm-modal {
    background: white;
    border-radius: 10px;
    width: 90%;
    max-width: 300px;
    overflow: hidden;
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    animation: slideIn 0.1s;
}

.confirm-overlay .confirm-header {
    background: var(--主色);
    color: white;
    padding: 15px 20px;
}

.confirm-overlay .confirm-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.confirm-overlay .confirm-body {
    padding: 20px;
}

.confirm-overlay .confirm-body p {

    margin: 0 0 15px 0;

    color: #333;
    line-height: 1.5;
}

.confirm-overlay .confirm-input-wrapper {
    margin-top: 15px;
}

.confirm-overlay .confirm-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

.confirm-overlay .confirm-input:focus {
    outline: none;
    border-color: var(--主色);
}

.confirm-overlay .confirm-footer {
    display: flex;
    border-top: 1px solid #eee;
}

.confirm-overlay .confirm-btn {
    flex: 1;
    padding: 12px 0;
    border: none;
    font-size: var(--字号);
    cursor: pointer;
    background: white;
    transition: background 0.3s;
}

.confirm-overlay .confirm-btn:hover {
    background: #f5f5f5;
}

.confirm-overlay .confirm-cancel {
    border-right: 1px solid #eee;
    color: #666;
}

.confirm-overlay .confirm-ok {
    color: var(--主色);
    font-weight: 500;
}


button {
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: var(--字号);
    vertical-align: middle;
    margin: 0 3px;
    padding: 3px 6px;
    line-height: 26px;
    background-color: var(--主色);
    color: white;
    border: 1px solid #fff
}

button:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}


.下拉四均分 select {
    overflow: hidden;
    width: 25%;
    white-space: nowrap;
    /* 防止文字换行 */
    text-overflow: ellipsis;
    /* 超出时显示省略号 */
}

.下拉二均分,
.下拉三均分 {
    width: 33%;
}

.下拉二均分 input,
.下拉二均分 select {
    overflow: hidden;
    width: 46.9%;
    white-space: nowrap;
    /* 防止文字换行 */
    text-overflow: ellipsis;
    /* 超出时显示省略号 */
}

.下拉三均分 select {
    overflow: hidden;
    width: 32.2%;
    white-space: nowrap;
    /* 防止文字换行 */
    text-overflow: ellipsis;
    /* 超出时显示省略号 */
}

.服务次数下拉 input {
    overflow: hidden;
    width: 50px;
    white-space: nowrap;
    /* 防止文字换行 */
    text-overflow: ellipsis;
    /* 超出时显示省略号 */
}

.导航 {
    width: var(--导航宽);
    height: 100vh;
    background-color: var(--主色);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    overflow-y: auto;
    z-index: 20
}


.导航 .行 {
    display: flex;
    align-items: center;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s;
    /* height: 40px;
    line-height: 40px; */
    padding: 14px 10px;
    /* 禁止被选中 */
    user-select: none;

}

.导航 .行:hover,
.导航 .行.active {
    /* 原始主色作为底色 */
    background-color: var(--主色);
    /* 叠加半透明黑色加深，0.2 可根据需求调整（0~1） */
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    /* 确保叠加层覆盖整个元素 */
    background-blend-mode: multiply;
}

.导航 .行 i {
    /* width: 28px; */
    /* text-align: center; */
    margin-right: 5px;
}


.遮盖层 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    display: flex;
    justify-content: center;
    align-items: center;


    flex-direction: column;


}

.遮盖层 .头部 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--主色);
    color: #fff;
    height: 50px;
    line-height: 50px;
    flex-shrink: 0;
    padding: 0 10px;
}

.遮盖层 .中间 {
    flex-shrink: 0;
    background-color: #fff;
    padding: 5px;

    

}


.透明层 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: 1999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.内容 {
    flex: 1;
    /* 自动占据剩余空间 */
    overflow-y: auto;
    margin-left: var(--导航宽);
}
.右边 .中间 {
    background-color: #fff;
    padding: 5px;
    margin: 50px 0;
    background-color: #fff;
    padding: 5px;
    overflow: auto;
}

.内容>template>div {
    padding: 20px
}

.内容 .头部 {
    background-color: var(--主色);
    color: #fff;
    height: var(--行高);
    line-height: var(--行高);
    padding: 0 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-left: 1px solid #fff;
    position: fixed;
    top: 0;
    left: var(--导航宽);
    right: 0;
    /* width: calc(100% - 120px); */
    flex: 1;
    /* 自动占据剩余空间 */
    z-index: 30;
    box-sizing: border-box;
}

.内容 .头部 span {
    flex: 1;
}



.列表 .中间 .tl {
    line-height: 28px;
    /* 强制换行 */
    word-break: break-word;
}

.列表 table {
    text-align: center;
    width: 100%;
    border-collapse: collapse;
    padding: 5px;
}

/* .列表 table tr {
    height: 49px;
    line-height: 49px;
} */

.列表 table tr th,
.列表 table tr td {
    border-bottom: 1px solid #dbdbdb;
    /* 禁止被选中 */
    user-select: none;
}



.列表 table tr td img {
    width: 40px;
    height: 40px;
    border-radius: 10%;
    margin-bottom: 4px;
    vertical-align: middle;
    object-fit: cover;
}

.列表 .中间 i {
    color: var(--主色);
}

.列表 table tbody tr {
    cursor: pointer;
}

.列表 table tbody tr:nth-child(even) {
    background-color: #e8e8e8
}

.列表 table tbody tr:hover {

    background-color: var(--主色);
    color: #fff;
}

.列表 table tbody tr:hover i {
    color: #fff;
}



.弹小层,
.弹大层 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.弹小层>div,
.弹大层>div {
    width: 90%;
    max-height: 90vh;
    max-width: 1100px;
    overflow: auto;
    position: relative;
    display: flex;
    flex-direction: column;
}

.弹小层 .头部,
.弹大层 .头部 {
    background-color: var(--主色);
    color: #fff;
    height: 50px;
    line-height: 50px;
    padding: 0 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 2999;
    border-left: 0px solid #fff;
}

.弹小层 .头部 span,
.弹大层 .头部 span {
    flex: 1;
}

.弹小层 .中间,
.弹大层 .中间 {
    flex-shrink: 0;
    margin: 0;
    padding: 5px;
    background-color: #fff;
}

.弹小层 .中间 table,
.弹大层 .中间 table {
    width: 100%;
    border-collapse: collapse;
}

.弹小层 .中间 table tr,
.弹大层 .中间 table tr {
    height: 49px;
    line-height: 49px;
    /* border-bottom: 1px solid #ddd; */
}

.弹小层 .中间 table tr textarea,
.弹大层 .中间 table tr textarea {
    margin-top: 10px;
}

.中间::after,
.弹小层 .中间::after,
.弹大层 .中间::after {
    content: "到底喽";
    text-align: center;
    display: block;
    clear: both;
    width: 100%;
    color: #999;
    line-height: 50px;
}








.查看会员弹层 {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    padding: 5px;
    width: 100%;
    height: 100%;
    overflow: auto;

    flex-direction: column;

    /* 添加滚动条 */
}

.遮盖层 .头部 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    left: 0;
    flex-shrink: 0;
    z-index: 30;
}

.遮盖层 .中间 {
    flex-shrink: 0;
}

.查看会员弹层 .会员表 {
    width: 61.8%;
}

.会员表 {
    width: 100%;
    max-width: 1187px;
    float: left;
    border-collapse: collapse;
    border: 1px solid #ddd;
}

.会员表 tr {
    /* height: 49px;
    line-height: 49px; */

}
.表一右 tr td:nth-child(odd) ,
.会员表 tr td:nth-child(odd) {

    min-width: var(--左宽);
    max-width: var(--左宽);
    width: var(--左宽);
    text-align: right;
}

.会员表 .多图 {
    display: flex;
    flex-wrap: wrap;
    gap: 2px
}

.会员表 .多图 .一张 {
    position: relative;
    width: 50px;
    height: 82px;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 4px
}
.日期选择器{
    width: 100px;
}
/* 扫码登记会员高亮样式 */
.扫码登记 {
    animation: huxi 1.5s ease-in-out infinite;
}

@keyframes huxi {
    0% {
        opacity: 0.1;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.1;
    }
}

/* 推广二维码样式 */
.推广码 .中间 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px;
}

#推广二维码容器 {
    padding: 10px;

}

#推广二维码容器 canvas {
    border-radius: 8px;
}

/* 提交按钮样式 */
.会员表.手机版 .提交按钮.disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.会员表.手机版 .提交按钮.disabled:hover {
    background-color: #ccc;
}

.多图 .一张 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;

}

img {
    user-select: none;
    /* 禁用文本选择 */
    -webkit-user-select: none;
    /* 兼容 Safari/Chrome */
    -moz-user-select: none;
    /* 兼容 Firefox */
    -ms-user-select: none;
    /* 兼容 IE/Edge */
}




.相亲卡 {
    width: 100%;
    white-space: pre-wrap;
    word-wrap: break-word;
}







.其它 {
    width: 37.7%;
    float: left;
    margin-left: 5px;

}

.其它 tr {
    line-height: 49px;
    vertical-align: middle;
}

.其它>div {
    border: 1px solid #ddd;
    border-collapse: collapse;
    padding: 5px;
    margin-bottom: 5px;
}

.其它 tr td pre {
    width: 100%;
    /* 自动换行 */
    word-wrap: break-word;
    white-space: pre-wrap;
    line-height: 30px;
}



.表一右 tr td:nth-child(even) {
    width: 100%;
    text-align: left;
}

.其它 table {
    width: 100%;
}

.其它 .active {
    padding: 3px 22px;
}

.跟进记录 div {
    border-bottom: 1px dashed #ddd;
}

.跟进记录 i {
    color: #ff0000;
    cursor: pointer;
}

.其它 .约会搜索框 {
    width: 200px;
}

.其它 h4 {
    border-bottom: 1px dashed #ddd;
}

.签单 tr td input[type="text"],
.约会 tr td input[type="text"],
.续费 tr td input[type="text"] {
    width: 112px;
}

.签单 tr td input.w50,
.约会 tr td input.w50,
.续费 tr td input.w50 {
    width: 50%;
}

.w100,
.签单 tr td input.w100,
.约会 tr td input.w100,
.续费 tr td input.w100 {
    width: 100%;
}

.放大图片弹层 {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    user-select: none;
}

.放大图片弹层 img {
    max-width: 98%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 4px;
}

.放大图片弹层 .保存图片按钮 {
    position: fixed;
    top: 20px;
    right: 20px;
}

.放大图片弹层 .保存图片按钮:active {
    background-color: #d42d44;
    transform: scale(0.95);
}


/* #region 操作下拉 */
.操作下拉 {
    position: fixed;
    top: var(--行高);
    right: 36px;
    background-color: var(--主色);
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 30;
}

.操作下拉 div {
    line-height: 40px;
    height: 40px;
    padding: 0 5px;
    cursor: pointer;
}

.操作下拉 div:hover {
    /* 原始主色作为底色 */
    background-color: var(--主色);
    /* 叠加半透明黑色加深，0.2 可根据需求调整（0~1） */
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    /* 确保叠加层覆盖整个元素 */
    background-blend-mode: multiply;
}

/* #endregion 操作下拉 */










#datePickerOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#datePickerOverlay>div {
    width: 100%;
    max-width: 400px;
    background: white;
    border-radius: 10px;
    box-sizing: border-box;
}

/* 上传组件样式 */
.头像上传,
.相册上传,
.档案上传 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
}

.图片上传 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
}

.图片上传 .图片一个 {
    height: 82px;
    position: relative;
    display: inline-block;
}

.图片上传 .图片一个 img {
    width: 50px;
    height: 82px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
}

.图片上传 .图片删除 {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff0000;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    z-index: 10;
}

.图片上传 .添加图片 {
    border: 1px dashed #ccc;
    border-radius: 4px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.3s;
}

.图片上传 .添加图片:hover {
    border-color: var(--主色);
}

.图片上传 .上传加号 {
    font-size: 24px;
    color: #999;
}

.图片上传 .二维码图片 {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 4px;
    filter: none;
    -webkit-filter: none;
}

.红娘权限 {

    line-height: 28px;
    max-width: 360px;
    text-align: left;
}

.红娘权限 label {
    display: inline-block;
    width: 150px;
    cursor: pointer;
    /* 禁止被选中 */
    user-select: none;
}





.date-picker {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    user-select: none;
    width: 300px;
    height: 250px;
}

.picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid #e0e0e0
}

.picker-btn {
    background: none;
    border: none;
    font-size: var(--字号);
    color: #007aff;
    padding: 5px 10px;
    cursor: pointer
}

.picker-title {
    font-size: var(--字号);
    font-weight: 600
}

.picker-columns {
    display: flex;
    justify-content: space-around;
    height: 200px;
    overflow: hidden
}

.picker-column {
    flex: 1;
    position: relative;
    overflow: hidden
}

.picker-mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.9));
    pointer-events: none;
    z-index: 10
}

.picker-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 40px;
    margin-top: -20px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    pointer-events: none;
    z-index: 10
}

.picker-column-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: transform 0.1s ease-out
}

.picker-item {
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: var(--字号);
    color: #8e8e93
}

.picker-item.active {
    color: #000;
    font-size: 18px;
    font-weight: 600
}

.date-picker-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}





.文案列表 .中间 div {
    padding: 10px;
    border: 1px solid #ddd;
}

.新增文案弹层,
.编辑文案弹层 {
    width: 100%;
    max-width: 1000px;
    max-height: 500px;
    background: rgba(0, 0, 0, 0.356);
    border-radius: 10px;
    box-sizing: border-box;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.新增文案弹层 .中间,
.编辑文案弹层 .中间 {
    margin: 0px;
    padding: 10px;
    background-color: #fff;
}

.新增文案弹层 .中间 textarea,
.编辑文案弹层 .中间 textarea {
    width: 100%;
    height: 77vh;
    /* max-height: 500px; */
}


.筛选遮盖层 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1999;

}

.筛选弹层 {
    width: 100%;
    height: 100%;
    max-width: 288px;
    text-align: center;
    background: #fff;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    box-sizing: border-box;
}

.会员筛选弹层 {
    max-width: 400px;
}




.筛选弹层 .头部2 {
    background-color: var(--主色);
    color: #fff;
    height: var(--行高);
    line-height: var(--行高);
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;

}


.筛选弹层 .头部2 span {
    flex: 1;
    text-align: left;
}

.筛选弹层 .首字母检索 {
    margin: 10px 0;
}

.筛选弹层 .首字母检索 .字母表 {
    margin-bottom: 10px;
}

.筛选弹层 .首字母检索 .字母行 {
    height: 36px;
}

.筛选弹层 .首字母检索 .字母行 button {
    width: 34px;
    height: 34px;
    margin: 0 1px;
}

.筛选弹层 .首字母检索 .字母行 .占位隐藏 {
    visibility: hidden;
    margin-top: -8px;
}


.筛选弹层 .首字母检索 input {
    width: 200px;
    margin-bottom: 10px;
}

.筛选弹层 .筛选下拉 {
    padding: 10px;
}

.筛选弹层 .筛选下拉>div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.筛选按钮 {
    width: 100%;
    line-height: 34px;
    cursor: pointer;
}









.匹配弹层 {
    width: 100%;
    max-height: 100vh;
    overflow: auto;
    background-color: #fff;
}

.匹配弹层 .中间 {
    background-color: #fff;
}


.匹配弹层 .匹配结果列表 {
    text-align: center;
    width: 100%;
    overflow: auto;
    float: right;
}

.搜索结果 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 3px;
}

.搜索结果 img {
    width: 40px;
    height: 40px;
    border-radius: 5px 0 0 5px;
}

.搜索结果 .单个 {
    cursor: pointer;
    border-radius: 5px;
    background-color: var(--主色);
    color: #fff;
    line-height: 36px;
    height: 40px;
}

.搜索结果 .单个 div {
    float: left;
}

.搜索结果 .单个 div:nth-child(2) {
    padding: 0 5px;
}

.改密码 table {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid #ddd;
}

.推广码 .中间 {
    text-align: center;
    padding: 20px;
}

.推广码 img {
    max-width: 100%;
    max-height: 100%;
}

#安卓app二维码容器 img {
    width: 100px;
    height: 100px;
    border-radius: 0px;
}

.说明 table {
    text-align: left;
    border: 1px solid #ddd;
}

.说明 table td {
    padding: 0 10px;
}

.撤单 {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 50px;
    padding: 20px 40px;
    border-radius: 5px;
    cursor: pointer;

}

.主题 button {
    width: 34px;
    height: 34px;
    margin: 0 1px;
    vertical-align: middle;
}


.使用说明 table tr td:nth-child(2) ,
.设置 table tr td:nth-child(2) {
    line-height: 24px;
}

@media (max-width: 768px) {
    .date-picker-container {
        justify-content: flex-end;
    }

    .date-picker {
        width: 100%;
        border-radius: 10px 10px 0 0;
    }
}

@media (max-width:1187px) {


    #app .m-yc {
        display: none;
    }

    .导航 {
        width: 100%;
        height: var(--行高);
        flex-direction: row;
        justify-content: space-around;
        position: fixed;
        bottom: 0;
        left: 0;
        top: auto;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 20;
        overflow: hidden;
        display: flex;
        flex-direction: row;
        align-items: center;
    }


    .导航 .行 {
        width: 25%;
        height: var(--行高);
        line-height: var(--行高);
        float: left;
        align-items: center;
        justify-content: center;
    }






    .更多导航弹层 {
        min-width: 25%;
        position: fixed;
        bottom: var(--行高);
        right: 0;
        background: var(--主色);
        flex-direction: column;
        padding: 5px 0;
    }

    .更多导航弹层 div {
        width: 100%;
        line-height: 40px;
        height: 40px;
        padding: 0 10px;
        display: flex;
        align-items: center;
    }

    .内容 {
        flex: 1;
        overflow-y: auto;
        margin-left: 0px
    }

    .内容 .头部 {
        width: 100%;
        margin-left: 0px;
        left: 0;
        border-left: none;
    }


    #app {
        flex-direction: column;
        min-height: 100vh
    }

    #datePickerOverlay {
        align-items: flex-end;
    }



    .查看会员弹层 .会员表,
    .查看匹配会员弹层 .会员表 {
        width: 100%;
    }

    .查看会员弹层 tr td,
    .查看匹配会员弹层 tr td,
    .编辑会员弹层 tr td,
    .新增会员弹层 tr td {
        float: left;
    }

    .查看会员弹层 tr td:nth-child(even),
    .查看匹配会员弹层 tr td:nth-child(even),
    .编辑会员弹层 tr td:nth-child(even),
    .新增会员弹层 tr td:nth-child(even),
    .会员表 tr td:nth-child(2) {
        min-width: calc(100% - var(--左宽));
        max-width: calc(100% - var(--左宽));
        width: calc(100% - var(--左宽));
    }

    /* .会员筛选弹层{
        max-width: 100%;
    } */

    .其它 {
        width: 100%;
        margin-left: 0;
        margin-top: 5px;
    }

    .弹小层>div,
    .弹大层>div {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        max-width: 100vw;
        overflow: auto;
        background-color: #fff;
    }

    .弹小层 .中间,
    .弹大层 .中间 {
        height: 100%;
    }

    .匹配弹层 .匹配结果列表 {
        text-align: center;
        width: 100%;
        max-width: 100%;
        overflow: auto;
        float: right;
    }


}