/* 全局样式 */
:where([class^="ri-"])::before { content: "\f3c2"; }
.search-input::-webkit-search-cancel-button {
    display: none;
}

/* 导航栏样式 */
.nav-active {
    color: #f97316 !important;
    font-weight: 500;
}

/* 轮播图样式 */
.carousel {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}

.carousel-item.active {
    opacity: 1;
    z-index: 5;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s;
}

.carousel-control:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-indicator.active {
    background-color: white;
}

/* 文字阴影 */
.text-shadow-lg {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* 公司文化背景 */
.company-culture {
    background-size: cover;
    background-position: center;
    position: relative;
}

.company-culture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.company-culture > div {
    position: relative;
    z-index: 2;
} 

/* 页脚样式 */
.footer-compact {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.footer-compact .footer-logo {
    height: 2rem;
    margin-bottom: 0.75rem;
}

.footer-compact .footer-section {
    gap: 1.5rem;
}

.footer-compact .footer-divider {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

/* 特色字体样式 */
.brand-text {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
}

.brand-text-secondary {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
}

.brand-text-creative {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
} 