﻿/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Century Gothic', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #222021;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* 通用内容容器 */
/* Layout components */
.content-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */
.header {
    background-color: #cdbcb6;
    padding: 16px 0; /* 只保留上下padding */
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    width: 180px;
    height: auto;
    border-radius: 24px;
}

/* 默认 (手机) */
.nav-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

    .nav-menu.mobile-open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #cdbcb6;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

        .nav-menu.mobile-open .nav-item {
            padding: 12px 0;
            border-bottom: 1px solid rgba(4, 0, 0, 0.1);
            text-align: center;
            width: 100%;
        }

            .nav-menu.mobile-open .nav-item:last-child {
                border-bottom: none;
            }

        .nav-menu.mobile-open .cta-button {
            margin-top: 16px;
            text-align: center;
            display: block;
            border-bottom: none;
            margin-left: 108px;
        }

.nav-item {
    font-size: 18px;
    font-family: 'Century Gothic', Arial, sans-serif;
    font-weight: 700;
    color: #040000;
    text-decoration: none;
    position: relative;
}

.cta-button {
    background-color: #f7c35f;
    color: #040000;
    padding: 8px 16px;
    border-radius: 26px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Century Gothic', Arial, sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .cta-button:hover {
        background-color: #e6b054;
        transform: translateY(-2px);
    }

.hamburger {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    color: #040000;
    z-index: 1001;
}

/* Hero Section */
.home-hero-section {
    background-image: url('../HomeContent/assets/images/img_rectangle_2.png');
    background-size: cover;
    background-position: center;
    background-color: #00000059;
    background-blend-mode: overlay;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 52px 0; /* 只保留上下padding */
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.hero-title {
    font-size: 32px;
    font-family: 'Livvic', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #f7c35f;
}

.hero-subtitle {
    font-size: 28px;
    font-family: 'Livvic', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

.hero-description {
    font-size: 16px;
    font-family: 'Century Gothic', Arial, sans-serif;
    font-weight: 700;
    font-style: italic;
    line-height: 1.5;
    color: #ffffff;
    margin-top: 26px;
}

.hero-cta {
    background-color: #f7c35f;
    color: #1a1a1a;
    padding: 12px 20px;
    border-radius: 20px;
    font-size: 16px;
    font-family: 'Livvic', Arial, sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
    display: inline-block;
}

    .hero-cta:hover {
        background-color: #e6b054;
        transform: translateY(-2px);
    }

.hero-images {
    display: flex;
    gap: 16px;
    width: 100%;
    max-width: 400px;
}

.hero-image-main {
    flex: 1;
    border-radius: 10px;
}

.hero-image-side {
    width: 60px;
    border-radius: 10px;
}

/* About Section */
.about-section {
    background-color: #1e0c06;
    padding: 60px 0; /* 只保留上下padding */
    position: relative;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.about-image {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 26px;
}

.about-accent {
    position: absolute;
    bottom: -1px;
    left: -7px;
    width: 20px;
    height: 200px;
    background-color: #f7c35f;
    border-radius: 5px 5px 5px 5px;
    z-index: 1;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.about-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-label {
    font-size: 18px;
    font-family: 'Century Gothic', Arial, sans-serif;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    padding: 30px 0 0 0;
}

.section-title {
    font-size: 32px;
    font-family: 'Livvic', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 10px;
}

.highlight {
    color: #f8d254;
}

.section-subtitle {
    font-size: 18px;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.about-description {
    font-size: 18px;
    font-family: 'Livvic', Arial, sans-serif;
    font-weight: 500;
    line-height: 1.5;
    color: #f7c35f;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-icon {
    width: 24px;
    height: 24px;
}

.feature-text {
    font-size: 16px;
    font-family: 'Livvic', Arial, sans-serif;
    font-weight: 500;
    color: #ffffff;
}

/* Tiles Section */
.tiles-section {
    background-color: #222021;
    padding: 58px 0; /* 只保留上下padding */
}

.tiles-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.tiles-header {
    text-align: center;
}

.tiles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100%;
}

.tile-card {
    background-color: rgba(217, 217, 217, 0.1);
    border-radius: 14px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    box-shadow: none;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    text-decoration: none;
}

    .tile-card:hover {
        background-color: #f7c35f;
        box-shadow: 0px 4px 50px rgba(136, 136, 136, 1);
        transform: translateY(-5px);
    }

        .tile-card:hover .tile-name {
            color: #000000;
        }

.tile-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.tile-name {
    font-size: 18px;
    font-family: 'Livvic', Arial, sans-serif;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
}

/* Why Choose Section */
.why-choose-section {
    background-color: #1e0c06;
    padding: 60px 0; /* 只保留上下padding */
}

.why-choose-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why-choose-image {
    width: 100%;
    max-width: 500px;
    height: 480px;
    display: block;
    border-radius: 12px;
}

.why-choose-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.strengths-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.strength-item {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.strength-icon {
    width: 60px;
    height: 60px;
    border-radius: 44px;
    flex-shrink: 0;
}

.strength-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.strength-title {
    font-size: 20px;
    font-family: 'Livvic', Arial, sans-serif;
    font-weight: 600;
    color: #f7c35f;
}

.strength-description {
    font-size: 17px;
    font-family: 'Century Gothic', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    opacity: 0.8;
}

/* Projects Section - 修复版本 */
.projects-section {
    background-color: #222021;
    padding: 66px 0;
}

.projects-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 74px;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    min-height: 500px;
}

.project-item {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.98); /* 减少移动距离 */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* 从0.6s改为0.3s */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

    .project-item.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

    .project-item.hidden {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px) scale(0.95); /* 减少移动距离 */
        transition: all 0.25s cubic-bezier(0.4, 0, 0.6, 1); /* 更快的退出 */
    }

    /* 减少延迟时间 */
    .project-item.visible:nth-child(1) {
        transition-delay: 0ms;
    }

    .project-item.visible:nth-child(2) {
        transition-delay: 50ms; /* 从100ms改为50ms */
    }

    .project-item.visible:nth-child(3) {
        transition-delay: 100ms; /* 从200ms改为100ms */
    }

    .project-item.visible:nth-child(4) {
        transition-delay: 150ms; /* 从300ms改为150ms */
    }

    .project-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* 更快 */
        filter: blur(0px);
    }

    .project-item.hidden img {
        filter: blur(1px); /* 减少模糊 */
        transform: scale(1.05); /* 减少缩放 */
    }

    .project-item:hover img {
        transform: scale(1.05); /* 减少hover缩放 */
        transition: transform 0.2s ease-out; /* 更快的hover */
    }

.pagination {
    display: flex;
    gap: 6px;
    align-items: center;
}

.pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #cccccc;
}

.hidden {
    display: none !important;
}

.pagination-dot.active {
    width: 20px;
    background-color: #f7c35f;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #1e0c06;
    padding: 58px 0; /* 只保留上下padding */
}

.testimonials-content {
    display: flex;
    flex-direction: column;
    gap: 68px;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 20px;
}

.testimonials-title {
    font-size: 32px;
    font-family: 'Livvic', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

    .testimonials-title .highlight {
        color: #f8d254;
    }

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.testimonial-card {
    background-color: #f8d254;
    border-radius: 24px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-quote-icon {
    width: 44px;
    height: 44px;
    align-self: flex-start;
}

.testimonial-image {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    margin: 0 auto;
}

.testimonial-name {
    font-size: 20px;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    color: #070707;
    margin-top: 20px;
}

.testimonial-text {
    font-size: 16px;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 500;
    line-height: 1.4;
    color: #000000;
}

/* FAQ Section */
.faq-section {
    background-color: #222021;
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 46px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
}

.faq-title {
    font-size: 32px;
    font-family: 'Livvic', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
}

.faq-item {
    border: 1px solid #f8d254;
    border-radius: 12px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: rgba(34, 32, 33, 0.8);
}

    .faq-item:hover {
        background-color: rgba(248, 210, 84, 0.1);
    }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-question-text {
    font-size: 20px;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    color: #ffffff;
    flex: 1;
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    color: #f8d254;
}

.faq-answer {
    font-size: 18px;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 500;
    line-height: 1.6;
    color: #cccccc;
    margin-top: 20px;
    padding-left: 10px;
    border-left: 2px solid #f8d254;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.5s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Stats */
.faq-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 15px 30px 15px;
}

.stat-card {
    background: rgba(248, 210, 84, 0.1);
    border: 1px solid #f8d254;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    min-width: 200px;
    flex: 1;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #f8d254;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #ffffff;
}

/* CTA Section */
.cta-section {
    background-color: #1e0c06;
    padding: 60px 0; /* 只保留上下padding */
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1440px;
    margin: 0 auto;
}

.cta-text {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.cta-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 13px;
}

.cta-subtitle {
    font-size: 18px;
    font-family: 'Lato', Arial, sans-serif;
    font-weight: 400;
    color: #ffffff;
    text-align: left;
}

.cta-title {
    font-size: 32px;
    font-family: 'Outfit', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: #f7c35f;
}

.cta-description {
    font-size: 22px;
    font-family: 'Lato', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    opacity: 0.8;
}

.cta-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: #cdbcb6;
    padding: 46px 0px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-logo {
    width: 150px;
    border-radius: 24px;
}

.footer-description {
    font-size: 14px;
    font-family: 'Century Gothic', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #030000;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.social-links {
    display: flex;
    gap: 28px;
}

.social-icon {
    width: 24px;
    height: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.footer-column-title {
    font-size: 18px;
    font-family: 'Livvic', Arial, sans-serif;
    font-weight: 700;
    color: #030000;
}

.footer-link-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link {
    font-size: 16px;
    font-family: 'Century Gothic', Arial, sans-serif;
    font-weight: 400;
    color: #030000;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer-link:hover {
        color: #f7c35f;
    }

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
    padding-top: 46px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright {
    font-size: 13px;
    font-family: 'Century Gothic', Arial, sans-serif;
    font-weight: 400;
    color: #030000;
}

.footer-legal {
    display: flex;
    gap: 28px;
    align-items: center;
}

.footer-legal-link {
    font-size: 13px;
    font-family: 'Century Gothic', Arial, sans-serif;
    font-weight: 400;
    color: #030000;
    text-decoration: none;
}

.footer-separator {
    color: #030000;
}

/* 自定义按钮样式 */
.hero-cta.contact-btn,
.hero-cta.quotation-btn,
.cta-button.testimonial-btn {
    display: inline-block;
    padding: 8px 18px;
    font-size: 20px;
    font-weight: 550;
    font-family: 'Century Gothic', Arial, sans-serif;
    border-radius: 26px;
    width: auto;
    max-width: fit-content;
}

/* Hero 图片轮播 */
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 460px;
    height: auto;
    aspect-ratio: 3 / 5;
    overflow: hidden;
    border-radius: 26px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

    .hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 22px;
    }

    .hero-slide.active {
        opacity: 1;
        z-index: 1;
    }

/* Responsive media queries */
@media (min-width: 640px) {
    .content-container {
        padding: 0 24px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 42px;
    }

    .hero-description {
        font-size: 18px;
    }

    .section-title {
        font-size: 40px;
    }

    .tiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        min-height: 400px;
    }

    .project-item {
        height: 350px; /* 平板尺寸 */
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-links {
        flex-direction: row;
        gap: 72px;
        padding: 35px 173px;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 768px) {
    .content-container {
        padding: 0 32px;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 48px;
    }

        .nav-menu.mobile-open {
            position: static;
            background-color: transparent;
            flex-direction: row;
            padding: 0;
            box-shadow: none;
        }

            .nav-menu.mobile-open .nav-item {
                padding: 0;
                border-bottom: none;
                text-align: left;
            }

            .nav-menu.mobile-open .cta-button {
                margin-top: 0;
                display: inline-block;
            }

    .hamburger {
        display: none;
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
    }

    .hero-text {
        flex: 2;
    }

    .hero-images {
        flex: 1;
        max-width: none;
    }

    .about-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 60px;
    }

    .about-image-container {
        flex: 1;
        max-width: 500px;
    }

    .about-text {
        flex: 1;
        max-height: 100%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        margin-top: -23px;
    }

    .why-choose-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 60px;
    }

    .why-choose-image {
        flex: 1;
        max-width: 500px;
    }

    .why-choose-text {
        flex: 1;
        max-height: 100%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        margin-top: -15px;
    }

    .cta-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 60px;
    }

    .cta-text {
        flex: 1;
        max-height: 100%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .cta-image {
        flex: 1;
        max-width: 500px;
        height: auto;
        object-fit: cover;
        border-radius: 20px;
    }

    .faq-question-text {
        font-size: 20px;
    }

    .faq-answer {
        font-size: 18px;
    }

    .stat-card {
        min-width: 150px;
    }
}

@media (min-width: 1024px) {
    .content-container {
        padding: 0 48px;
    }

    .hero-title {
        font-size: 64px;
    }

    .hero-subtitle {
        font-size: 56px;
    }

    .hero-description {
        font-size: 20px;
    }

    .section-title {
        font-size: 50px;
    }

    .tiles-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(4, 1fr);
        min-height: 320px;
    }

    .project-item {
        height: 280px; /* 桌面4列布局时的高度 */
    }
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-title {
        font-size: 48px;
    }

    .faq-title {
        font-size: 42px;
    }
    .footer {
        padding: 30px 0px;
    }
    .footer-bottom {
        padding-top: 14px;
    }
    .footer-description {
        max-width: 620px;
    }
    .footer-brand {
        gap: 20px;
    }
    .cta-title {
        font-size: 48px;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 80px;
    }

    .hero-subtitle {
        font-size: 70px;
    }

    .hero-description {
        font-size: 24px;
    }

    .testimonials-title {
        font-size: 64px;
    }

    .project-item {
        height: 320px; /* 大屏幕稍微增大 */
    }

    .projects-grid {
        min-height: 360px;
    }

    .faq-title {
        font-size: 50px;
    }

    .cta-title {
        font-size: 56px;
    }
}

/* Interactive states */
.nav-item:hover {
    color: #f7c35f;
}

.tile-card:hover {
    transform: translateY(-5px);
}

.project-image:hover {
    transform: scale(1.05);
}

.faq-item:hover {
    background-color: rgba(248, 210, 84, 0.1);
}

.footer-link:hover {
    color: #f7c35f;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}
