@charset "UTF-8";
html {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    font-size: 12px;
    color: #606266;
    overflow: hidden;
    background-color: white;
    min-width: 1000px;
    min-height: 600px;
    font-family: "微软雅黑";
}

body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

footer {
    display: none;
}

* {
    box-sizing: border-box;
}

input::placeholder {
    color: #bfbfbf;
}

input:-webkit-autofill {
    background-color: transparent;
}


.list-search {
    clear: both;
    overflow: hidden;
    height: auto;
}

.list-search > .item {
    display: inline-block;
    width: auto;
    padding-bottom: 10px;
    padding-right: 10px;
}

.list-search > .item > label {
    display: inline-block;
    height: 32px;
    line-height: 32px;
    padding-right: 5px;
    font-weight: bold;
    vertical-align: middle;
}

.list-search > .item > .layui-input {
    height: 32px;
    width: 190px;
    vertical-align: middle;
}

.list-search > .item > .layui-button {
    padding: 0 15px;
    height: 32px;
    vertical-align: middle;
}

.list-search > .item > .date {
    display: inline-block;
    vertical-align: middle;
}

.list-search > .item > .date > span {
    display: inline-block;
    padding: 0 5px;
    height: 32px;
    line-height: 32px;
    vertical-align: middle;
}

.list-search > .item > .date > .layui-input {
    height: 32px;
    width: 150px;
    display: inline-block;
    vertical-align: middle;
}

.list-button {
    height: 40px;
    position: relative;
    padding-top: 8px;
}

.list-button > .layui-button {
    padding: 0 15px;
    font-size: 12px;
    border-radius: 3px;
    height: 28px;
    min-width: 70px;
    margin-right: 5px;
}

.list-button > .refresh {
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 50%;
}

.list-table {
    width: 100%;
    height: auto;
    margin-top: 8px;
    border: 0;
    border-collapse: collapse;
    border-spacing: 0;
}

.list-table > thead > tr > th {
    border-bottom: 1px solid #dfe6ec;
    height: 40px;
    word-break: break-word;
    background-color: #f8f8f9;
    padding: 0 5px;
    font-weight: 500;
    text-align: center;
}


.list-table > tbody > tr:hover {
    background-color: rgb(245, 247, 250);
}

.list-table > tbody > tr > td {
    text-align: center;
    padding: 8px 5px;
    word-break: break-word;
    border-bottom: 1px solid #dfe6ec;
}

span.button {
    margin: 0 3px;
    color: #1890ff;
    cursor: pointer;
    opacity: 1;
    user-select: none;
}

span.button:hover {
    opacity: .6;
}

span.button:active {
    opacity: 1;
}

.list-table > tbody > tr > td > .icon {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    font-size: 0;
}

.list-pager {
    padding: 20px 0 30px 0;
    position: relative;
}

.list-pager > table {
    border: 0;
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%;
    height: 30px;
    margin: 0;
    padding: 0;
}

.list-pager > table > tbody > tr > td {
    padding: 0;
    margin: 0;
}

.list-pager .prev,
.list-pager .next {
    height: 28px;
    width: 28px;
    background-color: #f4f4f5;
    border: 0;
    outline: none;
    position: relative;
    cursor: pointer;
    padding: 0;
    margin: 0 2px;
    font-size: 12px;
    border-radius: 3px;
    vertical-align: middle;
    user-select: none;
}

.list-pager .prev:disabled,
.list-pager .next:disabled{
    cursor: no-drop;
    color: #c0c4cc;
}

.list-pager .prev i,
.list-pager .next i {
    width: 16px;
    height: 16px;
    position: absolute;
    left: 6px;
    top: 6px;
    background-size: 100% 100%;
}

.list-pager .prev i {
    background-image: url(../img/left-outlined-normal.png);
}

.list-pager .prev:disabled i {
    background-image: url(../img/left-outlined-disabled.png);
}

.list-pager .next i {
    background-image: url(../img/right-outlined-normal.png);
}

.list-pager .next:disabled i {
    background-image: url(../img/right-outlined-disabled.png);
}

.list-pager .pages {
    display: inline-block;
    font-size: 12px;
    text-align: center;
    min-width: 28px;
    height: 28px;
    line-height: 27px;
    vertical-align: middle;
    background-color: #f4f4f5;
    color: #606266;
    border-radius: 3px;
    cursor: pointer;
    padding: 0 2px;
    margin: 0 2px;
    user-select: none;
}

.list-pager .pages:hover,
.list-pager .pages[data-active="true"] {
    background-color: #1890ff;
    color: white;
}

.list-files {
    padding: 15px 0 0 0;
    overflow: hidden;
    clear: both;
}

.list-files > .item {
    padding: 0 25px 15px 0;
    float: left;
    position: relative;
}

.list-files > .item > .folder {
    width: 130px;
    display: block;
    height: 130px;
    object-fit: fill;
    cursor: pointer;
}

.list-files > .item > .image {
    width: 130px;
    height: 130px;
    display: block;
    object-fit: cover;
    user-select: none;
    border-radius: 4px;
}

.list-files > .item > .video {
    width: 130px;
    height: 130px;
    display: block;
    background-color: black;
    border-radius: 4px;
}

.list-files > .item > span {
    display: block;
    width: 130px;
    padding: 8px 0 5px 0;
    text-align: center;
    white-space: nowrap;
    text-overflow: clip;
}

.list-files > .item > .play-button {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 45px;
    top: 45px;
}

.list-files > .item > .checkbox {
    width: 130px;
    text-align: center;
}

.file-nav {
    padding-left: 10px;
}

.file-nav > .item {
    font-weight: 500;
    cursor: pointer;
    user-select: none;
}

.file-nav > .item[data-checked="true"] {
    color: #1890ff;
}

.file-nav > .item > span {
    display: inline-block;
    padding: 0 5px;
}

/* APP充值配置页面相关配置 */
.invest > table {
    width: auto;
    height: auto;
}

.invest > table > tbody > tr > td.name {
    text-align: right;
    padding: 8px 0;
    width: 150px;
}

.invest > .item {
    padding: 8px 0;
}

.invest > .item > * {
    display: inline-block;
}

.invest > .item > .text {
    height: 38px;
    line-height: 38px;
}

.invest > table > tbody > tr > td.value {
    text-align: left;
    padding: 8px 0;
}

.invest > table > tbody > tr > td.value > .upload {
    display: block;
    position: relative;
}

.invest > table > tbody > tr > td.value > .upload > span {
    display: block;
    height: 38px;
    line-height: 37px;
    text-align: center;
    background-color: #1890ff;
    border-radius: 4px;
    color: white;
    font-size: 13px;
    user-select: none;
    pointer-events: none;
    padding: 0 8px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.invest > table > tbody > tr > td.value > .upload > input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    opacity: 0;
    cursor: pointer;
    height: 38px;
}

.workbench > .activity {
    font-size: 15px;
    color: #606266;
    padding-bottom: 10px;
}

.workbench > .active-layout {
    display: flex;
    width: 100%;
}

.workbench > .active-layout > .item {
    flex: 1;
    height: 100px;
    background-color: #f8f8f9;
    border-radius: 6px;
}

.workbench > .active-layout > .border {
    display: inline-flex;
    width: 20px;
}

.workbench > .active-layout > .item > .value {
    text-align: center;
    margin-top: 20px;
    font-size: 23px;
    color: #1890ff;
    font-weight: bold;
}

.workbench > .active-layout > .item > .label {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
}

.record-total {
    display: inline-block;
    height: 28px;
    line-height: 27px;
    font-size: 13px;
    font-weight: bold;
    color: #606266;
}

.sign-in .layui-input {
    display: inline-block;
    width: 200px;
}