
/** {*/
/*            margin: 0;*/
/*            padding: 0;*/
/*            box-sizing: border-box;*/
/*            font-family: 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;*/
/*        }*/

/*body {*/
/*            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);*/
/*            min-height: 100vh;*/
/*            display: flex;*/
/*            justify-content: center;*/
/*            align-items: center;*/
/*            padding: 20px;*/
/*        }*/

.lunar_body_div{
     display: none;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    z-index: 800;
    margin: 0;
    box-sizing: border-box;
    font-family: 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    /*background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);*/
    min-height: 100vh;
    /*display: flex;*/
    justify-content: center;
    align-items: center;
}
.date-picker-container {
            top: 50%;
            left: 50%;
            margin: auto 0;
            transform: translate(-50%, -50%);
            background: white;
            border-radius: 1rem;
            box-shadow: 0 0.9rem 2rem rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 500px;
            /*padding: 1rem;*/
            position: relative;
            overflow: hidden;
            /*padding: 1rem;*/

        }

        .date-picker-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #3498db, #9b59b6, #e74c3c);
        }

        .header {
            text-align: center;
            margin-bottom: 24px;
            color: #2c3e50;
        }

        .header h2 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .header .selected-date {
            font-size: 16px;
            color: #7f8c8d;
        }

        .pickers-container {
            display: flex;
            justify-content: space-between;
            height: 220px;
            margin-bottom: 30px;
            position: relative;
        }

        .picker-wrapper {
            flex: 1;
            position: relative;
            overflow: hidden;
        }

        .picker-label {
            text-align: center;
            font-size: 14px;
            color: #7f8c8d;
            margin-bottom: 8px;
        }

        .picker {
            height: 100%;
            margin: 0;
            padding: 0;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .picker-list {
            list-style: none;
            margin: 0;
            padding: 0;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            transition: transform 0.3s ease-out;
        }

        .picker-item {
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: #95a5a6;
            transition: all 0.2s;
            position: relative;
            margin: 0;
            padding: 0;
        }

        .picker-item.selected {
            font-weight: bold;
            color: #2c3e50;
            font-size: 18px;
            transform: scale(1.1);
            background-color: whitesmoke;
        }

        .picker-item.blur {
            filter: blur(1px);
            opacity: 0.9;
        }


        .buttons {
            display: flex;
            justify-content: space-between;
        }

        button {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-cancel {
            background: #f5f5f5;
            color: #7f8c8d;
            margin-right: 12px;
        }

        .btn-confirm {
            background: linear-gradient(90deg, #3498db, #9b59b6);
            color: white;
            box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
        }

        button:active {
            transform: translateY(2px);
        }

        .btn-cancel:active {
            background: #e0e0e0;
        }

        .btn-confirm:active {
            box-shadow: 0 2px 6px rgba(52, 152, 219, 0.3);
        }

        .loading {
            text-align: center;
            padding: 20px;
            color: #7f8c8d;
        }

        .error {
            text-align: center;
            padding: 20px;
            color: #e74c3c;
        }

        .retry-btn {
            background: #3498db;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 4px;
            margin-top: 10px;
            cursor: pointer;
        }

        /* 鼠标悬停效果 */
        .picker:hover .picker-item:not(.selected) {
            opacity: 0.8;
        }

        /* 鼠标拖拽时的样式 */
        .picker.dragging {
            cursor: grabbing;
        }

        .picker.dragging .picker-list {
            transition: none;
        }
