/* 加载动画优化 */
.index-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a1628 0%, #1a2f4a 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-loading .loading-content {
    position: relative;
    z-index: 10;
    text-align: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.p-more {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    width: 1.6rem;
    height: 0.56rem;
    font-size: 0.16rem;
    color: rgb(255, 255, 255);
    border-radius: 0.5rem;
    background: rgba(0, 194, 182, 0.2);
}

.index-loading .loading-logo {
    font-size: 42px;
    font-weight: bold;
    color: #3BADA5;
    margin-bottom: 30px;
    letter-spacing: 5px;
    text-shadow: 0 0 20px rgba(59, 173, 165, 0.5);
    animation: logoFade 2s ease-in-out infinite;
}

@keyframes logoFade {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

.index-loading .loading-text {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.index-loading .loading-progress {
    width: 300px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.index-loading .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #3BADA5, #5bc9c1, #3BADA5);
    background-size: 200% 100%;
    border-radius: 10px;
    animation: progressMove 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px #3BADA5;
}

@keyframes progressMove {
    0% { width: 0%; background-position: 0% 50%; }
    50% { width: 70%; background-position: 100% 50%; }
    100% { width: 100%; background-position: 0% 50%; }
}

.index-loading .line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom, #3BADA5, #5bc9c1);
    transform: translateX(-50%);
    box-shadow: 0 0 10px #3BADA5;
}

.index-loading .left,
.index-loading .right {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: #0a1628;
    transition: width 1s ease-in 1s;
    z-index: 5;
}

.index-loading .left {
    left: 0;
}

.index-loading .right {
    right: 0;
}

/* 加载完成后的动画 */
body.loaded .index-loading .loading-content {
    opacity: 0;
}

body.loaded .index-loading {
    pointer-events: none;
}

body.loaded .index-loading .left,
body.loaded .index-loading .right {
    width: 0;
}

/* Logo文字样式 */
.g-head a.logo {
    background: none !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

/* Banner区域样式优化 */
.index-banner .title {
    font-size: 60px !important;
    font-weight: bold !important;
    color: #ffffff !important;
    text-align: center !important;
    margin-bottom: 0px !important;
    line-height: 1.4 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.index-banner h2.title {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    margin-top: 0px !important;
}

.index-banner h2.title span {
    font-size: 36px !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.index-banner h2.title em {
    font-size: 32px !important;
    background: linear-gradient(to bottom, #ffe99d, #f1c07d) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: bold !important;
    font-style: normal !important;
    text-shadow: none;
}

/* Banner区域点动画居中 */
.index-banner .dot {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 30px !important;
}

/* 优化dot动画性能 */
.index-banner .dot,
.index-banner .dot div,
.index-banner .dot i {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* 确保动画使用GPU加速 */
.index-banner .dot i.i-1,
.index-banner .dot i.i-2 {
    transform: translate3d(0, 0, 0);
    transition: transform 0.3s ease-out;
    animation: none !important;
}

/* 使用纯CSS动画替代，更流畅 */
@keyframes dotMove1 {
    0%, 100% { 
        transform: translate3d(0, 0, 0); 
    }
    50% { 
        transform: translate3d(0.18rem, 0, 0); 
    }
}

@keyframes dotMove2 {
    0%, 100% { 
        transform: translate3d(0.18rem, 0, 0); 
    }
    50% { 
        transform: translate3d(0, 0, 0); 
    }
}

.index-banner .dot i.i-1 {
    animation: dotMove1 2s ease-in-out infinite !important;
}

.index-banner .dot i.i-2 {
    animation: dotMove2 2s ease-in-out infinite !important;
}

/* 关于我们 - 整体布局调整 */
.index-about .wal {
    padding-top: 2rem !important;
}

/* 业务方向 - 整体布局调整 */
.index-news .wal {
    padding-top: 1.5rem !important;
    display: block !important;
}

.index-news .index-title {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
    transition: none !important;
}

.index-news .index-title h2,
.index-news .index-title .en {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
}

.index-news .list {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* 合作伙伴板块样式 */
.index-partner .wal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.index-partner .index-title {
    margin-bottom: 0rem;
    text-align: center;
}

.index-partner .index-title h2 {
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
    display: inline-block !important;
    position: static !important;
    transform: none !important;
    color:#fff;
    font-size: 36px;
}

.index-partner .partner-image {
    width: 90%;
    max-width: 1200px;
    text-align: center;
}

.index-partner .partner-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* 联系我们板块样式修复 */
.index-contact .wal {
    opacity: 1 !important;
    visibility: visible !important;
}

.index-contact .index-title,
.index-contact .name,
.index-contact .list {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.index-contact .list ul li {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.index-contact .list ul li .ico,
.index-contact .list ul li p {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* 联系我们内容对齐 */
.index-contact .index-title {
    text-align: left !important;
}

.index-contact .name {
    text-align: left !important;
}

.index-contact .list {
    text-align: left !important;
}

/* 微信二维码样式 */
.index-contact .list ul li:last-child {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
}

.index-contact .list ul li:last-child .ico {
    width: 150px !important;
    height: 150px !important;
    flex-shrink: 0 !important;
}

.index-contact .list ul li:last-child .ico img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.index-contact .list ul li:last-child p {
    margin: 0 !important;
}

/* 关于我们 - 公司介绍样式 */
.index-about .company-title {
    text-align: center !important;
    font-size: 24px;
    color: #333;
    margin: 20px 0;
    font-weight: bold;
    width: 100% !important;
    max-width: 100% !important;
}

.index-about .company-subtitle {
    text-align: center !important;
    font-size: 20px;
    color: #666;
    margin: 15px 0;
}

.index-about .company-desc {
    text-align: center !important;
    font-size: 16px;
    color: #999;
    margin-bottom: 30px;
}

/* 数据展示区 */
.index-about .data-statistics {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;
    text-align: center;
}

.index-about .data-statistics .data-item {
    flex: 1;
}

.index-about .data-statistics .data-number {
    font-size: 36px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 0px;
}

.index-about .data-statistics .data-label {
    font-size: 14px;
    color: #fff;
    margin-top: 10px;
}

/* 公司详细介绍 */
.index-about .company-intro {
    margin-top: 40px;
}

.index-about .company-intro .intro-title {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.index-about .company-intro .intro-text {
    line-height: 2;
    text-indent: 2em;
    margin-bottom: 15px;
}

.index-about .company-intro .intro-slogan {
    line-height: 2;
    text-align: center;
    font-size: 18px;
    color: #1890ff;
    font-weight: bold;
    margin-top: 30px;
}

/* 互联网服务 - 卡片网格布局 */
.index-product .internet-service-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100%;
    padding: 150px 60px 40px 60px;
}

/* 互联网服务 - 标题样式 */
.index-product .index-title {
    text-align: center;
    margin-top: 0px;
    position: relative;
    padding-top: 30px;
    order: 2;
}

.index-product .index-title .en {
    display: inline-block;
    margin-bottom: 16px;
}

.index-product .index-title .en img {
    height: 32px;
    width: auto;
    display: block;
}

.index-product .index-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.index-product .index-title h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ccbe, transparent);
    border-radius: 2px;
}

.index-product .service-grid {
    order: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    width: 100%;
}

.index-product .service-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 5px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 204, 190, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.index-product .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 204, 190, 0.1), transparent);
    transition: left 0.6s ease;
}

.index-product .service-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 12px 40px rgba(0, 204, 190, 0.2);
    border-color: rgba(0, 204, 190, 0.4);
}

.index-product .service-card:hover::before {
    left: 100%;
}

.index-product .service-card-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #00ccbe 0%, #00b8a9 100%);
    color: #fff;
    padding: 40px 28px;
    box-shadow: 0 8px 32px rgba(0, 204, 190, 0.3);
    border: none;
}

.index-product .service-card-featured:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(0, 204, 190, 0.4);
}

.index-product .service-card-icon {
    font-size: 38px;
    margin-bottom: 14px;
    display: block;
    animation: float 3.5s ease-in-out infinite;
    color: #00ccbe;
    transition: color 0.3s ease;
}

.index-product .service-card:hover .service-card-icon {
    color: #00b8a9;
}

.index-product .service-card-featured .service-card-icon {
    font-size: 44px;
    color: #fff;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.index-product .service-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 10px 0 8px 0;
    color: #1a1a1a;
    line-height: 1.4;
    letter-spacing: 0.2px;
}

.index-product .service-card-featured h3 {
    font-size: 18px;
    color: #fff;
    font-weight: 700;
}

.index-product .service-card p {
    font-size: 12px;
    color: #888;
    margin: 0;
    line-height: 1.5;
    letter-spacing: 0.1px;
}

.index-product .service-card-featured p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
}

@media screen and (max-width: 1200px) {
    .index-product .index-title h2 {
        font-size: 32px;
    }

    .index-product .internet-service-layout {
        padding: 120px 40px 60px 40px;
    }

    .index-product .service-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        max-width: 1000px;
    }

    .index-product .service-card-featured {
        grid-column: span 3;
        padding: 32px 24px;
    }

    .index-product .service-card {
        padding: 24px 18px;
    }

    .index-product .service-card-icon {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .index-product .service-card h3 {
        font-size: 14px;
        margin: 10px 0 6px 0;
    }
}

@media screen and (max-width: 768px) {
    .index-product .index-title {
        margin-bottom: 35px;
        padding-bottom: 18px;
    }

    .index-product .index-title h2 {
        font-size: 26px;
        letter-spacing: 0.5px;
    }

    .index-product .index-title .en img {
        height: 28px;
    }

    .index-product .internet-service-layout {
        padding: 90px 20px 40px 20px;
        min-height: 100%;
    }

    .index-product .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        max-width: 100%;
    }

    .index-product .service-card-featured {
        grid-column: span 2;
        padding: 28px 18px;
    }

    .index-product .service-card {
        padding: 20px 14px;
    }

    .index-product .service-card-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .index-product .service-card-featured .service-card-icon {
        font-size: 38px;
    }

    .index-product .service-card h3 {
        font-size: 13px;
        margin: 8px 0 5px 0;
    }

    .index-product .service-card p {
        font-size: 11px;
    }
}

@media screen and (max-width: 480px) {
    .index-product .index-title {
        margin-bottom: 25px;
        padding-bottom: 12px;
    }

    .index-product .index-title h2 {
        font-size: 22px;
        letter-spacing: 0px;
    }

    .index-product .index-title .en img {
        height: 24px;
    }

    .index-product .internet-service-layout {
        padding: 80px 12px 30px 12px;
        min-height: 100%;
    }

    .index-product .service-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
    }

    .index-product .service-card-featured {
        grid-column: span 1;
        padding: 22px 16px;
    }

    .index-product .service-card {
        padding: 14px 10px;
    }

    .index-product .service-card-icon {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .index-product .service-card h3 {
        font-size: 12px;
        margin: 6px 0 3px 0;
    }

    .index-product .service-card p {
        font-size: 10px;
    }
}

/* 荣誉资质 - 时间轴布局 */
.index-honor .honor-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100%;
    padding: 220px 40px 40px 40px;
}

.index-honor .timeline-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1400px;
    width: 100%;
}

.index-honor .timeline-nav {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #00ccbe;
    background: transparent;
    color: #00ccbe;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-honor .timeline-nav:hover {
    background: #00ccbe;
    color: #fff;
    transform: scale(1.1);
}

.index-honor .timeline-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.index-honor .timeline-track {
    display: flex;
    gap: 40px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
}

.index-honor .timeline-item {
    flex: 0 0 280px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.index-honor .timeline-year {
    font-size: 24px;
    font-weight: 700;
    color: #00ccbe;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.index-honor .timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #00ccbe;
    margin-bottom: 20px;
    box-shadow: 0 0 0 4px rgba(0, 204, 190, 0.2);
}

.index-honor .timeline-card {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.index-honor .timeline-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 204, 190, 0.2);
}

.index-honor .timeline-card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f0f0f0;
}

.index-honor .timeline-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.index-honor .timeline-card:hover .timeline-card-image img {
    transform: scale(1.1);
}

.index-honor .timeline-card-content {
    padding: 16px;
    text-align: center;
}

.index-honor .timeline-card-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.index-honor .timeline-card-content p {
    font-size: 12px;
    color: #888;
    margin: 0;
    line-height: 1.5;
}

/* 荣誉资质标题样式 */
.index-honor .index-title {
    text-align: center;
    margin-top: 60px;
    position: relative;
    padding-top: 30px;
    width: 100%;
}

.index-honor .index-title .en {
    display: none;
}

.index-honor .index-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.index-honor .index-title h2::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 100%;
    width: 60px;
    height: 2px;
    background: #fff;
    margin-right: 20px;
    transform: translateY(-50%);
}

.index-honor .index-title h2::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 60px;
    height: 2px;
    background: #fff;
    margin-left: 20px;
    transform: translateY(-50%);
}

@media screen and (max-width: 1200px) {
    .index-honor .honor-content {
        padding: 150px 40px 40px 40px;
    }

    .index-honor .timeline-container {
        gap: 20px;
    }

    .index-honor .timeline-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .index-honor .timeline-item {
        flex: 0 0 240px;
    }

    .index-honor .timeline-year {
        font-size: 20px;
    }

    .index-honor .timeline-card-image {
        height: 140px;
    }

    .index-honor .index-title h2 {
        font-size: 32px;
    }

    .index-honor .index-title h2::before,
    .index-honor .index-title h2::after {
        width: 50px;
    }
}

@media screen and (max-width: 768px) {
    .index-honor .honor-content {
        padding: 120px 20px 40px 20px;
    }
    
    .index-honor .timeline-container {
        gap: 15px;
    }

    .index-honor .timeline-nav {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .index-honor .timeline-item {
        flex: 0 0 200px;
    }

    .index-honor .timeline-year {
        font-size: 18px;
    }

    .index-honor .timeline-card-image {
        height: 120px;
    }

    .index-honor .timeline-card-content {
        padding: 12px;
    }

    .index-honor .timeline-card-content h4 {
        font-size: 14px;
    }

    .index-honor .timeline-card-content p {
        font-size: 11px;
    }

    .index-honor .index-title h2 {
        font-size: 28px;
    }

    .index-honor .index-title h2::before,
    .index-honor .index-title h2::after {
        width: 40px;
        margin-right: 15px;
        margin-left: 15px;
    }
}

@media screen and (max-width: 480px) {
    .index-honor .honor-content {
        padding: 100px 16px 30px 16px;
    }

    .index-honor .timeline-container {
        gap: 10px;
    }

    .index-honor .timeline-nav {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .index-honor .timeline-item {
        flex: 0 0 160px;
    }

    .index-honor .timeline-year {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .index-honor .timeline-card-image {
        height: 100px;
    }

    .index-honor .timeline-card-content {
        padding: 10px;
    }

    .index-honor .timeline-card-content h4 {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .index-honor .timeline-card-content p {
        font-size: 10px;
    }

    .index-honor .index-title h2 {
        font-size: 24px;
    }

    .index-honor .index-title h2::before,
    .index-honor .index-title h2::after {
        width: 30px;
        margin-right: 12px;
        margin-left: 12px;
    }
}

/* 手机端联系我们优化 */
@media screen and (max-width: 768px) {
    .index-contact .wal {
        padding-left: 5% !important;
        padding-right: 5% !important;
    }

    .index-contact .index-title h2 {
        font-size: 24px;
    }

    .index-contact .name {
        font-size: 16px;
        margin: 20px 0;
    }

    .index-contact .list ul {
        gap: 15px !important;
    }

    .index-contact .list ul li {
        gap: 12px !important;
    }

    .index-contact .list ul li p {
        font-size: 14px;
    }

    .index-contact .list ul li:last-child {
        flex-direction: column !important;
    }

    .index-contact .list ul li:last-child .ico {
        width: 120px !important;
        height: 120px !important;
    }
}

@media screen and (max-width: 480px) {
    .index-contact .wal {
        padding-left: 3% !important;
        padding-right: 3% !important;
    }

    .index-contact .index-title h2 {
        font-size: 20px;
    }

    .index-contact .name {
        font-size: 14px;
        margin: 15px 0;
    }

    .index-contact .list ul {
        gap: 12px !important;
    }

    .index-contact .list ul li {
        gap: 10px !important;
    }

    .index-contact .list ul li p {
        font-size: 12px;
    }

    .index-contact .list ul li:last-child .ico {
        width: 100px !important;
        height: 100px !important;
    }

    .index-contact .list ul li:last-child p {
        font-size: 11px;
    }
}

/* 手机端荣誉资质时间轴优化 */
@media screen and (max-width: 768px) {
    .index-honor .timeline-container {
        padding: 0 10px;
    }

    .index-honor .timeline-nav {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .index-honor .timeline-item {
        min-width: 200px;
    }

    .index-honor .timeline-card {
        padding: 12px;
    }

    .index-honor .timeline-card-image {
        height: 120px;
    }

    .index-honor .timeline-card-content h4 {
        font-size: 13px;
    }

    .index-honor .timeline-card-content p {
        font-size: 10px;
    }
}

@media screen and (max-width: 480px) {
    .index-honor .timeline-container {
        padding: 0 5px;
    }

    .index-honor .timeline-nav {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .index-honor .timeline-item {
        min-width: 160px;
    }

    .index-honor .timeline-card {
        padding: 10px;
    }

    .index-honor .timeline-card-image {
        height: 100px;
    }

    .index-honor .timeline-card-content h4 {
        font-size: 12px;
    }

    .index-honor .timeline-card-content p {
        font-size: 9px;
    }
}
