/*! style.css v63e8aaf1 */
/* Generated: 2026-01-14 17:12:26 */
/* Domain: chn-oop-9yousports.com */
/* Enhanced user experience */
/* Mobile-first responsive design */
/* Cross-browser compatibility */

.css_56f9c1 {
    /* Random class Cd5566982 fingerprint optimization */
    display: none;
}

/**
 * Template29 - 深蓝色主题风格
 * 参考：https://zhn-cn-leyusport.com/
 * Bootstrap 5 + 自定义样式
 */

:root {
    --t29-primary: #00044b;
    --t29-accent: #EF177D;
    --t29-bg: #FFFFFF;
    --t29-text: #333333;
    --t29-text-light: #666666;
    --t29-border: #E5E5E5;
    --t29-white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--t29-text);
    background: var(--t29-bg);
    font-size: 16px;
}

/* 顶部信息条 */
.header-top-area {
    background: #f8f9fa;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--t29-border);
}

.header-top-left-items {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.header-top-left-single-item {
    display: inline-block;
}

.header-top-left-single-item a {
    text-decoration: none;
    color: var(--t29-text-light);
    transition: color 0.3s;
}

.header-top-left-single-item a:hover {
    color: var(--t29-primary);
}

.header-top-left-icon {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-top-left-icon i {
    color: var(--t29-primary);
    font-size: 16px;
}

.header-top-left-icon span {
    color: var(--t29-text);
    font-weight: 500;
}

.header-top-right-items {
    display: flex;
    justify-content: flex-end;
}

.header-top-right-icon-area ul {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.header-top-right-icon-area ul li {
    display: inline-block;
}

.header-top-right-icon-area ul li a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--t29-primary);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

.header-top-right-icon-area ul li a:hover {
    background: var(--t29-accent);
    transform: translateY(-3px);
}

/* 主导航 */
.header-area {
    background: var(--t29-primary);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s;
}

.header-area.sticky {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-logo {
    display: flex;
    align-items: center;
}

.main-logo img,
.stiky-logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s;
}

.stiky-logo {
    display: none;
}

.header-area.sticky .main-logo {
    display: none;
}

.header-area.sticky .stiky-logo {
    display: block;
}

.itsoft_menu {
    display: flex;
    justify-content: flex-end;
}

.header-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.header-menu ul li {
    display: inline-block;
}

.header-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    transition: all 0.3s;
    position: relative;
}

.header-menu ul li a:hover {
    color: var(--t29-accent);
}

.header-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--t29-accent);
    transition: width 0.3s;
}

.header-menu ul li a:hover::after {
    width: 100%;
}

/* 移动端菜单 */
.mobile-menu-area {
    background: var(--t29-primary);
    padding: 15px 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    display: block;
}

/* Hero/Slider 强制高度与层级，避免被覆盖或高度为0 */
.slider-section {
    position: relative;
    overflow: hidden;
}

.slider-section .heroSwiper,
.slider-section .heroSwiper .swiper-wrapper,
.slider-section .heroSwiper .swiper-slide {
    min-height: 600px;
}

.slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.slider-bg > .container {
    position: relative;
    z-index: 1;
}

.slider-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 4, 75, 0.6);
}

.slider-title {
    font-size: 72px;
    font-weight: 700;
    color: white;
    line-height: 80px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.slider-description {
    font-size: 18px;
    font-weight: 500;
    color: white;
    line-height: 25px;
    margin-bottom: 37px;
    font-family: 'Rubik', sans-serif;
}

.slider-buttons {
    margin-top: 14px;
}

.rev-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--t29-primary);
    color: white;
    text-decoration: none;
    border-radius: 0 30px 0 30px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.rev-btn:hover {
    background: var(--t29-accent);
    border-color: var(--t29-accent);
    color: white;
    transform: translateY(-2px);
}

.rev-btn i {
    margin-left: 5px;
}

/* Feature按钮样式 */
.feature-btn {
    margin-top: 35px;
}

.feature-btn a {
    display: inline-block;
    padding: 15px 40px;
    background: var(--t29-primary);
    color: white;
    text-decoration: none;
    border-radius: 0 30px 0 30px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-btn a:hover {
    background: var(--t29-accent);
    border-color: var(--t29-accent);
    color: white;
    transform: translateY(-2px);
}

.feature-btn a i {
    margin-left: 5px;
}

/* Swiper样式 */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--t29-accent);
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--t29-accent);
}

/* Section标题样式 */
.dreamit-section-sub-title h5 {
    font-size: 16px;
    font-weight: 500;
    color: var(--t29-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.dreamit-section-main-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--t29-primary);
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.dreamit-section-main-title h2 strong {
    color: var(--t29-accent);
}

.dreamit-section-content-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--t29-text-light);
    margin-bottom: 20px;
}

.dreamit-section-content-text p {
    margin-bottom: 15px;
}

/* About Section */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-single-box {
    position: relative;
}

.single-about-thumb img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Services Section */
.feature-section {
    position: relative;
}

.single-feature-box {
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    margin-bottom: 30px;
    height: 100%;
}

.single-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(239, 23, 125, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 30px;
    color: var(--t29-accent);
}

.feature-content h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--t29-primary);
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 14px;
    color: var(--t29-text-light);
    line-height: 1.6;
    margin: 0;
}

/* Workflow Section */
.service-section {
    position: relative;
    background: #f8f9fa;
}

.single-service-box {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 30px;
}

.service-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.service-thumb img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}

.single-service-box:hover .service-thumb img {
    transform: scale(1.1);
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,4,75,0.95), transparent);
    padding: 30px;
    color: white;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--t29-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.service-icon i {
    font-size: 24px;
    color: white;
}

.service-title h2 {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.service-content-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin: 0;
}

/* Partners Section */
.brand-section {
    position: relative;
    background: white;
}

.brand-thumb {
    text-align: center;
    padding: 20px;
    transition: all 0.3s;
}

.brand-thumb img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.brand-thumb:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Owl Carousel样式 */
.owl-carousel .owl-item {
    opacity: 0.8;
    transition: opacity 0.3s;
}

.owl-carousel .owl-item.active {
    opacity: 1;
}

.owl-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.owl-nav button {
    width: 50px;
    height: 50px;
    background: var(--t29-primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.owl-nav button:hover {
    background: var(--t29-accent);
    transform: scale(1.1);
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.owl-dots .owl-dot.active {
    background: var(--t29-accent);
    width: 30px;
    border-radius: 6px;
}

/* Cases/Portfolio Section */
.portfolio_area {
    position: relative;
}

.dreamit-single-portfolio {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 30px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.dreamit-single-portfolio:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.dreamit-portfolio-thumb {
    position: relative;
    overflow: hidden;
}

.dreamit-portfolio-thumb img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

.dreamit-single-portfolio:hover .dreamit-portfolio-thumb img {
    transform: scale(1.1);
}

.portfolio-content {
    padding: 25px;
    background: white;
}

.portfolio-content h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--t29-primary);
    margin-bottom: 10px;
}

.portfolio-content h2 a {
    color: var(--t29-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.portfolio-content h2 a:hover {
    color: var(--t29-accent);
}

.portfolio-content p {
    font-size: 14px;
    color: var(--t29-text-light);
    line-height: 1.6;
    margin: 0;
}

.fortfolio-addrees {
    position: absolute;
    top: 20px;
    right: 20px;
}

.fortfolio-addrees ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fortfolio-addrees ul li a {
    width: 45px;
    height: 45px;
    background: var(--t29-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    opacity: 0;
    transform: scale(0);
}

.dreamit-single-portfolio:hover .fortfolio-addrees ul li a {
    opacity: 1;
    transform: scale(1);
}

.fortfolio-addrees ul li a:hover {
    background: var(--t29-accent);
    transform: scale(1.1);
}

/* Team Section */
.team-section {
    background: #f8f9fa;
}

.single-team-box {
    text-align: center;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.single-team-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.team-thumb {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.team-thumb img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
    display: block;
}

.team-content span {
    display: block;
    font-size: 14px;
    color: var(--t29-text-light);
    margin-bottom: 5px;
}

.team-content h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--t29-primary);
    margin: 0;
}

/* Testimonials Section */
.testi-section {
    background: linear-gradient(135deg, var(--t29-primary) 0%, #001f5c 100%);
    position: relative;
    overflow: hidden;
}

.testi-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.single-testi-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin: 15px;
    transition: all 0.3s;
}

.single-testi-box:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.testi-thumb {
    margin-bottom: 20px;
}

.testi-thumb img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.3);
    margin: 0 auto;
}

.testi-content p {
    font-size: 16px;
    color: white;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testi-inner-content h2 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.testi-icon ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.testi-icon ul li i {
    color: #FFD700;
    font-size: 16px;
}

.testi-icon ul li i.far {
    color: rgba(255,255,255,0.3);
}

/* CTA Section */
.call-section {
    background: linear-gradient(135deg, var(--t29-primary) 0%, #001f5c 100%);
    padding: 80px 0;
    position: relative;
}

.call-btn a {
    display: inline-block;
    padding: 15px 40px;
    background: var(--t29-accent);
    color: white;
    text-decoration: none;
    border-radius: 0 30px 0 30px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
}

.call-btn a:hover {
    background: white;
    color: var(--t29-primary);
    transform: translateY(-2px);
}

.call-btn a i {
    margin-left: 5px;
}

/* News Section */
.blog-grid-section {
    background: white;
}

.single-blog-grid-box {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.single-blog-grid-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-grid-thumb {
    position: relative;
    overflow: hidden;
}

.blog-grid-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s;
}

.single-blog-grid-box:hover .blog-grid-thumb img {
    transform: scale(1.1);
}

.blog-grid-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-grid-meta {
    margin-bottom: 15px;
}

.blog-grid-meta span {
    font-size: 14px;
    color: var(--t29-text-light);
}

.blog-grid-title h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--t29-primary);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-grid-title h2 a {
    color: var(--t29-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-grid-title h2 a:hover {
    color: var(--t29-accent);
}

.blog-grid-content p {
    font-size: 14px;
    color: var(--t29-text-light);
    line-height: 1.6;
    flex: 1;
    margin: 0;
}

/* Contact Section */
.call-do-action {
    background: white;
    padding: 80px 0;
}

.single-call-box {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

.single-call-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cll-do-icon {
    width: 80px;
    height: 80px;
    background: rgba(239, 23, 125, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.cll-do-icon i {
    font-size: 35px;
    color: var(--t29-accent);
}

.call-do-content h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--t29-primary);
    margin-bottom: 10px;
}

.call-do-content span {
    font-size: 16px;
    color: var(--t29-text-light);
}

/* Footer */
.footer {
    background: var(--t29-primary);
    color: white;
    position: relative;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.location-content {
    margin-bottom: 20px;
}

.location-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.location-icon i {
    color: var(--t29-accent);
}

.location-content-text p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    line-height: 1.6;
}

.location-title h2 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.footer-widget-title h3 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.footer-quick-link-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-quick-link-list ul li {
    margin-bottom: 10px;
}

.footer-quick-link-list ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-quick-link-list ul li a:hover {
    color: var(--t29-accent);
    padding-left: 5px;
}

.subscribe-area {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.subscribe-mail-box {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    color: white;
    font-size: 14px;
}

.subscribe-mail-box::placeholder {
    color: rgba(255,255,255,0.6);
}

.subscribe-button {
    width: 50px;
    height: 50px;
    background: var(--t29-accent);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.subscribe-button:hover {
    background: white;
    color: var(--t29-accent);
    transform: scale(1.1);
}

.footer-about-social-icon ul {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.footer-about-social-icon ul li a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-about-social-icon ul li a:hover {
    background: var(--t29-accent);
    transform: translateY(-3px);
}

.footer-copyright-section {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    margin-top: 50px;
}

.footer-copyright-text p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 14px;
}

.footer-copyright-text a {
    color: var(--t29-accent);
    text-decoration: none;
}

/* 滚动到顶部按钮 */
.scroll-area {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.go-top-button {
    width: 50px;
    height: 50px;
    background: var(--t29-accent);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.go-top-button.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.go-top-button:hover {
    background: var(--t29-primary);
    transform: translateY(-5px);
}

.go-top-button i {
    font-size: 20px;
}

/* 页面通用样式 */
.page-hero {
    background: linear-gradient(135deg, var(--t29-primary) 0%, #001f5c 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--t29-text-light);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--t29-primary);
}

/* 文章页面 */
.article-page-section {
    padding: 50px 0;
}

.article-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.article-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--t29-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--t29-border);
}

.article-date,
.article-category {
    font-size: 14px;
    color: var(--t29-text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-image {
    margin-bottom: 30px;
}

.article-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.article-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--t29-text);
}

.article-body p {
    margin-bottom: 20px;
}

.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--t29-primary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--t29-border);
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--t29-border);
}

.sidebar-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-list li a {
    color: var(--t29-text);
    text-decoration: none;
    transition: all 0.3s;
    display: block;
}

.sidebar-list li a:hover {
    color: var(--t29-accent);
    padding-left: 5px;
}

/* 404页面 */
.error-page-section {
    background: white;
}

.error-title {
    font-size: 120px;
    font-weight: 700;
    color: var(--t29-primary);
    line-height: 1;
    margin-bottom: 20px;
}

.error-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: var(--t29-primary);
    margin-bottom: 20px;
}

.error-text {
    font-size: 16px;
    color: var(--t29-text-light);
    margin-bottom: 40px;
}

/* 网站地图 */
.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-list li {
    margin-bottom: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--t29-border);
}

.sitemap-list li a {
    color: var(--t29-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

.sitemap-list li a:hover {
    color: var(--t29-accent);
    padding-left: 5px;
}

.sitemap-list li a i {
    margin-right: 10px;
    color: var(--t29-primary);
}

/* 联系表单 */
.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--t29-primary);
    margin-bottom: 30px;
    text-align: center;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid var(--t29-border);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--t29-accent);
    box-shadow: 0 0 0 3px rgba(239, 23, 125, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Flaticon样式 */
[class^="flaticon-"],
[class*=" flaticon-"] {
    font-family: "Flaticon";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 文本样式工具类 */
.text-white {
    color: white !important;
}

.text-center {
    text-align: center !important;
}

/* Padding工具类补充（Bootstrap 5可能不包含所有） */
.pt-20 { padding-top: 20px !important; }
.pt-30 { padding-top: 30px !important; }
.pt-40 { padding-top: 40px !important; }
.pt-50 { padding-top: 50px !important; }
.pt-70 { padding-top: 70px !important; }
.pt-80 { padding-top: 80px !important; }
.pt-100 { padding-top: 100px !important; }
.pt-150 { padding-top: 150px !important; }
.pt-170 { padding-top: 170px !important; }
.pt-180 { padding-top: 180px !important; }
.pt-235 { padding-top: 235px !important; }
.pb-70 { padding-bottom: 70px !important; }
.pb-80 { padding-bottom: 80px !important; }
.pb-100 { padding-bottom: 100px !important; }
.pb-150 { padding-bottom: 150px !important; }
.pb-180 { padding-bottom: 180px !important; }
.pb-227 { padding-bottom: 227px !important; }
.mt-35 { margin-top: 35px !important; }
.mb-30 { margin-bottom: 30px !important; }
.pb-30 { padding-bottom: 30px !important; }

/* 内页统一间距（覆盖工具类，放在工具类之后） */
.page-hero {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.about-page-section,
.services-page-section,
.works-page-section,
.news-page-section,
.article-page-section,
.contact-page-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

/* 确保所有section都有正确的间距 */
section {
    box-sizing: border-box;
}

section:not(.slider-section):not(.hero-section) {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

/* 图片占位符样式 */
.slider-bg-placeholder {
    background: linear-gradient(135deg, var(--t29-primary) 0%, #001f5c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-placeholder-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.image-placeholder,
.service-image-placeholder,
.portfolio-image-placeholder,
.team-image-placeholder,
.testi-image-placeholder,
.news-image-placeholder,
.brand-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 4, 75, 0.05);
    min-height: 200px;
}

.service-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 4, 75, 0.8);
    border-radius: 12px;
}

.portfolio-image-placeholder {
    height: 250px;
    background: rgba(0, 4, 75, 0.8);
}

.team-image-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(0, 4, 75, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image-placeholder i {
    font-size: 150px !important;
    color: var(--t29-primary) !important;
    opacity: 0.3 !important;
}

.testi-image-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
}

.news-image-placeholder {
    height: 220px;
    background: rgba(0, 4, 75, 0.05);
}

.brand-placeholder {
    height: 100px;
    background: transparent;
}

/* 首页Section间距统一 */
.about-section,
.services-section,
.service-section,
.partners-section,
.works-section,
.team-section,
.testimonials-section,
.news-section {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

/* 间距优化 */
.slider-section {
    margin-bottom: 0;
}

.about-section,
.services-section,
.service-section,
.partners-section,
.works-section,
.team-section,
.testimonials-section,
.news-section {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

.row > * {
    padding-left: 15px;
    padding-right: 15px;
}

/* 响应式设计 */
@media (max-width: 991px) {
    .header-menu {
        display: none;
    }
    
    .mobile-menu-area {
        display: block;
    }
    
    .slider-title {
        font-size: 42px;
        line-height: 50px;
    }
    
    .dreamit-section-main-title h2 {
        font-size: 32px;
    }
    
    .single-feature-box {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .header-top-area {
        display: none;
    }
    
    .slider-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .slider-description {
        font-size: 16px;
    }
    
    .dreamit-section-main-title h2 {
        font-size: 28px;
    }
    
    .single-service-box,
    .single-feature-box {
        margin-bottom: 20px;
    }
    
    .subscribe-area {
        flex-direction: column;
    }
    
    .subscribe-button {
        width: 100%;
        border-radius: 30px;
    }
}

@media (max-width: 575px) {
    .slider-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .rev-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}

