/* More按钮样式 */
.about-section .btn-more,
.products-showcase .btn-more,
.clients-section .btn-more,
.btn-more {
    position: relative !important;
    padding: 12px 40px 12px 28px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border: 1px solid var(--primary-color) !important;
    border-radius: 25px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* 移动端样式 */
@media screen and (max-width: 768px) {
    .about-section .btn-more,
    .products-showcase .btn-more,
    .clients-section .btn-more,
    .btn-more {
        display: block !important;
        width: fit-content !important;
        margin: 20px auto !important;
    }
}

.about-section .btn-more:hover,
.products-showcase .btn-more:hover,
.clients-section .btn-more:hover,
.btn-more:hover {
    background-color: #ffffff !important;
    color: var(--primary-color) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08) !important;
}

/* 添加箭头样式 */
.about-section .btn-more::after,
.products-showcase .btn-more::after,
.clients-section .btn-more::after,
.btn-more::after {
    content: '>' !important;
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 18px !important;
    line-height: 1 !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* 箭头悬停效果 */
.about-section .btn-more:hover::after,
.products-showcase .btn-more:hover::after,
.clients-section .btn-more:hover::after,
.btn-more:hover::after {
    transform: translate(4px, -50%) !important;  /* 保持垂直居中的同时移动 */
}