        /* 自定义样式 */
        .image-card {
            height: 100%;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }
        
        .image-container {
            height: 150px;
            justify-content: center;
            padding: 15px;
            overflow: hidden;
        }
        
        .image-container img {
            width: 80%;
            height: 80%;
        	border-radius: 50%;
	        overflow: hidden;
            position: relative;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .circular-image {
            width: 80%;
            height: 0;
            padding-bottom: 80%; /* 保持宽高相等，形成圆形 */
            border-radius: 50%;
            overflow: hidden;
            position: relative;
        }
        
        .circular-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .image-card:hover .image-container img {
            transform: scale(1.05);
        }
        
        .text-container {
            padding: 15px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .card-title {
            font-weight: bold;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            height: 42px; /* 两行文字的大致高度 */
        }
        
        .card-desc {
            color: #666;
            font-size: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
        }
        
        .row-spacing {
            margin-bottom: 20px;
        }

 /**dep**/ 
/*
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .image-box-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
        }
        
        .image-box-row {
            display: flex;
            justify-content: center;
            width: 100%;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .image-box {
            width: 250px;
            background: white;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        
        .image-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .image-container {
            position: relative;
            height: 180px;
            background: #f8f8f8;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .circular-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #e8e8e8;
        }
        
        .percentage-label {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: #4a89dc;
            color: white;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: bold;
        }
        
        .text-container {
            padding: 15px;
        }
        
        .title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 8px;
            line-height: 1.4;
            max-height: 2.8em;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        
        .title a {
            color: #4a89dc;
            text-decoration: none;
        }
        
        .title a:hover {
            color: #2a6bc5;
            text-decoration: underline;
        }
        
        .description {
            font-size: 14px;
            color: #666;
            line-height: 1.4;
            max-height: 4.2em;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }
        
        .page-header {
            text-align: center;
            margin-bottom: 30px;
            color: #555;
        }
        
        @media (max-width: 1100px) {
            .image-box-row {
                flex-wrap: wrap;
            }
            
            .image-box {
                width: calc(50% - 15px);
            }
        }
        
        @media (max-width: 768px) {
            .image-box {
                width: 100%;
            }
        }
*/
        
        /**dep2***/
        
/*        
        .container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            position: relative;
        }
        
        .page-header {
            text-align: center;
            margin-bottom: 40px;
            color: #555;
        }
        
        .page-header h1 {
            margin-bottom: 10px;
            color: #4a89dc;
        }
        
        .slider-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 0 50px;
        }
        
        .image-box-wrapper {
            display: flex;
            transition: transform 0.5s ease;
            gap: 25px;
            padding: 10px 0;
        }
        
        .image-box {
            flex: 0 0 270px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .image-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .image-container {
            position: relative;
            height: 180px;
            background: #f8f8f8;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .circular-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #e8e8e8;
            transition: border-color 0.3s ease;
        }
        
        .image-box:hover .circular-image {
            border-color: #4a89dc;
        }
        
        .percentage-label {
            position: absolute;
            bottom: 12px;
            right: 12px;
            background: #4a89dc;
            color: white;
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 13px;
            font-weight: bold;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        .text-container {
            padding: 18px;
        }
        
        .title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 10px;
            line-height: 1.4;
            max-height: 2.8em;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        
        .title a {
            color: #4a89dc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .title a:hover {
            color: #2a6bc5;
            text-decoration: underline;
        }
        
        .description {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
            max-height: 4.5em;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }
        
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: white;
            border: none;
            border-radius: 50%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #4a89dc;
            z-index: 10;
            transition: all 0.3s ease;
        }
        
        .slider-btn:hover {
            background: #4a89dc;
            color: white;
            box-shadow: 0 4px 15px rgba(74, 137, 220, 0.3);
        }
        
        .slider-btn.prev {
            left: 0;
        }
        
        .slider-btn.next {
            right: 0;
        }
        
        .slider-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .slider-btn:disabled:hover {
            background: white;
            color: #4a89dc;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .slider-dots {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 8px;
        }
        
        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .dot.active {
            background: #4a89dc;
        }
        
        @media (max-width: 768px) {
            .slider-container {
                padding: 0 40px;
            }
            
            .image-box {
                flex: 0 0 240px;
            }
        }
        
        @media (max-width: 480px) {
            .slider-container {
                padding: 0 35px;
            }
            
            .image-box {
                flex: 0 0 220px;
            }
            
            .image-container {
                height: 160px;
            }
            
            .circular-image {
                width: 100px;
                height: 100px;
            }
        }
        
*/
        