/* ============================================================
   bilingual.css - 中英文双语切换样式
   ============================================================ */

/* 语言切换按钮 */
.lang-switch {
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
    font-size: 13px;
}

.lang-switch a {
    display: inline-block;
    padding: 4px 10px;
    color: #666;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 3px;
    background: #fff;
    transition: all 0.2s ease;
    line-height: 1.4;
}

.lang-switch a:hover {
    background: #c8161e;
    color: #fff;
    border-color: #c8161e;
}

.lang-switch a.current {
    background: #c8161e;
    color: #fff;
    border-color: #c8161e;
    font-weight: bold;
}

.lang-switch .lang-sep {
    display: inline-block;
    margin: 0 2px;
    color: #ccc;
}

/* 英文模式下调整导航字体大小 */
html[lang="en"] .nav li a,
html[lang="en"] .nav li span {
    font-size: 13px;
}

/* 英文模式下调整页脚链接字体 */
html[lang="en"] .footer-up .right li a {
    font-size: 12px;
}

/* 英文模式下调整产品标题 */
html[lang="en"] .product-item h3,
html[lang="en"] .product-item p {
    font-size: 13px;
}

/* 英文模式下调整面包屑 */
html[lang="en"] .breadcrumb {
    font-size: 12px;
}

/* 英文模式下调整新闻标题 */
html[lang="en"] .news-item h3 {
    font-size: 14px;
}

/* 英文模式下调整侧边栏 */
html[lang="en"] .sidebar .nav li a {
    font-size: 13px;
}

/* 英文模式下调整标题区域 */
html[lang="en"] .page-title h2,
html[lang="en"] .section-title h2 {
    font-size: 22px;
}

/* 英文模式下调整公司名称 */
html[lang="en"] .header .company-name {
    font-size: 14px;
}

/* 英文模式下调整联系方式 */
html[lang="en"] .footer-up .contact p {
    font-size: 12px;
}

/* 英文模式下调整产品详情 */
html[lang="en"] .product-detail h1 {
    font-size: 18px;
}

/* 英文模式下调整按钮文本 */
html[lang="en"] .btn-more,
html[lang="en"] .more-link {
    font-size: 12px;
}

/* 英文模式下调整表格 */
html[lang="en"] table th,
html[lang="en"] table td {
    font-size: 12px;
}

/* 英文模式下调整列表 */
html[lang="en"] .content-list li {
    font-size: 13px;
}

/* 英文模式下调整文章内容 */
html[lang="en"] .article-content {
    font-size: 13px;
    line-height: 1.8;
}

/* 英文模式下调整页脚导航 */
html[lang="en"] .footer-up .right .item > ul > li:first-child > a {
    font-size: 13px;
    font-weight: bold;
}
