/* ==========================================================================
   CSS Reset / Normalization (清除/重置默认样式)
   ========================================================================== */

/* 1. 统一盒模型，防止 padding 和 border 撑大盒子 */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* 2. 根节点与全局设置 */
html {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    /* 防止移动端横屏时字体自动变大 */
    -webkit-tap-highlight-color: transparent;
    /* 移除移动端点击高亮空白层 */
    scroll-behavior: smooth;
    /* 开启平滑滚动 */
}

/* 3. Body 默认重置 */
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    color: #333333;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    /* macOS/iOS 字体抗锯齿优化 */
    -moz-osx-font-smoothing: grayscale;
}

/* 4. 列表与列表元素 */
ul,
ol,
dl {
    list-style: none;
}

/* 5. 链接与文本格式 */
a {
    color: inherit;
    text-decoration: none;
    background-color: transparent;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
    /* 避免长文本溢出容器 */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: normal;
}

/* 6. 媒体元素（响应式处理与块级化） */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* 7. 表单与按钮样式统一 */
input,
button,
textarea,
select {
    font: inherit;
    /* 继承父级的字体属性 */
    color: inherit;
    letter-spacing: inherit;
    border: none;
    outline: none;
    background: none;
}

button,
input[type="submit"],
input[type="reset"] {
    cursor: pointer;
}

textarea {
    resize: vertical;
    /* 限制用户只能垂直拉伸文本域 */
}

/* 8. 表格重置 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

.u-flex {
    display: flex;
    align-items: center;
}

.u-flex-wrap {
    flex-wrap: wrap;
}

.one-line-ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* 限制文本为2行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.two-line-ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* 限制文本为2行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.three-line-ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* 限制文本为2行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.u-flex-1 {
    flex: 1;
}

.u-flex-col {
    display: flex;
    flex-direction: column;
}

.u-col-top {
    align-items: flex-start;
}

.u-row-center {
    justify-content: center;
}

.u-row-right {
    justify-content: flex-end;
}

.u-row-between {
    justify-content: space-between;
}

.u-text-center {
    text-align: center;
}

.u-col-center {
    align-items: center;
}

.u-col-bottom {
    align-items: flex-end;
}

.u-text-right {
    text-align: right;
}

.pointer {
    cursor: pointer;
}

.hoverImg {
    overflow: hidden;
}

.hoverImg img {
    transition: all .3s ease;
}




/* header */
.header_container {
    width: 100%;
    z-index: 99;
    background-color: #FFF;
    /* position: absolute; */
}

.filter {
    position: absolute;
    z-index: 98px;
    backdrop-filter: blur(5px);
    transition: all .3s ease;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 1);
    height: 100%;
}

.header_container:hover .filter {
    background-color: rgba(255, 255, 255, 0.5);
}

.header {
    max-width: 1560px;
    margin: 0 auto;
    padding: 15px 20px;
}

.header_logo {
    width: 82px;
}

.header_logo img {
    width: 100%;
}

.header_menu {
    column-gap: 40px;
}

.header_menu .top_list {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    position: relative;
    transition: all .3s ease;
}

.top_list:hover {
    transform: translateY(-6px);
}

.header_menu .top_a {
    transition: all .3s ease;
}

.sub_menu {
    position: absolute;
    z-index: 99;
    overflow: hidden;
    transition: all .3s ease;
    height: 0;
    background-color: #FFF;
}

.sub_menu_item {
    padding: 10px 20px;
    transition: all .3s ease;
}

.sub_menu_item:hover {
    background-color: #f1f1f1;
}

.sub_menu a {
    white-space: nowrap;
}

.top_list:hover .sub_menu {
    height: auto;
}

.sub_menu_top {
    transition: all .3s ease;
}

.top_list:hover .sub_menu_top {
    padding-top: 20px;
}

.section_container_1 {
    padding: 50px 0px;
}

.section_container_2 {
    max-width: 1560px;
    margin: 0 auto;
    padding: 50px 0px;
}

.page_banner {
    background-color: #d7b57f;
}

.page_banner h3 {
    font-size: 22px;
    color: #FFF;
    font-weight: 600;
    margin-bottom: 20px;
}

.page_banner p {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

/* 首页 */
.banner_swiper {
    overflow: hidden;
}

.banner_item {
    width: 100%;
}

.banner_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home_categorys_container {
    margin-top: -140px;
}

.home_categorys {
    background-color: #FFF;
    box-shadow: 0px 0px 8px 0px #a7a7a7;
    border-radius: 10px;
    padding: 20px 0;
    gap: 14px;
}

/* 确保 Banner 层级正常 */
.banner_swiper {
    position: relative;
    z-index: 1;
}

/* 让分类模块向上叠加在 Banner 之上 */
.home_categorys_container {
    position: relative;
    z-index: 10;
    /* 确保层级高于 Banner */
}

/* 补充可选：为分类区域添加白色背景与阴影，防止盖在图片上看起来模糊 */
.home_categorys {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.home_category_item {
    width: calc((100% - 42px) / 4);
}

.home_category_item:hover .home_category_item_img {
    transform: translateY(-10px);
}

.home_category_item_img {
    width: 130px;
    transition: all .3s ease;
}

.home_category_item_img img {
    width: 100%;
}

.home_category_item p {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.home_product_title {
    position: relative;
}

.home_product_title h2 {
    position: relative;
    font-size: 24px;
    font-weight: 700;
}

.home_product_title h2:after {
    position: absolute;
    content: "";
    width: 120px;
    height: 4px;
    border-radius: 50%;
    background-color: #fce528;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
}

.home_product_view {
    position: absolute;
    right: 0;
    top: 0px;
    transform: translateY(50%);
    border: 2px solid #fce528;
    padding: 8px 18px;
    padding-right: 10px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
}

.home_product_view {
    gap: 8px;
}

.home_product_arrow {
    border: 4px solid #fce528;
    border-radius: 100px;
    display: block;
    padding: 8px;
    margin-left: 8px;
}

.home_product_item_img {
    width: 100%;
}



.home_products {
    width: 100%;
    overflow: hidden;
    margin-top: 100px;
}

.home_product_item p {
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
}

.core_title h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

.core_title p {
    font-size: 16px;
    color: #333;
}

.core_list {
    gap: 40px;
    margin-top: 40px;
}

.core_item {
    width: calc((100% - 120px) / 4);
}

.core_item h4 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-top: 20px;
}

.core_item p {
    font-weight: 600;
    font-size: 12px;
    margin-top: 20px;
}


.oem_list {
    gap: 30px;
}

.oem_img {
    width: 50%;
}

.oem_desc h2 {
    font-size: 28px;
    color: #333;
    font-weight: bold;
}

.oem_desc .oem_desc_remark {
    font-size: 16px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 20px;
    color: #333;
}

.oem_desc strong {
    color: #feb2cc;
    margin-right: 10px;
}

.oem_desc span {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
}

.superior_container {
    background-color: #d7b57f;
}

.superior h2 {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
}

.superior p {
    font-size: 16px;
    color: #fff;
    font-weight: 600px;
    line-height: 32px;
}

.superior a {
    color: #333;
    background-color: #FFF;
    font-size: 14px;
    margin-top: 25px;
    padding: 12px 24px;
}

.hotProduct_container {
    background-color: #fbf5ef;
}

.hotProduct_list {
    gap: 10px;
    margin-top: 50px;
}

.hotProduct_item {
    width: calc((100% - 60px) / 4);
    padding: 15px;
    background-color: #FFF;
}

.hotProduct_title {
    margin-top: 20px;
}

.hotProduct_title h4 {
    font-weight: bold;
    color: #333;
    font-size: 16px;
}

.hotProduct_title p {
    font-size: 12px;
    color: #333;
    margin-top: 10px;
    font-weight: 600;
}

.home_aboutus h2,
.home_certificate h2 {
    font-size: 28px;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
}

.home_certificate {
    margin-top: 80px;
}

.home_aboutus p {
    font-size: 16px;
    color: #333;
    line-height: 32px;
}

.home_aboutus p:first-of-type {
    margin-bottom: 20px;
}

.home_about_swiper {
    overflow: hidden;
    width: 100%;
    margin-top: 20px;
}

.home_about_img_item img {
    width: 100%;
}

.home_cer_img {
    width: 44%;
}

.home_cer_title {
    width: 56%;
}

.home_cer_title p {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 30px;
}

.home_cer_img img {
    width: 140px;
}

.home_cer_img p {
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
    color: #333;
}


.footer {}

.footer_container {
    background-color: #1d1e1d;
}

.footer_top {
    padding-top: 60px;
    max-width: 1560px;
    margin: 0 auto;
    gap: 20px;
    padding-bottom: 40px;
}

.footer_middle {
    background-color: #78B0E9;
    background-image: url("/skin/images/10036.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    height: 432px;
    margin-top: 40px;
}

.footer_bottom {
    background-color: #fcee21;
    padding-top: 40px;
    padding-bottom: 20px;
}

.footer_bottom_max {
    max-width: 1600px;
    margin: 0 auto;
}

.footer_top_img {
    width: 50%;
}

.footer_form {
    width: 44%;
}

.footer_form h2 {
    font-size: 28px;
    font-weight: bold;
    color: #FFF;
}

.footer_form p {
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 50px;
    color: #FFF;
}

.footer_form form input,
.footer_form form textarea {
    width: 100%;
    padding: 10px;
    background-color: #FFF;
    margin-bottom: 20px;
}

.footer_form form button {
    background-color: #eeeeee;
    color: #333;
    font-size: 16px;
    padding: 8px 24px;
}

.footer_bottom_max h4 {
    font-size: 20px;
    color: #333;
    font-weight: 600;
}

.footer_company {
    width: 26%;
}

.footer_company p {
    font-size: 14px;
    color: #333;
    line-height: 28px;
}

.footer_company img {
    width: 90px;
    margin: 8px 0;
}

.footer_quicklinks {
    width: 24%;
}

.footer_quicklinks ul,
.footer_contact ul {
    margin-top: 8px;
    line-height: 28px;
}

.footer_quicklinks li a,
.footer_contact li {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.footer_contact {
    width: 24%;
}

.footer_contact_2 {
    width: 26%;
}

.footer_contact_2 p {
    margin-bottom: 40px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    margin-top: 10px;
    line-height: 22px;
}

.footer_contact_a {
    background-color: #1e1e1d;
    border-radius: 8px;
    color: #fff;
    width: 100%;
    display: block;
    padding: 12px 24px;
    font-size: 16px;
}

.footer_contact_2 input {
    background-color: #FFF;
    border-radius: 8px;
    margin-bottom: 16px;
    width: 100%;
    padding: 12px 24px;
}

.footer_banquan {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 14px;
    background-color: #1d1e1d;
    color: #fff;
    max-width: 1600px;
    margin: 0 auto;
}




/* 产品中心 */
.product_menu {
    border: 1px solid #d7b57f;
    border-radius: 100px;
}

.product_menu li {
    padding: 14px 24px;
    position: relative;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.product_menu li:after {
    content: "";
    position: absolute;
    background-color: #333;
    width: 2px;
    height: 23px;
    right: 0px;
}

.product_menu li:last-of-type:after {
    width: 0px;
}

.product_menu li:hover {
    color: #FFF;
    background-color: #d7b57f;
}

.product_list {
    gap: 10px;
}

.product_item {
    width: calc((100% - 30px) / 4);
    background-color: #f9f9f9;
    padding: 10px;
}

.case_item_img {
    width: 100%;
}

.case_item_img img {
    width: 100%;
}

.product_item p {
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px;
    color: #333;
}


.case_item_title {
    padding-top: 2px;
    font-size: 24px !important;
}

.case_item_content {
    padding: 14px;
}

.case_item_date {
    padding-bottom: 18px;
    font-size: 12px;
    margin-top: 0px !important;
    border-bottom: 1px solid rgba(239, 239, 239, 1);
    color: #8a8a8a !important;
}

.case_item_remark {
    font-size: 14px !important;
    color: #777 !important;
}


/* 新闻 */
.news {
    background-color: #FFF;
    padding: 24px;
}

.news h1 {
    font-size: 34px;
    font-weight: 800;
}

.news_date {
    font-size: 16px;
    color: #777;
    padding-bottom: 20px;
    margin-top: 20px;
    border-bottom: 1px dashed #bbb;
}

.news_content {
    padding-bottom: 20px;
    border-bottom: 1px dashed #bbb;
}
.news_page {
    padding-top: 10px;
}
.page {
    margin-top: 20px;
}

.page a {
    margin: 0 10px;
}



/* 关于我们 */
.about_content_1 {
    padding-bottom: 0px;
}

.about_content_1 h1 {
    font-size: 26px;
    color: #333;
    margin-bottom: 14px;
    font-weight: 600;
}

.about_content_1 p,
.about_content_2 p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 25px;
    color: #7A7A7A;
    font-weight: 600;
}

.about_content_2 {
    background-color: #fbf5ef;
}

.about_content_3 h2 {
    font-size: 22px;
    color: #333;
    font-weight: bold;
}

.about_content_3 p {
    font-size: 16px;
    font-weight: 600;
    color: #7a7a7a;
}

.about_content_factory p {
    margin-top: 40px;
    color: #333;
    font-size: 26px;
    font-weight: 600;
}


.about_content_4 {
    background-color: #d7b57f;
}

.about_content_4 h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #FFF;
    font-weight: bold;
}

.about_content_4 p {
    font-size: 16px;
    color: #FFF;
    line-height: 28px;
    font-weight: 600;
}

.about_content_4_a {
    margin-top: 60px;
}

.about_content_4 a {
    background-color: #fef101;
    border-radius: 2px;
    font-size: 16px;
    padding: 8px 24px;
    color: #333;
}



/* 联系我们 */
.contact_us_container h1 {
    font-size: 26px;
    color: #333;
    line-height: 32px;
    font-weight: 600;
}

.contact_us_1 {
    margin-top: 60px;
}

.contact_us_1 img {
    margin-bottom: 10px;
}

.contact_item {
    width: calc((100%) / 4);
}

.contact_us_1 p:first-of-type {
    padding-top: 30px;
}

/* 产品详情 */
.product_container {
    background-color: #FFF;
    padding: 40px;
}

.product_container h1 {
    font-size: 30px;
    font-weight: 600;
    margin-top: 20px;
}


.faq_container {
    margin: 0 auto;
    padding: 20px 15px;
    box-sizing: border-box;
}

.faq_title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.faq_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* FAQ 容器卡片 */
.faq_item {
    border-bottom: 1px solid #e5e5e5;
    background-color: #fff;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

/* 标题 / 问题栏 */
.faq_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    user-select: none;
}

.faq_question {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* 右侧箭头图标 */
.faq_arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

/* 激活时箭头向上旋转 */
.faq_item.active .faq_arrow {
    transform: rotate(-135deg);
}

/* 抽屉内容容器：默认 max-height 为 0 */
.faq_body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
    /* 平滑高度动画 */
    background-color: #fff;
}

/* 展开状态 */
.faq_item.active .faq_body {
    max-height: 300px;
    /* 容纳回答文本的最大高度 */
    transition: max-height 0.35s ease-in-out;
}

/* 实际答案内衬，保证 padding 不破坏 max-height 0 的隐蔽性 */
.faq_answer {
    padding: 16px 20px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #f0f0f0;
}

@media screen and (max-width: 765px) {

    .footer_top_img,
    .core_item,
    .oem_img,
    .hotProduct_item,
    .home_cer_title,
    .home_cer_img,
    .about_content_factory p,
    .footer_contact_2,
    .product_item,
    .contact_item,
    .product_item img,
    .footer_form {
        width: 100%;
    }

    .footer_form,
    .contact_item {
        margin-top: 50px;
    }

    .footer_top,
    .home_aboutus,
    .home_certificate,
    .oem_list,
    .core_list,
    .page_banner,
    .core_title,
    .about_content_1,
    .about_content_3,
    .hotProduct_list,
    .about_content_2,
    .product_list,
    .contact_us_container h1,
    .footer_contact_2 {
        padding-left: 24px;
        padding-right: 24px;
    }

    .footer_company,
    .footer_quicklinks,
    .header_menu,
    .footer_contact {
        display: none;
    }
}

.header {
    position: relative;
    /* 保证手机菜单相对于 header 绝对定位 */
}

/* ==========================================
   默认 PC 端 (769px 及以上)
========================================== */
@media screen and (min-width: 769px) {

    /* 隐藏手机端的汉堡按钮和下拉菜单 */
    .mobile_hamburger,
    .mobile_menu {
        display: none !important;
    }
}

/* ==========================================
   手机端 (768px 及以下)
========================================== */
@media screen and (max-width: 768px) {

    /* 1. 隐藏原有的 PC 端菜单 */
    .header_menu {
        display: none !important;
    }

    /* 2. 手机端汉堡图标 */
    .mobile_hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 26px;
        height: 20px;
        cursor: pointer;
        z-index: 100;
    }

    .mobile_hamburger span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: #333;
        border-radius: 2px;
        transition: all 0.3s ease-in-out;
    }

    /* 汉堡按钮变成 X 的动画 */
    .mobile_hamburger.active span:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }

    .mobile_hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile_hamburger.active span:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }

    /* 3. 手机端下拉菜单基础状态（高度为0） */
    .mobile_menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        overflow: hidden;
        max-height: 0;
        /* 默认闭合 */
        transition: max-height 0.4s ease-in-out;
        /* 高度动画 */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }

    /* 展开状态：赋予足够大的 max-height */
    .mobile_menu.active {
        max-height: 500px;
    }

    /* 手机菜单列表样式 */
    .mobile_menu_list {
        padding: 10px 20px;
        margin: 0;
        list-style: none;
        display: flex;
        flex-direction: column;
    }

    .mobile_menu_list li {
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile_menu_list li:last-child {
        border-bottom: none;
    }

    .mobile_menu_list a {
        display: block;
        padding: 12px 0;
        color: #333;
        text-decoration: none;
        font-size: 15px;
    }
}

/* ==========================================
   PC 端 (769px 及以上)
========================================== */
@media screen and (min-width: 769px) {

    /* 隐藏移动端专属菜单 */
    .mobile_product_menu {
        display: none !important;
    }
}

/* ==========================================
     移动端 (768px 及以下)
  ========================================== */
@media screen and (max-width: 768px) {

    /* 1. 隐藏原 PC 端分类菜单 */
    .product_menu {
        display: none !important;
    }

    .mobile_product_menu {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
        position: relative;
    }

    /* 2. 移动端选择框按钮 */
    .mobile_cate_btn {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #fff;
        border: 1px solid #51d2c8;
        border-radius: 50px;
        padding: 10px 15px;
        font-size: 14px;
        color: #333;
        cursor: pointer;
    }

    /* 右侧小箭头 */
    .arrow_icon {
        width: 8px;
        height: 8px;
        border-right: 2px solid #666;
        border-bottom: 2px solid #666;
        transform: rotate(45deg);
        transition: transform 0.3s ease;
    }

    /* 激活状态：箭头向上旋转 */
    .mobile_cate_btn.active .arrow_icon {
        transform: rotate(-135deg);
    }

    /* 3. 下拉列表：默认高度为0 */
    .mobile_cate_list {
        background-color: #ffffff;
        border: 1px solid #e0e0e0;
        border-top: none;
        border-radius: 0 0 4px 4px;
        overflow: hidden;
        max-height: 0;
        /* 默认收起 */
        transition: max-height 0.4s ease-in-out;
        /* 高度平滑动画 */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }

    /* 激活展开状态 */
    .mobile_cate_list.active {
        max-height: 400px;
        /* 容纳分类项的最大高度 */
    }

    .mobile_cate_list ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile_cate_list li {
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile_cate_list li:last-child {
        border-bottom: none;
    }

    .mobile_cate_list a {
        display: block;
        padding: 10px 15px;
        color: #555;
        text-decoration: none;
        font-size: 14px;
    }

    .mobile_cate_list a:hover {
        background-color: #f5f5f5;
        color: #000;
    }
}