.innovation_content {
    background-color: #fff;
    padding: 50px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
}

.page_title {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--basecolor);
}

.page_title h2 {
    color: var(--basecolor);
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.page_title p {
    color: #666;
    font-size: 18px;
    margin: 0;
    font-style: italic;
}

.innovation-showcase {
    padding: 50px 0;
    position: relative;
}

.innovation-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1px);
}

.showcase-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.showcase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    animation: floatIn 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.showcase-item.item-1 {
    animation-delay: 0.1s;
}

.showcase-item.item-2 {
    animation-delay: 0.2s;
}

.showcase-item.item-3 {
    animation-delay: 0.3s;
}

.showcase-item.item-4 {
    animation-delay: 0.4s;
}

.showcase-item.item-5 {
    animation-delay: 0.5s;
}

.image-wrapper {
    position: relative;
    transition: all 0.3s ease;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.image-wrapper img {
    width: 150px;
    height: 130px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.image-wrapper:hover {
    transform: scale(1.1) translateY(-5px);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.3));
}

.image-wrapper:hover img {
    border-color: var(--basecolor);
}

.text-description {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    width: 180px;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-description:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.text-top {
    margin-bottom: 20px;
}

.text-description h4 {
    color: var(--basecolor);
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.text-description p {
    color: #666;
    font-size: 12px;
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .text-description {
        width: 160px;
        min-height: 70px;
        padding: 12px;
    }

    .text-description h4 {
        font-size: 14px;
    }

    .text-description p {
        font-size: 11px;
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 576px) {
    .text-description {
        width: 140px;
        min-height: 60px;
        padding: 10px;
    }

    .text-description h4 {
        font-size: 13px;
    }

    .text-description p {
        font-size: 10px;
        -webkit-line-clamp: 2;
    }
}

@keyframes floatIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .showcase-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .showcase-item {
        flex: 0 0 calc(33.333% - 20px);
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .innovation-showcase {
        padding: 60px 0;
    }

    .showcase-container {
        flex-direction: column;
        gap: 40px;
    }

    .showcase-item {
        flex: none;
        width: 100%;
        max-width: 300px;
    }

    .image-wrapper img {
        width: 100px;
        height: 100px;
    }

    .text-description {
        min-width: 120px;
    }

    .text-description h4 {
        font-size: 14px;
    }

    .text-description p {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .innovation-showcase {
        padding: 40px 0;
    }

    .image-wrapper img {
        width: 80px;
        height: 80px;
    }

    .text-description {
        padding: 12px;
        min-width: 100px;
    }

    .text-description h4 {
        font-size: 13px;
    }

    .text-description p {
        font-size: 10px;
    }
}

.dots-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
    gap: 4px;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: var(--basecolor);
    border-radius: 50%;
    opacity: 0.7;
    transition: all 0.3s ease;
    animation: dotPulse 2s infinite;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

.dot:nth-child(4) {
    animation-delay: 0.6s;
}

.dot:nth-child(5) {
    animation-delay: 0.8s;
}

.dot:nth-child(6) {
    animation-delay: 1s;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.showcase-item:hover .dot {
    background-color: var(--lightcolor);
    opacity: 1;
    transform: scale(1.3);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .dots-connector {
        margin: 12px 0;
        gap: 3px;
    }

    .dot {
        width: 5px;
        height: 5px;
    }
}

@media (max-width: 576px) {
    .dots-connector {
        margin: 10px 0;
        gap: 2px;
    }

    .dot {
        width: 4px;
        height: 4px;
    }
}

.description-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    text-align: left;
}

.description-item:last-child {
    margin-bottom: 0;
}

.square-bullet {
    width: 12px;
    height: 12px;
    color: var(--basecolor);
    font-size: 12px;
    margin-right: 8px;
    margin-top: 2px;
    flex-shrink: 0;
    background-color: var(--basecolor);
    border-radius: 4px;
}

.description-item p {
    margin: 0;
    color: #666;
    font-size: 12px;
    line-height: 1.5;
    flex: 1;
}

@media (max-width: 768px) {
    .square-bullet {
        font-size: 10px;
        margin-right: 6px;
    }

    .description-item p {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .square-bullet {
        font-size: 9px;
        margin-right: 5px;
    }

    .description-item p {
        font-size: 10px;
    }
}