* {
    margin: 0;
    padding: 0;
    /* css3盒子模型 */
    box-sizing: border-box;
}

em,
i {
    font-style: normal
}



li {
    list-style: none
}

img {
    /* border 0 照顾低版本浏览器 如果 图片外面包含了链接会有边框的问题 */
    border: 0;

    vertical-align: middle
}

button {

    cursor: pointer
}

a {
    color: #666;
    text-decoration: none
}

button,
input {
    font-family: Microsoft YaHei, Heiti SC, tahoma, arial, Hiragino Sans GB, "\5B8B\4F53", sans-serif;
    border: 0; 
    outline: none;
}

body {
    -webkit-font-smoothing: antialiased;
    background-color: #fff;
    font: 14px/1.5 Microsoft YaHei, Heiti SC, tahoma, arial, Hiragino Sans GB, "\5B8B\4F53", sans-serif;
}

.hide,
.none {
    display: none
}


@font-face {
    font-family: 'iconfont';
    src: url('../fonts/iconfont.woff2?t=1631608872177') format('woff2'),
    url('../fonts/iconfont.woff?t=1631608872177') format('woff'),
    url('../fonts/iconfont.ttf?t=1631608872177') format('truetype');
}
.ali-icon {
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fl {
    float: left;
}
.fr {
    float: right;
}

/* 页面装载 */
.page-wrapper {
    background-color: #fff;
}

.header-top {
    background-color: #f1f1f1;
    border-bottom: 1px solid #dadada;
    -webkit-box-shadow: 0 -1px 3px rgb(0 0 0 / 3%) inset;
    box-shadow: 0 -1px 3px rgb(0 0 0 / 3%) inset;
    font-size: 14px;
}

.header-top-right-btns {
    float: right;
    text-align: center;
    font-size: 0;
}

.header-top-right-btns .btn-group>button {
    padding: 8px 10px;
    margin: 0;
    text-align: center;
    color: #999;
    font-size: 14px;
    border-right: 1px solid #e3e3e3;
    border-left: 1px solid transparent;
}

.btn-group>button:hover {
    color: #e84c3d;
    background-color: #fafafa;
    border-right-color: #e3e3e3;
}

.header-top-right-btns .btn-group:last-child>button {
    border-right-color: transparent;
}

.header {
    padding: 20px 0;
    border-bottom: 1px solid #eaeaea;
    background: #fff;
}

.logo img {
    height: 52px;
}

.footer {
    background-color:transparent;
}


.recommend p {
    font-size: 14px;
}

.category {
    padding: 40px 0;
}

.separator {
    display: block;
    width: 60px;
    height: 5px;
    margin: 15px auto 15px;
    background-color: #cccccc;
    position: relative;
    border: 1px solid #cccccc;
}

.separator:after {
    width: 30px;
    height: 5px;
    background: #333333;
    position: absolute;
    top: -1px;
    left: -1px;
    content: "";
}

.category-menus li {
    display: inline-block;
    margin: 4px;
}

.goods-buy {
    line-height: 40px;
    font-size: 13px;
}


.goods-introduction-cate {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}



.buy-form label {
    font-size: 16px;
}


.translateSelectLanguage {
    position: relative; /* 和搜索框的相对位置一致 */
    background-color: #fff; /* 背景色与搜索框一致 */
    color: #333; /* 字体颜色与搜索框一致 */
    border: 1px solid #ccc; /* 边框样式与搜索框一致 */
    padding: 8px 16px; /* 内边距与搜索框一致 */
    border-radius: 4px; /* 边框圆角与搜索框一致 */
    cursor: pointer; /* 指针样式保持一致 */
    font-size: 14px; /* 字体大小与搜索框一致 */
    width: 10rem;
    margin-left: 2rem;
    transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s, color 0.3s; /* 添加额外的过渡效果 */
}

/* 手机端样式 */
@media (max-width: 768px) {
    .translateSelectLanguage {
       
        width: 8rem;
        height: 3rem;
    }
}