/* Testimonial Carousel Pro Styles */
.tcpro-container {
    max-width: var(--tcpro-max-width, 900px);
    margin: 0 auto;
    padding: 80px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* 标题部分 */
.tcpro-header {
    text-align: center;
    margin-bottom: 60px;
}

.tcpro-title {
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 12px;
    font-weight: 500;
}

.tcpro-subtitle {
    font-size: 36px;
    font-weight: 700!important;
    color: #222;
    font-weight: 300;
    margin: 0;
    line-height: 1.3;
}

/* 轮播容器 */
.tcpro-wrapper {
    position: relative;
    overflow: hidden;
}

.tcpro-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* 幻灯片样式 - 支持多列 */
.tcpro-slide {
    flex: 0 0 calc(100% / var(--slides-per-view, 1));
    max-width: calc(100% / var(--slides-per-view, 1));
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.tcpro-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* 卡片样式 */
.tcpro-card {
    background: var(--tcpro-bg, #ffffff);
    padding: 30px;
    border-radius: var(--tcpro-radius, 12px);
    box-shadow: var(--box-shadow-enable, 0 10px 40px rgba(0, 0, 0, 0.06));
    text-align: left;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tcpro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

/* 头像 */
.tcpro-avatar {
    float: left;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  overflow: hidden;
}
.tcpro-author-data{ /*width: calc(100% - 78px); padding-right: 15px; margin-top: 10px;*/ float:left; }

.tcpro-icon {
    margin-bottom: 20px;
    opacity: 0.8;
}

.tcpro-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--tcpro-primary, #007cba);
}

.tcpro-content {
    flex: 1;
}

.tcpro-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--tcpro-text, #444);
    margin-bottom: 20px;
    font-style: normal;
    font-weight: 300;
}

.tcpro-rating {
    margin: 15px 0;
    font-size: 20px;
    color: #ffc107;
}

.tcpro-star.filled {
    color: #ffc107;
}

.tcpro-star.empty {
    color: #e0e0e0;
}

/* 作者信息 */
.tcpro-author {
    margin-top: 20px;
    width: 100%;
    overflow: hidden;
}

.tcpro-author-name {
    font-size: 18px;
    color: #222;
    margin: 0 0 6px 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.tcpro-author-position {
    font-size: 14px;
    color: #777;
    margin: 0;
    font-weight: 400;
}

/* 导航控件 */
.tcpro-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

.tcpro-btn {
    background: #f8f9fa;
    border: 1px solid #e8e8e8;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    opacity: var(--arrows-display, 1);
    visibility: var(--arrows-display, visible);
}

.tcpro-btn:hover {
    background: var(--tcpro-primary, #007cba);
    border-color: var(--tcpro-primary, #007cba);
    transform: scale(1.05);
}

.tcpro-btn:hover svg {
    fill: white;
}

.tcpro-btn svg {
    fill: #666;
    transition: fill 0.3s ease;
    width: 24px;
    height: 24px;
}

.tcpro-indicators {
    display: flex;
    gap: 12px;
    opacity: var(--dots-display, 1);
    visibility: var(--dots-display, visible);
}

.tcpro-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.tcpro-indicator:hover {
    background: #b0b0b0;
    /*transform: scale(1.2);*/
}

.tcpro-indicator.active {
    background: var(--tcpro-primary, #007cba);
    /*transform: scale(1.2);*/
}

/* 无评价提示 */
.tcpro-no-testimonials {
    text-align: center;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 8px;
    color: #666;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .tcpro-slide {
        flex: 0 0 calc(100% / min(var(--slides-per-view, 1), 3));
        max-width: calc(100% / min(var(--slides-per-view, 1), 3));
    }
}

@media (max-width: 992px) {
    .tcpro-container {
        padding: 60px 20px;
    }
    
    .tcpro-subtitle {
        font-size: 30px;
    }
    
    .tcpro-slide {
        flex: 0 0 calc(100% / min(var(--slides-per-view, 1), 2));
        max-width: calc(100% / min(var(--slides-per-view, 1), 2));
    }
    
    .tcpro-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .tcpro-container {
        padding: 50px 15px;
    }
    
    .tcpro-header {
        margin-bottom: 40px;
    }
    
    .tcpro-title {
        font-size: 12px;
        letter-spacing: 3px;
    }
    
    .tcpro-subtitle {
        font-size: 26px;
    }
    
    .tcpro-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .tcpro-text {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .tcpro-controls {
        gap: 25px;
        margin-top: 40px;
    }
    
    .tcpro-btn {
        width: 48px;
        height: 48px;
    }
    
    .tcpro-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .tcpro-subtitle {
        font-size: 22px;
    }
    
    .tcpro-controls {
        gap: 20px;
    }
    
    .tcpro-btn {
        width: 44px;
        height: 44px;
    }
}