@charset "utf-8";

/* CSS Document */

html {
    background: #fff;
    overflow-x: hidden;
}

body {
    font-size: 14px;
    background-color: #fff;
    color: #323232;
    font-family: 'Microsoft YaHei', '微软雅黑', SimSun, '宋体', 'Lucida Grande', Tahoma, Arial, Helvetica, sans-serif;
    min-width: 1300px;
    margin: 0 auto;
}

html,
body,
address,
blockquote,
div,
dl,
form,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
pre,
table,
ul,
dd,
dl,
dt,
li,
tbody,
td,
tfoot,
th,
thead,
tr,
button,
del,
ins,
map,
object,
a,
abbr,
acronym,
b,
bdo,
big,
br,
cite,
code,
dfn,
em,
i,
img,
kbd,
q,
samp,
small,
span,
strong,
sub,
sup,
tt,
var,
legend,
fieldset {
    margin: 0px;
    padding: 0px;
    font-size: 100%;
    -webkit-font-smoothing: subpixel-antialiased;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

fieldset,
img {
    border: 0;
}

img,
object {
    width: 100%;
}

a {
    outline: none;
    text-decoration: none;
    color: #323232;
    transition: all 0.3s ease-in-out;
}

a * {
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: #B70106;
    text-decoration: none;
    cursor: pointer;
}

input[type='button'] {
    outline: none;
    border: 0 none;
    background-color: transparent;
    cursor: pointer;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
    font-style: normal;
    font-weight: 400;
}


/*定义清除浮动样式 方法一*/

.clearfix:after {
    content: '\20';
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    zoom: 1;
}


/*定义清除浮动样式 方法二*/

.clear {
    clear: both;
}


/*font-size */

.f12px {
    font-size: 12px;
}

.f14px {
    font-size: 14px;
}

.f16px {
    font-size: 16px;
}

.f18px {
    font-size: 18px;
}

.f20px {
    font-size: 20px;
}

.f22px {
    font-size: 22px;
}

.f24px {
    font-size: 24px;
}

.f48px {
    font-size: 48px;
}


/*float */

.fl {
    float: left;
}

.fr {
    float: right;
}

ul,
ol,
li {
    list-style: none outside none;
}

.tc {
    text-align: center !important;
}

.tl {
    text-align: left !important;
}

.tr {
    text-align: right !important;
}

.fwn {
    font-weight: normal;
}

.fwb {
    font-weight: bold;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
}

q:before,
q:after {
    content: '';
    content: none;
}

input,
textarea,
select {
    font-weight: inherit;
    font-size: 100%;
}

input,
select,
textarea,
button {
    vertical-align: middle
}

.pa {
    position: absolute;
}

.pr {
    position: relative;
}

.inblock {
    display: inline-block;
}

.disnone {
    display: none;
}

.block {
    display: block;
}

.hidden {
    overflow: hidden !important;
}

.none {
    display: none;
}

.textoverflow {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.underline:hover {
    text-decoration: underline;
}

.mtc {
    margin: 0 auto;
}

.number {}

.fw600 {
    font-weight: 600;
}

.hand {
    cursor: pointer;
}

.distable {
    display: table;
}

.distr {
    display: table-row;
}

.distd {
    display: table-cell;
}

.imgResponsive {
    width: 100%;
    overflow: hidden;
    height: 0;
    display: block;
    padding-bottom: 56.1%;
    background: #f9f9f9;
    position: relative;
}

.imgResponsive img {
    width: 100%;
    transition: all 0.8s ease-in-out;
}

a:hover .imgResponsive img {
    transform: scale(1.08);
    opacity: 0.9
}

/*分类导航 */
.category-nav {
    margin: 30px auto 0; /* 调整上边距 */
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px; /* 为下划线留出空间 */
    border-bottom: 2px solid #8f959e2b; /* 下方细线 */
}
.category-nav .category-title {
    position: relative;
    font-weight: 400;
    font-size: 18px;
    color: #333333;
    line-height: 25px;
    margin-right: 80px;
  }
  .category-nav .category-separator {
    position: absolute;
    right: -41px;
    top: -6;
    width: 1px;
    height: 34px;
    background: #DDDFE2;
  }
  .category-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
  .category-nav ul li {
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 18px;
    color: #333333;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease-in-out;
    margin-right: 36px;
  }
  .category-nav ul li:hover {
    color: #B70106;
  }
  .category-nav ul li.active {
    color: #B70106;
  }
  .category-nav ul li.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #B70106;
    bottom: -22px; /* 与父元素padding-bottom对应 */
    left: 0;
  }

/* Pagination styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px; /* Adjust as needed */
    padding-bottom: 50px; /* Adjust as needed */
}

.pagination .page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid #E0E0E0;
    border-radius: 8px; /* Slightly rounded corners */
    margin: 0 8px; /* Spacing between pages */
    text-decoration: none;
    font-family: Arial, sans-serif; /* Or PingFang SC */
    font-size: 20px;
    color: #999999;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.pagination .page-link:hover {
    background-color: #F5F5F5;
    color: #B70106;
    border-color: #B70106;
}

.pagination .page-link.active {
    background-color: #B70106;
    color: #FFFFFF;
    border-color: #B70106;
}

.pagination .page-link.prev-link,
.pagination .page-link.next-link {
    font-weight: bold;
}