.divider {
    min-height: 15px;
    height: 15px; /* 可以根据需要调整高度 */
    display:flex;
    justify-content: center;
}
.color-block {
    min-height:20px;
    height: 20px;
    width:70%;
    background-color: #004EA1; /* 深蓝色 */
}
.color-block:nth-child(2) {
    height: 20px;
    width:10%;
    background-color: #1374B8; /* 浅蓝色 */
}
.color-block:nth-child(3) {
    min-height:20px;
    height: 20px;
    width:10%;
    background-color: #5DAFDE; /* 更浅的蓝色 */
}
.color-block:nth-child(4) {
    height: 20px;
    width:10%;
    background-color: #5BB6B9; /* 绿色 */
}
