.page-banner {
    position: relative;
    width: 100%;
    height: 440px;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner-title {
    font-size: 48px;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 20px;
}

.breadcrumb {
    font-size: 16px;
    color: #ffffff;
}

.breadcrumb a {
    color: #ffffff;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: rgb(66, 92, 187);
}

.page-section {
    padding: 60px 0;
}

.page-section.bg-gray {
    background-color: #f8f8f8;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-main {
    font-size: 36px;
    color: #333333;
    font-weight: bold;
    margin-bottom: 15px;
}

.section-subtitle-main {
    font-size: 16px;
    color: #999999;
}

.company-intro {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.intro-text p {
    font-size: 16px;
    line-height: 200%;
    color: #666666;
    margin-bottom: 20px;
}

.intro-image img {
    width: 100%;
    height: auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-item {
    text-align: center;
    padding: 40px 30px;
    background-color: #ffffff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-item-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.value-item-title {
    font-size: 20px;
    color: #333333;
    margin-bottom: 15px;
    font-weight: bold;
}

.value-item-desc {
    font-size: 14px;
    color: #666666;
    line-height: 180%;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background-color: #ffffff;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-card-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.team-card-info {
    padding: 25px;
    text-align: center;
}

.team-card-name {
    font-size: 18px;
    color: #333333;
    font-weight: bold;
    margin-bottom: 10px;
}

.team-card-position {
    font-size: 14px;
    color: #999999;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.animate-in {
    opacity: 1;
}

.timeline-item:nth-child(odd) {
    transform: translateX(-50px);
}

.timeline-item:nth-child(odd).animate-in {
    transform: translateX(0);
}

.timeline-item:nth-child(even) {
    transform: translateX(50px);
}

.timeline-item:nth-child(even).animate-in {
    transform: translateX(0);
}

.timeline-year {
    font-size: 36px;
    color: rgb(66, 92, 187);
    font-weight: bold;
    position: relative;
    text-align: right;
    padding-right: 40px;
}

.timeline-item:nth-child(even) .timeline-year {
    text-align: left;
    padding-left: 40px;
    padding-right: 0;
}

.timeline-item:nth-child(even) {
    direction: rtl;
}

.timeline-item:nth-child(even) .timeline-content {
    direction: ltr;
}

.timeline-content {
    padding: 20px 40px;
    background-color: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    font-size: 20px;
    color: #333333;
    font-weight: bold;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 14px;
    color: #666666;
    line-height: 180%;
}

.honors-loop {
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    padding: 40px 0;
}

.honors-track {
    display: flex;
    gap: 80px;
    animation: honors-scroll 30s linear infinite;
}

.honors-track:hover {
    animation-play-state: paused;
}

@keyframes honors-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.honor-item {
    flex-shrink: 0;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.honor-icon {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.business-card {
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #eeeeee;
    transition: transform 0.3s, box-shadow 0.3s;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgb(66, 92, 187);
}

.business-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

.business-title {
    font-size: 24px;
    color: #333333;
    font-weight: bold;
    margin-bottom: 15px;
}

.business-desc {
    font-size: 15px;
    color: #666666;
    line-height: 180%;
    margin-bottom: 20px;
}

.business-features {
    list-style: none;
    margin-bottom: 25px;
}

.business-features li {
    font-size: 14px;
    color: #666666;
    line-height: 200%;
    padding-left: 20px;
    position: relative;
}

.business-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: rgb(66, 92, 187);
    font-weight: bold;
}

.business-link {
    display: inline-block;
    color: rgb(66, 92, 187);
    font-size: 14px;
    font-weight: bold;
    transition: color 0.3s;
}

.business-link:hover {
    color: rgba(60, 120, 216, 1);
}

.product-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-list .hot {
    display: inline-block;
    left: 1em;
    top: 1em;
    height: 1em;
    margin-right: 0.2em;
}

.product-card {
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.product-info {
    padding: 30px;
}

.product-title {
    font-size: 20px;
    color: #333333;
    font-weight: bold;
    margin-bottom: 15px;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-desc {
    font-size: 14px;
    color: #666666;
    height: 2.8em;
    line-height: 1.4em;
    margin-bottom: 20px;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

}

.product-price {
    font-size: 24px;
    color: rgb(66, 92, 187);
    font-weight: bold;
    margin-bottom: 20px;
}

.product-btn {
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgb(66, 92, 187);
    color: #ffffff;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.product-btn:hover {
    background-color: rgba(60, 120, 216, 1);
}

.news-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.news-card {
    background-color: #ffffff;
    display: block;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-card-image {
    width: 100%;
    aspect-ratio: 3/1.5;
    object-fit: cover;
    flex-shrink: 0;
}

.news-card-content {
    padding: 30px;
    flex: 1;
}

.news-card-date {
    font-size: 12px;
    color: #999999;
    margin-bottom: 10px;
}

.news-card-title {
    font-size: 20px;
    color: #333333;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-card-excerpt {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 3.2em;
}

.news-card-more {
    color: rgb(66, 92, 187);
    font-size: 14px;
    font-weight: bold;
    transition: color 0.3s;
}

.news-card-more:hover {
    color: rgba(60, 120, 216, 1);
}

.contact-section {
    background-color: #f8f8f8;
}

.contact-form-title {
    font-size: 24px;
    color: #333333;
    margin-bottom: 30px;
    font-weight: bold;
}

.map-section {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-address-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(66, 92, 187, 0.85);
    padding: 15px 40px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.map-address {
    font-size: 18px;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
    letter-spacing: 1px;
}

.map-placeholder {
    text-align: center;
    color: #999999;
}

.map-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.map-desc {
    font-size: 14px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 24px;
    color: #333333;
    margin-bottom: 30px;
    font-weight: bold;
}

.contact-item {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgb(66, 92, 187);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-item-content {
    flex: 1;
}

.contact-item-label {
    font-size: 16px;
    color: #666666;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-item-value {
    font-size: 18px;
    color: #333333;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 14px;
    color: #333333;
    margin-bottom: 10px;
    font-weight: bold;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dddddd;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgb(66, 92, 187);
}

.form-textarea {
    height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    height: 45px;
    background-color: rgb(66, 92, 187);
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-submit:hover {
    background-color: rgba(60, 120, 216, 1);
}

.values-grid.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.detail-main {
    font-size: 16px;
    line-height: 200%;
    color: #666666;
}

.detail-title {
    font-size: 30px;
    color: #333333;
    font-weight: bold;
    margin-bottom: 20px;
}

.detail-meta {
    font-size: 14px;
    color: #999999;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
}

.meta-item {
    margin-right: 30px;
}

.detail-image {
    margin-bottom: 30px;
}

.detail-image img {
    width: 100%;
    height: auto;
}

.news-detail-image {
    height: 420px;
    overflow: hidden;
}

.news-detail-image img {
    max-height: 420px;
    height: 100%;
    object-fit: cover;
}

.detail-content {
    font-size: 16px;
    line-height: 200%;
}

.content-subtitle {
    font-size: 22px;
    color: #333333;
    font-weight: bold;
    margin: 40px 0 20px;
}

.indent {
    margin-bottom: 25px;
    text-indent: 2em;
}

.tips-box {
    background-color: #f8f8f8;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid rgb(66, 92, 187);
}

.tips-title {
    font-size: 18px;
    color: #333333;
    font-weight: bold;
    margin-bottom: 15px;
}

.tips-box p {
    margin-bottom: 10px;
}

.detail-nav {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eeeeee;
    display: flex;
    justify-content: space-between;
}

.nav-prev,
.nav-next {
    color: #666666;
    transition: color 0.3s;
}

.nav-prev:hover,
.nav-next:hover {
    color: rgb(66, 92, 187);
}

.detail-sidebar {}

.sidebar-box {
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    padding: 30px 30px 20px;
    margin-bottom: 30px;
}

.sidebar-box.sidebar-services {
    background-color: #f8f8f8;
    border: none;
}

.sidebar-box.sidebar-price {
    background-color: #f8f8f8;
    border: none;
}

.sidebar-box.sidebar-info {
    background-color: #f8f8f8;
    border: none;
}

.sidebar-box.sidebar-contact {
    background-color: rgb(66, 92, 187);
    padding: 30px;
    text-align: center;
    border: none;
}

.sidebar-title {
    font-size: 18px;
    margin-bottom: 1em;
    color: #333333;
    font-weight: bold;
}

.sidebar-box.sidebar-contact .sidebar-title {
    color: #ffffff;
}

.sidebar-list {
    list-style: none;
    padding: 0;
}

.sidebar-item {
    padding: 15px 0;
    border-bottom: 1px solid #eeeeee;
}

.sidebar-item:hover .sidebar-text {
    color: rgb(66, 92, 187);
}

.sidebar-item:last-child {
    border-bottom: none;
}

.sidebar-services .sidebar-item {
    padding: 12px 0;
    border-bottom: 1px solid #dddddd;
}

.sidebar-link {
    display: block;
    color: #666666;
    transition: color 0.3s;
}

.sidebar-link:hover {
    color: rgb(66, 92, 187);
}

.sidebar-text {
    font-size: 14px;
    color: #333333;
    margin-bottom: 5px;
    line-height: 1.4;
}

.sidebar-date {
    font-size: 12px;
    color: #999999;
}

.contact-desc {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-phone {
    font-size: 24px;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-btn {
    display: block;
    background-color: #ffffff;
    color: rgb(66, 92, 187);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.contact-btn:hover {
    background-color: #f0f0f0;
}

.price-amount {
    font-size: 36px;
    color: rgb(66, 92, 187);
    font-weight: bold;
    margin-bottom: 10px;
}

.price-desc {
    font-size: 14px;
    color: #999999;
    margin-bottom: 30px;
}

.price-btn {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: rgb(66, 92, 187);
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.price-btn:hover {
    background-color: rgba(60, 120, 216, 1);
}

.info-item {
    font-size: 14px;
    color: #666666;
    line-height: 200%;
    margin-bottom: 10px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 4em;
}

.service-item {
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px solid #eeeeee;
}

.service-item:last-child {
    border-bottom: none;
}

.service-check {
    position: absolute;
    left: 0;
    color: rgb(66, 92, 187);
    font-weight: bold;
}

.material-list {
    list-style: disc;
    padding-left: 30px;
}

.material-item {
    margin-bottom: 10px;
}

.process-box {
    background-color: #f8f8f8;
    padding: 30px;
    margin: 20px 0;
}

.process-list {
    padding-left: 20px;
}

.process-item {
    margin-bottom: 15px;
}

.advantages-text {
    line-height: 200%;
}

@media (max-width: 1200px) {

    .company-intro,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .business-grid {
        grid-template-columns: 1fr;
    }

    .intro-image img {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {

    .page-section {
        padding: 20px 0;
    }

    .page-banner {
        height: 200px;
    }

    .banner-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .breadcrumb {
        font-size: 11px;
    }

    .section-header {
        margin-bottom: 20px;
    }

    .section-title-main {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .section-subtitle-main {
        font-size: 12px;
    }

    .values-grid,
    .values-grid.grid-4,
    .team-grid,
    .honors-grid,
    .product-list,
    .news-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .value-item {
        padding: 15px 12px;
    }

    .value-item-title {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .value-item-desc {
        font-size: 12px;
    }

    .business-card {
        padding: 15px 12px;
    }

    .business-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .business-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .business-desc {
        margin-bottom: 12px;
        font-size: 13px;
    }

    .business-features {
        margin-bottom: 15px;
    }

    .business-features li {
        font-size: 12px;
    }

    .business-link {
        font-size: 12px;
    }

    .product-info {
        padding: 15px 12px;
    }

    .product-image {
        height: 180px;
    }

    .product-title {
        margin-bottom: 10px;
        font-size: 16px;
    }

    .product-desc {
        margin-bottom: 12px;
        font-size: 13px;
    }

    .product-price {
        margin-bottom: 12px;
        font-size: 18px;
    }

    .product-btn {
        font-size: 13px;
    }

    .timeline {
        padding: 15px 0;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 25px;
    }

    .timeline-item:nth-child(even) {
        direction: ltr;
    }

    .timeline-year {
        text-align: left;
        padding-left: 0;
        padding-right: 0;
        font-size: 22px;
    }

    .timeline-item:nth-child(even) .timeline-year {
        text-align: left;
        padding-left: 0;
    }

    .timeline-content {
        padding: 12px 15px;
    }

    .timeline-content h3 {
        margin-bottom: 6px;
        font-size: 15px;
    }

    .timeline-content p {
        font-size: 12px;
    }

    .timeline::before {
        left: 30px;
    }

    .news-list {
        gap: 15px;
    }

    .news-card {
        grid-template-columns: 1fr;
    }

    .news-card-image {
        width: 100%;
        height: 180px;
    }

    .news-card-content {
        padding: 15px 12px;
    }

    .news-card-date {
        margin-bottom: 6px;
        font-size: 10px;
    }

    .news-card-title {
        font-size: 15px;
        white-space: normal;
        margin-bottom: 10px;
    }

    .news-card-excerpt {
        margin-bottom: 10px;
        font-size: 13px;
    }

    .news-card-more {
        font-size: 12px;
    }

    .team-card-img {
        height: 240px;
    }

    .team-card-info {
        padding: 15px 12px;
    }

    .team-card-name {
        margin-bottom: 6px;
        font-size: 15px;
    }

    .team-card-position {
        font-size: 12px;
    }

    .honors-loop {
        padding: 20px 0;
    }

    .honor-icon {
        width: 80px;
        height: 80px;
    }

    .contact-content {
        gap: 20px;
    }

    .contact-info h3,
    .contact-form-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .contact-item {
        margin-bottom: 15px;
        gap: 10px;
    }

    .contact-icon {
        width: 32px;
        height: 32px;
    }

    .contact-icon svg {
        width: 18px;
        height: 18px;
    }

    .contact-item-label {
        margin-bottom: 5px;
        font-size: 13px;
    }

    .contact-item-value {
        font-size: 15px;
    }

    .contact-form {
        padding: 20px 12px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-label {
        margin-bottom: 6px;
        font-size: 12px;
    }

    .form-input,
    .form-textarea {
        font-size: 13px;
        padding: 10px 12px;
    }

    .form-submit {
        height: 40px;
        font-size: 13px;
    }

    .map-section {
        height: 250px;
    }

    .map-address-overlay {
        bottom: 15px;
        padding: 10px 20px;
        border-radius: 6px;
    }

    .map-address {
        font-size: 13px;
        letter-spacing: 0.5px;
    }

    .map-title {
        margin-bottom: 6px;
        font-size: 15px;
    }

    .map-desc {
        font-size: 12px;
    }

    .detail-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .detail-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .detail-meta {
        font-size: 11px;
        margin-bottom: 15px;
        padding-bottom: 12px;
    }

    .meta-item {
        margin-right: 15px;
    }

    .detail-image {
        margin-bottom: 15px;
    }

    .news-detail-image {
        height: 220px;
    }

    .news-detail-image img {
        max-height: 220px;
    }

    .detail-content {
        font-size: 13px;
    }

    .content-subtitle {
        font-size: 16px;
        margin: 25px 0 12px;
    }

    .indent {
        margin-bottom: 15px;
    }

    .detail-nav {
        flex-direction: column;
        gap: 12px;
        margin-top: 25px;
        padding-top: 15px;
    }

    .nav-prev,
    .nav-next {
        font-size: 12px;
    }

    .sidebar-box {
        padding: 15px 12px;
        margin-bottom: 15px;
    }

    .sidebar-title {
        font-size: 15px;
    }

    .sidebar-item {
        padding: 10px 0;
    }

    .sidebar-text {
        margin-bottom: 4px;
        font-size: 12px;
    }

    .sidebar-date {
        font-size: 10px;
    }

    .sidebar-link {
        font-size: 12px;
    }

    .price-amount {
        font-size: 24px;
        margin-bottom: 6px;
    }

    .price-desc {
        margin-bottom: 15px;
        font-size: 12px;
    }

    .price-btn {
        height: 40px;
        line-height: 40px;
        font-size: 13px;
    }

    .info-item {
        margin-bottom: 6px;
        font-size: 12px;
    }

    .tips-box {
        padding: 15px 12px;
        margin: 25px 0;
    }

    .tips-title {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .tips-box p {
        margin-bottom: 6px;
        font-size: 13px;
    }

    .value-item-icon {
        margin: 0 auto 15px;
        width: 60px;
        height: 60px;
    }

    .company-intro {
        gap: 25px;
    }

    .intro-text p {
        margin-bottom: 12px;
        font-size: 13px;
    }

    .business-grid {
        gap: 15px;
    }

    .process-box {
        padding: 15px 12px;
        margin: 12px 0;
    }

    .process-item {
        margin-bottom: 10px;
    }

    .process-box ol li {
        font-size: 13px;
    }

    .material-item {
        margin-bottom: 6px;
        font-size: 13px;
    }

    .service-list li {
        font-size: 13px;
    }
}