.product-overview {
    padding: 30px;
    display: grid;
    gap: 20px;
    margin-bottom: 40px;

}

.product-overview .imgs {

    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.amap-container {

    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px;
    border-radius: 12px;
}

.product-overview .imgs img {
    max-width: 100%;
    max-height: 500px;
}

.product-overview .details {

    gap: 20px;
    display: grid;
    align-content: space-between;
}


.about-titile {
    font-size: 2em;
    font-weight: 600;
    padding: 20px 0;
    color: var(--backcolor);
}

.about-content {
    font-size: 1.2em;
    line-height: 2em;
}

@media (max-width: 1024px) {
    .product-overview {
        display: block;
    }

    .product-overview .details {
        max-width: 100% !important;
        display: block;
    }

}

#typewriter::after {
    content: "...";
    color: black;
    animation: blink 1s infinite; /* 光标闪烁动画 */
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}


.about-sections {
    position: relative;
}


input {

    line-height: 38px;
}

