/* -----------------------------------------------------------
   GLOBAL RESET
----------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #222;
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

:root {
    --primary: #0A85FF;
    --primary-dark: #0459A8;
    --accent: #38C790;
    --bg-light: #F5F7FA;
    --text-dark: #1d1d1d;
    --text-light: #666;
    --shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* -----------------------------------------------------------
   HEADER
----------------------------------------------------------- */
.header {
    width: 100%;
    background: #ffffff;
    padding: 18px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    border-bottom: 1px solid #eee;
}

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    font-weight: 500;
    color: #222;
    transition: .2s;
}
.nav a:hover {
    color: var(--primary);
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    border: none;
    background: none;
    cursor: pointer;
}
.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #222;
    border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: #fff;
    width: 100%;
    padding: 18px 24px;
    flex-direction: column;
}
.mobile-menu.active {
    display: flex;
}
.mobile-menu a {
    padding: 12px 0;
    text-decoration: none;
    color: var(--text-dark);
    border-bottom: 1px solid #eee;
}

/* FULLSCREEN MOBILE MENU OVERLAY */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 35, 82, 0.80);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
    z-index: 99999;
}

/* Menu active */
.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Close button */
.close-menu {
    position: absolute;
    top: 28px;
    right: 28px;
    font-size: 32px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: 0.8;
}
.close-menu:hover {
    opacity: 1;
}

/* Centered Menu Items */
.mobile-menu-content a {
    display: block;
    font-size: 23px;
    margin: 15px 0;
    color: #fff;
    text-decoration: none;
    text-align: center;
    transition: transform .3s ease, opacity .3s ease;
}



.mobile-menu-content a:hover {
    transform: scale(1.1);
}

/* Mobile Only */
@media (min-width: 900px) {
    .mobile-menu-overlay {
        display: none !important;
    }
}


/* -----------------------------------------------------------
   MOBILE MENU – Soft Drop + Stagger Pop Animation
----------------------------------------------------------- */

/* 初始隐藏状态（整块菜单稍微往上 + 透明） */
.mobile-menu-overlay {
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s cubic-bezier(.16, .84, .44, 1), opacity .35s ease;
}

/* 打开时（轻微弹下） */
.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* 菜单项初始隐藏（不透明度保持 1，只靠位移和 scale） */
.mobile-menu-content a {
    opacity: 0;
    transform: translateY(14px) scale(0.92);
    transition: transform .4s cubic-bezier(.16, .84, .44, 1), opacity .4s ease;
}

/* 打开后逐条出现 */
.mobile-menu-overlay.active .mobile-menu-content a {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* 逐个 item 的出现时间差 */
.mobile-menu-content a:nth-child(1) { transition-delay: .07s; }
.mobile-menu-content a:nth-child(2) { transition-delay: .13s; }
.mobile-menu-content a:nth-child(3) { transition-delay: .19s; }
.mobile-menu-content a:nth-child(4) { transition-delay: .25s; }
.mobile-menu-content a:nth-child(5) { transition-delay: .31s; }
.mobile-menu-content a:nth-child(6) { transition-delay: .37s; }


/* -----------------------------------------------------------
   HERO SECTION
----------------------------------------------------------- */
.hero {
    margin-top: 120px;
    padding: 70px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero-subtext {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .2s;
}
.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary-dark);
    padding: 13px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .2s;
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.hero-points li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 6px;
}

/* Hero Right Image */
.hero-right {
    flex: 1.2;
    position: relative;
}

.hero-img-wrap {
    position: relative;
    width: 100%;
    max-width: 800px; /* 控制图片最大宽度 */
    height: 450px; /* 控制固定高度，让它不会太大 */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 自动裁切、保证美感 */
}

/* Gradient Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(10,133,255,0.4), rgba(0,0,0,0.25));
}

/* Floating Tags */
.float-tag {
    position: absolute;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    padding: 10px 20px;
    border-radius: 14px;
    font-size: 15px;
    color: var(--primary-dark);
    box-shadow: var(--shadow);
    font-weight: 600;
}

.tag1 {
    top: 15%;
    right: -10px;
}
.tag2 {
    bottom: 20%;
    left: -80px;
}
@media (max-width: 900px) {
    .hero-img-wrap {
        height: 350px; /* 控制固定高度，让它不会太大 */
    }
    .tag2 {
        bottom: 13%;
        left: -21px;
    }
}
/* -----------------------------------------------------------
   SERVICES SECTION
----------------------------------------------------------- */
.services {
    padding: 90px 5%;
    background: var(--bg-light);
}

.services h2 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.service-scroll {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding-bottom: 12px;
}

@media (min-width: 769px) {
    .service-scroll {
        justify-content: center; /* ⭐ Desktop 居中 */
        overflow-x: visible;     /* ⭐ Desktop 不滑动 */
    }
}

@media (max-width: 768px) {
    .service-scroll {
        overflow-x: auto;       /* ⭐ 手机可以滑动 */
        justify-content: flex-start; /* ⭐ 手机从左开始排列 */
    }
}

@media (max-width: 768px) {
    .service-scroll {
        overflow-x: auto;       /* ⭐ 保留手动滑动 */
        -webkit-overflow-scrolling: touch; /* ⭐ iPhone 更顺滑 */
    }

    /* ⭐ 完全隐藏滚动条，但不影响滑动 */
    .service-scroll::-webkit-scrollbar {
        display: none;
    }
    .service-scroll {
        scrollbar-width: none;  /* Firefox */
    }
}


.service-card {
    min-width: 240px;
    background: #fff;
    padding: 25px 20px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    scroll-snap-align: start;
    text-align: center;
}

.icon-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card h4 {
    font-weight: 700;
    margin-bottom: 8px;
}

/* pagination container */
.service-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 15px;
}

/* hide on desktop */
@media (min-width: 769px) {
    .service-pagination {
        display: none;
    }
}

/* button style */
.service-pagination button {
    background: white;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: 0.2s ease;
}

/* hover effect */
.service-pagination button:hover {
    transform: scale(1.1);
}

/* arrow image size */
.service-pagination img {
    width: 18px;
    height: 18px;
}

/* rotate images */
.arrow-left {
    transform: rotate(90deg);   /* DOWN → LEFT */
}

.arrow-right {
    transform: rotate(-90deg);  /* DOWN → RIGHT */
}



/* -----------------------------------------------------------
   About Section
----------------------------------------------------------- */
.about-creative {
    position: relative;
    padding: 120px 5%;
}

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

/* LEFT TEXT CARD */
.about-card {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    z-index: 2;
}

.about-card h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.about-card p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-points li {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text-dark);
    position: relative;
    padding-left: 20px;
}

.about-points li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

/* AIRFLOW SHAPE (CREATIVE CURVE) */
.airflow-shape {
    position: absolute;
    left: 45%;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 0% 50%, rgba(10,133,255,0.25), transparent 70%);
    border-radius: 50%;
    filter: blur(35px);
    z-index: 1;
    pointer-events: none;
}

/* RIGHT CIRCLE PHOTO */
.about-photo {
    flex: 1;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.about-photo img {
    width: 330px;
    height: 330px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* MOBILE */
@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .airflow-shape {
        left: -5%;
        top: 45%;
        width: 700px;
        height: 481px;
    }

    .about-photo img {
        margin-top: 30px;
        width: 260px;
        height: 260px;
    }
    .about-points {
        text-align: left;
    }
}


/* -----------------------------------------------------------
   WHY SECTION
----------------------------------------------------------- */
.why {
    padding: 90px 5%;
    display: flex;
    gap: 50px;
    background: var(--bg-light);
}

.why-left {
    flex: 1;
}

.why-left h2 {
    font-size: 35px;
    font-weight: 800;
    line-height: 1.3;
}

.why-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-item {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    color: var(--primary);
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}


.why-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

/* Why Section Photo */
.why-photo {
    grid-column: 1 / -1;         /* ⭐ 让照片占整行 */
    margin: 30px 0;
}

.why-photo img {
    width: 75%;
    border-radius: 20px;
    box-shadow: var(--shadow);
    object-fit: cover;
    max-height: 420px;           /* 可调高度 */
}

.fade-photo {
    opacity: 0;
    transform: translateX(-40px);
    transition: all .8s ease-out;
}

.fade-photo.show {
    opacity: 1;
    transform: translateX(0);
}


@media (max-width: 900px) {

    .why-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 18px 20px;
    }

    .why-icon {
        flex-shrink: 0;
        margin-bottom: 0;
    }

    /* 包住 h4 和 p 的容器 */
    .why-text {
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .why-text h4 {
        margin: 0 0 6px;
        font-size: 18px;
        line-height: 1.2;
    }

    .why-text p {
        margin: 0;
        font-size: 15px;
        line-height: 1.4;
    }
    .why-photo img{
        margin: 10px auto;
        width: 100%;
    }
    .why-photo{
        margin-top: 30px;
        margin-bottom: 0;
    }
}


/* -----------------------------------------------------------
   PRICING
----------------------------------------------------------- */
/* Section */
#pricing {
    padding: 80px 5%;
    background: #eef3f8;
    text-align: center;
}

.pricing-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 45px;
    color: #1d1d1d;
}

/* Grid Layout */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: auto;
}

/* Price Card */
.price-card {
    background: #fff;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    position: relative;
    transition: 0.3s ease;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

/* Highlight Middle Card */
.price-card.highlight {
    transform: scale(1.05);
    box-shadow: 0 18px 55px rgba(10, 133, 255, 0.18);
    border-top: 5px solid #0A85FF;
}

/* Tag */
.price-tag {
    position: absolute;
    top: -12px;
    left: 30px;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.price-tag.basic {
    background: #0A85FF;
}

.price-tag.standard {
    background: #0459A8;
}

.price-tag.premium {
    background: #013b72;
}

/* Text */
.price-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 15px 0 10px;
}

.price-sub {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
}

/* Features */
.price-features {
    text-align: left;
    margin-bottom: 35px;
}

.price-features li {
    margin-bottom: 10px;
    font-size: 15px;
    position: relative;
    padding-left: 18px;
    color: #444;
}

/* Soft blue dot */
.price-features li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #0A85FF;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 7px;
}

/* Button */
.price-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    background: linear-gradient(135deg, #0A85FF, #0459A8);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s;
}

.price-btn:hover {
    background: linear-gradient(135deg, #066fe6, #024c87);
}

.price-btn.large {
    padding: 14px 34px;
    font-size: 17px;
}

/* 加促销旧价 */
.price-sub {
    position: relative;
    display: block;
    text-align: center; /* ⭐ 主价置中 */
    margin-top: 18px;
    color: #E7382F; /* 红色更吸引 */
    font-weight: 700;
    font-size: 20px;
}

.price-sub::before {
    content: attr(data-old); 
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%); /* ⭐ 完全置中 */
    font-size: 14px;
    color: #777;
    text-decoration: line-through;
    opacity: .9;
}

.price-sub {
    opacity: 0;
    transform: scale(0.7);
    transition: all .45s cubic-bezier(.18, .89, .32, 1.28);
}

/* 当卡片进入视区触发 show 时弹出 */
.price-card.show .price-sub {
    opacity: 1;
    transform: scale(1);
}


/* RESPONSIVE */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card.highlight {
        transform: scale(1);
    }

    .price-card {
        padding: 35px 28px;
    }

    .pricing-title {
        font-size: 28px;
    }
}



/* -----------------------------------------------------------
   COVERAGE AREAS
----------------------------------------------------------- */
.areas {
    padding: 80px 5%;
    background: var(--bg-light);
    text-align: center;
}

.areas h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 30px;
}

.areas-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.area-badge {
    background: white;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 16px;
    color: var(--primary-dark);
    box-shadow: var(--shadow);
    font-weight: 600;
    display: inline-block;
}

/* -----------------------------------------------------------
   CONTACT
----------------------------------------------------------- */
/* CONTACT – Wide Minimal Layout */
.contact-wide {
    padding: 100px 5%;
    background: #eef3f8; 
    text-align: center;
}

.contact-wide h2 {
    font-size: 32px;
    margin-bottom: 50px;
    font-weight: 800;
}

/* Wrapper */
.contact-wide-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 100px;              /* 重要：左右 spacing */
    max-width: 1000px;
    margin: auto;
    padding-top: 10px;       /* 修正与标题之间的距离 */
}

/* Each item (no box) */
.c-wide-item {
    display: flex;
    align-items: center;
    gap: 18px;
    text-align: left;       /* 保持专业企业风 */
    min-width: 230px;       /* 让每个 item 相同宽度 */
}

/* Icons */
.c-wide-item .c-icon {
    font-size: 34px;
    display: inline-block;
    margin-top: 2px;
}

/* Text content */
.c-wide-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--primary-dark);
}

.c-wide-item p {
    font-size: 16px;
    color: #333;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 800px) {
    .contact-wide-wrapper {
        flex-direction: column;
        align-items: flex-start;  /* 左对齐 */
        text-align: left;         /* 内容左边 */
        gap: 35px;
    }

    .c-wide-item {
        justify-content: flex-start; /* icon + 文字左边 */
        text-align: left;
        width: 100%;
    }
}



/* -----------------------------------------------------------
   FOOTER
----------------------------------------------------------- */
.footer {
    text-align: center;
    padding: 28px 0;
    font-size: 15px;
    color: #777;
}

/* -----------------------------------------------------------
   RESPONSIVE
----------------------------------------------------------- */
@media (max-width: 900px) {

    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 5%;
    }

    .hero-left h1 {
        font-size: 42px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .why {
        flex-direction: column;
    }

    .contact-info {
        flex-direction: column;
        text-align: center;
    }

    .pricing-wrapper {
        justify-content: center;
    }
}



/* GLOBAL MOBILE SPACING FIX — Reduce section padding */
@media (max-width: 900px) {

    section,
    .services,
    .about-creative,
    .why,
    .pricing,
    .areas,
    .contact-wide {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    /* Hero 特别大，额外减小一点 */
    .hero {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    /* About section 更密一点 */
    .about-card {
        padding: 25px !important;
    }

    /* Pricing Header spacing */
    .pricing h2 {
        margin-bottom: 20px !important;
        text-align: center;
    }

    /* Areas spacing */
    .areas h2 {
        margin-bottom: 20px !important;
        text-align: center;
    }

    /* Contact */
    .contact-wide h2 {
        margin-bottom: 30px !important;
        text-align: center;
    }
}


/* -----------------------------------------------------------
   Animation
----------------------------------------------------------- */


/* HERO TEXT SLIDE */
.hero-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all .9s ease;
}
.hero-left.show {
    opacity: 1;
    transform: translateX(0);
}

/* HERO BUTTON FLOAT */
.hero-buttons a {
    transition: transform .25s ease;
}
.hero-buttons a:hover {
    transform: translateY(-4px);
}

@keyframes heroFloat {
    from { transform: translateY(0); }
    to { transform: translateY(12px); }
}
/* Default state */
.tag1, .tag2 {
    transform: scale(0.7);
    opacity: 0;
    animation: popIn 0.6s cubic-bezier(.18,.89,.32,1.28) forwards;
}

/* Tag2 稍微延迟，显得更自然 */
.tag2 {
    animation-delay: 0.2s;
}

@keyframes popIn {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }
    60% {
        transform: scale(1.08);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}




.service-card {
    opacity: 0;
    transform: translateY(40px);
    transition: .6s ease;
}
.service-card.show {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.about-photo img {
    opacity: 0;
    transform: scale(.8);
    transition: .9s ease;
}
.about-photo img.show {
    opacity: 1;
    transform: scale(1);
}

/* Airflow shape soft bloom */
.airflow-shape {
    animation: bloom 5s ease-in-out infinite alternate;
}
@keyframes bloom {
    0percent  { opacity: .4; transform: scale(1); }
    100percent { opacity: .7; transform: scale(1.1); }
}


.why-item {
    opacity: 0;
    transform: translateX(40px);
    transition: .8s ease;
}
.why-item.show {
    opacity: 1;
    transform: translateX(0);
}


.price-card {
    opacity: 0;
    transform: scale(.9);
    transition: .65s cubic-bezier(.18,.89,.32,1.28);
}
.price-card.show {
    opacity: 1;
    transform: scale(1);
}


.area-badge {
    opacity: 0;
    transform: scale(.7);
    transition: .4s ease;
}
.area-badge.show {
    opacity: 1;
    transform: scale(1);
}


.c-wide-item {
    opacity: 0;
    transform: translateY(40px);
    transition: .7s ease;
}
.c-wide-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* Icon 微旋转互动 */
.c-icon {
    transition: transform .35s ease;
}
.c-wide-item:hover .c-icon {
    transform: rotate(8deg) scale(1.15);
}
