/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 30 2025 | 03:53:02 */
/* 原有的垂直分隔线（保留但注释掉，可根据需要切换） */
/*
.wpml-ls-item-zh-hant {
    border-style: solid;
    border-width: 0px;
    border-right: 1px solid;
    margin: 0px !important;
    line-height: 0px;
    padding-right: 5px !important;
}
*/

/* 新的文字分隔线样式 */
.wpml-ls-item-zh-hant {
    position: relative;
    margin: 0 5px !important; /* 增加左右间距 */
    padding: 0 5px !important;
}

.wpml-ls-item-zh-hant::after {
    content: "|"; /* 分隔线字符，可以替换为其他符号如 "/" 或 "•" */
    position: absolute;
    right: -5px; /* 调整分隔线位置 */
    top: 50%;
    transform: translateY(-50%);
    color: #888; /* 分隔线颜色 */
    font-weight: normal;
}

.wpml-ls-item-zh-hant::after {
    content: "|"; /* 替换为其他字符如 "/"、"•" 或 "—" */
    color: #888; /* 分隔线颜色 */
    font-size: 16px; /* 分隔线大小 */
    font-weight: bold; /* 分隔线粗细 */
}

/* 移除最后一个语言项后的分隔线 */
.wpml-ls-item:last-child::after {
    content: none;
}