.web-notice-tab{
    display: flex;
    justify-content: space-between;
    width: 100%;
    /*border-bottom: 1px solid #D9E5FF;*/
    background: #f7f7f7;
    padding: 6px;
    gap: 10px;
    border-radius: 8px;
}
.web-notice-tab span{
    width: 25%;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
    border: 1px solid #f7f7f7;
}
.web-notice-tab span a {
    padding: 8px 0;
    color: #1a1e21;
    width: 100%;
    height: 100%;
    display: inline-block;
}

.web-notice-tab span.active,
.web-notice-tab span:hover{
    background: #fff;
    border-radius: 8px;
    font-weight: bold;
    position: relative;
    box-shadow: 0 3px 8px rgba(221, 227, 236, 0.8);
    border: 1px solid #eee8e8;
}
.web-notice-tab span.active::after,
.web-notice-tab span:hover::after{
    content: "";
    display: block;
    width: 10%;
    height: 3px;
    background: #FFC461;
    border-radius: 8px;
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
}
