 .cir-container {
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            background: white;  /* 纯白色背景 */
            font-family: Arial, sans-serif;
        }

        .circle-container {
            align-self: center;
            position: relative;
            width: 100%; /* 调整宽度以形成椭圆 */
            height: 500px; /* 调整高度以形成椭圆 */
            display: flex;
            justify-content: center; /* 水平居中 */
            align-items: center; /* 垂直居中 */
            overflow: hidden;
            margin: 20px auto; /* 添加上下间距 */
            border-radius: 50%;  /* 使其成为椭圆形 */
            background-color: rgba(255, 250, 240, 0.9); /* 浅米色 */ /* 适合的背景颜色 */
        }

        .affirmation {
            position: absolute;
            padding: 15px 25px;
            border-radius: 12px;
            font-size: 20px;
            color: white;  /* 改为深灰色文字，因为背景变浅了 */
            opacity: 0;
            text-align: center;
            box-shadow: 0 4px 15px rgba(141, 156, 113, 0.15);
            transition: all 1s ease-in-out;
            max-width: 300px;
            left: 50%; /* 水平居中 */
            transform: translateX(-50%); /* 使其真正居中 */
        }

        .author {
            display: block;
            font-size: 14px;
            margin-top: 10px;
            font-style: italic;
            opacity: 0.8;
            color: #666666;  /* 改为灰色，配合浅色背景 */
        }

        /* 更浅色的绿色系列 */
        .bg-1 { background-color: rgba(198, 207, 181, 0.9); }  /* 最浅的变体 */
        .bg-2 { background-color: rgba(189, 199, 171, 0.9); }  /* 稍深一点 */
        .bg-3 { background-color: rgba(180, 191, 161, 0.9); }  /* 中间色 */
        .bg-4 { background-color: rgba(171, 183, 151, 0.9); }  /* 稍深 */
        .bg-5 { background-color: rgba(162, 175, 141, 0.9); }  /* 最深的变体 */

        .add-button {
            position: absolute;
            top:40px;
            right: 0;
            padding: 10px 20px;
            border: none;
            border-radius: 4px !important;
            background: rgba(255, 250, 240, 0.9);  /* 使用最浅的变体 */
            color: #8D9C71;  /* 深灰色文字 */
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s;
            box-shadow: 0 2px 10px rgba(141, 156, 113, 0.15);
            margin-top: 20px; /* 添加一些上边距以与肯定语分开 */
        }

        .add-button:hover {
            color:#ffffff;
            background: #8D9C71;  /* hover时稍微深一点 */
        }

        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .popup-container {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            width: 300px;
            text-align: center;
        }

        .popup-container input {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 16px;
            box-sizing: border-box;
        }

        .popup-container button {
            padding: 10px 20px;
            margin: 5px;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn {
            background: rgba(198, 207, 181, 0.9);  /* 使用最浅的变体 */
            color: #4A4A4A;
        }

        .cancel-btn {
            background: #eee;
            color: #666;
        }

        .submit-btn:hover {
            background: rgba(189, 199, 171, 0.95);
        }

        .cancel-btn:hover {
            background: #ddd;
        }

        #userAffirmationsContainer {
            position: absolute; /* 绝对定位 */
            top: 50%; /* 垂直居中 */
            left: 50%; /* 水平居中 */
            transform: translate(-50%, -50%); /* 使其真正居中 */
            z-index: 20; /* 确保在其他元素之上 */
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: opacity 0.5s ease-in-out; /* 添加淡入效果 */
        }

        .user-affirmation {
            margin: 5px 0; /* 添加一些间距 */
            color: white; /* 文字颜色 */
            font-size: 20px; /* 字体大小 */
            text-align: center; /* 文本居中 */
            z-index: 20; /* 确保在其他元素之上 */
            background-color: rgba(198, 207, 181, 0.9); /* 设置背景色 */
            border-radius: 12px; /* 设置圆角 */
            padding: 10px 15px; /* 设置内边距 */
            max-width: 250px;
            box-shadow: 0 4px 15px rgba(141, 156, 113, 0.15); /* 添加阴影效果 */
            animation: float 3s ease-in-out infinite; /* 添加漂浮动画 */
        }

        @keyframes float {
            0% {
                transform: translateY(0); /* 初始位置 */
            }
            50% {
                transform: translateY(-10px); /* 向上漂浮 */
            }
            100% {
                transform: translateY(0); /* 回到初始位置 */
            }
        }
        
        /* 添加到现有CSS文件底部 */
        .affirmation-toggle-container {
            text-align: center;
            margin-bottom: 20px;
            margin-top: 30px;
        }
        
        #affirmationToggle {
            padding: 15px 30px;
            background: #8D9C71;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 20px;
            font-family: 'Lato', sans-serif;
             font-weight: 300; 
        }
        
        .affirmation-plugin-container {
            transition: all 0.3s ease;
        }
        
        .cr-hidden {
            display: none;
        }

        /* 手机适配 */
        @media screen and (max-width: 768px) {
            .circle-container {
                width: 100%; /* 使宽度适应屏幕 */
                height: 300px; /* 根据需要调整高度 */
                margin-top: 60px; 
                border-radius: 0 !important;/* 减少上下间距 */
                background-color: transparent !important;
            }
            #affirmationToggle {
                padding: 10px 20px;
            }
            
            .affirmation-toggle-container{
                margin-top:0px;
            }
        
            .affirmation {
                font-size: 16px; /* 调整字体大小 */
                padding: 10px 15px; /* 调整内边距 */
                max-width: 90%; /* 限制最大宽度 */
            }
        
            .add-button {
                font-size: 14px; /* 调整按钮字体大小 */
                padding: 8px 15px; /* 调整按钮内边距 */
                left: 50%;
                transform: translateX(-50%);
            }
        }