.slideshow {
    height: 400px;
    object-fit: cover;
}

/**语言切换*/

/* 语言切换按钮容器 */
.language-switcher {
    position: relative;
    display: inline-block;

}

/* 语言切换按钮 */
.language-btn {
    display: flex;
    border-radius: 4px;
    cursor: pointer;
    gap: 5px;
    font-size: 14px;
    color: #333;
}

.language-btn .globe-icon {
    font-size: 16px;
}

.language-btn .arrow-icon {
    margin-left: 5px;
    transition: transform 0.3s;
}

.language-list .hidden {
    display: none
}

/* 下拉框容器 */
.language-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
    width: 120px;
}

/* 语言列表 */
.language-list {
    display: grid;
    gap: 5px;
    padding: 10px;
    overflow-y: auto;
}

/* 语言选项 */
.language-item {
    display: flex;
    align-items: center;
    padding: 6px 8px;
    cursor: pointer;
    border-radius: 4px;
    gap: 5px;
    font-size: 13px;
    color: #333;
    height: 30px
}

.language-item:hover {
    background: #f5f5f5;
}

.language-item img {
    width: 16px;
    height: 12px;
    object-fit: cover;
}

/**产品类型*/
.sub-type {
    display: flex;
    justify-content: start;
    justify-items: center;
   
}

a.sub-type-nav {
    font-size: 15px;
    height: 60px;
    line-height: 60px;
    color: #333;
    display: block;
    transition: 0.3s ease 0s;
    width: 120px;
    text-align: center;
     position: relative;
     margin-right: 15px;
}
a.sub-type-nav:before{
    position: absolute;
    content: '';
    bottom: 0px;
    height: 2px;
    background-color: none;
    transition: all .3s;
    background-color: #014099 !important;
    width: 0;
    left: 0;
}
a.sub-type-nav-curr {
    color: #014099 !important;
}

a.sub-type-nav-curr:before {
    width: 120px;
}
a.sub-type-nav:hover{
    color:  #014099 !important;
}
a.sub-type-nav:hover:before {
    width: 120px;
}