.icon-view {
    width: 13px;
    height: 13px;
    display: inline-block;
}
.android-icon {
    background: url('../../static/img/android.png')no-repeat;
    background-position: center;
    background-size: 90%;
}
.ios-icon {
    background: url('../../static/img/ios.png')no-repeat;
    background-position: center;
    background-size: 90%;
}
.windows-icon {
    background: url('../../static/img/windows.png')no-repeat;
    background-position: center;
    background-size: 90%;
}
.linux-icon {
    background: url('../../static/img/linux.png')no-repeat;
    background-position: center;
    background-size: 90%;
}
.macos-icon {
    background: url('http://p15.qhimg.com/t11a4d74fffa8111a3ae19a877d.png')no-repeat;
    background-position: center;
    background-size: 90%;
}


.container {
    display: flex;
    flex-wrap: wrap; /* 启用换行 */
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    gap: 10px; /* 标签之间的间隔 */
}

.light-tag {
    display: inline-flex; /* 让标签内的内容在同一行内 */
    align-items: center; /* 垂直居中 */
    margin-bottom: 5px; /* 标签之间的底部间隔 */
}

.icon-view {
    margin-right: 5px; /* 图标和文本之间的间隔 */
}

.tag-text {
    white-space: nowrap; /* 防止文本换行 */
}

.video-upload-field {
    margin-bottom: 18px;
}

.video-dropzone {
    min-height: 138px;
    margin-bottom: 10px;
    padding: 22px 18px;
    border: 1px dashed #b8c4df;
    border-radius: 8px;
    background: #f8faff;
    color: #6f7a8d;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: border-color .2s ease, background-color .2s ease;
}

.video-dropzone:hover,
.video-dropzone.is-dragover {
    border-color: #4169e1;
    background: #f0f4ff;
}

.video-dropzone.has-file {
    border-color: #4169e1;
    background: #f5f7ff;
}

.video-upload-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #4169e1;
    background: #e8eeff;
    font-size: 26px;
    line-height: 31px;
    text-align: center;
    margin-bottom: 10px;
}

.video-upload-title {
    color: #465269;
    font-size: 15px;
    line-height: 22px;
    text-align: center;
}

.video-upload-note,
.video-upload-name {
    margin-top: 6px;
    color: #99a3b3;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
}

.video-upload-name {
    color: #4169e1;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.video-upload-progress {
    display: none;
    margin: 8px 0 18px;
}

.video-upload-progress-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #8b95a6;
    font-size: 12px;
    line-height: 22px;
}

.video-upload-progress-track {
    width: 100%;
    height: 8px;
    overflow: hidden;
    border-radius: 100px;
    background: #eef2f7;
}

.video-upload-progress-bar {
    width: 0;
    height: 100%;
    border-radius: 100px;
    background: #4169e1;
    transition: width .2s ease;
}

#CreateChannelModal .modal-footer button:disabled,
#editChannelModal .modal-footer button:disabled {
    opacity: .7;
    cursor: not-allowed;
}

#CreateChannelModal .modal-body,
#editChannelModal .modal-body {
    max-height: calc(100vh - 180px);
    overflow-y: auto;
}
