﻿/*validate 验证控件 样式*/
label.error {
            clear: both;
            color: red;
            font-weight: normal;
            font-size:14px;
            margin: 0;
            padding: 0;
        }
input.error, select.error,textarea.error { border: 1px solid red !important;}

/*可以隐藏未编译的 Mustache 标签直到实例准备完毕（HTML绑定Vue实例，在页面加载时会闪烁）*/
[v-cloak] { display: none;}

.tool-search-span {
    width: 100%;
    min-height: 45px;
    border-bottom: 1px solid #cee7fd;
    height: auto;
    margin-top:5px;
}
.tool-search-span .tool-group, .tool-search-span .search-group {
    float: left;
    line-height: 30px;
}
.tool-group {
    /*width: 50%;*/
    text-align: left;
}
.pageList .pages{
    height: auto !important;
    margin: .30px 0 !important;

}
.tcdPageCode {
    clear: both;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.tcdPageCode a {
    color: #333; /*页码前景色*/
    border-radius: 10px;
    min-width:40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    padding: 0 20px;
    box-sizing: border-box;
    border: 1px solid #D8D8D8; /*页码边框色*/
}
.tcdPageCode a:hover {
    text-decoration: none;
    border: 1px solid #003e88;
}
/*当前页*/
.tcdPageCode a.current {
    color: #fff !important;
    background-color: #003e88 !important; /*页码背景色：（ff8f21橘色）*/
    cursor:default;
    border: 1px solid #003e88 !important;
}
/*禁用页*/
.tcdPageCode a.disabled {
    color: #bfbfbf !important;
    background: #f2f2f2 !important;
    border: 1px solid #ddd !important;
    cursor:default;
}
/*移动端自适应*/
@media only screen and (max-width: 750px) {
    .tcdPageCode {
        padding: 0;
        width: 100%;
    }
    .tcdPageCode a{
        font-size: .24rem;
        height: .5rem;
    }
}
.pagination {
    margin:0 !important;
}
.line_34{line-height: 34px;}
.padding_lr_0{padding-left:0 !important; padding-right:0 !important;}