* {
    margin: 0;
    padding: 0;
}

/* Kendo 升级后 .k-textbox 默认宽度收窄 ~14-15px：
   1) Kendo MVC TagHelper 把 input.k-textbox 包装成 <span class="k-input k-textbox ...">
      inline-flex 外层容器，wrapper 宽度不再继承裸 input 的浏览器默认宽度 (~149px)。
   2) 部分页面 (如货币兑换 #txtCondition) 仍然是裸 <input class="k-textbox">，
      新版浏览器/字体差异下默认宽度也只有 ~142px。
   旧版基线：input.k-textbox 默认 size=20 + padding(.3em*2) + border(1px*2) ≈ 149px。
   本规则统一恢复为 149px；inline style 已设 width 的元素不受影响 (属性选择器排除)。
   排除 .k-input-inner，避免影响 wrapper 内部填充宽度的真实 input。 */
span.k-textbox:not([style*="width"]),
input.k-textbox:not([style*="width"]):not(.k-input-inner,.txtBoxStyle,.textboxclass) {
    width: 149px;
}

/* Kendo 升级后 .k-combobox / .k-autocomplete / .k-dropdownlist wrapper 默认宽度
   由旧版 ~149px 增加到 ~164px (+15px)。统一回退到 149px 与旧基线对齐。
   inline style 已设宽度的元素不受影响。 */
span.k-combobox:not([style*="width"]),
span.k-autocomplete:not([style*="width"]),
span.k-dropdownlist:not([style*="width"]),
span.k-dropdown:not([style*="width"]) {
    width: 149px;
}

/* Kendo 升级后 .k-datepicker / .k-datetimepicker / .k-timepicker wrapper
   默认宽度由旧版 180px 增加到 ~193px (+13px)。统一回退到 180px 与旧基线对齐。
   .k-numerictextbox 旧基线 149px，与 .k-textbox 一致。
   inline style 已设宽度的元素不受影响。 */
span.k-datepicker:not([style*="width"]),
span.k-datetimepicker:not([style*="width"]),
span.k-timepicker:not([style*="width"]) {
    width: 180px;
}
span.k-numerictextbox:not([style*="width"]) {
    width: 149px;
}
/* DateTimePicker 有「日历+时钟」两个按钮，Kendo 2022 按钮比旧版更宽，
   外框内只剩 ~88~98px 内框，导致 "YYYY-MM-DD HH:mm" 值被截断
   （旧版按钮窄、内框 132px，值完整可见）。
   用 min-width 放宽到 200px：既覆盖默认 180px，也能压过视图里内联的
   style="width:170px"（min-width > width 时生效），一次通杀有/无内联宽度两种情况。
   单按钮的 DatePicker/TimePicker 不受影响（仍按上面的 180px）。 */
.k-datetimepicker.k-input {
    min-width: 200px;
}

/* DatePicker（纯日期，单个日历按钮）：Kendo 2022 日历按钮比旧版更宽，
   视图里内联 style="width:110px" 的 DatePicker 外框内只剩 ~67px 内框，
   而 "YYYY-MM-DD"(如 2026-06-01) 需约 76px，导致日期值被截断
   （旧版按钮窄、同样 110px 外框内框约 85px，值完整可见）。
   用 min-width:125px 压过内联 width:110px（min-width > width 时生效），
   保证内框 ≥80px、日期完整。默认非内联宽度的 DatePicker 已是 180px(见上)，不受影响。
   实测页面：合约·佣金管理 起止日期。 */
.k-datepicker.k-input {
    min-width: 125px;
}

body {
    background: #fff;
    font-family: "Microsoft YaHei",宋体, Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 24px;
    color: #555;
    overflow-y: scroll;
}

a {
    text-decoration: none;
    color: #444;
}

input, select, textarea {
    font-size: 12px;
    color: #999;
    padding-left: 10px;
    border: 0 none;
}
input[type='checkbox'].k-checkbox{padding-left: 0px;}

li {
    list-style: none;
}

.fleft {
    float: left;
}

.fright {
    float: right;
}

.font-b {
    font-weight: bold;
}

.padd-top-15 {
    padding-top: 15px;
}

.margin-top-10 {
    margin-top: 10px;
}

.box {
    border: solid 1px #c4c4c4;
    /* 迁移修复：Kendo 2022 下 select 默认 content-box，width:100%+padding-left:10px+border 会撑出 12px 溢出，
       致编辑弹框出现多余横向滚动条。老版 Kendo 2016 表单控件为 border-box，此处恢复以与老版基准一致。 */
    box-sizing: border-box;
}
/*头部开始*/
.header {
    padding: 30px 0;
}

.header-inner {
    width: 1100px;
    margin: 0 auto;
}

.logo {
    float: left;
}

    .logo img {
        float: left;
        padding-right: 10px;
    }

.system-name {
    font-size: 20px;
    font-weight: bold;
    font-style: normal;
}

.eng-system-name {
    color: #c4c4c4;
    display: block;
    font-size: 11px;
    font-style: normal;
}

.try {
    float: right;
    margin-right: 10px;
}

    .try .phone-icon {
        background: url( ../images/all_icon.png) no-repeat;
        width: 31px;
        height: 37px;
        display: inline-block;
        vertical-align: middle;
        background-position: 0px -38px;
        margin-top: 6px;
        float: left;
    }

    .try .number {
        float: left;
    }

.font-lag {
    font-size: 16px;
}

.sq-button {
    float: left;
    margin: 8px 0px 0px 25px;
    border: 1px solid #999;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 16px;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    zoom: 1;
}

/*输入密码眼睛图标*/
.k-textbox.k-space-right{
    padding-right:36px;
    vertical-align:central;
}
.k-eye-open{
    width:32px;
    height:32px;
    background-image:url("images/eye.png");
}
.k-eye-close{
    width:32px;
    height:32px;
    background-image:url("images/eye2.png");
}
.k-eye .k-icon{
    margin-top:-15px;
}
/*banner开始*/
.banner {
    background: #92d0e9 url(../images/banner1.jpg) center top no-repeat;
    height: 484px;
}

.banner-inner {
    position: relative;
    width: 1100px;
    margin: 0 auto;
}
#userSubMenuDiv{
    position:absolute;
    right:40px;
    top:20px;
    width:90px;
    text-align:left;
    background-color:white;
    border:1px solid gray;
    padding:5px;
}
#userSubMenuDiv a{
    display:block;
}
#authUserTable td{
    height:36px;
}

.login {
    position: absolute;
    top: 50px;
    right: 0;
    width: 350px;
    height: 380px;
    background: #000;
    filter: Alpha(opacity=10);
    opacity: 0.1;
}

.login-box {
    background: #fff;
    width: 260px;
    height: 320px;
    padding: 20px 35px;
    color: #004793;
    position: absolute;
    top: 60px;
    right: 10px;
}

    .login-box .pms-login {
        font-size: 16px;
        font-weight: bold;
    }

    .login-box .lo-input-text {
        width: 248px;
        height: 38px;
        border: 1px solid #e5e5e5;
    }
    .login-box .lo-input-password {
        height: 38px;
        border: 1px solid #e5e5e5;
    }

    .login-box .lo-input-yzm {
        width: 125px;
        height: 38px;
        border: 1px solid #e5e5e5;
    }

    .login-box .login-i-t {
        margin-top: 8px;
    }

    .login-box .login-i-b {
        margin-top: 20px;
    }

    .login-box .login-i-t img {
        float: right;
    }

    .login-box .lo-input-button {
        cursor: pointer;
        background: #004793;
        width: 260px;
        height: 40px;
        border-radius: 6px;
        color: #fff;
        font-size: 16px;
        font-weight: bold;
        text-align: center;
    }

    .login-box .re-password {
        text-align: center;
        margin-top: 20px;
    }

        .login-box .re-password a {
            padding-right: 20px;
        }

.hide {display: none;}
.qrcode-target {position: absolute;width: 60px;height: 60px;display: block;top: 0;right: 0;_right: 1px;background-image: url(../../images/login/T1el0hXaJbXXXXXXXX.png);background-repeat: no-repeat;cursor: pointer;z-index: 101;-webkit-transition: background-position .2s cubic-bezier(0.25,.5,.5,.9);-moz-transition: background-position .2s cubic-bezier(0.25,.5,.5,.9);transition: background-position .2s cubic-bezier(0.25,.5,.5,.9);}
.qrcode-target-show {background-position: -201px -199px;}
.qrcode-target-hide {background-position: -260px -260px;}
.login-weixin .tit, .login-weixin .msg, .login-weixin .tips-error{color: #444;}
.login-weixin{padding:15px 10px 5px;text-align:center;}
.login-weixin a{color:#459ae9;}
.login-weixin .qrcode .pic{width:185px;height:185px;margin:5px auto 0px auto;position:relative;}
.login-weixin .qrcode .pic img{width:100%;}
.login-weixin .qrcode .alt{position:absolute;top:0;right:0;bottom:0;left:0;color:#fff;cursor:pointer;}
.login-weixin .qrcode .alt .mask{position:absolute;top:0;right:0;bottom:0;left:0;opacity:0.7;filter:alpha(opacity=70);-moz-opacity:0.7;background:#000;}
.login-weixin .qrcode .alt .void{position:absolute;top:0;right:0;bottom:0;left:0;z-index:11;}
.login-weixin .qrcode .alt .void .ico{width:80px;height:80px;margin:27px auto 0;background:url(../../images/login/ico_alert.png) no-repeat;display:block;}
.login-weixin .status{padding-top:45px;}
.login-weixin .status .tit{margin:20px 0 5px;line-height:1.6;font-size:16px;}
.login-weixin .status .txt{color:#8d8d8d;}
.login-weixin .status .opr{display:inline-block;padding:0 30px;margin-top:10px;height:34px;line-height:34px;background:#44b549;border:1px solid #44b549;color:#ffffff!important;}
.login-weixin .status .opr:hover{text-decoration:none;background:#2f9833;border-color:#2f9833;}
.login-weixin .status .ico{width:64px;height:64px;vertical-align:middle;display:inline-block;background:url(../../images/login/ico_msg_l.png) no-repeat;}
.login-weixin .status .ico-succ{background-position:0 0;}
.login-weixin .status .ico-warn{background-position:0 -66px;}
.login-weixin .status .ico-wait{background-position:0 -132px;}
.login-weixin .status .ico-info{background-position:0 -198px;}

/*注册申请开始*/
.wrapper {
    width: 1100px;
    margin: 20px auto 0;
}

.apply-banner {
    margin-top: 5px;
    background: #004793 url(../images/bannerRegister.jpg) center top;
    height: 120px;
}

.apply-banner-shift {
    margin-top: 5px;
    background: #004793 url(../images/bannerShiftSmaill.jpg) center top;
    height: 120px;
}

.apply-banner-shift, .apply-banner {
    background: #004793 url(../images/bannerShiftSmaillNoTitle.jpg) center top;
}

.apply-banner-title {
    color: white;
    font-size: 40px;
    display: block;
    padding-left: 70px;
    padding-top: 50px;
}

.apply-info h3 {
    border-bottom: 1px solid #e5e5e5;
    line-height: 45px;
    font-size: 18px;
}

.apply-info .info-list {
    padding: 30px 0 0 40px;
}

.info-list .apply-x {
    margin-top: 10px;
}

    .info-list .apply-x label {
        text-align: right;
        width: 130px;
        display: inline-block;
        padding-right: 12px;
    }

.info-input-text {
    width: 300px;
    height: 45px;
    border: 1px solid #e5e5e5;
}

.info-input-yzm {
    width: 166px;
    height: 45px;
    border: 1px solid #e5e5e5;
}

.info-input-button {
    cursor: pointer;
    background: #fe8d51;
    width: 312px;
    height: 45px;
    padding: 0;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.info-select {
    width: 150px;
    height: 45px;
    border: 1px solid #e5e5e5;
}

.info-select-m {
    width: 150px;
    height: 45px;
    border: 1px solid #e5e5e5;
    margin-left: 8px;
}

.getcode {
    background: #e5e5e5;
    height: 45px;
    line-height: 45px;
    padding: 0 28px;
    display: inline-block;
    margin-left: 2px;
}

.info-list .register-b {
    padding-left: 142px;
    margin-top: 20px;
}

.info-list .apply-x .font-blue {
    color: #004793;
}

.span-des {
    color: #999;
    font-size: 12px;
    padding-left: 7px;
}

.span-des-inline-block {
    display: inline-block;
}

.td-two {
    padding-top: 10px;
    text-align: left;
}

.td-one {
    color: black;
    text-align: right;
    padding-right: 8px;
}
.tdwidth {
width:120px;
}
/*找回密码开始*/
.line {
    height: 1px;
    background: #e5e5e5;
}

.find-password {
    padding: 40px 0 0;
    min-height: 440px;
}

    .find-password h3 {
        line-height: 30px;
    }

    .find-password .icon-careful {
        background: url(../images/all_icon.png) no-repeat;
        background-position: 0px 0px;
        display: inline-block;
        width: 30px;
        height: 30px;
        vertical-align: middle;
        padding-left: 10px;
    }

.f-password-item {
    width: 500px;
    margin: 60px auto 100px;
}

    .f-password-item .f-password-tab {
        height: 45px;
    }

        .f-password-item .f-password-tab a {
            height: 45px;
            line-height: 45px;
            text-align: center;
            width: 150px;
            display: inline-block;
        }

.f-password-tab .active {
    background: #f5f5f5;
    border-style: solid;
    border-color: #e5e5e5;
    border-width: 1px 1px 0;
}

.f-password-tel {
    background: #f5f5f5;
    padding: 50px 50px 80px;
    border: 1px solid #e5e5e5;
}

.f-password-button {
    margin: 40px 50px;
}
/*注册成功开始*/
.reg-success {
    padding: 40px 0 0;
    min-height: 440px;
}

    .reg-success h3 {
        line-height: 30px;
    }

    .reg-success .icon-reg-success {
        background: url(../images/all_icon.png) no-repeat;
        background-position: 0px -79px;
        display: inline-block;
        width: 30px;
        height: 30px;
        vertical-align: middle;
        padding-left: 10px;
    }

    .reg-success p {
        line-height: 32px;
    }

.bg-color {
    background: #f5f5f5;
    padding: 50px 50px 80px;
}

.login-now {
    margin-top: 20px;
}

.login-now-input-button {
    cursor: pointer;
    background: #fe8d51;
    width: 180px;
    height: 40px;
    border-radius: 6px;
    padding: 0;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}
/*底部开始*/
.footer {
    margin-top: 60px;
    height: 160px;
    padding-top: 50px;
    background: #f1f1f1;
}

.footer-inner {
    width: 1100px;
    display: flex;
    margin: 0 auto;
    justify-content: center;
}

.footer .wx-a {
    float: left;
    padding: 10px;
    display: flex;
    flex-flow: column;
    align-items: center;
}

    .footer .wx-a img, .footer .wx-b img {
        padding-left: 6px;
    }

.footer .wx-b {
    float: left;
    padding: 10px 0px 0px 30px;
}

.footer .company-info {
    float: left;
    padding-left: 100px;
}
/*验证错误信息*/
.field-validation-error, .validation-summary-errors {
    color: red;
}

.field-validation-valid {
    display: none;
}

form .validation-summary-errors {
    text-align: center;
}

form .formButtons {
    clear: both;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 5px;
}

td.control-label {
    text-align: right;
}
/*通用查询*/
.textright {
    text-align: right;
}

#commonQueryPlanTable .textright, #commonQueryTable .textright {
    width: 25%;
    padding-right: 5px;
}

#commonQueryPlanTable td ,#commonQueryTable td {
    padding: 2px 0;
}

#commonQueryPlanTable,#commonQueryTable {
    width: 100%;
}

.editFormTable {
    width: 100%;
    padding-right: 10px;
}
/*禁用项目*/
.status-disabled{
    text-decoration:line-through;
    color:red;
}
@media screen\0 {
    .editFormTable {
        padding-right: 0px;
    }
}

table.editFormTable .textright {
    width: 110px;
    padding-right: 5px;
}

.editFormTable .column2 .textright {
    width: 15%;
    padding-right: 2px;
}
/*角色成员*/
#roleMemberHotel,#roleMemberNotInSingle, #roleMemberButtons, #roleMemberInSingle {
    float: left;
}

#roleMemberHotel,#roleMemberNotInSingle, #roleMemberInSingle {
    margin-top: 15px;
    width: 220px;
    height: 500px;
    text-align: center;
}

    #roleMemberHotel select,#roleMemberNotInSingle select, #roleMemberInSingle select {
        width: 90%;
        height: 90%;
        border: 1px solid #e5e5e5;
    }

#roleMemberButtons {
    width: 100px;
    text-align: center;
    /*padding-top: 100px;*/
    line-height: 100%;
    margin-left: 0px;
    padding-top: 200px;
}

    #roleMemberButtons button {
        display: block;
        margin-top: 10px;
    }
/*角色权限*/
#authTreeDiv {
    float: left;
    width: 65%;
    height: 560px;
    overflow: scroll;
}

    #authTreeDiv + div {
        float: left;
        padding-top: 50px;
        text-align: center;
        width:150px;
        vertical-align: central;
    }

        #authTreeDiv + div button {
            display: block;
            margin-left:50px;
            margin-top:10px;
        }
/*用户管理*/
.change-password {
    color: #004793;
    padding-right: 15px;
}
/*价格体系设置*/

/*这个地方的颜色涉及到大部分按钮的颜色*/
/*.k-grid-toolbar .k-button {vertical-align:top;background:#dadada;}*/

/*客户关系中客历列表button改变颜色，客户关系中合约单位中往来管理button改变颜色*/
/*.k-grid tbody .k-button, .k-ie8 .k-grid tbody button.k-button{background-color:rgb(218,218,218);}*/

/*让预订下面那一行数字变成黑色*/
/*.k-pager-numbers.k-reset li a{color:#333;}*/
/*客账--迟付*/
#folioDelayPayReasonWindow #folioDelayPayTotalRoomQty{color:red;}
#folioDelayPayReasonWindow div{margin-top:5px;margin-bottom:5px;}
#folioDelayPayReasonWindow textarea{width:300px;height:88px;}
#folioDelayPayReasonWindow button{margin-right:20px;}
#folioDelayPayReasonWindow #folioDelayPayRoomNosDiv{max-height:200px;overflow:auto;}
/*客账--结账原因*/
#folioCheckoutReasonWindow #folioCheckoutTotalRoomQty{color:red;}
#folioCheckoutReasonWindow div{margin-top:5px;margin-bottom:5px;}
#folioCheckoutReasonWindow textarea{width:300px;height:88px;}
#folioCheckoutReasonWindow button{margin-right:20px;}
#folioCheckoutReasonWindow #folioCheckoutRoomNosDiv {max-height:200px;overflow:auto;}
/*收款账号消费项目*/
#accountItemsNotInSingle, #accountItemsButtons, #accountItemsInSingle {
    float: left;
}
    #accountItemsNotInSingle{
        margin-left:30px;
    }
    #accountItemsNotInSingle, #accountItemsInSingle {
        margin-top: 15px;
        width: 300px;
        height: 300px;
        text-align: center;
    }

    #accountItemsNotInSingle select, #accountItemsInSingle select {
        width: 90%;
        height: 90%;
        border: 1px solid #e5e5e5;
    }

#accountItemsButtons {
    width: 100px;
    text-align: center;
    /*padding-top: 100px;*/
    line-height: 100%;
    margin-left: 0px;
    padding-top: 50px;
}

    #accountItemsButtons button {
        display: block;
        margin-top: 10px;
    }
/*--------------------------------- 新版样式----------------------------*/
.color {
    color: #004793;
}

.font-size {
    font-size: 13px;
    display: inline-block;
}

.select-ico {
    margin-top: -30px;
    z-index: 999;
    position: absolute;
    margin-left: 170px;
}

.span-color {
    color: #666666;
}

.black-color {
    color: #333333;
}

.red-color {
    color: #fb192b;
}

.redcolor {
    color: #e62722;
    margin-right: 5px;
}

.exita {
    color: #004793;
    border: 1px solid;
    border-radius: 6px;
    margin-left: 10px;
}

.a-back {
    height: 30px;
    padding: 2px 14px 4px;
    float: right;
    font-size: 16px;
}

.bg-disabled {
    background-color: #f5f5f5 !important;
}
.span-sub {
    vertical-align: sub;
}
table.largeRowTable tr{
    line-height:1.5em;
}
input.k-textbox,
textarea.k-textbox{
    border-width: 1px;
    border-style: solid;
    border-color: #ccc;
    padding: 2px 0;
    box-sizing: border-box;
    border-radius: 4px;
}
/*input.k-textbox{
    height: 2.13em;
    line-height: 1.6em;
    text-indent: 0.33em;
}*/
/*上面是AI改的，不知道为什么改成这样，这里恢复原样*/
input.k-textbox {
    height: 2.5em;
    text-indent: .8em;
    line-height: 1.6em
}
/*
 * Kendo MVC for ASP.NET Core 生成的组件 HTML 包含 .k-input-md、.k-input-solid 等新 class，
 * 但项目引用的 kendo.common-bootstrap.min.css (2022 jQuery 版) 中没有这些 class 的定义，
 * 导致 .k-input-inner 使用了 CSS 中 padding:6px 12px 的通用规则，比迁移前偏大。
 * 以下样式恢复与 .NET Framework 时 Kendo MVC 一致的紧凑外观。
 */
.k-input-md .k-input-inner{
    padding: 2px 0;
    line-height: 1.94em; /* 旧版 Kendo 2016 input line-height=23.28px(12px*1.94)，新版仅17.14px */
}
.k-input-md{
    min-height: 0;
    /* border保留1px：旧版 k-picker-wrap 也有1px border，视觉一致 */
}
/*
 * .k-dropdown/.k-picker 在新版 Kendo MVC 中变成了 .k-picker 容器，
 * 旧版是 .k-widget .k-dropdown 包裹 .k-input（padding:0）。
 * 新版 .k-dropdown.k-picker 直接有 padding:6px 12px，导致下拉框撑大。
 */
.k-dropdown.k-picker,
.k-dropdownlist.k-picker{
    padding: 0;
    height: auto;
}
.k-dropdown.k-picker .k-input-inner,
.k-dropdownlist.k-picker .k-input-inner{
    padding: 2px 0;
    line-height: 1.94em;
}
.k-picker-md{
    min-height: 0;
}
  .k-textbox-new {
    height: 2.42em;
    text-indent: .8em;
    line-height: 1.6em;
    padding: 2px .3em;
    background-color: #fff;
    color: #333;
}
    fieldset {
    border-width: 1px;
    border-color: rgb(204,204,204);
    border-radius: 4px;
    border-style: solid;
    margin: 2px 5px 0 5px;
}
    legend {
    margin-left: 14px;
    color: #004793;
    font-size: 14px;
}
.right-span, .k-toolbar > :last-child.right-span {
    display:inline-block;
    color:red;
    float:right;
    padding-top: 8px;
    margin-right:10px;
}
.select-icon {
    position: absolute;
    /* Kendo 2022 迁移后 .k-textbox 渲染宽度/内距变化，原 margin-left:-20px 使
       放大镜图标右半溢出输入框外（约溢出 6px）。改为 -32px 让图标完整落在框内并留约 6px 右内距。 */
    margin-left:-32px;
    top: 16px;
    background: url(../images/all_icon.png) no-repeat;
    width: 14px;
    height: 14px;
    display: inline-block;
    background-position: -49px 0px;
}
 /****重要突出按钮,c表示自定义，danger表示突出危险性****/
.c-danger{
    background-color:rgb(255,90,0)!important;color:white!important;width:100%;height:50px;border-color:white!important;
}
.c-disabled {
    background-color: rgb(192,192,192) !important;
    color: white !important;
    width: 100%;
    height: 50px;
    border-color: white !important;
}

 /****2017-12-13 grid 行内编辑 数值类型文本框样式****/
input.text-box {
    padding: 2px 0.3em;
    text-indent: 0.6em;
    background-color: #fff;
    color: #333;
    height: 2.42em;
    line-height: 1.6em;
    border-radius: 4px;
    outline: 0px;
    border-color: #aeaeae;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    box-shadow: 0 0 7px 0 #76abd9;
    background-image: none;
    background-position: 50% 50%;
    border-color: #76abd9;
    -webkit-box-shadow: 0 0 7px 0 #76abd9;
}
/**********************楼层平面图房间定义******************/
div.roomdefine {
    background-color: green;
    border: 1px solid red;
    text-align: center;
    vertical-align: middle;
}

div.newroom {
    border: 1px dotted red;
    background: none;
}

    div.newroom span {
        filter: alpha(opacity=0);
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0;
    }

/**********************楼层平面图房态******************/
.floorPlanRoomStatusContainer {
    border:1px dotted blue;
    margin-top:5px;
}
.floorPlanStatusRoomNo {
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.floorPlanStatusRoomNo.floorPlanStatusRoomNo_left{
    float:left;
    margin-left:5px;
}
.floorPlanStatusRoomNo.floorPlanStatusRoomNo_right {
    float: right;
    font-size:12px;
    font-weight:normal;
    margin-right:5px;
}
/****************************************新版选择班次页面样式开始************************************************/
.apply-banner-shift2 {
    background: #004793 url(../images/bannerShiftSmaillNoTitle2.png) center top;
    height: 120px;
}

.apply-banner-title2 {
    color: white;
    font-size: 36px;
    display: block;
    text-align: center;
    padding-top: 50px;
}
.info-list2 {
    padding: 20px 0px 40px 0px;
}
.font-size2 {
    font-size: 16px;
    display: inline-block;
}
.font-back {
    color: rgba(2, 56, 139, 1);
    font-size: 16px;
    float: right;
    line-height: 18px;
    margin: 22px 0 0 -6px;
}
/*底部开始*/
.footer2 {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 10px;
    margin-top: 0px !important;
    height: 160px;
}
.flex-col {
    display: flex;
    flex-direction: column;
}
.login_block {
    background-color: rgba(221, 232, 255, 1);
    border-radius: 8px 8px 0 0;
    width: 1100px;
    height: 124px;
}
.flex-row {
    display: flex;
    flex-direction: row;
}
.hotel_group {
    background-color: rgba(255, 255, 255, 1);
    border-radius: 6px;
    width: 520px;
    height: 84px;
    margin: 20px 0 0 290px;
    cursor: pointer;
}
.hotel_block {
    background-color: rgba(2, 56, 139, 1);
    border-radius: 6px;
    height: 48px;
    width: 48px;
    margin: 18px 0 0 18px;
}
.hotel_section {
    background-image: url("/images/Vector.png");
    width: 25px;
    height: 24px;
    margin: 12px 0 0 12px;
}
.business_section {
    background-image: url("/images/BusinessPoint.png");
    width: 25px;
    height: 24px;
    margin: 12px 0 0 12px;
}
.hotel_wrapper {
    width: 398px;
    height: 40px;
    margin: 22px 0 0 12px;
}
.hotel_thumbnail {
    width: 18px;
    height: 18px;
    margin: 33px 26px 0 0px;
}
.hotel_text {
    color: rgba(45, 68, 88, 1);
    line-height: 16px;
    font-family: Noto Sans SC-Regular;
    font-size: 16px;
}
.hotel_name {
    font-family: Noto Sans SC-Medium;
    line-height: 16px;
    margin-top: 8px;
    font-size: 16px;
}
.hotel_div {
    min-height: 410px;
    background-color: rgba(234, 240, 252, 1);
}
.shift_block {
    width: 1060px;
    height: 74px;
    margin: 20px 0 0px 20px;
}
.shift_detail_block {
    background-color: rgba(255, 255, 255, 1);
    border-radius: 6px;
    height: 74px;
    cursor: pointer;
}
.shift_detail_block:hover {
    background-color: rgb(147 186 247);
}
.shift_detail_select {
    border: 1px solid rgba(2, 56, 139, 1);
}
.shift_detail_group {
    height: 38px;
    margin: 17px 0 0 18px;
    float: left;
}
.shift_detail_name {
    color: rgba(26, 26, 26, 1);
    font-size: 16px;
    font-family: Noto Sans SC-Regular;
    line-height: 16px;
}
.shift_detail_time {
    color: rgba(45, 68, 88, 1);
    font-size: 14px;
    font-family: Noto Sans SC-Regular;
    font-weight: normal;
    line-height: 14px;
    margin-top: 8px;
}
.shift_detail_wrapper {
    border-radius: 0px 6px 6px 0px;
    height: 24px;
    margin-left: 44px;
    width: 64px;
    float: right;
    text-align:center;
}
.wrapper_close {
    background-color: rgba(154, 168, 184, 1);
}
.wrapper_nopen {
    background-color: rgba(7, 147, 247, 1);
}
.wrapper_open {
    background-color: rgba(7, 193, 96, 1);
}
.shift_detail_staus {
    color: rgba(255, 255, 255, 1);
    font-size: 12px;
    font-family: Noto Sans SC-Regular;
    font-weight: normal;
    line-height: 12px;
    margin-top: 6px;
}
/*****选择分店******/
.login_hotel_box {
    background-color: rgba(221, 232, 255, 1);
    border-radius: 8px 8px 0px 0px;
    width: 1100px;
    height: 56px;
    cursor:pointer;
}
.login_hotel_rtnbox {
    height: 16px;
    margin: 20px 0 0 20px;
}
.login_hotel_thumbnail {
    width: 16px;
    height: 16px;
}
.login_hotel_rtntext {
    width: 76px;
    color: rgba(2, 56, 139, 1);
    font-size: 16px;
    font-family: Noto Sans SC-Medium;
    font-weight: 500;
    line-height: 16px;
    margin-left: 8px;
}
.login_hotel_groupleft {
    background-color: rgba(2, 56, 139, 1);
    width: 16px;
    height: 2px;
    margin: 7px 0 0 374px;
}
.login_hotel_hottext {
    font-family: Noto Sans SC-Medium;
    line-height: 16px;
    margin-left: 8px;
    font-size: 16px;
}
.login_hotel_groupright {
    background-color: rgba(2, 56, 139, 1);
    width: 16px;
    height: 2px;
    margin: 7px 0 0 8px;
}
.login_hotel_box_4 {
    background-color: rgba(217, 226, 235, 1);
    width: 1100px;
    height: 1px;
    margin-top: 19px;
}
.login_hotel_block {
    width: 1060px;
    height: 72px;
    margin: 20px 0 0 20px;
}
.login_hotelitem_box {
    height: 72px;
    margin: 20px 0 0 20px;
}
.login_hotelitem_group {
    background-color: rgba(255, 255, 255, 1);
    border-radius: 6px;
    height: 72px;
    width: 340px;
    cursor: pointer;
}
.login_hotelitem_selgroup {
    color: rgba(2, 56, 139, 1);
    border: 1px solid rgba(2, 56, 139, 1);
}
.login_hotelitem_group:hover, login_hotelitem_selgroup:hover {
    background-color: rgb(147 186 247);
}
.login_hotelitem_hid {
    font-size: 14px;
    font-family: Noto Sans SC-Regular;
    line-height: 14px;
    margin-top: 1px;
    width: 304px;
}
.login_hotelitem_hname {
    font-size: 16px;
    font-family: Noto Sans SC-Regular;
    line-height: 16px;
}
.login_hotelitem_wrapper {
    width: 304px;
    height: 16px;
    margin: 17px 0 0 18px;
}
.login_hotelitem_wrapper2 {
    width: 322px;
    height: 32px;
    margin: 7px 0 0 18px;
}
.login_hotelitem_image {
    width: 34px;
    height: 32px;
    margin-left: -16px;
}
.login_business_box {
    background-color: rgba(221, 232, 255, 1);
    border-radius: 8px 8px 0px 0px;
    width: 1100px;
    height: 124px;
}
.login_business_block {
    background-color: rgba(217, 226, 235, 1);
    width: 1084px;
    height: 1px;
    margin-top: 18px;
}
/****************************************新版选择班次页面样式结束************************************************/

/* Kendo 2022 toolbar button compatibility fixes */
.k-toolbar.k-grid-toolbar {
    /*overflow: visible !important;*/
    flex-wrap: wrap !important;
    min-height: auto !important;
    padding: 4px 8px !important;
}
/*
 * 这类 master-detail 页（付款方式/消费项目/通用代码 等）的网格工具栏实为 display:block
 * + inline-block 按钮，white-space:normal 时按钮按行内流换行：左侧窄栏（约449px）里
 * 增加/取消修改/保存修改/删除 4 个按钮在字体略宽/窗口略窄的环境下会把"删除"挤到第二行
 * （用户机复现、开发机不一定复现）。旧版这类工具栏不换行。
 * white-space:nowrap 让它们保持一行；对真正的 flex 工具栏无副作用（flex 项换行由
 * flex-wrap 管，不受 white-space 影响），宽工具栏本就一行放得下，故可全局加。
 */
.k-grid-toolbar {
    white-space: nowrap;
}
.k-toolbar.k-grid-toolbar.k-toolbar-resizable {
    flex-wrap: wrap !important;
    overflow: visible !important;
}
.k-grid-toolbar .k-button,
.k-grid-toolbar a.k-button,
.k-grid-toolbar button.k-button {
    overflow: visible !important;
    white-space: nowrap !important;
    /* 横向 padding 14px→10px、按钮间距 margin-right 8px→4px：
       付款方式/消费项目 等窄左栏（约449px）里 增加/取消修改/保存修改/删除 4 个按钮，
       字体略宽/窗口略窄时"删除"会顶出 overflow:hidden 被裁掉。收紧 padding+间距后
       4 个按钮整排宽度从约 356px 降到约 310px，窄到 320px 栏宽仍能完整显示删除。 */
    padding: 5px 10px !important;
    margin-right: 4px !important;
    line-height: 1.72em !important;
    font-size: 12px !important;
    font-family: inherit !important;
    display: inline-flex !important;
    height: auto !important;
}
/* Icon spans in toolbar buttons */
/* 排除被 JS 用 .hide()（内联 display:none）显式隐藏的图标 —— 例如批量修改/改期/
   调价等弹框"保存勾选项"按钮上的 loading.gif：默认隐藏、点保存时才 show、保存完再 hide。
   若不排除，这条 !important 会强行 inline-flex 覆盖掉 JS 的 display:none，导致转圈图标一直显示。 */
.k-grid-toolbar .k-button .k-icon:not([style*="display: none"]),
.k-grid-toolbar .k-button .k-button-icon:not([style*="display: none"]) {
    display: inline-flex !important;
    flex-shrink: 0 !important;
}
/* 例外：kendoUpload 的选择按钮（div.k-button.k-upload-button）依赖 overflow:hidden
   裁剪内部 font-size:170px 的透明 file input；上面的 overflow:visible !important
   会让该 input 溢出铺满整个工具条，点击工具条任何按钮都误触原生文件选择框
   （例：客情维护工具条"增加随行人"等按钮点击弹文件框） */
.k-grid-toolbar .k-button.k-upload-button,
.k-toolbar .k-button.k-upload-button {
    overflow: hidden !important;
}

/*
 * Kendo 2022 工具栏(.k-toolbar)用 flex `gap` 给【直接子元素】留间距。
 * 但有些自定义工具栏把一组按钮包在一个 <span>（如房间管理右侧"批量增加/增加/
 * 取消修改/..."那一栏 float:right 的 span）里，这些按钮不是工具栏的直接 flex 子元素，
 * 拿不到 gap；而 Kendo 2022 的 .k-button 默认 margin:0，于是这排按钮全糊在一起。
 * 给工具栏内被 span 包裹的按钮补回左间距（直接子按钮不受影响，仍用 gap）。
 */
.k-grid-toolbar span > .k-button {
    margin-left: 8px;
}

/*
 * Kendo 2022 的 ".k-toolbar > * { display: inline-flex }"（来自 kendo 主题 css）
 * 会把直接放进工具栏的自定义 <table> 也变成 inline-flex —— 例如批量修改/批量调价/
 * 批量改期/批量改房型等弹框用 <colgroup> 固定列宽的工具栏表单表格。
 * 一旦 table 变 inline-flex，<colgroup>/<col> 的列宽被完全忽略、列塌缩，
 * 表现为"备注"列被压成竖排、备注文本框溢出叠到客人类型上、按钮挤在一起。
 * 旧版 Kendo 无此规则，table 正常按 display:table 渲染。此处恢复表格布局。
 */
.k-toolbar > table {
    display: table !important;
}
.k-toolbar > table > colgroup {
    display: table-column-group !important;
}
.k-toolbar > table > tbody {
    display: table-row-group !important;
}

/*
 * 同上根因（Kendo 2022 ".k-toolbar > * { display: inline-flex }"）：很多自定义工具栏
 * 把"分店下拉 + 按钮组 + 提示文字"分别包在 .floatL / .floatR 块里（如会员【会员列表】
 * 工具栏第一格"分店"下拉 + right-span"按[Ctrl]或者[Shift]多选"提示）。
 * 这些块被 Kendo 主题变成 flex 后，内部 label/下拉/float:right 提示 span 被强制排成一行
 * 不再换行，块宽从旧版 ~226px 撑到 ~392px，把后面的"综合查询"按钮组挤到下一行，
 * 导致整条工具栏多出一行、所有按钮和提示文本位置与旧版错位。
 * 旧版 Kendo 无此 flex 规则，这些块是 display:block，提示 span 正常 float 换行到下方。
 * 恢复 block 布局，使按钮/提示文本位置与旧版一致。floatL/floatR 是本系统自定义类，
 * 不影响 Kendo 原生 .k-toolbar-item。 */
.k-grid-toolbar > .floatL,
.k-grid-toolbar > .floatR,
.k-toolbar > .floatL,
.k-toolbar > .floatR {
    display: block !important;
}

/*
 * Kendo 2022 复选框是真实可见的 16px 方框；旧版是隐藏原生 input + 伪元素。
 * 很多视图给 CheckBoxFor 加了内联 style="width:100%"（旧版用于让标签占满，
 * 对隐藏式 checkbox 无副作用），迁移后这个 100% 落到可见复选框上，把它撑成
 * 一个几十~上百 px 宽的大方块（如价格代码增加/修改的"不可修改/隐藏房价"、
 * 会员卡相关弹框等 13+ 处）。强制复选框回到标准 16×16，覆盖内联 width。
 */
.k-checkbox {
    width: 16px !important;
    height: 16px !important;
    flex: 0 0 auto !important;
}

/*
 * Kendo 2022 TimePicker 的下拉按钮(.k-input-button)比旧版更宽(约29px vs 24px)，
 * 且 width:100% 的内联 timepicker 外框会塌缩到容器宽(约64px)，留给文本的内框
 * 只剩约33px，导致 "12:00"/"23:59" 等时间值被截断成 "1..."（价格代码增加/修改
 * 的半日租/日租/保留起收时间、时间段内起止时间等）。旧版这些框约 81px、文本完整。
 * 给行内 TimePicker 兜底 min-width，保证 HH:mm 时间值完整可见。
 */
.k-timepicker.k-input {
    min-width: 80px;
}

/* ========================================
 * Kendo UI 迁移兼容样式 - 双系统对比自动生成
 * 日期: 2026-04-03
 * 旧系统: localhost:84 (.NET Framework)
 * 新系统: localhost:51233 (.NET 10)
 * 页面: 房态图, 客单列表
 * ======================================== */

/*
 * input.k-textbox / textarea.k-textbox 字体回退到浏览器默认(Arial/monospace)，
 * 旧系统通过 Kendo 主题统一使用 "Microsoft YaHei" 字体族。
 */
input.k-textbox,
textarea.k-textbox {
    font-family: "Microsoft YaHei", 宋体, Arial, Helvetica, sans-serif;
    vertical-align: middle;
}

/*
 * .k-window .k-window-titlebar 新版 fontSize=12px，旧版=14.4px (1.2em)。
 * 旧版通过 padding-top 为 titlebar 腾出空间 (padding:29px 0 0 + margin:-29px)，
 * 新版用 flexbox 布局 (padding:6px 12px)，保持 fontSize 一致即可。
 */
.k-window .k-window-titlebar {
    font-size: 1.2em;
}

/*
 * .k-tabstrip 旧版 backgroundColor=transparent，新版=rgb(245,245,245)。
 * 新版 Kendo 给 tabstrip 容器加了灰色背景，与旧版不一致。
 */
.k-tabstrip {
    background-color: transparent;
}
/*
 * .k-tabstrip .k-item 旧版 padding=0 0 1px, margin=0 -1px -1px 0，
 * 新版 padding=0, margin=0 0 -1px。保持旧版布局间距。
 */
.k-tabstrip-top > .k-tabstrip-items-wrapper > .k-tabstrip-items > .k-item,
.k-tabstrip .k-item.k-tabstrip-item {
    padding: 0 0 1px;
    margin: 0 -1px -1px 0;
}

/*
 * 非工具栏区域的 .k-button（如页面上独立的按钮），
 * 新版 k-button-md 设置 font-size:14px，旧版统一 12px。
 * 不影响 .k-grid-toolbar 中的按钮（已有独立修复使用 !important 强制 14px）
 * 和 .k-input-button（picker图标按钮）。
 */
button.k-button.k-button-md:not(.k-input-button) {
    font-size: 12px;
    line-height: 1.72em;
}

/*
 * .k-checkbox 在新版 Kendo 中从隐藏原生 checkbox + 伪元素 变为
 * 直接渲染的 styled checkbox (width:16px, height:16px)。
 * 两种方案都能正常工作，不需要 CSS 强制回退。
 * 以下仅确保 checkbox 垂直对齐一致。
 */
.k-checkbox {
    vertical-align: middle;
}

/* ========================================
 * Kendo UI 迁移兼容样式 - 双系统对比补充
 * 日期: 2026-04-03
 * 基于4个页面(客单列表/付款方式/消费项目/综合预订)的computed style对比
 * ======================================== */

/*
 * .k-datepicker/.k-input 容器背景色：旧版 bg=rgb(245,245,245)（灰色），
 * 新版 bg=rgb(255,255,255)（白色）。旧版 Kendo 的 .k-widget 统一灰底，
 * 新版取消了这层灰底。恢复旧版外观。
 */
.k-datepicker.k-input,
.k-datetimepicker.k-input,
.k-numerictextbox.k-input,
.k-combobox.k-input,
.k-autocomplete.k-input {
    background-color: rgb(245, 245, 245);
}

/*
 * Kendo 2022 的 .k-datepicker/.k-datetimepicker/.k-numerictextbox/.k-combobox/.k-autocomplete
 * 在 display:flex 父容器（如 .k-grid-toolbar 及其 flex 子 div）中会因 align-items:stretch
 * 被拉伸到与兄弟元素（例如 k-upload 容器）相同高度，导致 picker 变高（57px 等）。
 * 固定 picker 自身高度并禁止 stretch，使其保持旧版 ~30px 紧凑外观。
 * 同时限制内部 .k-input-inner 不随外层拉伸。
 */
.k-datepicker.k-input.k-input-md,
.k-datetimepicker.k-input.k-input-md,
.k-numerictextbox.k-input.k-input-md,
.k-combobox.k-input.k-input-md,
.k-autocomplete.k-input.k-input-md,
.k-dropdownlist.k-picker.k-picker-md,
.k-dropdown.k-picker.k-picker-md {
    height: auto;
    align-self: center;
    flex: 0 0 auto;
}
.k-datepicker.k-input.k-input-md > .k-input-inner,
.k-datetimepicker.k-input.k-input-md > .k-input-inner,
.k-numerictextbox.k-input.k-input-md > .k-input-inner,
.k-combobox.k-input.k-input-md > .k-input-inner,
.k-autocomplete.k-input.k-input-md > .k-input-inner,
.k-dropdownlist.k-picker.k-picker-md > .k-input-inner,
.k-dropdown.k-picker.k-picker-md > .k-input-inner {
    height: auto;
    align-self: center;
}

/*
 * .k-dropdownlist/.k-dropdown 容器背景色：同上，旧版 bg=灰色。
 * 新版 .k-picker 容器默认白色背景。
 */
.k-dropdownlist.k-picker.k-disabled,
.k-dropdown.k-picker.k-disabled {
    background-color: rgb(245, 245, 245);
}

/*
 * .k-grid .k-pager-wrap lineHeight：旧版 27.6px (2.3em)，
 * 新版 normal。差异导致分页栏行高不一致。
 */
.k-grid .k-pager-wrap {
    line-height: 2.3em;
}

/*
 * Kendo 2022 分页栏 page-size 下拉宽度修复
 * 日期: 2026-04-07
 * 问题: 查房列表等 Grid 页面，pager 右下角的 page-size 下拉框
 *       新版 Kendo 默认 border-box + 内部 min-width 导致容器宽度 72px，
 *       旧版 Kendo 2016 为 content-box 无边框，容器宽度 60px。
 * 修复: 强制 .k-pager-sizes 内 dropdown 容器宽度 60px，与旧版对齐。
 *       仅影响分页栏的 page-size 下拉，不影响页面其它 dropdown。
 */
.k-pager-sizes .k-dropdownlist,
.k-pager-sizes .k-dropdown,
.k-pager-sizes .k-picker {
    width: 60px !important;
    min-width: 60px !important;
}

/*
 * Kendo 2022 无数据行隐藏
 * 日期: 2026-04-07
 * 问题: 部分页面（如查房列表）在 DataBound 事件中为空数据注入
 *       <tr class="k-no-data"> 无记录</tr>，挤压网格可用高度。
 *       旧版 Kendo 2016 对应页面为空时 tbody 为空，不展示"无记录"。
 * 修复: 隐藏 Grid 直接生成的无数据行与提示模板；不影响网格布局及嵌套组件。
 */
tr.k-no-data,
.k-grid > .k-grid-norecords,
.k-grid > .k-grid-norecords-template,
.k-grid-content > .k-grid-norecords,
.k-grid-content > .k-grid-norecords-template {
    display: none !important;
}

/*
 * .k-radio 在新版 Kendo 中与 .k-checkbox 一样，从隐藏原生控件变为
 * 直接渲染的 styled radio。确保垂直对齐一致。
 */
.k-radio {
    vertical-align: middle;
}

/*
 * Kendo 2022 radio 标签修复
 * 新版 Kendo 的 k-radio-label 使用 display:inline-flex，
 * 导致 grid toolbar 中多行 radio 按钮行高膨胀（如房务列表 138px vs 旧版正常高度）。
 * 改为 display:inline 与旧版 Kendo 2016 行为一致。
 */
.k-radio-label {
    display: inline;
    white-space: nowrap;
    vertical-align: middle;
}

/* ========================================
 * Kendo 2022 弹窗/表单布局兼容修复
 * 日期: 2026-04-04
 * 问题: Kendo 2022 控件渲染宽度比 2016 版更大，挤压 label 列导致
 *       中文标签换行、行高增加、弹窗内容被截断
 * 数据: 15个 label 从 48px 缩至 36px，73个元素出现换行
 * ======================================== */

/*
 * 表单标签列：防止中文标签换行
 * .soc-right-table 是 ResOrderCustomer（新入住/在住客单）右侧表单
 * .k-window-content 覆盖所有 Kendo 弹窗内的表单
 * .editFormTable 覆盖系统内通用编辑表单（换房/转客/延住等弹窗）
 * white-space:nowrap 防止标签文字换行，不设 min-width 以免挤压数据列
 */
.soc-right-table td.textright,
.soc-right-table td.control-label,
.k-window-content td.textright,
.k-window-content td.control-label,
.editFormTable td.textright,
.editFormTable td.control-label {
    white-space: nowrap;
}

/*
 * 合约单位单元格：ComboBox + 关联标签同行显示
 * Kendo 2022 的 ComboBox 用 inline-flex 占满整个 td 宽度（183px），
 * 把"关联"标签挤到下一行。限制 ComboBox 宽度，让"关联"保持同行。
 */
.soc-right-cttid {
    white-space: nowrap;
}
.soc-right-cttid .k-combobox {
    max-width: 149px;
    display: inline-flex;
}

/*
 * Kendo TabStrip 页签文字防换行
 * 新版 tab 页签（客情/客账/历史账单/日志）在48px宽度内放不下4字中文
 */
.k-tabstrip > .k-tabstrip-items > .k-item > .k-link {
    white-space: nowrap;
}

/*
 * Kendo 2022 checkbox 标签修复
 * 新版 Kendo CheckBoxFor 会从 [Display(Name)] 自动生成 .k-checkbox-label，
 * 导致与 View 中手动 <label> / <span class="checkbox-label-text"> 文本不一致。
 * 仅在已有 .checkbox-label-text 替代文本时，才隐藏 Kendo 自动生成的 .k-checkbox-label。
 * 未提供替代文本的 CheckBox().Label() 调用保留 .k-checkbox-label 可见。
 */
:has(> .checkbox-label-text) > label.k-checkbox-label {
    display: none !important;
}

/*
 * 迁移把 CheckBoxFor().ResourceLabel("xxx") 改写成 "裸 checkbox + <span class="checkbox-label-text">xxx</span>"
 * （规避 Kendo 2022 自动标签的双标签问题）。但这个替代 span 没有任何样式：紧贴复选框
 * (gap=0)、vertical-align:baseline 不与方框居中，看起来"标签糊在框上、上下不齐"
 * （如修改房间类型的"夜审置脏/离店置脏"，及其它 22 个使用该写法的弹框）。
 * 旧版 .ResourceLabel() 渲染的 label.k-checkbox-label 自带左间距且居中。此处补回。
 * 注意：只给 margin-left（与复选框的间距）+ nowrap（窄单元格里短标签如"不可修改"
 * 不被折成两行）；不要加 margin-right —— 否则会把价格代码增改弹框里"客人来源"旁
 * 这种放在窄 td 里的"不可修改"挤到换行。多个复选框组之间的分隔改由下面
 * ".checkbox-label-text + .k-checkbox" 给后续复选框加左边距实现，不影响行末单个标签。
 */
.checkbox-label-text {
    margin-left: 4px;
    vertical-align: middle;
    white-space: nowrap;
}
.checkbox-label-text + .k-checkbox {
    margin-left: 12px;
}

/*
 * 价格代码增加/修改弹框（RateManage 的 _Add/_Edit/_AddGroup/_EditGroup）专属修复：
 *
 * 1) "包餐"多选框 #meals 用 style:width:auto，且视图里有脚本隐藏其搜索 input。
 *    Kendo 2022 下空多选框 + input 隐藏 → 外框塌成约 6px（界面上只剩一个小"○"）。
 *    给它固定宽 + 最小高，恢复成正常空多选框外观。
 */
.k-multiselect:has(#meals) {
    width: 200px !important;
    min-height: 28px !important;
}

/*
 * 2) "需要变价券/不限次温泉人数/包价累计使用/发预订短信给业务员"这几个复选框，
 *    视图用 ResourceLabelFor 手动加了标签；Kendo 2022 的 CheckBoxFor 又会从
 *    [Display(Name)] 自动生成一个 label.k-checkbox-label → 双标签，整行被撑宽换行。
 *    隐藏这些复选框自动生成的重复标签（手动标签保留）。这些 id 仅 RateManage 用。
 */
#IsNeedCoupons + label.k-checkbox-label,
#WqPersonsIsNotFrequencys + label.k-checkbox-label,
#BbfAddedUse + label.k-checkbox-label,
#IsRemindSalesMans + label.k-checkbox-label {
    display: none !important;
}

/*
 * Kendo 2022 弹窗标题栏紧凑化
 * 旧版标题栏高度约 28px，新版约 37px（padding:6px 12px）。
 * 缩小 padding 回收空间给内容区域。
 */
.k-window > .k-window-titlebar.k-hstack {
    padding: 4px 8px;
}
/*
 * 客单弹窗（resKendoWindow）高度补偿
 * Kendo 2022 控件 inline-flex 使表单行高从 36px 增至 55px，
 * 内容总高度增加约 53px。通过增大弹窗高度补偿。
 * CSS 不能直接改 kendoWindow height，但可改父 .k-window 容器。
 */
#resKendoWindow {
    max-height: none !important;
}
.k-window:has(#resKendoWindow) {
    height: 660px !important;
}
.k-window:has(#resKendoWindow) > .k-window-content {
    height: calc(100% - 33px) !important;
    max-height: none !important;
    padding: 4px;
}

/*
 * 隐藏的 Kendo MultiSelect 控件高度修复
 * 问题: specialtemp/remarktemp 的 MultiSelect 在 HTML 设了 height:0;width:0，
 *       Kendo 2016 渲染为 0 高度，但 Kendo 2022 的 .k-multiselect 有 min-height
 *       导致仍占 35px 高度，撑高特殊要求/备注行。
 * 修复: 对宽度/高度为 0 的 MultiSelect 包装器隐藏。
 */
/* specialtemp, remarktemp 的 Kendo MultiSelect 包装器通过 aria-owns 定位 */
.k-multiselect[aria-owns*="specialtemp"],
.k-multiselect[aria-owns*="remarktemp"] {
    max-height: 0;
    min-height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border: 0;
}

/*
 * Issue 2: 客单快速切换输入框高度修复
 * Kendo 2022 的 .k-textbox 在新版中高度被压缩（16px vs 旧版27px），
 * 宽度过大（274px vs 旧版192px）。修复高度和宽度以匹配旧版。
 */
#orderTabStripDiv_spanQuickSwitcher .k-textbox.k-space-right {
    height: 27px;
    line-height: 1.6em;
    box-sizing: border-box;
}
/*
 * 快速切换内层 input 边框修复
 * Kendo 2022 不再自动给 .k-textbox span 内的 input 渲染 border，
 * 升级后看起来像一段灰色文字。这里直接给内部 input 一个 textbox 外观。
 */
#orderTabStripDiv_spanQuickSwitcher input[type="text"] {
    border: 1px solid #999;
    height: 23px;
    padding: 1px 4px;
    margin: 1px 0;
    box-sizing: border-box;
    background: #fff;
    vertical-align: middle;
    outline: none;
}
#orderTabStripDiv_spanQuickSwitcher input[type="text"]:focus {
    border-color: #428bca;
}
/*
 * 快速切换所在的 TabStrip 页签是 Enabled(false)（防止它被当页签切换），
 * Kendo 会给它加 .k-state-disabled + pointer-events:none，导致内部 input 和
 * 读卡按钮首次以外的点击都被拦截。这里强制恢复子元素可点。
 */
#tabstripAuth li.k-state-disabled #orderTabStripDiv_spanQuickSwitcher,
#tabstripAuth li.k-state-disabled #orderTabStripDiv_spanQuickSwitcher * {
    pointer-events: auto !important;
    cursor: auto !important;
}
#tabstripAuth li.k-state-disabled #orderTabStripDiv_inputQuickSwitcher {
    cursor: text !important;
    user-select: text !important;
}
/*
 * 快速切换 - 读卡按钮（文本链接）
 * 原来套用 .k-icon 在 Kendo 2022 会被挤成 16x16 字体图标，文本被吃掉。
 * 改为走独立的 .qs-readcard-btn 纯文本链接样式。
 */
#orderTabStripDiv_spanQuickSwitcher .qs-readcard-btn {
    display: inline-block;
    margin-left: 0;
    padding: 0 2px;
    color: #428bca;
    text-decoration: none;
    cursor: pointer;
    line-height: 1.6em;
    vertical-align: middle;
}
#orderTabStripDiv_spanQuickSwitcher .qs-readcard-btn:hover {
    text-decoration: underline;
}

/*
 * Issue 5: 隐藏 TabStrip Content() HTML编码泄露的弹窗 div
 * Kendo 2022 TabStrip .Content() 方法在 <script> 标签后对 HTML 编码，
 * 导致 <div style="display:none;"> 包裹失效，换房/关联/分房等弹窗 div 暴露。
 * 直接用 CSS 隐藏这些不该在客情页面可见的弹窗容器。
 */
#changeRoom_selectRoomWindow,
#relationWindow,
#setRoomNewWindow,
#changeRoom_Exchange_Window,
#transGuestWindow {
    display: none;
}

/*
 * 分房/入住弹窗（setRoomNewWindow）右侧"房间列表"区域不显示
 * Kendo 2022 升级后 .k-window-content 默认 padding:12px (border-box)，
 * 使 1300px 弹窗可用内容宽降为 1274px，而左侧 Grid(722px)+右侧 Graph(555px)=1277px，
 * 导致 float:right 的右侧房间列表面板换行落到 590px 高的左侧 Grid 下方，
 * 被弹窗固定高度(605px)裁剪，整个右侧（含类别/房号/楼层查询条件+可分房房间列表）变空白。
 * 去掉该弹窗内容区 padding，恢复 1298px 可用宽（>1277），右侧面板回到同一行。
 */
.k-window:has(#setRoomNewWindow) > .k-window-content {
    padding: 0;
}

/*
 * Issue 6: Kendo 2022 升级后 .k-grid-toolbar 默认变为 display:flex，
 * 导致旧代码中使用 ClientTemplate 写入的 <p>/<button>/datepicker 工具栏
 * 因 flex 容器不换行而横向溢出被裁剪（按钮和日期选择器"消失"）。
 * 例如：查房列表 RoomState/Inspection/Index 工具栏。
 * 全局恢复为块级布局，让内联元素自然换行。
 */
.k-grid-toolbar {
    display: block !important;
}

.k-grid-toolbar > p {
    display: block;
    margin: 0;
}

/*
 * Issue 7: 文本框/Kendo 输入控件统一圆角（恢复迁移前观感）
 * Kendo 2022 升级后 .k-textbox / .k-input / .k-picker 默认 border-radius 被 reset 为 0，
 * 视觉上所有 input/dropdown/numeric/datepicker 变成方角，与旧版（圆角）不一致。
 * 提报：房态图-客单(客情)界面所有文本框需统一圆角；本规则覆盖全应用所有 Kendo input wrapper，
 * 同时也涵盖裸 <input class="k-textbox"> 与 <textarea class="k-textbox">（已在上方 .k-textbox 块设置）。
 * 包含组件：TextBox / TextArea / DropDownList / DropDown / NumericTextBox / DatePicker /
 *           DateTimePicker / TimePicker / ComboBox / AutoComplete / MultiSelect / MaskedTextBox。
 * .k-input-inner 同步设圆角，避免 wrapper 圆但内部 input 方角造成"圆角内套方角"的边框残影。
 */
.k-input,
.k-picker,
.k-textbox,
.k-numerictextbox,
.k-datepicker,
.k-datetimepicker,
.k-timepicker,
.k-combobox,
.k-autocomplete,
.k-multiselect,
.k-maskedtextbox,
.k-dropdown,
.k-dropdownlist {
    border-radius: 4px;
}
.k-input > .k-input-inner,
.k-picker > .k-input-inner {
    border-radius: 4px;
}

/*
 * Issue 8: 第三方退款窗口（#refundfolioWindow）底部工具条按钮/输入框错位。
 * Kendo 2022 下退款金额 kendoNumericTextBox 外层 wrapper 为 inline-flex（约 31px），
 * 与同行的 label/checkbox/<button> 基线对齐后，"退款""关闭"按钮被压低、间距参差不齐。
 * 改为 flex 行 + align-items:center 让所有元素垂直居中、统一水平间距。
 * 严格限定 #refundfolioWindow 作用域，避免影响其它弹窗工具条。
 */
#refundfolioWindow .k-grid-toolbar .toolbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

#refundfolioWindow .k-grid-toolbar .toolbar > label {
    margin: 0;
    line-height: normal;
    white-space: nowrap;
}

#refundfolioWindow .k-grid-toolbar .toolbar .k-numerictextbox {
    width: 140px;
}


/*登录页面-密码框，宽度*/
#IDAccountLogin #Password, #IDAccountLogin #PasswordMw {
    width: 248px;
}
/*登录页面-密码框，眼睛位置*/
#IDAccountLogin #showPassword {
    float: right;
    margin-top: -36px;
    margin-right: 4px;
}


/*重置密码、修改密码，文字和文本框横向对齐，在上面是padding-top:10px导致没有对齐*/
.td-two {
    padding-top: 5px;
    padding-bottom: 5px;
}
    /*重置密码、修改密码，密码框，宽度*/
    .td-two .k-eye #NewPass, .td-two .k-eye #NewPasswordMw,
    .td-two .k-eye #ConfirmNewPass, .td-two .k-eye #ConfirmPasswordMw,
    .td-two .k-eye #OriginPassword, .td-two .k-eye #OriginPasswordMw,
    .td-two .k-eye #NewPassword, .td-two .k-eye #NewPasswordMw,
    .td-two .k-eye #ConfirmPassword, .td-two .k-eye #ConfirmPasswordMw {
        width: 100%;
    }
    /*重置密码、修改密码，眼睛位置*/
    .td-two .k-eye #showPasswordConfirmPassword, .td-two .k-eye #showPasswordNewPassword, .td-two .k-eye #showPasswordOriginPassword{
        float: right;
        margin-top: -30px;
        margin-right: 6px;
    }
    /*重置密码、修改密码，眼睛变小一点*/
    .td-two .k-eye .k-eye-open, .td-two .k-eye .k-eye-close {
        width: 28px;
        height: 28px;
    }


    /*文本框 和 下拉框、日期框、多选下拉框等保持一致，都要圆角*/
    .k-textbox, .k-button {
        border-radius: 4px;
    }

/*tab边框和边距，改小*/
.k-tabstrip-content, .k-tabstrip > .k-content {
    /*    padding-top: 2px;
    padding-bottom: 2px;*/
    padding: .3em .92em;
    /*border: none;*/
}
.k-widget {
    box-shadow: none;
}
.k-tabstrip:focus {
    box-shadow: none;
}
.k-tabstrip .k-content.k-state-focused, .k-tabstrip .k-content:focus {
    outline: none;
}

/*弹框标头，改小*/
.k-window-title {
    line-height: normal;
    font-size:14px;
}
.k-window > .k-window-titlebar.k-hstack {
    padding-top: 2px;
    padding-bottom: 2px;
}
/*房态图左侧，下拉框，长度*/
.side-bar-l span.k-dropdownlist{
    width:100%;
}

/*所有文本框，统一缩进*/
.k-input-inner, textarea.k-textbox {
    text-indent: .8em;
    background-color:#fff;
}
.k-input-md .k-input-inner {
    line-height: 24px;
}
/*所有文本框，统一内容颜色*/
.k-textbox {
    color: #333;
}
/*下拉框多选框选择项*/
.k-chip {
    height: 24px;
    line-height: 24px;
    padding: 0;
    color: #fff;
    border-color: #357ebd;
    background-color: #428bca;
    gap: 2px;
}
.k-chip-solid-base.k-focus, .k-chip-solid-base:focus {
    box-shadow: none;
    background-color: #428bca;
}
.k-chip-solid-base.k-hover, .k-chip-solid-base:hover {
    box-shadow: none;
    background-color: #428bca;
}
.k-chip-label {
    font-size: 14px;
}
.k-chip-list {
    gap: 4px;
}
/*多选框后面的全部清除图标*/
.k-clear-value {
    display: none;
}
/*增加图标，调整内容*/
.k-i-x-circle:before {
    content: "\e11b";
}
/*window弹框*/
div.k-window-content {
    padding: .58em;
}
.k-window {
    border:0;
}
/*增加图标，调整内容*/
.k-add:before {
    content: "\e11e";
}
/*迁移补丁：旧版图标类 k-cancel/k-update 在 Kendo2022 不存在，映射到新字形*/
.k-cancel:before {
    content: "\e115";
}
.k-update:before {
    content: "\e118";
}
/*迁移补丁：k-i-unpin 原始"取消图钉"图标本系统用不上，全系统都当"删除/作废"用，统一改为垃圾桶*/
.k-i-unpin:before {
    content: "\e10c";
}
/*表格列标头，筛选图标，不加粗*/
.k-header-column-menu, .k-icon.k-i-more-vertical, .k-icon.k-i-more-vertical:before {
    font-weight: 100;
}
    /*表格列标头，筛选图标，和文字水平对齐*/
    .k-icon.k-i-more-vertical, .k-icon.k-i-more-vertical:before {
        top:1px;
    }
/*window iframe 支持原版本 不要padding*/
div.k-window-iframecontent {
    padding: 0;
    overflow: visible
}
/*当checkbox和文字没有水平对齐时，给checkbox和label增加这个类即可*/
.checkbox-vertical-middle {
    vertical-align: middle;
}

/*快速预订，复选框和文字对齐*/
#resCustomerTable #IsGroup, #resCustomerTable #IsCustemSecret, #resCustomerTable #IsHidePrice {
    vertical-align: text-top;
    margin-right: 4px;
}

.k-datetimepicker .k-input-button.k-button.k-icon-button {
    height: 28px;
    width: 28px;
    border-radius: 0;
}
.k-combobox .k-input-button.k-button.k-icon-button {
    height: 28px;
    width: 28px;
    border-radius: 0;
}
.k-dropdownlist .k-input-button.k-button.k-icon-button {
    height: 28px;
    width: 28px;
    border-radius: 0;
}
.k-button {
    line-height: 16px;
}

/*
 * 客账(客情)工具栏"全部账单/全部客人"下拉框单行布局：真正根因在 resFolioFolioTable.js
 * 的 gridFolioFolio_Initialization 里把 #folioQueryRegInfo 的外层 span(display:inline-flex)
 * 重置为 inline-block，破坏 Kendo 2022 flex 布局致 28px 箭头按钮被挤到第二行。
 * Kendo 2022 默认 .k-input-inner/.k-input-value-text 已是 white-space:nowrap，
 * 只要外层保持 inline-flex 即单行，无需额外 CSS 干预。详见
 * docs/migration-knowledge/kendo-dropdownlist-parent-css-display-inline-block-breaks-flex.md
 */

/*文本框-点击后，弹出下拉可以选择*/
.TextReMultiSelectHidden {
    height: 0;
    overflow: hidden;
}
.TextReMultiSelectHidden .k-multiselect.k-input {
    vertical-align: text-top;
}
.TextReMultiSelectHidden div.k-input-values.k-selection-multiple.k-chip-list {
    display: none;
}

/*房态图-房间详细浮窗*/
#roomStatusListView .k-listview-content {
    overflow: visible;
}


span.k-datepicker.datepicker149{
    width:149px;
}

*{ margin:0; padding:0;}
body { background:#fff;font-family:"Microsoft YaHei",宋体, Arial, Helvetica, sans-serif; font-size:12px; line-height:24px;color:#555; overflow-y:scroll;}

a{ text-decoration:none;color: #444;}
input,select,textarea{ font-size:12px;color:#999; border:0 none;}
button{border:0 none;background-color: #ffffff;}
.btnSelect{width:60px;height:36px;border-radius:4px;font-size:20px;background-color:#428BCA;color:#fff;}
li{ list-style:none;}
i{ font-style:normal;}
.fleft{ float:left;}
.fright{ float:right;}
.font-b{ font-weight:bold;}
.padd-top-15{ padding-top:15px;}
.margin-top-10{ margin-top:10px;}
.clearfix:before,.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden;}
.clearfix { zoom:1; }
.top{ height:30px; line-height:30px; border-bottom:1px solid #e5e5e5; background:#f5f5f5; clear:both; overflow:hidden;} 
.hotel-n-b{ width:70%; float:left;}
.hotel-n-f{ width:30%; float:right; text-align:right;}
.top .hotel-name{ padding-left:10px;}
.top .user-name{padding-right:5%;}
.top .exit{ padding-right:5%;color:#428bca;}
.header{ padding:5px 2%; width:96%; margin:0 auto; padding-bottom: 0px;}
.logo{ float:left; margin-top:5px;}
.logo img{ float:left; padding:4px 10px 0 0;}
.system-name{ font-size:20px; font-weight:bold;font-style:normal;}
.eng-system-name{ color:#c4c4c4; display:block; font-size:11px; font-style:normal;}
.nav{ float:right;}
.nav-list li{ float:left; padding:0 20px; text-align:center;}
.icon-room-status,.icon-auth-10,.icon-book,.icon-auth-20,.icon-auth-40,.icon-reception,.icon-customer,.icon-auth-60,.icon-auth-61,.icon-member,.icon-auth-30,.icon-report,.icon-group-m,.icon-setup,.icon-auth-99,.icon-exit{ background:url(../images/all_icon.png) no-repeat; width:38px; height:38px; display:inline-block;}
.icon-room-status,.icon-auth-10{ background-position:0 -212px;}
.icon-auth-40{background-position:-103px -256px;}
.icon-book,.icon-auth-20{background-position:0 -256px;}
.icon-reception{background-position:0 -299px;}
.icon-customer,.icon-auth-60,.icon-auth-61{ background-position:-103px -212px;}
.icon-report{ background-position:-103px -256px;}
.icon-member,.icon-auth-30{background-position:0 -342px;}
.icon-group-m{background-position:0 -386px;}
.icon-setup,.icon-auth-99{ background-position:-103px -299px;}
.icon-exit{ background-position:-103px -342px;}
.nav-list .active .icon-room-status,.nav-list .active .icon-auth-10{ background-position:-46px -212px;}
.nav-list .active .icon-book,.nav-list .active .icon-auth-20{background-position:-46px -256px;}
.nav-list .active .icon-reception{background-position:-46px -299px;}
.nav-list .active .icon-auth-40{background-position:-155px -256px;}
.nav-list .active .icon-customer,.nav-list .active .icon-auth-60,.nav-list .active .icon-auth-61{ background-position:-155px -212px;}
.nav-list .active .icon-report{ background-position:-155px -256px;}
.nav-list .active .icon-member,.nav-list .active .icon-auth-30{background-position:-46px -342px;}
.nav-list .active .icon-group-m{background-position:-46px -386px;}
.nav-list .active .icon-setup,.nav-list .active .icon-auth-99{ background-position:-155px -299px;}
.nav-list .active .icon-exit{ background-position:-155px -342px;}

/*二级菜单开始*/
.tab{height:30px;width:96%; padding:0 2%; margin:0 auto; background-color: #004793; }
.tab .tab-switch{ }
.tab a {color:#fff; line-height:30px; padding:0 25px; display:inline-block; float:left; margin-right:1px;}
.tab a:hover,.tab .active{ background: #336ca9;}
/*一级导航按钮点击后文字变成蓝色， 中间不加空格不加逗号*/
.firstLevelAuth.active{color:#e62722;}

/*新预订页面给按钮一个颜色*/
#btnAddROrderDetail,#btnAddIOrderDetail,#btnCancelOrderDetail,#btnRecoveryOrderDetail,#btnBatchChangeOrderDetailStatus{margin-top:4px;}
#btnCancelOrderDetail,#btnRecoveryOrderDetail{display:none;}
#btnSave, #btnSetRoom, #btnCheckIn, #btnResReoprt, #btnSupplementResReoprt, #btnSupplementChangeRoomReoprt, #btnLock, #btnChangeRoom, #btnDelay, #btnRelation, #btnResRCReoprt, #permanentRoom_btnCostSet, #permanentRoom_btnGoodsSet, #permanentRoom_btnCustomerMore, #btnPicInfo, #btnShortRentResDetailMore, #btnShortRentResDetailFixedCost, #btnShortRentConvertPermanentRoom, #btnOrderCustomerManageGridColumns, #btnEventrecord, #btnUseScoreReoprt, #btnDelayReoprt, #btnGoodsBorrow, #btnPublicDoor, #btnRemind, #btnGuestFinger, #btnResNotify, #btnResExtraBed, #btnSubleaseOrderReoprt, #btnRoomAssets, #btnTransGuest, #btnPermanentSumOrderDetail {
    margin-top: 4px;
    border-color: #e62722;
    color: #e62722;
    width: 90px;
    display: none;
}
    #btnSave:hover, #btnSetRoom:hover, #btnCheckIn:hover, #btnResReoprt:hover, #btnSupplementResReoprt:hover, #btnSupplementChangeRoomReoprt:hover, #btnLock:hover, #btnChangeRoom:hover, #btnDelay:hover, #btnRelation:hover, #btnResRCReoprt:hover, #permanentRoom_btnCostSet:hover, #permanentRoom_btnGoodsSet:hover, #permanentRoom_btnCustomerMore:hover, #btnPicInfo:hover, #btnShortRentResDetailMore:hover, #btnShortRentResDetailFixedCost:hover, #btnShortRentConvertPermanentRoom:hover, #btnOrderCustomerManageGridColumns:hover, #btnEventrecord:hover, #btnUseScoreReoprt:hover, #btnDelayReoprt:hover, #btnGoodsBorrow:hover, #btnPublicDoor:hover, #btnGuestFinger:hover, #btnResNotify:hover, #btnResExtraBed:hover, #btnSubleaseOrderReoprt:hover, #btnRoomAssets:hover, #btnPermanentSumOrderDetail:hover {
        background-color: #e62722;
        border-color: #e62722;
        color: #ffffff;
    }
#btnAddOrderDetailRegInfo,#btnCancelOrderDetailRegInfo{margin-top:4px;}
#folioCancelAndRecoveryButton, #folioRefundButton, #folioWriteOffButton, #folioCancelClearButton, #folioCancelOutButton, #folioCancelCheckoutButton, #folioCancelInAdvanceFolioButton, #folioAuthButtonCopy, #folioHistoryAccountsButton, #folioSplitFolioButton, #folioAppendRemarksButton, #folioAdjustDepositTypeButton, #folioWaterAndElectricityAddFolioButton, #folioReInAdvanceCheckoutFolioButton, #btnFolioGuestManageGridColumns, #btnFolioFolioManageGridColumns,#folioQueryBillButton {margin-top: 4px;width: 90px;display: none;}
.k-button-resOrderFolioMoreActionBtn{margin-top: 4px; width:90px;}
.orderFolioMoreDivBtns{margin-top: 4px;width: 90px;display: none;}
#resCustomerMoreButtonWindow button,#permanentRoom_customerMoreDiv button,#folioMoreDiv button{margin-left:auto;margin-right:auto;}
#folioMoreDiv button{margin-left:20px;float:left;}
.res-icon-img{vertical-align:middle;cursor:pointer;}
.toolbar-right{width:90px;padding-left:5px;padding-right:5px;}
.toolbar-right .k-button{min-width:80px !important;}
.toolbar-right #orderDetailCustomersListView{width:90px !important;}
.folioButtons{text-align:center;vertical-align:top;}
.folioButtons input,.folioButtons button{margin-top:4px;width:90px;}
.folioButtons .split{display:block;margin-top:10px;}
#orderDetailCustomersListView .k-state-selected{background-color: #99caff;color: #333;}
#resCustomerTable td:not([role='gridcell']){padding:3px 0px 3px 0px;}
#resCustomerTable td.separate{padding:1px 0px 1px 0px;}
#btnInvoiceInfo,#btnRatePlan,#btnCustomersEditInfo,#btnResBillSetting{width:90px;}
#btnCustomersEditInfo{display:none;}
#changeRoomWindow td{padding-top:2px;padding-bottom:2px;}
#changeRoomWindow td.textright {width:55px;}
.k-grid-toolbar .k-button, .k-button.k-prominent{
    background-color: #F7E20A;
    border-color: #004793;
    color: #004793;
}
.k-grid-toolbar .k-button[disabled], .k-button.k-prominent[disabled]{
    color: #a1a1a1;
    border-color: #ccc;
    background-color: #fff;
    background-image: none;
}
.k-grid-toolbar .k-button, .k-button.k-prominent:hover {
    background-color: #004793;
    border-color: #004793;
    color: #ffffff;
}
.k-button.k-button-resOrderCustomerActionBtn {
    margin-top: 4px;
    border-color: #e62722;
    color: #e62722;
    width: 90px;
    display: none;
}
    .k-button.k-button-resOrderCustomerActionBtn:hover {
        background-color: #e62722;
        border-color: #e62722;
        color: #ffffff;
    }

/*会员列表页面更多操作里面的按钮*/
#mbrCardMoreButtonWindow .k-button {
    margin-top: 4px;
    width: 110px;
}
/*---------------------------------------------新版本的样式-------------------------------------------------*/
/* 一级菜单 */
.icon-newauth-10 { /* 房态中心*/
    background: url(../images/auth/ftzx.png);
}
.icon-newauth-10-1 { 
   background:url(../images/auth/ftzx-1.png);
}
.icon-newauth-14 { /* 综合预订*/
    background: url(../images/auth/zhyd-b.png);
}
.icon-newauth-14-1 {
    background: url(../images/auth/zhyd-r.png);
}
.icon-newauth-89 { /* 卡位管理*/
   background:url(../images/auth/ftfy.png);
}
.icon-newauth-89-1 { 
   background:url(../images/auth/ftfy-1.png);
}
.icon-newauth-15, .icon-newauth-20{ /* 预订接待*/
    background: url(../images/auth/ydjd.png);
}
.icon-newauth-15-1, .icon-newauth-20-1 {
    background: url(../images/auth/ydjd-1.png);
}
.icon-newauth-21 { /* 长租管理*/
   background:url(../images/auth/czgl.png);
}
.icon-newauth-21-1 {
   background:url(../images/auth/czgl-1.png);
}
.icon-newauth-25 { /* 云工程管理*/
    background: url(../images/auth/ygcgl.png);
}
.icon-newauth-25-1 { /* 云工程管理*/
    background: url(../images/auth/ygcgl-1.png);
}
.icon-newauth-26 { /* 发票管理*/
    background: url(../images/auth/fpgl.png);
}

.icon-newauth-26-1 {
    background: url(../images/auth/fpgl-1.png);
}
.icon-newauth-29 { /* 餐饮中心*/
   background:url(../images/auth/cy.png);
}
.icon-newauth-29-1 {
   background:url(../images/auth/cy01.png);
}
.icon-newauth-30, .icon-newauth-m30 { /* 会员中心*/
    background: url(../images/auth/hyzx.png);
}
.icon-newauth-30-1, .icon-newauth-m30-1 {
    background: url(../images/auth/hyzx-1.png);
}
.icon-newauth-m45 { /* 2.0商城*/
    background: url(../images/auth/2.0sc.png);
}
.icon-newauth-m45-1 {
    background: url(../images/auth/2.0sc-1.png);
}
.icon-newauth-50, .icon-newauth-m50 {
    background: url(../images/auth/dzq.png);
}
.icon-newauth-60, .icon-newauth-m60 {
    background: url(../images/auth/dzq.png);
}
.icon-newauth-50-1, .icon-newauth-m50-1 {
    background: url(../images/auth/dzq-1.png);
}
.icon-newauth-60-1, .icon-newauth-m60-1 {
    background: url(../images/auth/dzq-1.png);
}
.icon-newauth-31{ /* 业主管理*/
   background:url(../images/auth/zt.png);
}
.icon-newauth-31-1 { 
   background:url(../images/auth/zt-1.png);
}
.icon-newauth-40, .icon-newauth-m40, .icon-newauth-c40, .icon-newauth-e64 { /* 报表*/
    background: url(../images/auth/bb.png);
}
.icon-newauth-40-1, .icon-newauth-m40-1, .icon-newauth-c40-1, .icon-newauth-e64-1 {
    background: url(../images/auth/bb-1.png);
}
.icon-newauth-60,.icon-newauth-c60{/* 客户关系*/
   background:url(../images/auth/khgx.png);
}
.icon-newauth-60-1,.icon-newauth-c60-1 {
   background:url(../images/auth/khgx-1.png);
}
.icon-newauth-61,.icon-newauth-m61,.icon-newauth-c61 { /* 营销管理*/
   background:url(../images/auth/yxgl.png);
}
.icon-newauth-61-1,.icon-newauth-m61-1,.icon-newauth-c61-1 {
   background:url(../images/auth/yxgl-1.png);
}
.icon-newauth-99, .icon-newauth-m99, .icon-newauth-c99, .icon-newauth-e60, .icon-newauth-e60-1 { /* 资料设置*/
    background: url(../images/auth/sz.png);
}
.icon-newauth-e63 {
    background: url(../images/auth/nengyuan.png);
}
.icon-newauth-e63-1 {
    background: url(../images/auth/nengyuan-1.png);
}
.icon-newauth-99-1, .icon-newauth-m99-1, .icon-newauth-c99-1, .icon-newauth-e60-1 {
    background: url(../images/auth/sz-1.png);
}
.icon-newauth-e61 {
    background: url(../images/auth/emRepair.png);
}
.icon-newauth-e61-1 {
    background: url(../images/auth/emRepair-1.png);
}
.icon-newauth-e62 {
    background: url(../images/auth/emComplaint.png);
}
.icon-newauth-e62-1 {
    background: url(../images/auth/emComplaint-1.png);
}
.icon-newauth-e65 {
    background: url(../images/auth/emMaintain.png);
}
.icon-newauth-e65-1 {
    background: url(../images/auth/emMaintain-1.png);
}
.icon-newauth-e66 {
    background: url(../images/auth/emClean.jpg);
}
.icon-newauth-e66-1 {
    background: url(../images/auth/emClean-1.jpg);
}
.icon-newauth-e67 {
    background: url(../images/auth/emMove.jpg);
}
.icon-newauth-e67-1 {
    background: url(../images/auth/emMove-1.jpg);
}
.icon-newauth-e68 {
    background: url(../images/auth/emOrder.png);
}

.icon-newauth-e68-1 {
    background: url(../images/auth/emOrder-1.png);
}
.icon-newauth-22, .icon-newauth-m22 { /* 审批 */
    background: url(../images/auth/sp-1.png);
}
.icon-newauth-22-1, .icon-newauth-m22-1 {
    background: url(../images/auth/sp-2.png);
}

.newys {
    width: 38px;
    height: 38px;
    display: block;
    margin-left: 3px;
    margin-bottom: 3px;
    margin-left: auto;
    margin-right: auto;
}

.divred {
    margin-top: 3px;
    height: 5px;
    background-color: #e62722;
}
.bnt-refresh {
    display: block;
    border: 1px solid #9bb8d6;
    border-radius: 3px;
    color: #004793;
    padding-left:5px;
    padding-right:5px;
}
.div-refresh {
    margin-bottom:10px;
    margin-top:10px;
}
 .div-refresh a:hover {
      background-color: #EBEBEB;
     
 }
.i-refresh {
   background:url("../images/auth/sx.png") no-repeat;
    width: 19px;
    height: 14px;
    display: inline-block;
    vertical-align: sub
}



/*新表格样式*/
.k-alt{
    background-color: #eef6ff;
}
th.k-header,th.k-header a,th.k-header span,.k-grid-header th.k-header {
    font-weight:bold;
}
.k-grid-toolbar,.k-grouping-header{
    background-color: #ffffff;
}
.k-grid tr:hover td{
    background-color: #cce4ff;
}
.k-grid tr.k-state-selected:hover td{
    background-color: #cce4ff;
}
tr.k-state-selected td, tr.k-state-selected:link td, tr.k-state-selected:visited td{
    background-color: #99caff;
    color:#333;
}
.k-grid-toolbar .k-button,.k-button {
    background-color:#ffffff;
    border-color:#004793;
    color:#004793;
}
/*
 * Kendo 2022 bootstrap 主题下 .k-button 默认方角，迁移前为圆角。
 * 统一恢复圆角（4px，与 Site.css 输入控件圆角一致）。
 * 提报：房态图-客账界面按钮需为圆角。本规则在 common.css（加载晚于 kendo 主题）内生效，覆盖全应用所有 Kendo 按钮。
 */
.k-button {
    border-radius: 4px;
}
.k-grid-toolbar li.k-button,li.k-button {
    background-color:#428bca;
    border-color:#004793;
    color:#ffffff;
}
.k-button:not(.k-icon-button):hover {
    background-color: #004793;
    border-color: #004793;
    color: #ffffff;
}
.k-button:focus:not(.k-state-disabled):not([disabled]):not(.k-icon-button):hover {
    color: #ffffff;
    background-color: #004793;
    border-color: #004793;
}
.k-button:focus:not(.k-state-disabled):not([disabled]):not(.k-icon-button) {
    -webkit-box-shadow: 0 0 7px 0 #004793;
    box-shadow: 0 0 7px 0 #004793;
    color: #004793;
}
.k-button:focus:active:not(.k-state-disabled):not([disabled]):not(.k-icon-button) {
    -webkit-box-shadow: inset 0 0 5px 3px #004793;
    box-shadow: inset 0 0 5px 3px #004793;
}
.k-grid-footer,.k-footer-template td{
    background-color:#ffffff;
}
.k-grid-footer tr:hover td,.k-footer-template tr:hover td{
    background-color:#ffffff;
}
.k-picker-wrap .k-state-default .k-select {
    background-color: #ffffff;
}
div.k-window-content{overflow-x:hidden;overflow-y:auto;background-color:#fff;}
.k-window-titlebar{
    background-color:#004793;
    border-bottom-color:#FB1A2C;
    color: #ffffff;
}
.k-window,.k-window.k-state-focused{
    border-color:#004793;
    background-color: #004793;
}

.k-state-hover:hover {
    background-color:inherit;
}
 .k-list .k-state-hover { /*下拉框鼠标移动时背景颜色 */
    background-color:#ccc!important;
}

.k-grid td {
    text-overflow:initial;
}

.k-detail-row .k-detail-cell .delayWindowForDetailPriceEditGrid.k-grid tr td {
    background-color: #ffffff;
}

.k-checkbox:checked+.k-checkbox-exists.k-checkbox-label:before {
    background-color: #F7E20A;
    color: #004793;
}

/*
 * Kendo 2022 (Telerik.UI.for.AspNet.Core) 迁移修复：DatePicker/TimePicker/DateTimePicker
 * 内部 input(.k-input-inner) 是 flex 子项却缺省 min-width:auto，当外层 wrapper 被设成
 * 比 input 最小内容宽度更窄的固定宽度（如 width:110px）时，input 拒绝收缩，把右侧日历/时钟
 * 按钮(.k-input-button)挤出 wrapper，并被 wrapper 的 overflow:hidden 裁掉 —— 表现为控件显示
 * 错乱、日历按钮不可见且点不动。加 min-width:0 让 input 可以正常收缩，按钮始终留在框内；
 * 且不改变作者设定的 wrapper 宽度（110px 仍是 110px，width:100% 仍撑满单元格）。
 * 详见 docs/migration-knowledge/kendo-datepicker-input-width-overflow.md
 */
.k-datepicker .k-input-inner,
.k-timepicker .k-input-inner,
.k-datetimepicker .k-input-inner,
.k-combobox .k-input-inner,
.k-dropdownlist .k-input-inner {
    min-width: 0;
}

/* Kendo Grid 的单元格编辑器必须受单元格宽度约束，否则全局 149px 默认宽度会在窄列中
   把右侧下拉按钮挤出单元格，并被 td 的 overflow:hidden 裁掉。 */
.k-grid .k-edit-cell > span.k-combobox,
.k-grid .k-edit-cell > span.k-dropdownlist,
.k-grid .k-edit-cell > span.k-dropdown {
    width: 100%;
    min-width: 0;
}

/*
 * Kendo 2022 迁移修复（补充）：DateTimePicker(双按钮) 的 wrapper 被默认 min-width:200px
 * 撑大，压过作者内联 width（如 width:160px），导致带固定宽度的日期/时间控件比旧版宽 ~30px、
 * 右列控件偏挤（实测：会员"新增投诉建议/新增跟进记录"弹窗 受理时间/处理时间 142px vs 旧版 112px）。
 * 仅对【作者已用内联 style 设了 width 的】wrapper 去掉这个最小宽度，让作者宽度重新生效、对齐旧版；
 * 裸控件(无内联 width)保留 Kendo 默认 min-width，不受影响，避免大面积回归。
 * 配合上面的 .k-input-inner{min-width:0}，按钮始终留在框内不被裁剪。
 * 详见 docs/migration-knowledge/kendo-datetimepicker-wrapper-minwidth-overflows-author-width.md
 */
.k-datepicker[style*="width"],
.k-timepicker[style*="width"],
.k-datetimepicker[style*="width"] {
    min-width: 0;
}

.k-loading-image{ background-image:none; }


input[type='number'] { height:25px; color:#333; }
.stores-shifts-con{ width:980px; background:#f5f5f5; margin:150px auto; border-width:1px 1px 0 1px; border-color: #e5e5e5; }
.stores-shifts-con h2{color:#428bca;display:inline-block;margin-left:60px;}
.stores-shifts-con li{ border-bottom:1px solid #e5e5e5; padding:50px; font-size:20px;line-height:20px;}
.stores-shifts-con .hotel-select{ border:1px solid #e5e5e5; line-height:35px; height:35px; margin-left:30px; width:180px;}
.stores-shifts-con div{float:left;margin-right:50px;}
.m-shift{margin:0 36px;}
.stores-shifts-con li a{margin-top:20px;display:inline-block;}

/*房态图开始*/
.wrap{ margin:0 0 0 36px;}

.side-bar-l{ float:left;width:9%;background:#EEEEEE;padding-right:6px;}
.side-bar-l .list-f{padding-left:4%;}
.side-bar-l li{ padding-top:3px;}
.search-bar-f{position:relative;}
.side-bar-l .s-input-text{ height:28px;line-height:28px; border:1px solid #9bb8d6;  color:#333333;  border-radius: 3px; }
.side-bar-l .search-icon{ position:absolute; right:3%; top:12px;background:url(../images/all_icon.png) no-repeat; width:14px; height:14px; display:inline-block;background-position:-49px 0px;}
.side-bar-l .list-t{ margin-top:10px; border-top:1px dashed #9bb8d6; padding-left:4%; }
.side-bar-l label{ display:inline-block; color:#333333 }
.side-bar-l .avai-bg,.side-bar-l .live-room-bg{ width:15px; height:15px; display:inline-block; vertical-align:middle;}
.avai-bg{background:#428bca; }
.live-room-bg{background:#4ac1f9;}
.side-bar-l .dirty-room-bg,.side-bar-l .wait-room-bg,.side-bar-l .maint-room-bg,.side-bar-l .service-room-bg{ width:15px; height:15px; border-radius:0 0 10px 0; display:inline-block; vertical-align:middle;}
.dirty-room-bg{background:#000;}
.maint-room-bg{background:#d60303;}
.wait-room-bg {background:#4b0082;}
.service-room-bg{background:#fadb21;}
.side-bar-l .eta-room-bg,.side-bar-l .pre-room-bg{background: url(../images/all_icon.png) no-repeat; width:24px; height:24px; display:inline-block;}
.side-bar-l .eta-room-bg{background-position:-54px -146px;}
.side-bar-l .pre-room-bg{background-position:-54px -170px;}
.side-bar-r{ float:right; width:90%;}
.room-statistics{margin-bottom:5px;height:35px; background-color: #EEEEEE;}

.refresh{ float:right;border-radius:4px; padding:0px 16px; background:#428BCA; color:#fff;height:36px;line-height:36px;}
.house-state-list{}
.house-state-list .house-state-bg{ float:left; margin:0 2px 2px 0;width:110px; height:101px; color:#333333;border-width:2px;border-style:solid;border-color:white;}
.house-state-drag{width:88px;height:80px;}
.house-state-list .live-room-bg{ float:left; margin:0 10px 10px 0;width:150px; height:110px; color:#fff;}
.house-state-bg .dirty-room-bg,.house-state-bg  .wait-room-bg,.house-state-bg .eta-room-bg,.house-state-bg .pre-room-bg,.house-state-bg .maint-room-bg,.house-state-bg .service-room-bg{width:50px; border-radius:0 0 20px 0; padding-left:6px;}
/*修改房态图字体，job：121720*/
.house-state-list .house-state-bg .default,.house-state-bg .default{ padding-left:6px;float:left;color:white;font-weight:bold;font-size:13px;}
.house-state-list .house-state-bg .roomtype,.house-state-bg .roomtype{ float:right;padding-right:6px;color:black;}
.house-state-bg dd{clear:both;}
.house-state-bg .icon-all{ padding-top:10px;  margin-left:6px;}
.icon-eta-room,.icon-pre-room,.icon-union-room,.icon-hours-room,.icon-secrecy-room,.icon-room-f{ position:relative;background:url(../images/all_icon.png) no-repeat; width:18px; height:16px; display:inline-block; margin-right:8px;}
.icon-eta-room{background-position:-22px -159px;}
.icon-pre-room{background-position:-22px -176px;}
.icon-secrecy-room{background-position:0 -131px;}
.icon-union-room{background-position:0 -176px;}
.icon-hours-room{background-position:0 -194px;}
.guest-info{ display:block;
             position:relative;
             width:150px;
             border:1px solid #e5e5e5;
             background:#fff;color:#000;
             z-index:2; left:13px; 
             top:0px;padding-left:10px;
             box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
             text-align:left;
}

    .guest-info p span.black-color {
        word-wrap: break-word;
        word-break: break-all;
        white-space: pre-wrap;
    }

/*小房态图样式*/
.house-state-list .house-state-bg-min {
    height: 51px;
}
.house-state-bg .icon-all-min {
    margin-left: 2px;
    padding-top: 0px;
}
.icon-all-min span{
    transform:scale(0.7);
    margin-left:-5px;
}
/*房态表开始*/
.state-table-text {
    background: #f0f6fb;
    border-radius: 8px;
    margin-top: 20px;
    padding: 15px;
}
.house-state-table{ margin-top:20px;border-width:1px 0 0 1px; border-color: #e5e5e5; border-style:solid;}
.house-state-table th,.house-state-table td{border-width:0 1px 1px 0; border-color: #e5e5e5; border-style:solid; line-height:34px; height:34px; text-align:center;}
.house-state-table .bg-grey{ background:#f5f5f5;}
.house-state-table tfoot{ background:#f0f6fb;}
/*远期房态开始*/
.date-inquire{ margin-top:20px;}
.date-inquire li{ float:left; padding-right:10px;}
.date-inquire label{ line-height:30px; padding:0 5px;}
.date-inquire .date-box{ border:1px solid #e5e5e5; width:200px; height:30px;position:relative; display:inline-block;background:#fff;}
.date-inquire .date-input{height:30px;line-height:30px;width:170px;}
.date-inquire .icon-date,.new-book-table .icon-date,.book-short .icon-date{ position:absolute; right:5px; top:0;background:url(../images/all_icon.png) no-repeat; display:inline-block; width:20px; height:24px; background-position:-56px -35px; }
.date-inquire .channel-select{border:1px solid #e5e5e5; width:160px; height:30px;line-height:30px;}
.button-inquire{padding:5px 16px;background: #428bca;color: #fff; margin-left:10px;cursor:pointer}
/*管家房态开始*/
.book-short .button-r{padding:5px 16px;background:#e5e5e5;margin-right:10px; border-radius:6px; cursor:pointer; color:#333;}
.book-short .input-box{border:1px solid #e5e5e5; width:200px; height:30px;line-height:30px;}
/*预订列表开始*/
.book-short{margin-top:20px;}
.book-short .input-shortcuts{ padding-bottom:10px;}
.book-short .input-shortcuts a{ padding:3px 15px;}
.book-short .input-shortcuts .current{ background:#428bca; color:#fff; border-radius:4px;}
.book-short .book-input{ float:left; padding-right:10px;}
/*新预订开始*/
.guests-info{margin-top:20px;}
.tab-guests-info .fir{ border-left:1px solid #e5e5e5;}
.tab-guests-info a{padding:6px 40px; display:inline-block;background:#f5f5f5; border-style:solid; border-width:1px 1px 0px 0px; border-color:#e5e5e5;}
.tab-guests-info .current{background:#428bca; color:#fff; }
.table-guests-info{border:1px solid #e5e5e5; padding:0 10px 20px;}

.new-book-table{ float:left; margin:20px 0 0 2%; background:#f0f6fb; padding:10px;}
.new-book-table td{ padding:4px;text-align:right;}
.new-book-table .date-box{ border:1px solid #e5e5e5;height:28px; line-height:28px;position:relative; display:inline-block; background:#fff;width:100%;}
.new-book-table .date-input{height:28px; line-height:28px;}
.new-book-table .icon-date{ position:absolute; right:5px; top:0;background:url(../images/all_icon.png) no-repeat; display:inline-block; width:20px; height:24px; background-position:-56px -35px; }
.new-book-table .channel-select{border:1px solid #e5e5e5;height:30px; line-height:30px; width:100%;}
.new-book-table .input-box{border:1px solid #e5e5e5;height:28px; line-height:28px;width:100%;}
.new-book-table .btn-price{padding:2px 0; width:100%; display:inline-block; text-align:center;background:#e5e5e5;border-radius:4px;}
.btn-save{ margin:30px 0 50px; text-align:center;}
.btn-save a{padding:6px 20px;background:#428bca;color:#fff; margin-left:10px;cursor:pointer; border-radius:4px;}
#screen{width:100%;height:100%;position:absolute;top:0;left:0;display:none;z-index:100;background-color:#666;opacity:0.5;filter:alpha(opacity=50);-moz-opacity:0.5;}
.popbox{width:40%;background-color:#fff;border:1px solid #e5e5e5;position:absolute;top:0;left:0;display:none;z-index:120; padding:10px 40px;}
.popbox-table{ margin-top:20px;border-width:1px 0 0 1px; border-color: #e5e5e5; border-style:solid;}
.popbox-table th,.popbox-table td{border-width:0 1px 1px 0; border-color: #e5e5e5; border-style:solid; line-height:34px; height:34px; text-align:center;}
.popbox-table .input-box{height:34px; line-height:34px;width:100%;text-align:center;}
.btn-close{ position:absolute;font-size: 24px;color: #999; top:5px;right:10px;}
/*账单开始*/
.book-short .date-box{ border:1px solid #e5e5e5; width:200px; height:30px;position:relative; display:inline-block;background:#fff;}
.book-short .date-input{height:30px;line-height:30px;width:170px;}

/*保留房设置开始*/
.book-short .channel-select{border:1px solid #e5e5e5; width:160px; height:30px;line-height:30px;}
.checkbox{ border:1px solid #e5e5e5; vertical-align:middle;}

.k-tabstrip .k-content{margin:0 0 0 -15px;}

/* .NET 10 Kendo TabStrip 兼容修复：新版Kendo将非活动tab面板移到.k-tabstrip-wrapper下，
   而非.k-tabstrip内部，导致CSS选择器 .k-tabstrip > .k-content { display:none } 不匹配，
   非活动面板以display:block堆叠显示，被overflow:hidden裁切后内容不可见 */
.k-tabstrip-wrapper > .k-content:not(.k-state-active) {
    display: none;
}

/*  ---------------------新版样式------------------------*/
/* 房态图*/
#batchUpdWinodw .k-tabstrip .k-content {
    margin: 0px;
}
.s-input-text-new {
    width:100%;
}
/* 房态图左侧筛选下拉框：Kendo 2022 主题默认 width:9em + 灰底(#f5f5f5)，
   需与上方搜索框/下方 MultiSelect 上下平齐(同宽)且文本框内为白底 */
.side-bar-l .k-picker.s-input-text-new {
    width: 100%;
    box-sizing: border-box;
    background-color: #fff;
    background-image: none;
    border-color: #9bb8d6;
}
.s-input-text-new-room {
    width: 96%;
}
.s-input-text-new span {
    border-color: #9bb8d6 !important;
}
.new-right {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    float:right;
    
}
.input-cbx {
    width:15px;
    display:inline-block;
}
.roomStatus-imgs{
    background-image: url(../images/priture-11-15/roomStatus-1-18.png); display: block;
    
}
.new-ean-room-bg-small { /* 净房*/
   background-image:initial;
}
.new-avai-bg { /*空房*/
    /*background-position:  -200px -0px;  左侧*/
    background:url(../images/priture-11-15/kongf.png) no-repeat !important;
}
.new-avai-bg-large {
    background-position: -0px -103px;  /*房态图中*/
}
.new-avai-dirty-bg-large {/*空脏房*/
     background:url(../images/priture-11-15/kz.jpg) no-repeat;
}
.new-avai-dirty-bg-color {/*空脏房*/
     background-color:#959595;
}
.new-avai-bg-large-color {
    background-color:#18A818;
}
.new-live-room-bg {/*在住房*/
    background-position: -180px -0px; /*左侧*/
}
.new-live-room-bg-large {
      background-position: -110px -103px;/*房态图中*/
}
.new-live-room-bg-large-color {
    background-color:#0078C0;
}
.new-eta-room-bg {/*预抵房*/
    background-position: -100px -0px;
}
.new-eta-room-bg-small {
    background-position: -100px -0px;
}
.new-pre-room-bg {/*预离房*/
      background:url(../images/priture/yuli.png) no-repeat; /*没有用到*/
}
.new-pre-room-bg-small {
     background-position: -120px -0px; 
}
/*在住*/
.new-live-room-bg-small {
    background-image: url(../images/priture-11-15/checkin.svg) !important;
}
.new-pre-room-Now-small {
    background-image: url(../images/priture-11-15/NowStay.png) !important;
    display: inline-block;
    width: 20px;
    height: 20px;
}
.new-pre-room-NowNew-small {
    background-image: url(../images/priture-11-15/NowStay22.png) !important;
    display: inline-block;
    width: 21px;
    height: 21px;
}

.new-maint-room-bg{/*维修房*/
     background-position:  -60px -0px;
}
.new-maint-room-bg-small{
     background-position: -60px -0px; 
}
.new-maint-room-bg-small1{/*预计当天完成或已超期未完成的维修房房态图标*/
   background-image: url(../images/priture-11-15/bs-5.png) !important;
   display:inline-block;
   width:20px;
   height:20px;
}

.new-maint-room-bg-large{
     background-position: -260px -0px;
}
.new-maint-room-bg-large-color {
    background-color:#F04848;
}
.new-service-room-bg {/*停用房*/
     background-position: -0px -0px; 
}
.new-service-room-bg-large {/*维修房*/
     background-position: -220px -103px;
}
.new-service-room-bg-large-color {
    background-color:#F0A818;
}
.new-month-room-bg-large {/*长包房*/
     background:url(../images/priture-11-15/cz.png) no-repeat;
}
.new-month-room-bg-large-color {
    background-color:#8800C0;
}
.new-service-room-bg-small {
     background-position: -0px -0px; 
}
.new-dirty-room-bg {/*脏房*/
   background:url(../images/priture/zf.png) no-repeat;/*没有用到*/
}
.new-dirty-room-bg-small {
   background-position: -140px -0px; 
}
.new-wait-room-bg {/*清洁房*/
   background-position: -60px -0px;
}
.new-birth-room-bg-small
{/*客人生日*/
    background-image: url(../images/priture/dg.png) !important;
    background-size:20px 20px;
}
/*电话叫醒*/
.new-telCall-room-bg-small {
    background: url(../images/priture-11-15/dhjc.png) no-repeat !important;
    width: 20px;
    height: 20px;
}
.new-vip-room-bg-small
{/*VIP客人*/
    background-image: url(../images/priture/VIP.png) !important;
    background-size:20px 20px;
}
.new-idle-room-bg-small
{/*闲置房*/
    background-image: url(../images/priture/xzf.png) !important;
    background-size:20px 20px;
}
.new-remark-room-bg-small { /*房间描述*/
    background-image: url(../images/priture/ms.png) !important;
    background-size: 20px 20px;
}
.new-orderqty-room-bg-small { /*短租远期预订*/
    background-image: url(../images/priture/db.png) !important;
    background-size: 20px 20px;
}
.new-orderqtyM-room-bg-small { /*长租远期预订*/
    background-image: url(../images/priture/d.png) !important;
    background-size: 20px 20px;
}
.new-continue-room-bg-small
{/*续住*/
    background-image: url(../images/priture/xu02.png) !important;
    background-size:20px 20px;
}
.new-group-room-bg-small{ /*团体*/
    background-image: url(../images/priture/tuan.png) !important;
    background-size: 20px 20px;
}
.new-zy-room-bg-small{ /*自用房*/
    background-image: url(../images/priture/zy.png) !important;
    background-size: 20px 20px;
}
.new-free-room-bg-small{ /*免费房*/
    background-image: url(../images/priture/free.png) !important;
    background-size: 20px 20px;
}
.new-split-room-bg-small{ /*同住分租*/
    background-image: url(../images/priture/fz.png) !important;
    background-size: 20px 20px;
}
.new-inspection-begin-room-bg-small { /*查房开始*/
    background-image: url(../images/priture/cf.png) !important;
    background-size: 20px 20px;
}
.new-inspection-end-room-bg-small { /*查房结束*/
    background-image: url(../images/priture/cf1.png) !important;
    background-size: 20px 20px;
}
.new-wait-room-bg-small {
 background-position: -40px -0px; 
}
.new-wait-room-begin-bg-small { /*清洁房开始*/
    background-image: url(../images/priture-11-15/qjs.png) !important;
    background-position: -40px -0px;
}
.new-wait-room-end-bg-small { /*清洁房结束*/
    background-image: url(../images/priture-11-15/qje.png) !important;
    background-position: -40px -0px;
}
.new-arrears-room-bg-small { /*欠款*/
     background-position: -20px -0px;
}
.new-hour-room-bg-small { /*钟点房*/
      background-position: -80px -0px;
}
.new-white-room-bg-small { /*白日房*/
    background-image: url(../images/priture-11-15/太阳20.png) !important;
}
.new-month-room-bg{ /*长包房*/
    background-image: url(../images/priture-11-15/cbf.png) !important;
    background-size:20px 20px;
}
.new-hold-room-bg { /*临时占房*/
    background-image: url(../images/priture-11-15/hold.png) !important;
    background-size: 20px 20px;
}
.new-hold-room-bg-small { /*临时占房*/
    background-image: url(../images/priture-11-15/hold.png) !important;
    background-size: 20px 20px;
}
.new-diffblue-room-bg-small { /* 差异房SLP */
    background-image: url(../images/priture-11-15/diffroomSlp.png) !important;
}
.new-diffred-room-bg-small { /* 差异房SKP */
    background-image: url(../images/priture-11-15/diffroomSkp.png ) !important;
}
.new-diffalltype-room-bg-small { /* 差异房总数 */
    background-image: url(../images/priture-11-15/diffroomallcount.png ) !important;
}
.month-vacant-room-small{/* 空置房总数 */
    background-image: url(../images/priture-11-15/vacant.png) !important;
}
.month-pre-leave-room-small{/* 合同到期房总数 */
    background-image: url(../images/priture-11-15/preLeave.png) !important;
    background-size: 20px 20px !important;
}
.month-over-leave-room-small{/* 逾期在住房总数 */
    background-image: url(../images/priture-11-15/overLeave.png) !important;
    background-size: 20px 20px !important;
}
/*钟点房动画*/
.new-hour-room-remind-bg-small { /*钟点房到时提醒*/
      z-index: 1;
      /*background-size: 100%;*/
      background-repeat: no-repeat;
      background-position: -160px -0px; 
      animation: hourRoom 1s infinite;
      height:22px!important;
}
/*白日房动画*/
.new-white-room-remind-bg-small { /*钟点房到时提醒*/
    z-index: 1;
    /*background-size: 100%;*/
    background-repeat: no-repeat;
    background-image: url(../images/priture-11-15/太阳20.png) !important;
    animation: hourRoom 1s infinite;
    height: 22px !important;
}

.new-night-room-bg-small { /*午夜房图标*/
    background-image: url(../images/priture-11-15/night20.png) !important;
}
.new-night-room-remind-bg-small { /*午夜房到时提醒*/
    z-index: 1;
    /*background-size: 100%;*/
    background-repeat: no-repeat;
    background-image: url(../images/priture-11-15/night20.png) !important;
    animation: hourRoom 1s infinite;
    height: 22px !important;
}
.new-lqdevice-room-1-bg-small { /*萝趣售货机不缺货不缺电*/
    z-index: 1;
    /*background-size: 100%;*/
    background-repeat: no-repeat;
    background-image: url(../images/priture-11-15/lq1.png) !important;
    background-size: 22px 20px !important;
}
.new-lqdevice-room-2-bg-small { /*萝趣售货机不缺货缺电*/
    z-index: 1;
    /*background-size: 100%;*/
    background-repeat: no-repeat;
    background-image: url(../images/priture-11-15/lq2.png) !important;
    animation: hourRoom 1s infinite;
    background-size: 22px 20px !important;
}
.new-lqdevice-room-3-bg-small { /*萝趣售货机缺货不缺电*/
    z-index: 1;
    /*background-size: 100%;*/
    background-repeat: no-repeat;
    background-image: url(../images/priture-11-15/lq3.png) !important;
    animation: hourRoom 1s infinite;
    background-size: 22px 20px !important;
}
.new-lqdevice-room-4-bg-small { /*萝趣售货机缺货缺电*/
    z-index: 1;
    /*background-size: 100%;*/
    background-repeat: no-repeat;
    background-image: url(../images/priture-11-15/lq4.png) !important;
    animation: hourRoom 1s infinite;
    background-size: 22px 20px !important;
}
.new-ota-room-bg-small { /*网络房图标*/
    background-image: url(../images/priture/ota.png) !important;
}
.new-borrowgood-room-bg-small { /*物品借用图标*/
    background-image: url(../images/priture/borrowgood.png) !important;
}

.icon-all span.new-reg-room-bg-small {
    background-image: url(../images/priture-11-15/checkin.svg);
}
.new-ota-tiktok-room-bg-small { /*网络房抖音图标*/
    background-image: url(../images/priture/tiktok.png) !important;
}
.new-ota-fliggy-room-bg-small { /*网络房飞猪图标*/
    background-image: url(../images/priture/fliggy.png) !important;
}
.new-ota-meituan-room-bg-small { /*网络房美团图标*/
    background-image: url(../images/priture/meituan.png) !important;
}
.new-ota-wechat-room-bg-small { /*网络房微信图标*/
    background-image: url(../images/priture/wechat.png) !important;
}
.new-ota-ctrip-room-bg-small { /*网络房携程图标*/
    background-image: url(../images/priture/ctrip.png) !important;
}
@keyframes hourRoom {
    0% {
    transform: scale(1);
  }
  5% {
    transform: scale(1.3);
  }
  10% {
    transform: scale(1.1);
  }
  15% {
    transform: scale(1.5);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.room-re {
    background-color:white!important;
    display:inline-block!important;
        margin-left: 10px;
}
.room-statistics a:hover {
    background-color:#eef6ff;

}
.span-right {
    margin-left:20px;
}
.span-red {
    color:red;
    float:right;
    margin-right:1%;
}
.dd-center {
    text-align:center;
    padding-top:10px;
}
.icon-all span {
   background-image: url(../images/priture-11-15/roomStatus-1-18.png);
   display:inline-block;
   width:20px;
   height:20px;

}
.span-block {
    display:block;
    height:20px;
}
.bg-red-close {
      background:url(../images/priture/jgtx-jy.png) no-repeat;
      width:15px;
      height:15px;
      display:inline-block;
}
.border-color {
    border-color:red!important;
    border-style:solid!important;
  
}
/* 帮助文档样式 */
/* 菜单显示*/
 .helpFilesDiv {
    position: absolute;
    top: 105px;
    right: 30px;
    z-index: 999;
    max-width:400px;
    color:white;
    }
 .helpFilesDiv img,.helpFilesDiviframe img {
    background-color: white;
    border-radius: 10px;
}
    #helpinfodiv,#helpinfodiviframe {
        background-color:white;
        min-width:240px;
        padding: 5px; 
        display: none;
        border :1px solid rgb(235, 235, 235);
        border-top-width:0px;
    }
.helpFilesDiv ol,.helpFilesDiviframe ol {
    padding-left:20px;
    color:#444
}
/* iframe显示*/
.helpFilesDiviframe {
    position: absolute;
    top: 6px;
    right: 70px;
    z-index: 999;
    max-width:400px;
    color:white;
    }
   
/* grid 表格自适应*/
@media only screen and (max-width:1600px) {/* 小于1600px*/
    .grid-240 .k-grid-content {
        overflow-y:auto;
        max-height:240px;
    }
    .grid-260 .k-grid-content {
        overflow-y:auto;
        max-height:260px;
    }
    .grid-300 .k-grid-content {
        overflow-y:auto;
        max-height:300px;
    }
    .room-statistics span{ padding-right:2px;}
    .span-red {margin-right:initial;}
    .room-statistics .span-right {margin-left:initial;}
}
 @media only screen and (min-width:1600px) {/* 大于1600px*/
       .grid-260 .k-grid-content,.grid-300 .k-grid-content {
            max-height:570px;
        }
       .room-statistics span{ padding-right:3px;}
   
 }
 .k-block, .k-content, .k-dropdown .k-input, .k-popup, .k-toolbar, .k-widget {
    color: black;
}
.underline-ismaster{
    text-decoration: underline;
}
.k-grid .nohover tr:hover td {
    background-color: #ffffff;
}
/* 仅作用于根菜单按钮"批量操作"（直接子项），不影响下拉子项（预订改期那一列） */
.k-menu.k-menu-small-botton>.k-item>.k-link{
    padding: 5px 10px 5px 8px;
    color: #004793;
}
/* 下拉子项保持原始外观：恢复原内边距，且不覆盖各自文字颜色 */
.k-menu.k-menu-small-botton .k-menu-group .k-item>.k-link{
    padding: 7px 18px 6px 14px;
    color: #004793;
}
.k-menu.k-menu-small-botton{
    background-color: #ffffff;
    border-color: #004793;
    color: #004793;
}
/* .NET10/Kendo2022 迁移：旧版根菜单项 hover 用 .k-state-border-right 类，2022 已移除，
   改为在 .k-item(<li>) 本身加 .k-hover / :hover（默认灰底 #ebebeb），导致原蓝底白字 hover 失效。
   见 docs/migration-knowledge/css-kendo-version-diff.md。这里同时覆盖新旧两套类名。 */
.k-menu.k-menu-small-botton .k-item>.k-state-border-right,
.k-menu.k-menu-small-botton>.k-item.k-hover,
.k-menu.k-menu-small-botton>.k-item:hover,
.k-menu.k-menu-small-botton>.k-item.k-state-hover {
    background-color: #004793;
    border-color: #004793;
    color: #ffffff;
}
.k-menu.k-menu-small-botton>.k-item.k-hover>.k-link,
.k-menu.k-menu-small-botton>.k-item:hover>.k-link,
.k-menu.k-menu-small-botton>.k-item.k-state-hover>.k-link {
    color: #ffffff;
}
.k-menu.k-menu-small-botton .k-item>.k-link>.k-i-arrow-e {
    margin-top: -7px;
}
.k-header.table-header-cell-noMenuIcon>.k-header-column-menu {
    display:none;
}
/* Kendo 2022 升级后 column menu / sort indicator 的 DOM 结构变化兼容：
   Kendo 2022 将 .k-header-column-menu 嵌入到 .k-cell-inner 内部，不再是 .k-header 的直接子元素，
   原 `.k-header.table-header-cell-noMenuIcon>.k-header-column-menu` 直接子选择器失效，
   需用后代选择器并兼容 Kendo 2022 可能引入的其它类名，覆盖勾选列等不需要排序/菜单交互的场景 */
.k-header.table-header-cell-noMenuIcon .k-header-column-menu,
.k-header.table-header-cell-noMenuIcon .k-grid-column-menu,
.k-header.table-header-cell-noMenuIcon .k-grid-header-menu,
.k-header.table-header-cell-noMenuIcon .k-column-menu,
.k-header.table-header-cell-noMenuIcon .k-sort-icon,
.k-header.table-header-cell-noMenuIcon .k-sort-order {
    display: none !important;
}

/*客单快速切换*/
/* .NET10/Kendo2022 迁移：旧版放大镜图标(.k-i-search)已移除、读卡按钮由绝对定位图标改为
   普通文本链接。旧版给外层 .k-textbox 预留的 padding-right:5.9em 与固定 width:16em 是为
   绝对定位图标让位的，图标移除后会留下右侧大段空白、把读卡挤进框内，故去掉。
   恢复"参考版"外观：外层 .k-textbox 自身做成带圆角边框的白底盒子，内部 input 透明无边框、
   读卡用左竖线分隔，整体一个盒子包住 [输入框 | 读卡]。 */
/* 外框：对照原版 —— 边框 #ccc、圆角 4px、白底、高 ~27px */
#orderTabStripDiv_spanQuickSwitcher .k-textbox.k-space-right{
    display:inline-flex; align-items:center;
    width:auto; padding:0; height:27px; line-height:normal; vertical-align:middle;
    border:1px solid #ccc; border-radius:4px; background:#fff; overflow:hidden;
}
/* 内部 input：对照原版 —— 透明无边框、文字色 #333、宽 ~120px（覆盖 Site.css 给 input 加的边框，避免双层框） */
#orderTabStripDiv_spanQuickSwitcher input[type="text"]{
    border:0; background:transparent; outline:none; margin:0; color:#333;
    /* input 默认字体是 Arial，中文占位符基线与"快速切换/读卡"(雅黑)不一致导致视觉未对齐，
       这里强制继承周围字体，让三段文字横向对齐 */
    font-family:inherit; font-size:12px;
    width:120px; height:25px; line-height:25px; padding:1px 6px; box-sizing:border-box;
}
#orderTabStripDiv_spanQuickSwitcher label{ display:inline-block; vertical-align: middle; padding-top: 0; padding-right:4px;}
/* 读卡：对照原版 —— 深灰色 #444、无下划线、左竖线 #ccc 分隔、文字两侧留白。
   用 !important 覆盖 Site.css .qs-readcard-btn 的蓝色与 hover 下划线。 */
#orderTabStripDiv_searchIconQuickSwitcherReadCard,
#orderTabStripDiv_spanQuickSwitcher .qs-readcard-btn{
    color:#444 !important; text-decoration:none !important;
    font-size:12px; border-left:1px solid #ccc; padding:0 10px; line-height:25px;
    white-space:nowrap; cursor: pointer!important;
}
#orderTabStripDiv_searchIconQuickSwitcherReadCard:hover,
#orderTabStripDiv_spanQuickSwitcher .qs-readcard-btn:hover{
    color:#444 !important; text-decoration:none !important;
}
/* 快速切换在 Enabled(false) 的 tab 内，Site.css 用 `...spanQuickSwitcher *{cursor:auto!important}`
   把所有子元素光标重置成箭头。这里用更高优先级(3 个 id)把读卡按钮恢复成手型。 */
#tabstripAuth li.k-state-disabled #orderTabStripDiv_spanQuickSwitcher #orderTabStripDiv_searchIconQuickSwitcherReadCard,
#tabstripAuth li.k-state-disabled #orderTabStripDiv_spanQuickSwitcher .qs-readcard-btn{
    cursor: pointer !important;
}

.k-text-align-right{text-align:right;}

/*长租短租客情界面 中间子单信息块 滚动条样式*/
#resCustomerTableContent_Middle_ResDetailInfoTable::-webkit-scrollbar-track-piece {
    background-color: #fff;
    -webkit-border-radius: 0;
}

#resCustomerTableContent_Middle_ResDetailInfoTable::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

#resCustomerTableContent_Middle_ResDetailInfoTable::-webkit-scrollbar-thumb {
    height: 50px;
    background-color: #F1F1F1;
    -webkit-border-radius: 4px;
    outline: 2px solid #fff;
    outline-offset: -2px;
    border: 2px solid #fff;
}

    #resCustomerTableContent_Middle_ResDetailInfoTable::-webkit-scrollbar-thumb:hover {
        height: 50px;
        background-color: #9f9f9f;
        -webkit-border-radius: 4px;
    }
/*悬浮菜单鼠标停留变灰*/
.k-state-hover:hover {
    background-color: #ccc;
}

.order-reginfo-love-focus {
    position: absolute;
    width: 625px;
    z-index: 1;
    bottom: 17px;
}

#folioCardAuthWindow table tr td.textright{
    padding:0 5px 0 10px;
}
/* Kendo 2022 升级后预授权窗口为无类名裸表格，单元格残留 line-height 行内 leading 使行高被撑到 48px(控件本身仅 31px)，行距过大；
   将数据单元格 line-height 归零消除幽灵行距，标签单元格保留行高以正常显示文字。
   注意必须用 > table 直接子选择器：后代选择器会误伤 #folioCardAuthGrid(Kendo Grid)内部数据表，
   把预授权记录行 line-height 压成 0 导致记录行被压扁显示不全（recvlnpUnKrIqN 回归根因） */
#folioCardAuthWindow > table > tbody > tr > td {
    line-height: 0;
    vertical-align: middle;
}
#folioCardAuthWindow > table > tbody > tr > td.textright {
    line-height: 1.5;
}
/* 需求 recvlnpUnKrIqN：预授权窗口下方 disabled/readonly 文本框默认白底，避免 Kendo 2022 默认灰底与可编辑框视觉割裂 */
#folioCardAuthWindow table input.k-input,
#folioCardAuthWindow table input.k-textbox,
#folioCardAuthWindow table .k-numeric-wrap > .k-input,
#folioCardAuthWindow table .k-picker-wrap > .k-input,
#folioCardAuthWindow table input[disabled],
#folioCardAuthWindow table input[readonly] {
    background-color: #fff !important;
}
/* 需求 recvlnpUnKrIqN 再修：Kendo 2022 的 k-input-solid/k-picker-solid wrapper(SPAN)自带 #f5f5f5 灰底，
   仅给内部 input 设白底不够（input 透明露出 wrapper 灰底），DatePicker/NumericTextBox/DropDownList 仍显示灰，
   需把表单区所有控件 wrapper 一并置白 */
#folioCardAuthWindow > table span.k-input,
#folioCardAuthWindow > table span.k-picker {
    background-color: #fff !important;
}

input.resCustomerBookingRoomNoLock, input.resCustomerBookingRoomNoLock:hover {
    background-image: url(../images/res/s1.png);
    background-repeat: no-repeat;
    background-position: right;
    background-position-y: bottom;
}
input.resCustomerBookingRoomNoUnLock, input.resCustomerBookingRoomNoUnLock:hover {
    background-image: url(../images/res/s01.png);
    background-repeat: no-repeat;
    background-position: right;
    background-position-y: bottom;
}

.k-fieldselector .k-list .k-item label.k-disabled, .k-popup .k-list .k-item label.k-disabled {
    color: red;
    text-decoration: line-through;
}
.k-fieldselector .k-list .k-item span.k-disabled, .k-popup .k-list .k-item span.k-disabled {
    color: red;
    text-decoration: line-through;
}
.k-fieldselector .k-list .k-item .order-cttid-templete-span, .k-popup .k-list .k-item .order-cttid-templete-span {
    width: 100%;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*多语言切换*/
#mainCurrentLanguageChanageDiv {
    position: absolute;
    right: 140px;
    top: 20px;
    width: 90px;
    text-align: left;
    background-color: white;
    border: 1px solid gray;
    padding: 5px;
    z-index: 9;
}
    #mainCurrentLanguageChanageDiv a {
        display: block;
    }
#mainCurrentLanguageSpan {
    margin-left: 10px;
    margin-right: 10px;
}


/*行李管理*/
#baggageManage_grid_from_toolbar_td1 {
    width: 680px;
}
#baggageManage_grid_from_toolbar_td2 {
    width: 440px;
}

/*短租-客单-客情-左侧*/
#resCustomerTable td.soc-left-checkbox {
    text-align: right;
    padding-right: 25px;
}
.soc-left-ResNoExt {

}
#resCustomerTable td.soc-left-grid {
    width: 437px;
    max-width: 437px;
    vertical-align: top;
    padding: 0;
    margin: 0;
    border: 0;
}
.soc-left-toolbar {
    text-align: right;
    width: 435px;
}
.soc-left-batchaction {
    text-align: left;
    float: right;
    width: 82px;
    margin-top: 4px;
    margin-left: 4px;
}

/*短租-客单-客情-右侧*/
.soc-right-table {
    overflow-y: scroll;
    overflow: auto;
    width: 714px;
    height: 525px;
    display: block;
    margin-left: 22px;
}
.soc-right-cttid {
    width: 170px
}
.soc-right-days {
    width: 170px
}
.soc-right-remark {
    width: 360px;
    resize: none;
}
.soc-right-address {
    width: 360px;
}
/* 生日列 DatePicker 在 .NET10/Kendo2022 下 .k-input 默认撑满单元格(180px)，
   而同列的客人类型/国籍下拉框为默认149px，导致生日框比上下两行宽、右边缘不齐。
   收窄为149px与同列下拉框上下对齐。客情界面内唯一的纯日期 DatePicker 即生日(birthday)，
   其余抵店/离店/保留/客人抵离均为 DateTimePicker(.k-datetimepicker)，故该选择器只命中生日框。 */
#resCustomerTable .k-datepicker {
    width: 149px;
}

/*短租-客单-客情-换房*/
.soc-cr-table {
    width: 450px
}
#changeRoomWindow td.textright {
    width: 60px;
}
.soc-cr-roomPriceNew {
    background-color: #f5f5f5;
    width: 91px;
}
.soc-cr-remark {
    width: 371px;
    resize: none;
}
.soc-cr-cre {
    width: 450px;
    margin-left: 4px;
}
.soc-cr-cre-split {
    height: 339px;
    left: 460px;
}

/*短租-客单-客情-关联房*/
.soc-re-table {
    width: 1100px;
    height: 460px;
}

/*短租-客单-客情-分房*/
.soc-sr-eor {
    margin-left: 31px;
    vertical-align: baseline;
}
.soc-sr-hd {
    margin-left: 31px;
    vertical-align: baseline;
}
.soc-sr-clean {
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 6px 12px 5px 3px;
}
.soc-sr-build {
    margin-left: 11px;
}
.soc-sr-build_input {
    width: 125px;
}

/*短租-客单-客账-筛选*/
.soc-zw-search {
    width: 260px;
}

/*短租-客单-客账-入账*/
.soc-rw-table {
    width: 450px;
}
#folioAddFolioDiv table.editFormTable td.soc-rw-table-lefttd {
    height: 22px;
    line-height: 22px;
}

#folioAddFolioDiv table.addFolioTable.soc-rw-table tr td {
    padding: 3px 0px 3px 0px;
    margin: 3px 0px 3px 0px;
    height: 32px;
    line-height: 32px;
}

/*价格代码-新增*/
#rate_special_table.editFormTable .textright {
    width: 66px;
    padding-right: 5px;
}

/*增加计划任务*/
.mkt_pt_Schedule_left {
    display: inline-block;
    width: 103px;
}

/*合约单位往来详情*/
.crm-wl-detail {
    height: 520px;
    max-height: 520px;
    overflow: hidden;
    padding-left: 5px;
    padding-right: 5px;
}
