/** 
 * @author xianbo.chen@gmail.com
 */

/* 
320px - 480px：移动设备
481px - 768px：iPad、平板电脑
769px - 1024px：小屏幕、笔记本电脑
1025px - 1200px：台式电脑、大屏幕
1201px及以上：超大屏幕、电视 
*/
:root {
    --theme-color: #e54844;
    --max-page-width: 500px;
    --jin: #ffa500;
    --shui: #0074e4;
    --mu: #00ad7c;
    --huo: #fc345c;
    --tu: #a64b00;
    --html-bg-color: #8a8a8a;
}
::-webkit-scrollbar {
    display: none;
}

@media screen and (max-width: 500px) {
    body{
        width:100%;
        height: 100%;
        background-color: var(--html-bg-color);
        margin: 0 auto;
        touch-action: manipulation;
        -webkit-text-size-adjust: 100% !important;
        text-size-adjust: 100% !important;
        -moz-text-size-adjust: 100% !important;
    }
    .app-frame{
        width: 100%;
        height: 100vh;
        background-color: #fff;;
        overflow: auto;
        scroll-behavior: smooth;
    }
    .app-header{
        grid-template-columns: 40px 40px auto 40px 40px;
        display: grid;
        height: 40px;
        background-color:  var(--theme-color);
        /* opacity: 0.9; */
        backdrop-filter: blur(15px);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 999;
    }
    .app-body{
        display: block;
        position: relative;
        top: 40px;
        width:100% !important;
        padding-bottom: 50px;
    }
    .app-footer{
        display: grid;
        grid-template-columns: 25% 25% 25% 25%;
        position: fixed;
        bottom: 0;
        z-index: 999;
        height: 55px;
        width: 100% !important;
        line-height: 55px;
        padding: 0px;
        box-shadow: -1px 0 4px rgb(0 0 0 / 12%);
        background-color: #F6F6F6;
    }
    #paipantabbar{
        width:100%; 
        left: auto !important;
        background-color: #eee !important; 
        filter: drop-shadow(0px 1px 4px rgb(0 0 0 / 12%));
        z-Index: 666;
        position: fixed; 
        top:40px;
        margin: 0 auto;
    }
    .app-file-list-search{
        position: fixed; 
        top:40px;
        width: 100%;
        background-color: #eee;
        filter: drop-shadow(0px 1px 4px rgb(0 0 0 / 12%));
        padding-left: 10px;
        padding-right: 10px;
        box-sizing: border-box;
    }
    .app-profile-banner {
        width: 100%; 
        text-align: center;
        height: 140px;
        font-size: 16px;
        color: #fff;
        background-color: var(--theme-color);
        filter: drop-shadow(0px 0px 5px rgb(0 0 0 / 12%));
        z-Index: 666;
        position: fixed; 
        top:40px;
        margin: 0 auto;
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
    }
}
@media screen and (min-width: 500px) {
    body{
        width:var(--max-page-width);
        height: 100%;
        background-color: var(--html-bg-color);
        margin: 0 auto;
        touch-action: manipulation;
        -webkit-text-size-adjust: 100% !important;
        text-size-adjust: 100% !important;
        -moz-text-size-adjust: 100% !important;
    }
    .app-frame{
        width: var(--max-page-width);
        height: 100vh;
        background-color: #fff;;
        overflow: auto;
        scroll-behavior: smooth;
        margin: 0 auto;
    }
    .app-header{
        display: grid;
        grid-template-columns: 40px 40px auto 40px 40px;
        height: 40px;
        background-color: var(--theme-color);
        /* opacity: 0.9; */
        backdrop-filter: blur(15px);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: var(--max-page-width) !important;
        margin: 0 auto;
        z-index: 999;
    }
    .app-body{
        display: block;
        position: relative;
        top: 40px;
        width: var(--max-page-width) !important;
        /* height: 100%; */
        padding-bottom: 50px;
    }
    
    .app-footer{
        display: grid;
        grid-template-columns: 25% 25% 25% 25%;
        position: fixed;
        bottom: 0;
        z-index: 999;
        height: 55px;
        width: var(--max-page-width) !important;
        line-height: 55px;
        padding: 0px;
        box-shadow: -1px 0 4px rgb(0 0 0 / 12%);
        background-color: #F6F6F6;
    }
    #paipantabbar{
        width: var(--max-page-width); 
        left: auto !important;
        background-color: #eee; 
        filter: drop-shadow(0px 1px 4px rgb(0 0 0 / 12%));
        /* opacity: 0.9; */
        z-Index: 666;
        position: fixed; 
        top:40px;
        margin: 0 auto;
    }
    .app-file-list-search{
        position: fixed; 
        top:40px;
        width: var(--max-page-width);
        background-color: #eee;
        filter: drop-shadow(0px 1px 4px rgb(0 0 0 / 12%));
        padding-left: 10px;
        padding-right: 10px;
        box-sizing: border-box;
    }
    .app-profile-banner {
        width: var(--max-page-width); 
        text-align: center;
        height: 140px;
        font-size: 16px;
        color: #fff;
        background-color: var(--theme-color);
        filter: drop-shadow(0px 0px 5px rgb(0 0 0 / 12%));
        z-Index: 666;
        position: fixed; 
        top:40px;
        margin: 0 auto;
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
    }
}

html{
    background-color: var(--html-bg-color);
    /* overscroll-behavior-y: none; */
}

.app-title{
    text-align: center;
    vertical-align: middle;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    line-height: 40px;
}
.app-header-button{
    text-align: center;
    vertical-align: middle;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    line-height: 40px;
}
.app-header-button:active{
    background-color: var(--theme-color);
}
.app-header-button-back{
    background-image: url(../images/back.png) ;
    background-repeat: no-repeat;
    background-position:center;
    cursor: pointer;
}
.app-header-button-login{
    background-image: url(../images/login.png) ;
    background-repeat: no-repeat;
    background-position:center;
    cursor: pointer;
}
.app-header-button-refresh{
    background-image: url(../images/refresh.png) ;
    background-repeat: no-repeat;
    background-position:center;
    cursor: pointer;
}
.app-header-button-delete{
    background-image: url(../images/delete.png) ;
    background-repeat: no-repeat;
    background-position:center;
    cursor: pointer;
}
.app-header-button-deleteQimen{
    background-image: url(../images/delete.png) ;
    background-repeat: no-repeat;
    background-position:center;
    cursor: pointer;
}
.app-header-button-modify{
    background-image: url(../images/modify.png) ;
    background-repeat: no-repeat;
    background-position:center;
    cursor: pointer;
}
.app-header-button-mingliqimen{
    background-image: url(../images/mingli24.png) ;
    background-repeat: no-repeat;
    background-position:center;
    cursor: pointer;
}
.app-header-button-bazi{
    background-image: url(../images/bazi24.png) ;
    background-repeat: no-repeat;
    background-position:center;
    cursor: pointer;
}
.app-header-button-share{
    background-image: url(../images/share.png) ;
    background-repeat: no-repeat;
    background-position:center;
    cursor: pointer;
}
.app-header-button-today{
    background-image: url(../images/today.png) ;
    background-repeat: no-repeat;
    background-position:center;
    cursor: pointer;
}
.app-header-button-jinri{
    background-image: url(../images/jinri.png) ;
    background-repeat: no-repeat;
    background-position:center;
    cursor: pointer;
}
.app-header-button-gongli{
    background-image: url(../images/gongli.png) ;
    background-repeat: no-repeat;
    background-position:center;
    cursor: pointer;
}
.app-header-button-huangli{
    background-image: url(../images/huangli.png) ;
    background-repeat: no-repeat;
    background-position:center;
    cursor: pointer;
}
.app-header-button-more{
    background-image: url(../images/more.png) ;
    background-repeat: no-repeat;
    background-position:center;
    cursor: pointer;
}
.app-header-button-save{
    background-image: url(../images/save.png) ;
    background-repeat: no-repeat;
    background-position:center;
    cursor: pointer;
}
.app-header-button-list{
    background-image: url(../images/list.png) ;
    background-repeat: no-repeat;
    background-position:center;
    cursor: pointer;
}

.app-day-info {
    display: grid;
    grid-template-columns: 50% 12.5% 12.5% 12.5% 12.5%;
    padding: 0px;
    width: 100%;
    height: 80px;
    line-height: 18px !important;
    background: #fff;
    color: #000;
    vertical-align: middle;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #eee;
}
.app-day-info-ymd{
    display: grid;
    grid-template-columns: 35% 65%;
    padding: 0px;
    width: 100%;
    height: 100%;
}
.app-day-num{
    display: grid;
    grid-template-rows: 30% 70%;
    padding: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
}
.app-day-num-title{
    padding: 0px;
    width: 100%;
    height: 20px;
    font-size: 12px;
}
.app-day-num-value{
    padding: 0px;
    width: 100%;
    height: 50px;
    font-size: 45px;
    vertical-align: middle;
    line-height: 50px;
    color: var(--theme-color);
}
.app-day-detail{
    display: grid;
    grid-template-rows: 30% 35% 35%;
    padding: 0px;
    width: 100%;
    height: 100%;
}
.app-day-month{
    padding: 0px;
    width: 100%;
    height: 20px;
    font-size: 12px;
}
.app-day-nongli{
    padding: 0px;
    width: 100%;
    font-size: 15px;
}
.app-day-week{
    padding: 0px;
    width: 100%;
    font-size: 15px;
}
.app-time-btn {
    width: 24px;
    height: 24px;
    display: inline-block;
    position: absolute;
    right: 10px;
    top: 6px;
    cursor: pointer;
    border-width: 0px;
    background-color: var(--theme-color);
    background-blend-mode: lighten;
    background-size: cover;
    background-image: url(../images/time.png) ;
    background-repeat: no-repeat;
    background-position:center;
}

.app-text-title {
    width:100%;
    height:36px;
    margin-top: 15px;
    line-height: 36px;
    text-align: center;
    font-size: 24px;
    position:relative;
}

.app-shengxiao-logo {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    border-width: 2px;
    border-color: var(--theme-color);
    border-style: solid;
    background-color: var(--theme-color);
    background-blend-mode: lighten;
    background-size: cover;
}
.app-toggle-table-max {
    width: 100%;
    height: 7px;
    background: #eee;
    cursor: pointer;
    background-image: url(../images/min.png?123) ;
    background-repeat: no-repeat;
    background-position:center;
}
.app-toggle-table-max:hover{
    background: #ccc;
    background-image: url(../images/min.png?123) ;
    background-repeat: no-repeat;
    background-position:center;
}
.app-toggle-table-min {
    width: 100%;
    height: 7px;
    background: #eee;
    cursor: pointer;
    background-image: url(../images/max.png?123) ;
    background-repeat: no-repeat;
    background-position:center;
}
.app-toggle-table-min:hover{
    background: #ccc;
    background-image: url(../images/max.png?123) ;
    background-repeat: no-repeat;
    background-position:center;
}
.app-bazi-name {
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    color: #000;
    font-size: 13px;
    width: 68px;
}

.app-liunian-switch-on {
    cursor: pointer;
    background-image: url(../images/on.png) ;
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
    background-color: var(--theme-color);
    background-blend-mode: lighten;
    width: 20px;
    height: 16px;
    text-align: center;
    display: inline-block;
}
.app-liunian-switch-off {
    cursor: pointer;
    background-image: url(../images/off.png) ;
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
    width: 20px;
    height: 16px;
    text-align: center;
    display: inline-block;
}
.app-wuxingwangshuai {
    display: grid;
    grid-template-columns: 20% 20% 20% 20% 20%;
    width: 100%;
    /* background-color: var(--theme-color); */
    color: #fff;
    text-align: center;
}

.app-footer-tab{
    height: 55px;
    line-height: 55px;
    color: #000;
    font-weight: normal;
    text-align: center;
}
.app-footer-tab:active{
    background-color: #eee;
}
.app-footer-tab-selected{
    color: var(--theme-color) !important;
    font-weight: 800;
}
.app-nowtime{
    color: var(--theme-color);
}

.app-button-panel{
    display: block;
    text-align: center;
    margin-top: 20px;
}

.app-button-item{
    display: inline-block;
    width: 70px;
    height: 85px;
    text-align: center;
    vertical-align: top;
    margin: 5px 3px;
    background-color: #eee;
    padding: 3px;
    padding-top: 8px;
    border-radius: 10px;
    cursor: pointer;
}
.app-button-item-icon{
    background-color: var(--theme-color);
    border-radius: 5px;
    width: 32px;
    height: 32px;
    padding:4px;
}
.app-button-item-text{
    font-size: 14px;
    color: #000;
    margin-top: 5px;
}


.app-file-list{
    width: 100%;
    height: 100%;
    overflow: auto;
    padding-bottom: 45px;
    padding-top: 45px;
}
.app-file-list-item{
    display: grid;
    grid-template-columns: 40px auto 16px 16px 16px 16px 26px 26px 26px 32px;
    border-bottom-width: 1px;
    border-bottom-color: #eee;
    padding-top: 5px
}
.app-file-list-item:active{
    background-color: #e2e2e2;
}
.app-file-list-item:hover{
    background-color: #e2e2e2;
}
.app-file-list-item .app-file-list-item-animal{
    padding-left: 10px;
}
.app-file-list-item .app-file-list-item-name{
    font-size: 16px;
    font-weight: 400;
    color: #000;
    padding-left: 10px;
    display: inline;
}
.app-file-list-item .app-file-list-item-sex-m{
    background-image: url(../images/m.png);
    background-repeat: no-repeat;
    background-position-x: 0px;
    background-position-y: 25px;
}
.app-file-list-item .app-file-list-item-sex-f{
    background-image: url(../images/f.png);
    background-repeat: no-repeat;
    background-position-x: 0px;
    background-position-y: 25px;
}
/* .app-file-list-item .app-file-list-item-sex{
    font-size: 12px;
    font-weight: 400;   
    color: #999;
    padding-left: 10px;
    display: inline;
} */
.app-file-list-item .app-file-list-item-date{
    font-size: 12px;
    font-weight: 400;   
    color: #999;
    padding-left: 10px;
    display: block;
}
.app-file-list-item .app-file-list-item-bazi{
    font-size: 12px;
    font-weight: 400;   
    color: #999;
    padding-right: 5px;
    vertical-align: middle;
}
.app-file-list-item .app-file-list-item-bz{
    font-size: 12px;
    font-weight: 400;   
    vertical-align: middle;
    text-align: center;
}

.app-file-list-item-bzbtn{
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    line-height: 35px;
    padding-left: 3px;
    padding-right: 3px;
}
.app-file-list-item-qmbtn{
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    line-height: 35px;
    padding-left: 3px;
    padding-right: 3px;
}
.app-file-list-item .app-file-list-item-qm{
    font-size: 12px;
    font-weight: 400;   
    vertical-align: middle;
    text-align: center;
}
.app-file-list-item-zwbtn{
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    line-height: 35px;
    padding-left: 3px;
    padding-right: 3px;
}
.app-file-list-item .app-file-list-item-zw{
    font-size: 12px;
    font-weight: 400;   
    vertical-align: middle;
    text-align: center;
}
.app-file-list-item-check{
    background-image: url(../images/checked.png) ;
    background-repeat: no-repeat;
    background-position:center;
    cursor: pointer;
}
.app-file-list-item-uncheck{
    background-image: url(../images/unchecked.png) ;
    background-repeat: no-repeat;
    background-position:center;
    cursor: pointer;
}

.app-file-logo{
    width: 32px;
    height: 32px;
    border-radius: 12px;
    border-width: 1px;
    border-color: var(--theme-color);
    border-style: solid;
    background-size: cover;
    background-color: var(--theme-color);
    background-blend-mode: lighten;
}
.app-file-list-empty{
    height: 50px;
    line-height: 50px;
    text-align: center;
}

.app-file-searchbox{
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 25px !important;
}

.app-button-delete {
    position: fixed;
    bottom: 60px;
    right: 60%;
    height: 38px;
    line-height: 38px;
    border: 1px solid transparent;
    padding: 0 18px;
    background-color: var(--theme-color);
    border-radius: 5px !important;;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    font-size: 14px;
    border-radius: 2px;
    cursor: pointer;
    filter: drop-shadow(3px 3px 3px rgb(0 0 0 / 30%));
}
.app-button-cancel {
    position: fixed;
    bottom: 60px;
    left: 60%;
    height: 38px;
    line-height: 38px;
    border-color: var(--theme-color)!important;
    background-color: #fff;
    color: var(--theme-color)!important;
    border: 1px solid transparent;
    padding: 0 18px;
    border-radius: 5px !important;
    white-space: nowrap;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    filter: drop-shadow(3px 3px 3px rgb(0 0 0 / 30%));
}

.app-button-new{
    position: fixed;
    display: block;
    bottom: 70px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,.3));
    border-width: 0;
    border-radius: 50px !important;
    background-color: var(--theme-color);
    background-image: url(../images/add.png) ;
    background-repeat: no-repeat;
    background-position:center;
    cursor: pointer;
    opacity: 0.8;
}

.app-form {
    width: 100%;
    margin-top: 15px;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
}
.app-button-date-group {
    display: grid;
    margin:0 auto;
    width: 240px;
    grid-template-columns: 80px 80px 80px;
}
.app-button-date {
    display: table-cell;
    width: 80px;
    height: 25px;
    border-width: 1px;
    border-style: solid;
    border-color: var(--theme-color);
    font-size: 14px;
    line-height: 25px;
    margin: 5px;
    cursor: pointer;
}
.app-button-date-gongli {
    margin-right: 0px;
    border-top-left-radius: 25px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 0px;
    border-right: 0px;
}
.app-button-date-nongli {
    margin-left: 0px;
    margin-right: 0px;
    border-radius:0px;
    border-left: 0px;
    border-right: 0px;
}
.app-button-date-shizhu {
    margin-left: 0px;
    border-top-left-radius: 0px;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 25px;
    border-left: 0px;
}
.app-button-date-active {
    background-color: var(--theme-color);
    color: #fff;
}
.app-profile-logo {
    width: 64px;
    height: 64px;
    border-radius: 64px;
}
.app-profile-user{
    margin: 12px;
    cursor: pointer;
    line-height: 50px;
}
.app-profile-theme {
    display: inline-block;
    width: 25px;
    height: 25px;
    cursor: pointer;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.app-login-title{
    width: 100%;
    height: 40px;
    margin: 0 auto;
    margin-top: 40px;
    line-height: 40px;
    font-size: 32px;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    text-align: center;
}
.app-login-uid{
    /* display: inline-block; */
    width: 90%;
    height: 30px;
    margin: 0 auto;
    line-height: 30px;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 20px;
    box-sizing: border-box;
    text-align: center;
}
.app-login-uid-input{
    border: 0px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: var(--theme-color);
    width: 100%;
    font-size: 20px;
}
.app-login-pwd{
    display: grid;
    grid-template-columns: 60% 40%;
    width: 90%;
    height: 30px;
    margin: 0 auto;
    line-height: 30px;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 20px;
    box-sizing: border-box
}
.app-login-pwd-input{
    border: 0px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: var(--theme-color);
    width: 100%;
    font-size: 20px;
}
.app-login-pwd-ver{
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    border-color: var(--theme-color);
    border-width: 1px;
    border-style: solid;
    background-color: #fff;
    width: 100%;
    color: #000;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
}
.app-login-pwd-ver:active{
    background-color: var(--theme-color);
    color: #fff;
}
.app-login-btn{
    width: 80%;
    height: 45px;
    line-height: 45px;
    box-sizing: border-box;
    margin: 0 auto;
    margin-top: 20px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    background-color: var(--theme-color);
    color: #fff;
    font-size: 25px;
    text-align: center;
    cursor: pointer;
}
.app-login-btn:active{
    background-color: #fff;
    border-width: 1px;
    border-color: var(--theme-color);
    border-style: solid;
    color: var(--theme-color);
}

.app-logout-btn{
    width: 60%;
    height: 40px;
    line-height: 40px;
    box-sizing: border-box;
    margin: 0 auto;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    border-width: 1px;
    border-style: solid;
    color: var(--theme-color);
    background-color: #fff;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
}
.app-logout-btn:active{
    color: #fff;
    background-color: var(--theme-color);
}
.app-savenote-btn{
    width: 50%;
    height: 40px;
    line-height: 40px;
    box-sizing: border-box;
    margin: 0 auto;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    border-width: 1px;
    border-style: solid;
    color: var(--theme-color);
    background-color: #fff;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
}
.app-savenote-btn:active{
    color: #fff;
    background-color: var(--theme-color);
}
.app-savenote-yearcell{
    background-image: url("../images/year.png");
    background-repeat: no-repeat;
    background-position-y:top;
    background-position-x: 5px;
    padding-left: 30px !important;
    text-align: left; 
    white-space:nowrap;
    color: #2e4487;
    vertical-align: top;
}
.app-savenote-titlegap{
    height: 38px;
    line-height: 20px;
    border-width: 1px;
    border-style: solid;
    border-radius: 2px 0 0 2px;
    border-color: #eee;
    text-align: center;
    background-color: #FAFAFA;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-sizing: border-box;
}
.app-savenote-txtcell{
    text-align: left; 
    padding-left: 5px !important;
    /* text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; */
}
.app-savenote-btncell{
    background-image: url("../images/remove.png");
    background-repeat: no-repeat;
    background-position-x:right;
    background-position-y:center;
    cursor: pointer;
}
.app-savenote-subtitle{
    background-image: url("../images/add2.png");
    background-repeat: no-repeat;
    background-position-x:right;
    background-position-y:center;
    cursor: pointer;
}

.app-small-card {
    width: 90%;
    height: 50px;
    line-height: 50px;
    box-sizing: border-box;
    margin: 0 auto;
    margin-top: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-width: 1px;
    border-style: solid;
    border-color: #eee;
    background-color: #fff;
    padding-left: 15px;
    padding-right: 15px;
    color: #000;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
}

.app-small-card-gap {
    width: 90%;
    height: 15px;
    line-height: 50px;
    box-sizing: border-box;
    margin: 0 auto;
    margin-top: 10px;
}

.app-navbar-icon-paipan{
    background-image: url(../images/paipan.png) ;
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
    width: 20px;
    height: 20px;
    border-width: 0px;
    display: inline-block;
}
.app-navbar-icon-files{
    background-image: url(../images/files.png) ;
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
    width: 20px;
    height: 20px;
    border-width: 0px;
    display: inline-block;
}
.app-navbar-icon-calendar{
    background-image: url(../images/calendar.png) ;
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
    width: 20px;
    height: 20px;
    border-width: 0px;
    display: inline-block;
}
.app-navbar-icon-profile{
    background-image: url(../images/profile.png) ;
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
    width: 20px;
    height: 20px;
    border-width: 0px;
    display: inline-block;
}

.app-navbar-icon-paipan-selected{
    background-image: url(../images/paipan.png) ;
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
    width: 20px;
    height: 20px;
    display: inline-block;
    background-color: var(--theme-color);
    background-blend-mode: lighten;
}
.app-navbar-icon-files-selected{
    background-image: url(../images/files.png) ;
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
    width: 20px;
    height: 20px;
    display: inline-block;
    background-color: var(--theme-color);
    background-blend-mode: lighten;
}
.app-navbar-icon-calendar-selected{
    background-image: url(../images/calendar.png) ;
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
    width: 20px;
    height: 20px;
    display: inline-block;
    background-color: var(--theme-color);
    background-blend-mode: lighten;
}
.app-navbar-icon-profile-selected{
    background-image: url(../images/profile.png) ;
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
    width: 20px;
    height: 20px;
    display: inline-block;
    background-color: var(--theme-color);
    background-blend-mode: lighten;
}

.theme1 {
    background-color: #e54844;
}
.theme2 {
    background-color: #fbb034;
}
.theme3 {
    background-color: #ff4f81;
}
.theme4 {
    background-color: #0cb9c1;
}
.theme5 {
    background-color: #44c7f4;
}
.theme6 {
    background-color: #007fdb;
}
.theme7 {
    background-color: #6639b7;
}


/*五行颜色*/
.wxjin {
    color: var(--jin);
}

.wxshui {
    color: var(--shui);
}

.wxmu {
    color: var(--mu);
}

.wxhuo {
    color: var(--huo);
}

.wxtu {
    color: var(--tu);
}

.wxjin_bg {
    background-color: var(--jin);
}

.wxshui_bg {
    background-color: var(--shui);
}

.wxmu_bg {
    background-color: var(--mu);
}

.wxhuo_bg {
    background-color: var(--huo);
}

.wxtu_bg {
    background-color: var(--tu);
}

/*八字干支样式*/
.ganzhiStyle {
    font-size: 23px !important;
    font-weight:900 !important;
}

.app-barchart{
    height:125px;
    width:100%;
    display: grid;
    grid-template-columns: 30px auto 75px;
    grid-column-gap: 10px;
    box-sizing: border-box;
}
.app-barchart-bar{
    width:100%;
    height: 10px;
    background-color: #ccc;
    border-radius: 10px;
    margin-top: 7px;
}
.app-barchart-bar-item{
    height: 10px;
    border-radius: 10px;
}

table{
    width: 100%;
    margin: 0px !important;
}
td {
    font-size: 13px !important;
    word-break: keep-all;
    word-wrap:break-word;
    padding: 3px 1px 3px 1px  !important;
}

.subtitle{
    color: #666;
    font-style: normal !important;
    font-size: 11px !important;
}

.wxyin{
    font-style: italic;
}
.wxyang{
    font-style: normal;
}

.shensha{
    color: #2e4487;
}

.canggan{
    font-size: 14px !important;
    font-weight: normal;
}
.xShishen{
    /* font-weight: normal; */
    color: #000;
    font-size: 12px;
}

.nayin{
    font-size:12px !important;
    font-weight: normal;
    cursor: pointer;
}

.dayunYear{
    color: #666;
    font-size: 10px !important;
    font-weight: normal;
    line-height: 14px;
    text-align: center;
    white-space: nowrap;
}
.liunianYear{
    color: #666;
    font-size: 10px !important;
    font-weight: normal;
    line-height: 14px;
    text-align: center;
}
.liuyueMonth{
    color: #666;
    font-size: 10px !important;
    font-weight: normal;
    line-height: 14px;
    text-align: center;
}
.liuriMonth{
    color: #666;
    font-size: 10px !important;
    font-weight: normal;
    line-height: 14px;
    text-align: center;
}

.dayunStyle {
    font-size: 14px !important;
    /* font-weight: normal; */
}

.liunianStyle {
    font-size: 14px !important;
    /* font-weight: normal; */
}

.liuyueStyle{
    font-size: 14px !important;
    /* font-weight: normal; */
}

.liuriStyle{
    font-size: 14px !important;
    /* font-weight: normal; */
}

.cellActive {
    border-radius: 3px;
    background-color: #e2e2e2 !important;
    font-weight: bold !important;
    /* opacity: 0.6; */
}

.liunian-grid-evenrow-line{
    border-top-width: 1px;
    border-top-style: solid; 
    border-top-color: #eee;
}

.headercell{
    color: #000;
    font-size: 13px !important;
}

.liuyitag_he{
    background-color: #e5fff7;
    border-radius: 10px;
    border-width: 1px;
    border-color: #79efca;
    border-style: solid;
    color:#000;
    font-size: 11px;
    padding: 3px 5px 3px 5px;
    margin-right: 5px;
    line-height: 12px;
    display: inline-block;
}
.liuyitag_hui{
    background-color: #e5fff7;
    border-radius: 10px;
    border-width: 1px;
    border-color: #79efca;
    border-style: solid;
    color:#000;
    font-size: 11px;
    font-weight: bold;
    padding: 3px 5px 3px 5px;
    margin-right: 5px;
    line-height: 12px;
    display: inline-block;
}
.liuyitag_cong{
    background-color: #ffecf5;
    border-width: 1px;
    border-color: #ffacd5;
    border-style: solid;
    border-radius: 10px;
    color:#000;
    font-size: 11px;
    padding: 3px 5px 3px 5px;
    margin-right: 5px;
    line-height: 12px;
    display: inline-block;
}
.liuyitag_xing{
    background-color: #ffecf5;
    border-width: 1px;
    border-color: #ffacd5;
    border-style: solid;
    border-radius: 10px;
    color:#000;
    font-size: 11px;
    font-weight: bold;
    padding: 3px 5px 3px 5px;
    margin-right: 5px;
    line-height: 12px;
    display: inline-block;

}
.qianzhao{
    color:#fc345c;
}
.kunzhao{
    color:#0074e4;
}

.kongwang {
    border-width: 2px;
    border-style: dotted;
    border-color: var(--theme-color);
    border-radius: 5px;
    padding: 2px;
}
.suishu{
    font-size: 18px;
    text-align: right;
    top: 10px;
    right: 10px;
}

.paipangrid{
    border-width: 1px;
    border-style: solid;
    border-color: #eee;
    background-color: white !important;
}

.taimingshengCell{
    right: 5px;
    position: absolute;
    cursor: pointer;
    top: 32px;
    color: var(--theme-color);
    font-size: 13px;
}
.app-taimingshen-switch-on {
    cursor: pointer;
    background-image: url(../images/on.png) ;
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
    background-color: var(--theme-color);
    background-blend-mode: lighten;
    width: 20px;
    height: 20px;
    text-align: center;
    display: inline-block;
}
.app-taimingshen-switch-off {
    cursor: pointer;
    background-image: url(../images/off.png) ;
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
    width: 20px;
    height: 20px;
    text-align: center;
    display: inline-block;
}

.dayun-grid{
    display: table;
    width: 100%;
    height: 100%;
}
.dayun-grid-row{
    display: table-row;
    margin-top: 2px;
    margin-bottom: 2px;
}
.dayun-grid-cell{
    display: table-cell;
    width: 9.09%;
    font-size: 13px !important;
    word-break: keep-all;
    word-wrap:break-word;
    padding: 3px 1px 3px 1px  !important;
    margin: 0px 0px 0px 0px  !important;
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: #eee;
    text-align:center;
    line-height: 18px;
    margin-left: -1px  !important;
    margin-top: -1px !important;
}

.liunian-grid{
    display: table;
    width: 100%;
    height: 100%;
}
.liunian-grid-row{
    display: table-row;
    margin-top: 2px;
    margin-bottom: 2px;
}
.liunian-grid-cell{
    display: table-cell;
    width: 9.09%;
    font-size: 13px !important;
    /* font-weight: bold; */
    word-break: keep-all;
    word-wrap:break-word;
    padding: 2px 1px 2px 1px  !important;
    margin: 0px 0px 0px 0px  !important;
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: #eee;
    text-align:center;
    line-height: 14px;
    margin-left: -1px  !important;
    margin-top: -1px !important;
}

.liunian2-grid{
    display: table;
    width: 100%;
    height: 100%;
}
.liunian2-grid-row{
    display: table-row;
    margin-top: 2px;
    margin-bottom: 2px;
}
.liunian2-grid-cell{
    display: table-cell;
    width: 10%;
    font-size: 13px !important;
    /* font-weight: bold; */
    word-break: keep-all;
    word-wrap:break-word;
    padding: 3px 1px 3px 1px  !important;
    margin: 0px 0px 0px 0px  !important;
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: #eee;
    text-align:center;
    line-height: 18px;
    margin-left: -1px  !important;
    margin-top: -1px !important;
}

.liuyue-grid{
    display: table;
    width: 100%;
    height: 100%;
}
.liuyue-grid-row{
    display: table-row;
}
.liuyue-grid-cell{
    display: table-cell;
    width: 8.33%;
    font-size: 13px !important;
    /* font-weight: bold !important; */
    word-break: keep-all;
    word-wrap:break-word;
    padding: 3px 1px 3px 1px  !important;
    margin: 0px 0px 0px 0px  !important;
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: #eee;
    text-align:center;
    line-height: 18px;
    margin-left: -1px  !important;
    margin-top: -1px !important;
}

.liuri-grid{
    display: table;
    width: 100%;
    height: 100%;
}
.liuri-grid-row{
    display: table-row;
}
.liuri-grid-cell{
    display: table-cell;
    width: 3.33%;
    font-size: 13px !important;
    /* font-weight: bold !important; */
    word-break: keep-all;
    word-wrap:break-word;
    padding: 3px 3px 3px 3px  !important;
    margin: 0px 0px 0px 0px  !important;
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: #eee;
    text-align:center;
    line-height: 18px;
    margin-left: -1px  !important;
    margin-top: -1px !important;
}
.shishen-tag {
    cursor: pointer;
}
.shensha-tag {
    cursor: pointer;
}
.popup-tip-box {
    border-top-left-radius: 15px !important;
    border-top-right-radius: 15px !important;
    /* border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important; */
    box-sizing: border-box;
    padding: 15px;
    width: var(--max-page-width);
    height: 500px;
    bottom: 10px !important;
    background-color: #fefefe !important;
}
.popup-tip-content {
    padding: 15px;
    overflow: auto;
    height: 420px;
}
.popup-yinpan-box {
    border-top-left-radius: 15px !important;
    border-top-right-radius: 15px !important;
    box-sizing: border-box;
    padding: 15px;
    width: var(--max-page-width);
    height: 200px !important;
    bottom: 10px !important;
    background-color: #fefefe !important;
}
.popup-yinpan-content {
    padding: 15px;
    overflow: auto;
    height: 200px !important;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
}
.popup-yinpan-shipan-btn {
    width: 60%;
    border-width: 0px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    background-color: var(--theme-color);
    color: #fff;
}
.popup-yinpan-kepan-btn {
    width: 60%;
    border-width: 0px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    background-color: var(--theme-color);
    color: #fff;
}
.popup-shanxiang-box {
    border-top-left-radius: 15px !important;
    border-top-right-radius: 15px !important;
    /* border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important; */
    box-sizing: border-box;
    padding: 15px;
    width: var(--max-page-width);
    height: 200px !important;
    bottom: 10px !important;
    background-color: #fefefe !important;
}
.popup-shanxiang-content {
    padding: 15px;
    overflow: auto;
    height: 200px !important;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
}
.popup-shanxiang-plus {
    text-align: center;
    color: #000;
    width: 35px;
    border-width: 1px;
    border-color: #e2e2e2;
    background-color: #e2e2e2;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.popup-shanxiang-minus {
    text-align: center;
    color: #000;
    width: 35px;
    border-width: 1px;
    border-color: #e2e2e2;
    background-color: #e2e2e2;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.popup-shanxiang-input {
    text-align: center;
    width: 65px;
    border-width: 1px;
    border-color: #e2e2e2;
    box-sizing: border-box;
}
.popup-shanxiang-btn {
    width: 60%;
    border-width: 0px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    background-color: var(--theme-color);
    color: #fff;
}

/*BEGIN: 覆盖layui主题色*/
.layui-table {
    color: #000;
    /* pointer-events: none; */
}

.layui-card-body{
    padding: 2px 2px;
}

.layui-form-radio:hover *, .layui-form-radioed, .layui-form-radioed>i {
    color: var(--theme-color);
}

.layui-form-checked span, .layui-form-checked:hover span {
    background-color: var(--theme-color);
}

.layui-form-onswitch {
    border-color: var(--theme-color);
    background-color: var(--theme-color);
}

.layui-laydate .layui-this {
    background-color: var(--theme-color)!important;
    color: #fff!important;
}
.layui-laydate-header {
    background-color: var(--theme-color)!important;
    color: #fff!important;
}
.layui-btn {
    background-color: var(--theme-color);
    border-radius: 5px;
}
.layui-border-green {
    border-color: var(--theme-color)!important;
    background-color: #fff;
    color: var(--theme-color)!important;
}
.layui-tab-brief>.layui-tab-title .layui-this {
    color: var(--theme-color);
}
.layui-tab-brief>.layui-tab-more li.layui-this:after, .layui-tab-brief>.layui-tab-title .layui-this:after {
    border-bottom: 2px solid var(--theme-color);
}
.layui-form-select dl dd.layui-this {
    background-color: var(--theme-color);
}
.laydate-btns-now:hover{
    color: var(--theme-color) !important;
}
.laydate-btns-confirm:hover{
    color: var(--theme-color) !important;
}
/* .layui-tab{
    margin: 0;
} */
.layui-layer-btn .layui-layer-btn0 {
    border-color: var(--theme-color) !important;
    background-color: var(--theme-color) !important;
    color: #fff;
}
.layui-layer-hui {
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}
.layui-layer-title {
    font-size: 16px;
    font-weight: bold;
}
.layui-tab-title li {
    padding: 0 8px;
    min-width: 45px !important;
}
.layui-form-item {
    margin-bottom: 5px !important;
}
.layui-table img {
    max-width: 100% !important;
}
.layui-table tbody tr:hover {
	background-color: white;
}
/*END*/

.font10px {
    display: inline-block;
    font-size: 12px;
    transform : scale(0.83,0.83);
}

/* 覆盖rolldate样式 */
.rolldate-container .rolldate-confirm {
    color: var(--theme-color) !important;
}
/*END*/

/**/
.rolldate-panel{
    left: 0;
    right: 0;
    width: var(--max-page-width) !important;
    margin: 0 auto;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.shizhudate-panel{
    left: 0;
    right: 0;
    width: var(--max-page-width) !important;
    margin: 0 auto;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
/**/