.copy-text-container {
    position: relative;
}

.copy-text-button {
    display: block;
    width: 100%;
    height: 40px;
    background-color: #2475f5;
    color: white;
    text-align: center;
    line-height: 40px;
    text-decoration: none; /* 无下划线 */
    margin-bottom: 20px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 16px;
}

.copy-text-button:hover {
    background-color: #1a5cc8; /* 悬停时颜色稍深 */
}

.copy-text-content {
    line-height: 1.8;
    white-space: pre-wrap;
    word-wrap: break-word;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 4px;
}