/* ===== 重置 & 基础 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, "Microsoft YaHei", "PingFang SC", "Helvetica Neue", sans-serif;
    /* background: #f2f5f9; */
    color: #333333;
    line-height: 1.6;
}

html,
body {
    line-height: 180%;
    font-size: 1.0em;
    font-family: "Microsoft Yahei";
    background: white;
}

li {
    list-style: none;
}

a {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    color: #333;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a {
    color: #43aa64;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #0a5a2a;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== 头部 ===== */
.header {
    background: #ffffff;
    /* box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05); */
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 8px 0;
    /* border-bottom: 1px solid #e6ecf2; */
    padding-top: 0;
    padding-bottom: 0;
}

/* 导航栏阴影 */
.header.scroll-shadow {
    box-shadow: 0 1px 10px #666;
    transition: box-shadow 0.24s ease;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo a {
    display: block;
    padding: 0;
    margin-left: 0;
    width: 198px;
    height: 56px;
    text-indent: 110%;
    white-space: nowrap;
    overflow: hidden;
    text-transform: capitalize;
    background-repeat: no-repeat;
    background: url('https://www.ssldun.com/templates/ssldun/lib/img/logo-w-ie8.png') left center/contain no-repeat;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 4px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: #1a2634;
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px;
    list-style: none;
}

.nav-menu>li {
    position: relative;
    list-style: none;
}

.nav-menu>li.active a {
    color: #43aa64;
}

.nav-menu>li>a {
    line-height: 30px;
    display: block;
    padding: 15px 16px;
    color: #1a2634;
    font-weight: 500;
    border-radius: 0;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 0.3px;
}

.nav-menu>li>a:hover,
.nav-menu>li>a:focus {
    /* background: #0f7b3a; */
    color: #43aa64;
}

.nav-menu>li>a .caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid\9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

/* 下拉弹窗-仿对话框样式 */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -200%;
    min-width: 600px;
    max-width: 600px;
    background: #fff;
    border: 1px solid #e0e6ed;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
    /* border-radius: 8px; */
    padding: 16px;
    z-index: 999;
}

.dropdown-menu ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 10px;
}

.dropdown-menu ul li a {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 0px;
    color: #1a2634;
    font-size: 14px;
    border-left: 2px solid transparent;
    transition: background 0.15s, border-color 0.15s;
    border-radius: 4px;
    gap: 12px;
}

/*左侧大图标 36px */
.dropdown-menu ul li a i {
    font-size: 36px;
    width: 36px;
    height: 36px;
    color: #43aa64;
    flex-shrink: 0;
    text-align: center;
    line-height: 26px;
}

/*右侧文字容器 */
.dropdown-menu ul li a .text-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* gap: 3px; */
}

.dropdown-menu ul li a strong {
    font-weight: 700;
    font-size: 14px;
    color: #43aa64;
    line-height: 25.2px;
}

.dropdown-menu ul li a span {
    color: #999999;
    line-height: 25.2px;
}

/* .dropdown-menu ul li a:hover {
			background: #f0f4fa;
			border-left-color: #0f7b3a;
		} */




.dropdown:hover>.dropdown-menu,
.dropdown.open>.dropdown-menu {
    display: block;
}

/* 下拉菜单尖角箭头 */
.header .nav-menu>li.dropdown.open>.arrow {
    visibility: visible;
}

.header .nav-menu>li.dropdown:hover>.arrow {
    visibility: visible;
}

.header .nav-menu>li.dropdown.open>.arrow:after {
    visibility: visible;
}

.header .nav-menu>li.dropdown:hover>.arrow:after {
    visibility: visible;
}

.header .nav-menu>li.dropdown .arrow,
.header .nav-menu>li.dropdown .arrow:after {
    position: absolute;
    display: block;
    visibility: hidden;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.header .nav-menu>li.dropdown .arrow {
    border-width: 11px;
    top: 51px;
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999;
    border-bottom-color: rgba(0, 0, 0, .25);
    z-index: 1000;
}

.header .nav-menu>li.dropdown .arrow:after {
    border-width: 10px;
    top: 1px;
    left: 50%;
    margin-left: -10px;
    content: " ";
    border-top-width: 0;
    border-bottom-color: #ffffff;
    z-index: 1001;
}

.nav-extra {
    display: flex;
    align-items: center;
    gap: 0px;
    margin-left: 12px;
    flex-direction: column;
}

.nav-extra .icon-btn {
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.2s;
}

.nav-extra .icon-btn:hover {
    opacity: 1;
}

.nav-extra img {
    width: auto;
}

/* .nav-promo img {
			height: 22px;
		} */



li {
    list-style: none;
}

/* ===== 顶部栏 ===== */
.top-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 12px 0px;
    /* border: 1px solid #e6ecf2; */
    margin: 20px 0 22px;
    gap: 12px;
    background: #ffffff;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6f7d91;
    background: url(/template/default2020/skin/images/li.png) center left no-repeat;
    background-size: 26px 26px;
    padding: 15px;
    padding-left: 20px;
}

.breadcrumb a {
    color: #333333;
}

/* .breadcrumb .sep {
            color: #bcc8d6;
        } */
.breadcrumb>li+li:before {
    padding: 0 5px;
    color: #bcc8d6;
    content: "/\00a0";
}

/* ----- 促销标签：靠左，显眼 ----- */
.promo-badge {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-right: auto;
    /* 靠左 */
    /* background: #f0f7f0; */
    /* padding: 4px 14px 4px 10px; */
    /* border-left: 4px solid #d45a1a; */
}

.promo-badge .label {
    font-weight: 700;
    color: #d45a1a;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.3px;
}

.promo-badge .label img {
    height: 28px;
}

.promo-badge a img {
    height: 55px;
    border-radius: 2px;
    /* border: 1px solid rgba(0, 0, 0, 0.04); */
    transition: transform 0.15s;
}

.promo-badge a img:hover {
    transform: scale(1.02);
}


/* ===== 主体网格 ===== */
.main-grid {
    display: grid;
    grid-template-columns: 3.2fr 1fr;
    gap: 30px;
    margin: 0 0 40px;
}

/* ===== 左侧列表 ===== */
.list-card {
    background: #ffffff;
    border: 1px solid #e6ecf2;
    overflow: hidden;
}

.list-item,
.column-list-text-item {
    display: flex;
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid #edf2f7;
    transition: background 0.15s;
    gap: 18px;
}

.list-item:last-child,
.list-card .col-sm-12:last-child .column-list-text-item {
    border-bottom: none;
}

.list-item:hover,
.column-list-text-item:hover {
    background: #f8fafc;
}

.list-date,
.column-list-text-date {
    flex-shrink: 0;
    background: #43aa64;
    color: #fff;
    text-align: center;
    border-radius: 0;
    padding: 8px 16px;
    min-width: 72px;
    font-weight: 500;
}

.list-date .day,
.column-list-text-date span {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.list-date .month,
.column-list-text-date p {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 400;
}

.list-content,
.column-list-text-text {
    flex: 1;
}

.list-content h4,
.column-list-text-text h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 2px;
    line-height: 1.4;
}

.list-content h4 a,
.column-list-text-text h4 a {
    color: #1a2634;
    transition: color 0.15s;
}

.list-content h4 a:hover,
.column-list-text-text h4 a:hover {
    color: #0f7b3a;
}

.list-content p,
.column-list-text-text p {
    font-size: 14px;
    color: #999999;
    margin: 4px 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}



/* ===== 分页 ===== */
.pagination-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 22px 0 16px;
    border-top: 1px solid #edf2f7;
    margin-top: 4px;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pagination-wrap a,
.pagination li a {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #dce3ec;
    border-radius: 0;
    font-size: 14px;
    color: #1a2634;
    transition: all 0.15s;
    background: #fff;
}

.pagination li.active a {
    background: #43aa64;
    color: #fff;
    border-color: #43aa64;
}

.pagination-wrap a:hover,
.pagination li.active a:hover {
    background: #359453;
    color: #fff;
    border-color: #359453;
}

.pagination-wrap .goto,
.pagination-wrap .pull-right {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
}

.pagination-wrap .goto input,
.pagination-wrap .pull-right input {
    width: 52px;
    padding: 4px 6px;
    border: 1px solid #dce3ec;
    border-radius: 0;
    text-align: center;
    font-size: 14px;
}

.pagination-wrap .goto button,
.pagination-wrap .pull-right input.btn {
    padding: 4px 14px;
    background: #43aa64;
    color: #fff;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.15s;
}

.pagination-wrap .goto button:hover,
.pagination-wrap .pull-right input.btn:hover {
    background: #359453;
}

/* ===== 右侧边栏 ===== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 搜索 */
.search-box {
    background: #fff;
    /* border: 1px solid #e6ecf2; */
    padding: 10px 0;
}

.search-box form {
    display: flex;
    align-items: center;
    gap: 0;
    border-radius: 10px;
    border: 1px solid #7ccc85;
    justify-content: space-around;
}

.search-box input {
    flex: 1;
    padding: 8px 14px;
    border: 0px solid #7ccc85;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: border 0.15s;
    background: #fafcfe;
}

.search-box input:focus {
    border-color: #0f7b3a;
}

.search-box button {
    padding: 8px 18px;
    background: #0f7b3a;
    color: #fff;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.15s;
}

.search-box button:hover {
    background: #0a5a2a;
}

.search-box .input-group-btn {
    position: relative;
    width: 1%;
    vertical-align: middle;
    font-size: 0;
    white-space: nowrap;
}

.search-box .visual-search-9 .input-group .input-group-btn button.btn-default {
    background: url('/template/default2020/skin/images/search.png') center center no-repeat;
    background-size: 35px auto;
    border: none;
    outline: none;
    z-index: 99999;
    width: 38px;
    height: 38px;
    line-height: 38px;
    padding: 18px 12px;
}

.search-box .visual-search-9 .input-group .input-group-btn button.btn-default:hover {
    background: url('/template/default2020/skin/images/search.png') center center no-repeat;
    background-size: 35px auto;
}

.search-box form .input-group {
    width: 100%;
}

.search-box form .input-group:hover,
.search-box form .input-group:focus {
    box-shadow: 0 2px 12px rgba(67, 170, 100, 0.3);
    ;
}

.search-box form .input-group .form-control {
    width: 82%;
}

/* 产品卡片 */
.product-card {
    background: #0a5a2a;
    padding: 14px 16px 18px;
    color: #fff;
    /* border: 1px solid #0a5a2a; */
    background: linear-gradient(to right, rgb(17, 153, 142), rgb(56, 239, 125));
}

.product-card .title {
    font-size: 16px;
    font-weight: 600;
    padding-left: 38px;
    background: url('/template/default2020/skin/images/zs.png') left center/28px no-repeat;
    min-height: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: linear-gradient(to right, rgba(17, 153, 142, 0.8), rgba(56, 239, 125, 0.8)), url('/template/default2020/skin/images/bg1.png') bottom center no-repeat;
    background-size: 275px auto;
    padding-bottom: 15px;
}

.product-grid a {
    display: block;
    text-align: center;
    padding: 6px 4px;
    border: 1px solid rgba(255, 255, 255, 1);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.15s;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.product-grid a:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #fff;
    color: #43aa64;
}

/* 工具横幅 */
.tool-banner {
    border: 1px solid #e6ecf2;
    overflow: hidden;
    background: #fff;
}

.tool-banner img {
    width: 100%;
    display: block;
}

/* 热点排行 */
.hot-list {
    background: #fff;
    border: 1px solid #e6ecf2;
    padding: 16px 0px 12px;
}

.hot-list .hot-title,
.hot-list .content-list-title a {
    font-size: 17px;
    font-weight: 600;
    padding-left: 32px;
    background: url('/template/default2020/skin/images/hot.png') left center/22px no-repeat;
    margin-bottom: 12px;
    color: #1a2634;
    letter-spacing: 0.3px;
}

.hot-list ul {
    list-style: none;
}

.hot-list ul li,
.hot-list .content-list-8 ul li {
    padding: 8px 0 8px 18px;
    background: url('/template/default2020/skin/images/list.png') left center/18px no-repeat;
    border-bottom: 1px dashed #e6ecf2;
}

.hot-list ul li:hover,
.hot-list .content-list-8 ul li:hover {
    background: url('/template/default2020/skin/images/list.png') left center/18px no-repeat;

}

.hot-list ul li:last-child,
.hot-list .content-list-8 ul li:last-child {
    border-bottom: none;
}

.hot-list ul li a,
.hot-list .content-list-8 ul li a {
    color: #1a2634;
    font-size: 14px;
    transition: color 0.15s;
}

.hot-list ul li a:hover,
.hot-list .content-list-8 ul li a:hover {
    color: #0f7b3a;
}

.hot-list .content-list-8 ul li p,
.hot-list .content-list-8 ul li span {
    display: none;
}

/* ===== 底部 ===== */
.footer {
    background: #1a2634;
    color: #b0c0d0;
    padding: 28px 0;
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #2f3e4e;
}

.footer a {
    color: #43aa64;
}

.footer a:hover {
    color: #fff;
}

.footer .highlight {
    color: #fff;
}

/* ===== 工具类 ===== */
.mt-10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.footer-bottom1 {
    display: block;
}

.footer-bottom2 {
    display: none;
}



/* ssl‑footer 样式，参照newsold.html */
#ssl-footer {
    background: #373e42;
    color: #b0c0d0;
    padding: 25px 0;
    font-size: 14px;
    margin-top: 40px;
}

#ssl-footer .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

#ssl-footer ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

#ssl-footer .footer-top {
    margin-bottom: 20px;
    padding-left: 28px;
    padding-right: 28px;
}

#ssl-footer .footer-top ul li {
    flex: 1;
    /* 核心改动：图片左，文字块右，文字左对齐 */
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

#ssl-footer .footer-top ul li img {
    /* float 清除，改用flex布局 */
    float: none;
    flex-shrink: 0;
    opacity: .9;
}

#ssl-footer .footer-top .text-wrap {
    flex: 1;
}

#ssl-footer .footer-top .p1 {
    font-size: 24px;
    margin-top: 5px;
    line-height: 34px;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 10px;
}

#ssl-footer .footer-top .p2 {
    line-height: 20px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 10px;
}

#ssl-footer hr {
    border: 0;
    border-top: 1px solid #2f3e4e;
    margin: 0;
    border-color: #4c4d53;
}

#ssl-footer .footer-body {
    padding-left: 28px;
    padding-right: 28px;
}

#ssl-footer .footer-body>ul {
    gap: 20px
}

#ssl-footer .footer-body>ul>li {
    flex: 1;
    /* min-width: 140px; */
    margin-top: 25px;
}


#ssl-footer .footer-body h1 {
    font-size: 20px;
    color: rgba(254, 254, 254, .7);
    margin-bottom: 25px;
    font-weight: 500;
}

#ssl-footer .footer-body p {
    margin: 6px 0 13px;
}

#ssl-footer .footer-body a {
    color: rgba(254, 254, 254, .5);
    text-decoration: none;
    font-size: 14px;
}

#ssl-footer .footer-body a:hover {
    color: #43aa64;
}

#ssl-footer .footer-body>ul>li.right {
    margin-left: 45px;
}

#ssl-footer .footer-body>ul>li.right>img {
    width: 130px;
    padding-right: 0;
    display: inline-block;
}

#ssl-footer .footer-body>ul>li.right>img:last-child {
    margin-left: 25px;
}

#ssl-footer .right-top {
    text-align: center;
    overflow: hidden;
}

#ssl-footer .right-top img {
    margin-bottom: 6px;
    float: left;
}

#ssl-footer .right-top .text-wrap {
    float: left;
}

#ssl-footer .right .p1 {
    line-height: 42px;
    padding-top: 5px;
    font-size: 30px;
    color: rgba(255, 255, 255, .9);
    margin: 0;
}

#ssl-footer .right .p2 {
    font-size: 25px;
    color: #43aa64;
    line-height: 35px;
    margin-bottom: 22px;
    margin-top: 0;
}

#ssl-footer .right .p3 {
    overflow: hidden;
    color: rgba(255, 255, 255, .5);
    font-size: 18px;
}

#ssl-footer .right .p3 img {
    float: left;
}

#ssl-footer .right img {
    padding-right: 15px;
}

#ssl-footer .footer-bottom {
    text-align: center;
    margin-top: 15px;
    line-height: 1.8;
}

#ssl-footer .footer-bottom p {
    font-size: 18px;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 5px;
}

#ssl-footer .footer-bottom span {
    color: #43aa64;
}

#ssl-footer .footer-bottom a {
    color: #43aa64;
}

#ssl-footer .footer-bottom a:hover {
    color: #fff;
}

@media (max-width: 1199.98px) {
    .search-box form .input-group .form-control {
        width: 79%;
    }

    .promo-badge a img {
        height: 39px;
    }

    .logo a {
        width: 158px;
    }

    .nav-menu>li>a {
        padding-left: 6px;
        padding-right: 6px;
    }

    #ssl-footer .footer-top ul li img {
        width: 30%;
    }

    #ssl-footer .right-top img,
    #ssl-footer .right .p3 img {
        display: none;
    }

    #ssl-footer .right .p1 {
        font-size: 18px;
        line-height: 30px;
    }

    #ssl-footer .right .p2 {
        font-size: 16px;
        margin-bottom: 0;
        line-height: 30px;
    }

    #ssl-footer .right .p3 {
        font-size: 14px;
        margin-top: 0;
        line-height: 18px;
    }

    #ssl-footer .footer-body>ul>li.right>img {
        width: 60%;
    }

    #ssl-footer .footer-body>ul>li.right>img:last-child {
        margin-left: 0;
    }

    #ssl-footer .footer-bottom p {
        font-size: 16px;
    }
}

@media (max-width: 991.98px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding-top: 12px;
        border-top: 1px solid #e6ecf2;
        margin-top: 10px;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu>li {
        width: 100%;
    }

    .nav-menu>li>a {
        padding: 12px 0;
        border-bottom: 1px solid #f0f4f8;
    }

    .dropdown-menu {
        position: static;
        border: none;
        box-shadow: none;
        padding: 0 0 0 16px;
        background: transparent;
        min-width: auto;
        border-radius: 0;
    }

    .dropdown-menu ul {
        display: block;
    }

    .dropdown-menu ul li a {
        padding: 10px 0;
        border-bottom: 1px solid #f0f4f8;
        border-radius: 0;
    }

    .dropdown-menu ul li a i {
        font-size: 28px;
        width: 28px;
        height: 28px;
        line-height: 28px;
    }


    .dropdown:hover>.dropdown-menu {
        display: none;
    }

    .dropdown.open>.dropdown-menu {
        display: block;
    }

    .nav-extra {
        margin-left: 0;
        width: 100%;
        justify-content: center;
        padding: 12px 0 4px;
        flex-direction: row;
    }

    .header .nav-menu>li.dropdown .arrow {
        display: none !important;
    }

    .main-grid {
        display: flex;
        flex-direction: column;
    }

    .sidebar {
        order: -1;
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-bottom: 10px;
    }

    .sidebar .search-box {
        order: 1;
    }

    .sidebar .product-card {
        order: 2;
    }

    .sidebar .tool-banner {
        order: 3;
    }

    .sidebar .tool-banner:last-of-type {
        order: 4;
    }

    .sidebar .hot-list {
        order: 5;
        margin-top: 2px;
    }

    .search-box input {
        padding: 10px 14px;
        font-size: 15px;
    }

    .search-box button {
        padding: 10px 18px;
        font-size: 16px;
    }

    .product-card .title {
        font-size: 15px;
    }

    .product-grid a {
        font-size: 13px;
        padding: 6px 4px;
    }

    .search-box form .input-group .form-control {
        width: 90%;
    }

    .promo-badge a img {
        height: 46px;
    }

    .product-card,
    .tool-banner,
    .hot-list {
        display: none;
    }

    .promo-badge a img {
        height: 36px;
    }

    #ssl-footer .footer-top .p1 {
        font-size: 18px;
    }

    #ssl-footer .footer-top .p2 {
        display: none;
    }

}

@media (max-width: 767.98px) {
    .top-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .promo-badge {
        margin-right: 0;
        justify-content: flex-start;
        padding: 6px 12px;
    }

    .promo-badge a img {
        height: 28px;
    }


    #ssl-footer .footer-top ul li {
        width: 100%;
    }

    #ssl-footer .footer-body>ul>li {
        width: 100%;
        border-right: none !important;
    }

    #ssl-footer .footer-top ul li img {
        width: 10%;
    }

    /* grid-template-columns: 3.2fr 1fr; */
    .promo-badge a img {
        height: 23px;
    }

    .footer-top,
    #ssl-footer hr {
        display: none;
    }

    #ssl-footer .footer-body ul li {
        display: none;
    }

    #ssl-footer .footer-body ul li.right {
        display: block;
    }
}

@media (max-width: 575.98px) {
    .logo a {
        width: 130px;
        height: 36px;
    }

    .header {
        padding: 6px 0;
    }

    .sidebar .search-box input {
        padding: 8px 10px;
        font-size: 13px;
    }

    .sidebar .search-box button {
        padding: 8px 12px;
        font-size: 14px;
    }

    .product-card .title {
        font-size: 14px;
        padding-left: 34px;
        background-size: 26px;
        min-height: 28px;
    }

    .product-grid a {
        font-size: 12px;
        padding: 5px 3px;
    }

    .hot-list .hot-title {
        font-size: 15px;
        background-size: 20px;
        padding-left: 28px;
    }

    .hot-list ul li a {
        font-size: 13px;
    }

    .search-box form .input-group .form-control {
        width: 83%;
    }

    .promo-badge .label {
        display: none;
    }

    .promo-badge a img {
        width: 100%;
        height: auto;
    }

    .breadcrumb {
        padding-top: 0;
        padding-bottom: 0;
    }

    .top-bar {
        margin-bottom: 0;
    }

    .main-grid {
        gap: 0 15px
    }

    #ssl-footer .footer-body {
        padding: 0;
    }

    #ssl-footer .footer-body ul li.right {
        margin-left: 0;
    }

    #ssl-footer .footer-body>ul>li.right>img {
        width: 49%;
    }

    #ssl-footer .right-top img,
    #ssl-footer .right .p3 img {
        display: block;
    }

    #ssl-footer .right .p1 {
        font-size: 24px;
        margin-bottom: 10px;
        margin-top: 5px;
    }

    #ssl-footer .right .p2 {
        font-size: 26px;
    }

    #ssl-footer .right .p3 {
        font-size: 18px;
        line-height: 25px;
    }

    .footer-bottom1 {
        display: none;
    }

    .footer-bottom2 {
        display: block;
    }

    .list-content h4,
    .column-list-text-text h4 {
        font-size: 14px;
    }


}




/* 核心：屏幕≥1200px时right列最小宽度302px */
@media (min-width:1200px) {
    #ssl-footer .footer-body>ul>li.right {
        min-width: 302px;
    }
}