.yema{
    display: flex;          /* 使用弹性布局 */
    justify-content: center; /* 水平居中 */
    align-items: center;     /* 垂直居中 */
    margin: 0;
    padding: 3rem 0;
    clear: both;
    list-style: none;        /* 移除默认列表样式 */
    gap: 10px;               /* 控制按钮之间的间距 */
}

.yema a,.yema span{
    /* 移除导致垂直排列的底部边距 */
    margin-bottom: 0;
    font-size: 14px;
    color: #3b3b3b;
    font-weight: 700;
    padding: 9px 18px;
    background: hsla(0,0%,100%,.5);
    box-shadow: 0 4px 24px #2764af1a;
    border-radius: 4px;
    text-decoration: none;   /* 移除链接下划线 */
}

.yema a:hover,.yema a:focus,.yema > a.thisclass,.yema > span.thisclass{
    color: #fff;
    background-color: #3858e9;
    background: linear-gradient(200deg,#29acfe,#2468f2 89%);
}