#typing-container {  
  display: flex;  
  flex-direction: column;  
  align-items: flex-start; 
  justify-content: flex-start;
}

.lh {  
  display: none; 
  height: 1.5em;
}
.visible {
  display: block !important; 
}
.gradient-text {  
      position: relative;  
      display: inline-block;  
      
      line-height: 1.2;  
      color: transparent; 
}  

.gradient-text::before {  
      content: attr(data-text);  
      position: absolute;  
      top: 0;  
      left: 0;  
      width: 100%;  
      height: 100%;  
      background: linear-gradient(90deg, #0080ff, #96c9ff);  
      -webkit-background-clip: text;  
      background-clip: text;  
      color: transparent; 
}  
.section-title{
    text-align: center;
}
.feedback-container {
    border: 2px solid #87CEFA;
    border-radius: 2px;
    padding: 10px;
    position: relative;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 200px;
    overflow: hidden;
    transition: opacity 0.5s, transform 0.5s;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.feedback-item {
    display: none;
    flex: 1;
    min-height: 0;
}

.feedback-item.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-content {
    display: flex;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.yhavatar {
    width: 60px;
    height: 60px;
    border-radius: 2px;
    background-color: #f0f0f0;
    margin-right: 20px;
    flex-shrink: 0;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: calc(100% - 80px);
    height: 100%;
    overflow: hidden;
}

.name {
    font-weight: bold;
    flex-shrink: 0;
}

.pjhr {
    margin: 10px 0;
    border: 0;
    border-top: 1px solid #ddd;
    flex-shrink: 0;
}

.stars {
    flex-shrink: 0;
}

.review {
    overflow-y: auto;
    word-break: break-word;
    flex: 1;
    min-height: 0;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 10px;
}

/* 加载指示器 */
.fb-loading-overlay {
    display: none;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.85);
    z-index: 10;
    align-items: center;
    justify-content: center;
}

.fb-loading-overlay.show {
    display: flex;
}

.fb-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid #e0e0e0;
    border-top: 3px solid #5B9BD5;
    border-radius: 50%;
    animation: fb-spin 0.8s linear infinite;
}

@keyframes fb-spin {
    to { transform: rotate(360deg); }
}
.container-left {
    display: flex;
    justify-content: space-between;
}

.left {
    flex: 1;
    margin-left: 120px;
}

.right {
    flex: 1;
    margin-right: 90px;
}

img {
    max-width: 100%;
    height: auto;
}

.container-right {
    display: flex;
    justify-content: space-between;
}

.lefta {
    flex: 1;
    text-align: right;
    margin-right: 150px;
}

.righta {
    flex: 1;
    text-align: left;
    margin-right: 120px;
}

.tsf {
    margin: 0;
    text-align: center;
}

.video-element {
    border-radius: 2px;
    width: 100%;
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width: 600px) {
    .container-left {
        flex-direction: column;
    }

    .left,
    .right {
        margin: 0;
        text-align: center;
    }

    .container-right {
        flex-direction: column;
    }

    .lefta,
    .righta {
        margin: 0;
        text-align: center;
    }

    video {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    source {
        margin: 0;
    }
}

@media only screen and (min-width: 601px) {
    #videoa {
        margin-left: 120px;
    }
}

.container-left {
  opacity: 0;
  transform: translateX(-100px); 
  transition: opacity 0.5s, transform 0.5s;
}


.container-right {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.5s, transform 0.5s;
}


.in-view {
  opacity: 1;
  transform: translateX(0);
}


.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s, transform 0.7s;
}

.tsf.show {
    opacity: 1;
    transform: translateY(0);
}
#container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#container .card {
    width: calc(33.33% - 20px);
    margin: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 2px;
    text-align: left;
    box-sizing: border-box;
    overflow: hidden;
}

#container .avatar {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin-right: 10px;
    float: left;
}

#container .info {
    overflow: hidden;
    width: calc(100% - 90px);
}

#container .h5 {
    margin: 0 0 5px;
}

#container .p {
    margin: 0;
    max-width: 100%;
    white-space: pre-wrap;
}

@media only screen and (max-width: 600px) {
    #container .card {
        width: 100%;
    }
}
.card.animated {
    opacity: 1;
    transform: translateX(0);
}

.card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 1s ease;
}

@media screen and (max-width: 768px) {
    .card {
        opacity: 0;
        transform: translateX(-50px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }
}
</style>
<style>

.hero-content > * {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}


.hero-content.hero-visible > *:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.1s; }
.hero-content.hero-visible > *:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.3s; }
.hero-content.hero-visible > *:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.5s; }
.hero-content.hero-visible > *:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.7s; }
.hero-content.hero-visible > *:nth-child(5) { opacity: 1; transform: translateX(0); transition-delay: 0.9s; }
.hero-content.hero-visible > *:nth-child(6) { opacity: 1; transform: translateX(0); transition-delay: 1.1s; }
.hero-content.hero-visible > *:nth-child(7) { opacity: 1; transform: translateX(0); transition-delay: 1.3s; }
.hero-content.hero-visible > *:nth-child(8) { opacity: 1; transform: translateX(0); transition-delay: 1.5s; }
.hero-content.hero-visible > *:nth-child(9) { opacity: 1; transform: translateX(0); transition-delay: 1.7s; }
.hero-content.hero-visible > *:nth-child(10) { opacity: 1; transform: translateX(0); transition-delay: 1.9s; }

/* ===== Hero 轮播样式 ===== */
.hero-carousel {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: -2px;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.hero-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.hero-carousel-track.dragging {
    transition: none;
}

.hero-slide {
    min-width: 100%;
    position: relative;
}

.hero-slide .hero-sub-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}

.hero-slide .hero-sub-item {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-slide .hero-sub-item i {
    color: #00C4FF;
    font-size: 0.85rem;
}

.hero-slide .hero-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.hero-slide .hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slide .hero-btn:hover {
    /* transform: translateY(-2px); */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-btn-primary { background-color: #5B9BD5; color: #fff; }
.hero-btn-outline { background-color: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.6); }
.hero-btn-outline:hover { background-color: rgba(255,255,255,0.15); border-color: #fff; }
.hero-btn-success { background-color: #28a745; color: #fff; }
.hero-btn-warning { background-color: #ffc107; color: #333; }
.hero-btn-danger { background-color: #dc3545; color: #fff; }
.hero-btn-info { background-color: #17a2b8; color: #fff; }
.hero-btn-gradient { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: #fff; }

/* 轮播指示器 - 长条状 */
.hero-carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-carousel-dot {
    width: 24px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.hero-carousel-dot.active {
    background: #fff;
    width: 40px;
}

/* 轮播箭头 - 自动滑出隐藏 */
.hero-carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
    opacity: 0;
}

.hero-carousel-arrow.arrow-visible {
    opacity: 1;
}

.hero-carousel-arrow:hover {
    background: rgba(255,255,255,0.3);
}

.hero-carousel-arrow.prev { left: 20px; transform: translateY(-50%) translateX(-60px); }
.hero-carousel-arrow.next { right: 20px; transform: translateY(-50%) translateX(60px); }

.hero-carousel-arrow.prev.arrow-visible { transform: translateY(-50%) translateX(0); }
.hero-carousel-arrow.next.arrow-visible { transform: translateY(-50%) translateX(0); }

@media (max-width: 768px) {
    .hero-slide .hero-btn-group {
        flex-wrap: wrap;
        gap: 8px;
    }
    .hero-slide .hero-btn {
        flex: 0 0 auto;
        width: auto;
        padding: 8px 14px;
        font-size: 0.9rem;
    }
    .hero-slide .hero-sub-items {
        gap: 4px;
    }
    .hero-carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    .hero-carousel-arrow.prev { left: 10px; transform: translateY(-50%) translateX(-50px); }
    .hero-carousel-arrow.next { right: 10px; transform: translateY(-50%) translateX(50px); }
    .hero-carousel-arrow.prev.arrow-visible { transform: translateY(-50%) translateX(0); }
    .hero-carousel-arrow.next.arrow-visible { transform: translateY(-50%) translateX(0); }
    .hero-carousel-dots {
        bottom: 20px;
    }
    .hero-carousel-dot {
        width: 18px;
        height: 3px;
    }
    .hero-carousel-dot.active {
        width: 30px;
    }
}

</style>
<style>
    @media (min-width: 768px) {

        .card-wrapper .card-content {
            flex-direction: row-reverse !important;
            align-items: center !important; 
            justify-content: space-between;
        }

        .card-wrapper .card-content .text-content {
            text-align: left;
        }
      
        .card-wrapper .svg-icon {
            left: 16px !important;
            right: auto !important;
            bottom: 12px !important;
        }
  
        .card-wrapper .card-content img {
            margin-left: 8px;
            margin-right: 0;
        }
    }

    @media (max-width: 767.98px) {
     
        .card-wrapper .svg-icon {
            right: 12px !important;
            left: auto !important;
            bottom: 12px !important;
        }
    }