/* 自定义样式 */

/* 导航下拉菜单 */
.group:hover .group-hover\:block {
    display: block;
}

/* 主导航菜单样式调整 */
nav ul li:hover {
    background-color: rgba(220, 38, 38, 1);
    transition: background-color 0.3s ease;
}

/* 二级菜单样式 */
.group-hover\:block {
    display: none;
}

.group:hover .group-hover\:block {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
    /* 修复二级导航压住一级导航的问题 */
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 50;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 二级菜单移动端样式 */
.submenu-mobile {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.submenu-mobile:not(.hidden) {
    max-height: 1000px;
}

/* LOGO样式 */
.logo-text {
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* 页面整体样式 */
body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    color: #333;
}

/* 红色系颜色统一 */
.bg-custom-red {
    background-color: #e53e3e;
}

.text-custom-red {
    color: #e53e3e;
}

/* 产品图片效果 */
.product-image-container {
    overflow: hidden;
}

.product-image-container img {
    transition: transform 0.3s ease;
}

.product-image-container:hover img {
    transform: scale(1.05);
}

/* 语言选择器 */
.language-selector .active {
    color: #38a169;
    font-weight: bold;
}

/* 移动端导航菜单 */
@media (max-width: 768px) {
    .mobile-menu {
        display: none;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .hamburger-menu {
        display: block;
    }
}

@media (min-width: 769px) {
    .hamburger-menu {
        display: none;
    }
    
    #desktop-menu {
        display: flex;
    }
}

/* 联系我们页面样式 */
.contact-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #e53e3e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    margin-bottom: 20px;
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.contact-info-card h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.contact-info-card p {
    color: #666;
    font-size: 16px;
}

.contact-map-container {
    width: 100%;
    height: 400px;
    background-color: #f0f0f0;
    margin-bottom: 48px;
}

.contact-form-container {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
}

.contact-form-heading {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
}

.contact-form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
}

.contact-form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-height: 150px;
    margin-bottom: 20px;
}

.contact-form-submit {
    background-color: #e53e3e;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.contact-form-submit:hover {
    background-color: #c53030;
} 
