/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* 导航栏样式 */
.header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-left: 0.8rem;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 2rem;
    position: relative;
}

.nav-menu li:hover .submenu {
    display: block;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 0.5rem 0;
    min-width: 150px;
    z-index: 1000;
}

.submenu li {
    margin: 0;
    padding: 0.5rem 1rem;
}

.submenu a {
    color: #2c3e50;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    white-space: nowrap;
}

.submenu a:hover {
    color: #3498db;
}

.submenu a::after {
    display: none;
}

.nav-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #3498db;
}

/* 主要内容区域 */
main {
    margin-top: 70px;
}

/* 联系我们区域 */
.contact {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: #666;
    line-height: 1.8;
    margin: 1rem 0;
}

.qrcode-container {
    margin-top: 2rem;
    /*text-align: center; */
}

.qrcode-img {
    width: 180px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.qrcode-img:hover {
    transform: scale(1.05);
}

.map-container {
    margin-top: 3rem;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 10px;
}

/* 关于我们区域 */
.about {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.about-content h3 {
    color: #2c3e50;
    margin: 1.5rem 0 1rem;
}

.about-content p {
    color: #666;
    line-height: 1.8;
    margin: 1rem 0;
}

.about-content ul {
    list-style: disc;
    padding-left: 2rem;
    margin: 1rem 0;
}

.about-content li {
    color: #666;
    line-height: 1.8;
    margin: 0.5rem 0;
}

/* 合作客户展示区域 */
.customers {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.customer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.customer-logo {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16/9;
}

.customer-logo:hover {
    transform: translateY(-5px);
}

.customer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}

/* 案例展示区域 */
.cases {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.case-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    opacity: 1;
    transform: translateY(0);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(52, 152, 219, 0.25);
    background: linear-gradient(135deg, #fff 0%, #e8f4fc 100%);
}

.case-card h3 {
    color: #2c3e50;
    margin: 1.5rem 0 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.case-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-top: 1rem;
}

/* 英雄区域样式 */
.hero {
    color: #fff;
    padding: 6rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* 创建梦幻动效背景 */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(125deg, #00c6ff, #0072ff, #00e676, #00b0ff);
    background-size: 400% 400%;
    opacity: 0.9;
    z-index: -2;
    animation: gradientBG 15s ease infinite;
}

/* 添加散景效果 */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-image:
        radial-gradient(circle at 30% 20%, rgba(0, 255, 240, 0.4) 0%, rgba(255, 255, 255, 0) 25%),
        radial-gradient(circle at 70% 60%, rgba(0, 230, 118, 0.35) 0%, rgba(255, 255, 255, 0) 20%),
        radial-gradient(circle at 40% 80%, rgba(0, 198, 255, 0.3) 0%, rgba(255, 255, 255, 0) 15%),
        radial-gradient(circle at 80% 10%, rgba(0, 255, 200, 0.4) 0%, rgba(255, 255, 255, 0) 20%),
        radial-gradient(circle at 20% 50%, rgba(0, 114, 255, 0.35) 0%, rgba(255, 255, 255, 0) 18%),
        radial-gradient(circle at 60% 30%, rgba(0, 230, 118, 0.3) 0%, rgba(255, 255, 255, 0) 22%);
}

/* 添加浮动光点 */
.hero .bokeh {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.hero .bokeh span {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px 4px rgba(0, 230, 118, 0.6), 0 0 30px 8px rgba(0, 198, 255, 0.4);
    animation: float 20s infinite;
}

.hero .bokeh span:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-duration: 15s;
    width: 12px;
    height: 12px;
}

.hero .bokeh span:nth-child(2) {
    top: 60%;
    left: 70%;
    animation-duration: 18s;
    animation-delay: 1s;
    width: 10px;
    height: 10px;
}

.hero .bokeh span:nth-child(3) {
    top: 40%;
    left: 25%;
    animation-duration: 12s;
    animation-delay: 2s;
}

.hero .bokeh span:nth-child(4) {
    top: 75%;
    left: 80%;
    animation-duration: 20s;
    animation-delay: 3s;
    width: 15px;
    height: 15px;
}

.hero .bokeh span:nth-child(5) {
    top: 10%;
    left: 90%;
    animation-duration: 14s;
    animation-delay: 4s;
}

.hero .bokeh span:nth-child(6) {
    top: 30%;
    left: 60%;
    animation-duration: 16s;
    animation-delay: 5s;
    width: 9px;
    height: 9px;
}

.hero .bokeh span:nth-child(7) {
    top: 70%;
    left: 40%;
    animation-duration: 22s;
    animation-delay: 6s;
    width: 11px;
    height: 11px;
}

.hero .bokeh span:nth-child(8) {
    top: 50%;
    left: 10%;
    animation-duration: 19s;
    animation-delay: 7s;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.7;
    }

    25% {
        transform: translateY(-20px) translateX(10px) scale(1.02);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-40px) translateX(-15px) scale(1.05);
        opacity: 0.9;
    }

    75% {
        transform: translateY(-20px) translateX(20px) scale(1.02);
        opacity: 0.8;
    }

    100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.7;
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid;
    letter-spacing: 0.2em;
    animation: typing 3.5s steps(30, end),
        blink-caret .75s step-end infinite;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

    background: linear-gradient(45deg, #ffffff, #e74c3c);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 3s ease infinite;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: #fff
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

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

.hero-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: nowrap;

    position: sticky;
    top: 80px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.2rem;
    background-color: deeppink;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: 1rem;
    white-space: nowrap;
    min-width: auto;
}

.cta-button:hover {
    background-color: #c0392b;
}

/* 服务和优势卡片样式 */
.services,
.advantages {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services h2,
.advantages h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.service-grid,
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.hr {
    grid-column: 1 / -1;
}

.service-card,
.advantage-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    opacity: 1;
    transform: translateY(0);
    position: relative;
    overflow: hidden;
}

.service-card.show,
.advantage-card.show {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover,
.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.2);
    background: linear-gradient(135deg, #fff 0%, #e8f4fc 100%);
}

.service-card h3,
.advantage-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-icon {
    width: 32px;
    height: 32px;
    margin-right: 0.8rem;
    display: inline-block;
    background-color: #3498db;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card:nth-child(1) .service-icon {
    mask-image: url('../images/service-icons.svg#miniapp');
    -webkit-mask-image: url('../images/service-icons.svg#miniapp');
}

.service-card:nth-child(2) .service-icon {
    mask-image: url('../images/service-icons.svg#wechat');
    -webkit-mask-image: url('../images/service-icons.svg#wechat');
}

.service-card:nth-child(3) .service-icon {
    mask-image: url('../images/service-icons.svg#h5');
    -webkit-mask-image: url('../images/service-icons.svg#h5');
}

.service-card:nth-child(4) .service-icon {
    mask-image: url('../images/service-icons.svg#app');
    -webkit-mask-image: url('../images/service-icons.svg#app');
}

.service-card:nth-child(5) .service-icon {
    mask-image: url('../images/service-icons.svg#outsource');
    -webkit-mask-image: url('../images/service-icons.svg#outsource');
}

.service-card:nth-child(6) .service-icon {
    mask-image: url('../images/service-icons.svg#consulting');
    -webkit-mask-image: url('../images/service-icons.svg#consulting');
}

/* 页脚样式 */
.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 3rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-info h3,
.footer-links h3 {
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 荣誉资质展示区域样式 */
.honor {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.qualification {
    display: none;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.qualification.show {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

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

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

.honor h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.honor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.honor-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    text-align: center;
}

.honor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.2);
}

.honor-card img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.honor-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* 产品展示区域样式 */
.products {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    text-align: center;
}

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

.product-image {
    margin-bottom: 1.5rem;
}

.product-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.product-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.product-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.product-price {
    font-size: 1.8rem;
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.join-group-btn,
.buy-now-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.join-group-btn:hover,
.buy-now-btn:hover {
    background-color: #2980b9;
}

/* 响应式设计 */
/* 汉堡菜单按钮样式 */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .customer-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .customer-logo {
        padding: 1rem;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        flex-direction: column;
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 1.2rem;
        font-weight: 600;
        color: #2c3e50;
        margin-left: 0;
    }

    /* 汉堡菜单动画 */
    .menu-toggle.active span:first-child {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:last-child {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

.talent-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.talent-list li {
    padding: 0.8rem;
    border-radius: 5px;
    background-color: rgba(52, 152, 219, 0.1);
    transition: all 0.3s;
}

/* 服务介绍页面样式 */
.services-intro {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-intro h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.service-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-detail {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.2);
}

.product-header {
    background: linear-gradient(135deg, #3498db, #2980b9);
    padding: 2rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.product-icon {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.product-content {
    padding: 2rem;
}

.product-description p {
    color: #666;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.feature-list li {
    color: #2c3e50;
    margin: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.price {
    font-size: 2rem;
    color: #e74c3c;
    font-weight: bold;
}

.price span {
    font-size: 1rem;
    color: #666;
}

/* 服务流程样式 */
.service-process {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    background: #f8f9fa;
}

.service-process h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.2);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.step p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .service-products {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .product-pricing {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.talent-list li:hover {
    background-color: rgba(52, 152, 219, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.2);
}

.talent-list strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.qrcode-container {
    margin: 1rem auto;
}

.qrcode-img {
    width: 150px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.miniapp-cases {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}