.best-table2 td:nth-child(2) {
    padding-left: 100px;
    text-align: left !important;
}

html {
    width: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    width: 100%;
    max-width: 100vw;
    position: relative;
    overflow-x: hidden;
}

/* 确保所有容器不超出视口 */
* {
    max-width: 100%;
    box-sizing: border-box;
}

.cbanner {
    position: relative;
    width: 100%;
    min-height: 360px;
    overflow: hidden;
}

.cbanner .dynamic-banner-image {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
}

.cbanner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 24px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.45));
}

.cbanner .banner-subtitle {
    font-size: 22px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.cbanner .banner-title {
    font-size: 52px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0;
}

@media (max-width: 768px) {
    .cbanner {
        min-height: 260px;
    }

    .cbanner .dynamic-banner-image {
        min-height: 260px;
    }

    .cbanner .banner-subtitle {
        font-size: 16px;
    }

    .cbanner .banner-title {
        font-size: 32px;
    }
}

@media (min-width: 980px) and (max-width: 1600px) {

    /* 主容器自适应宽度 */
    .ww {
        width: 95% !important;
        max-width: 1360px !important;
        padding-left: 20px;
        padding-right: 20px;
    }

    /* 导航栏自适应 */
    .header .hbox {
        width: 95% !important;
        max-width: 1360px !important;
    }

    .header .hlogo .hlbox img {
        max-height: 30px !important;
    }

    #searchword {
        max-width: 190px !important;
    }

    .hsearch .layui-form {
        margin-left: 20px !important;
    }


    .commenu ul li ul,
    .hsearch ul li ul {
        max-width: 900px;
    }
}

.fancybox-bg,
.fancybox-overlay,
.fancybox-overlay::before,
.fancybox__backdrop,
.fancybox__container,
.fancybox-slide,
.fancybox-inner {
    background: rgba(0, 0, 0, 0.5) !important;
    background-color: rgba(0, 0, 0, 0.5) !important;
}

/* Set semi-transparent backdrop color with 50% opacity */
.fancybox-bg[style],
.fancybox-overlay[style],
.fancybox__backdrop[style] {
    background-color: rgba(0, 0, 0, 0.5) !important;
}


.video-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-modal-content {
    position: relative;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    width: 95%;
    height: 95%;
    max-width: 1200px;
    max-height: 800px;
}

.close-video {
    position: absolute;
    top: -10px;
    right: -10px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    background-color: #ff0000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.close-video:hover {
    background-color: #cc0000;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
    border-radius: 8px;
}

/* R&D 视频封面 hover 效果 */
.video-wrapper {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.video-wrapper:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(0, 0, 0, 0.85);
}

.video-wrapper .play-overlay {
    transition: all 0.3s ease;
}

.video-wrapper:hover .video-cover img {
    transform: scale(1.05);
}

.video-wrapper .video-cover img {
    transition: transform 0.3s ease;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .video-modal-content {
        width: 98%;
        height: 90%;
        padding: 0;
        margin: 0;
    }

    .video-container iframe {
        min-height: 300px;
        border-radius: 4px;
    }
}

@media (max-width: 480px) {
    .video-modal-content {
        width: 100%;
        height: 85%;
    }

    .video-container iframe {
        min-height: 250px;
    }
}

.whatsapp-hover {
    position: relative;
    display: inline-block;
}

.whatsapp-hover .hover-image {
    position: absolute !important;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 5px;
    display: block;
}

.whatsapp-hover:hover .hover-image {
    opacity: 1 !important;
    visibility: visible !important;
}

.whatsapp-hover .hover-image::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
}

.wechat-hover {
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.wechat-hover:hover {
    text-decoration: underline;
}

/* Ensure normal paragraph wrapping inside content blocks (override any global no-wrap/pre-wrap rules) */
.info p,
.info .desc p,
.abo-rd .info p,
.rd-eq .info p,
.txt .info p,
.ww .info p {
    white-space: normal !important;
    overflow-wrap: break-word !important;
    /* modern */
    word-wrap: break-word !important;
    /* legacy */
    word-break: break-word !important;
    /* allow long words to break if necessary */
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
}

.fade-in-up:nth-child(1) {
    animation-delay: 0s;
}

.fade-in-up:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Robot Cards Styles */
.robot-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
    margin-bottom: 50px;
    gap: 30px;
}

.card-item {
    width: 48%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    min-height: 450px;
}

@media (max-width: 768px) {
    .card-item {
        width: 100%;
    }
}

.img-box {
    position: relative;
    margin-bottom: 80px;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.play-icon div {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #fff;
    margin-left: 4px;
}

.link-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #1767b2;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-icon svg {
    viewBox: 0 0 24 24;
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    color: #fff;
}

.text-box {
    position: absolute;
    bottom: 20px;
    left: 10%;
    width: 80%;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.05), 0 5px 15px rgba(0,0,0,0.05);
    background: #fff;
    border-radius: 8px;
}

.text-box h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.text-box p {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
}
.ctit{
    margin: 0 0 40px 0 !important;
}