    .girlfriend-container {
        max-width: 600px;
        margin: 20px auto;
        padding: 20px;
        border-radius: 20px;
        background-image: linear-gradient(0deg, #fbfbfb, #ffffff);
        border: 2px solid #ffffff;
        box-shadow: 0 0px 8px rgb(0 0 0 / 10%);
    }

    .girlfriend-form-group {
        margin-bottom: 15px;
    }

    .girlfriend-textarea,
    .girlfriend-output {
        width: 100%; /* 使宽度一致 */
        padding: 10px;
        border: 1px solid #ced4da;
        border-radius: 5px;
        resize: none;
    }

    .girlfriend-button {
        width: 100%; /* 使按钮宽度一致 */
        padding: 10px;
        background-color: #2655ff; /* 更改背景颜色 */
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        margin-top: 10px; /* 增加按钮与输入框的间距 */
        text-align: center; /* 按钮文字居中 */
    }

    .girlfriend-button:hover {
        background-color: #001e7a; /* 按钮悬停颜色 */
    }

    .girlfriend-output {
        background-color: #1a1a1a;
        border-radius: 5px;
        color: #00db00;
        min-height: 100px;
        margin-top: 15px;
    }