/* 搜索结果样式 */
.search-results-container {
    margin-top: 8px;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    background-color: #fff;
    z-index: 100;
}

.search-results-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.search-result-item {
    padding: 10px 12px;
    background-color: #fff;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.search-result-item:hover {
    background-color: #f7f7f7;
}

.search-result-title {
    font-weight: 500;
    color: #1d2327;
    margin-bottom: 4px;
}

.search-result-url {
    font-size: 12px;
    color: #555d66;
    word-break: break-all;
}

.search-result.no-results {
    padding: 10px 12px;
    color: #666;
    text-align: center;
}


/* 响应式调整 */
@media (max-width: 768px) {
    .cm-course-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cm-course-button {
        width: 100%;
    }
}


/*------------------------------------------------------*/

div.my-video {
    display: flex;        /* 使用 Flexbox 布局 */
    justify-content: center; /* 水平居中 */
    align-items: center;  /* 垂直居中 */
}

div.my-video div.item {
    display: flex;        /* 使用 Flexbox 布局 */
    flex-direction: column; /* 设置子元素垂直排列 */
    align-items: center;  /* 子元素在交叉轴上（这里是垂直轴）居中 */
    margin-left: 15px;         /* 子元素之间的间隔 */
    margin-right: 15px;         /* 子元素之间的间隔 */
}

div.my-video div.item img {
    /*width: 32px;*/
    height:32px;
}



/*-------------------------------------------------------*/
ul.my-course{
    padding-left: 0px;
}

ul.my-course li{
    list-style: none;
    margin-top:10px;
    height: 20px;
    line-height:20px;
    margin-left: -5px;
}

ul.my-course li span.my-space{
    display:inline-block; width: 20px;
}
