  /* 卡片内部样式 */
       p {
            margin: 5px 0;
            font-size: 16px;
            line-height: 1.6;
            text-align: justify;            /* 两端对齐 */
            /* Chrome, Safari */
            /* -webkit-hyphens: auto;  */
            /* Firefox */          
            /* -moz-hyphens: auto;   */
              /* 标准语法 */            
            /* hyphens: auto;                 */
        }
           
        .lab-content > .note_card{
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            margin-bottom: 20px;
            padding-top:10px;
        }

        .lab-content > .note_card:last-child{
            margin-bottom: 0;
        }

        .lab-content > .note_card > .content{
            padding-left: 15px;
            display: flex;
            justify-content: space-around;
            align-items: center;
        }
         
        .lab-content .image-container {
            margin: 0;
            text-align: center;
        }
        
        .lab-content img {
            display: block;
            max-width: 450px;
            width: auto;
            max-height: 200px; /* 调整单张图片的最大高度 */
            height: auto;
            margin: 1rem auto;
            border-radius: 4px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            cursor: pointer; /* 添加指针样式，提示可点击 */

            transition: transform 0.3s ease-in-out; /* 添加过渡效果 */
        }
        
        

    .lab-content .image-container img:hover {
        transform: scale(1.02);
        opacity: 0.8;
    }
        
        /* 新增样式，用于优化对称性 */
        .date-header {
            padding: 10px 20px;
            font-size: 16px;
            color: #333;
            border-bottom: 1px solid #eee;
        }
        
        .text-content {
            flex: 1;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            max-width: 50%;
        }
        
        .image-content {
            flex: 1;
            padding: 10px;
            max-width: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .image-gallery {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .image-item {
            width: 100%;
        }
        
        .caption {
            text-align: center;
            margin-top: 10px;
            font-size: 14px;
            color: #333;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .lab-content > .note_card > .content {
                flex-direction: column;
                align-items: center;
            }
            
            .text-content, .image-content {
                max-width: 100%;
                width: 100%;
            }
        }