/*
样式设计
 */
.watermarkContainer {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.watermarkLayer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    z-index: -1;
}

.watermarkItem {
    color: rgba(0, 0, 0, 0.1);
    font-size: 14px;
    transform: rotate(-45deg);
    position: absolute;
    white-space: pre-line; /* 允许换行 */
}