.wedo_navbar-item {
    font-variant: small-caps;
    margin-left: 30px;
}

.wedo_navbar-item .wedo-nav-link:hover {
    /* 自定义背景颜色 */
    background-color: blue;
    /* 字体颜色 */
    color: white;

}

#wedo-layout-ul {
    display: flex;
    /* 垂直居中 */
    text-align: center;
    /* 水平居中 */
    justify-content: center;
    /* 移除默认的圆点 */
    list-style-type: none;

    padding: 0;

}

#wedo-layout-ul li {

    margin: 0 15px;
    /* 每个导航项之间的间距 */
}

#wedo-layout-ul a {
    border-radius: 10%;
    /* 圆角样式 */
    transition: all 0.3s;

}

#wedo-layout-ul a:hover {
    background-color: blue;
    /* 选中背景色 */
    color: white;
    padding: 0px 10px;
}

#wedo-layout-ul a.active {
    background-color: blue;
    /* 选中背景色 */
    color: white;
    padding: 12px 24px;
}

#wedo-layout-ul .wedo_navbar-item .wedo-nav-link {
    /*去掉下划线*/
    text-decoration: none;
}


.wedo_rowmargin {
    margin-top: 10px;
    /* 上边距 */
    margin-bottom: 10px;
    /* 下边距 */
}

.wedo_colummargin {
    margin-left: 5px;
    /* 左边距 */
    margin-right: 5px;
    /* 有边距 */
}

#wedoinputarea {
    width: 100%;
    padding: 8px;
    margin: 10px 0;
    resize: none;
    background-color: #f0f8ff;
}

.highlight {
    background-color: yellow;
    transition: background-color 0.2s;
}

#article {
    padding: 16px 24px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    min-height: 200px;
    line-height: 1.6;
    font-size: 16px;
}