#headerContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 120px 0;
    position: relative;
}

#headerContainer .left-wrapper {
    width: 38%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
}

#headerContainer .left-wrapper .p-title {
    /* font-family: Microsoft YaHei, Microsoft YaHei; */
    font-weight: bold;
    font-size: 50px;
    color: #E73724;
    line-height: 59px;
}

#headerContainer .left-wrapper .p-sub-title {
    /* font-family: Microsoft YaHei, Microsoft YaHei; */
    font-weight: bold;
    font-size: 21px;
    color: #1D2D5E;
    line-height: 32px;
    padding-top: 24px;
}

#headerContainer .right-wrapper {
    width: 62%;
}

#headerContainer .right-wrapper .bg-img {
    width: 100%;
}

.title-wrapper {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 60px;
}

.title-wrapper .section-title {
    /* font-family: Microsoft YaHei, Microsoft YaHei; */
    font-weight: bold;
    font-size: 60px;
    color: #333333;
    line-height: 80px;
    text-align: center;
}

.newest-section .product-swiper {
    width: 100%;
    /* height: 536px; */
    min-height: 536px;
    height: auto;
}
.newest-section .product-swiper .swiper-pagination{
    position: relative;
    margin-top: 15px;
}

.newest-section .product-swiper .swiper-slide {
    position: relative;
}

/* 图片下的文字内容样式 */
.newest-section .product-swiper .slide-content {
    width: 100%;
    height: 100%;
}

.newest-section .product-swiper .swiper-pagination-bullet {
    background-color: #e2e2e2;
}

.newest-section .product-swiper .swiper-pagination-bullet-active {
    background-color: var(--main-color);
}

.newest-section .product-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0 auto;
}

.newest-section .product-list .product-item {
    box-sizing: border-box;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0px 8px 24px 0px rgba(149, 157, 165, 0.2);
}

.newest-section .product-list .product-item .product-warpper {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    position: relative;
}

.newest-section .bg-img {
    width: 100%;
    border-radius: 12px 12px 0 0;
    transition: transform 0.3s ease-in-out;
}

.newest-section .product-item:hover .bg-img {
    transform: scale(1.1);
}

.newest-section .product-item .top-wrapper {
    position: relative;
    overflow: hidden;
}

.newest-section .product-item .top-wrapper .tip-lab {
    position: absolute;
    padding: 10px 36px;
    background: var(--main-color);
    border-radius: 12px 0px 12px 0px;
    /* font-family: Microsoft YaHei, Microsoft YaHei; */
    font-weight: bold;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 16px;
    top: 0;
    left: 0;
    z-index: 1;
}

.newest-section .product-item .down-wrapper {
    padding: 14px;
}

.newest-section .product-item .down-wrapper .p-name {
    /* font-family: Microsoft YaHei, Microsoft YaHei; */
    font-weight: 400;
    font-size: 14px;
    color: #454D55;
    line-height: 16px;
    padding-bottom: 12px;
}

.newest-section .product-item .down-wrapper .d-name {
    /* font-family: Microsoft YaHei, Microsoft YaHei; */
    font-weight: bold;
    font-size: 20px;
    color: #333333;
    line-height: 23px;
    padding-bottom: 6px;
}

.newest-section .product-item .down-wrapper .y-tip {
    /* font-family: Microsoft YaHei, Microsoft YaHei; */
    font-weight: 400;
    font-size: 14px;
    color: #F2994A;
    line-height: 16px;
    padding-bottom: 16px;
}

.newest-section .product-item .down-wrapper .p-detail {
    /* font-family: Microsoft YaHei, Microsoft YaHei; */
    font-weight: 400;
    font-size: 14px;
    color: #454D55;
    line-height: 24px;
    padding-bottom: 16px;
}

.newest-section .product-item .down-wrapper .btns {
    display: flex;
    justify-content: center;
    align-items: center;
}

.newest-section .product-item .down-wrapper .btn-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333333;
    border-radius: 74px;
    padding: 10px 38px;
}

.newest-section .product-item .down-wrapper .btn-wrapper:hover {
    background-color: var(--main-color);
}

.newest-section .product-item .down-wrapper .btn-wrapper .wechat-icon {
    width: 33px;
    height: 33px;
}

.newest-section .product-item .down-wrapper .btn-wrapper .btn-txt {
    /* font-family: Microsoft YaHei, Microsoft YaHei; */
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 19px;
    padding: 0 12px;
}

.newest-section .product-item .down-wrapper .btn-wrapper .arrow-icon {
    width: 24px;
    height: 24px;
}

#blogSection {
    padding-top: 160px;
    padding-bottom: 160px;
}

#blogSection .blog-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 auto;
}

#blogSection .blog-list .blog-item {
    box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}

#blogSection .blog-list .blog-item .top-wrapper {
    overflow: hidden;
}

#blogSection .blog-list .blog-item .top-wrapper .bg-img {
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

#blogSection .blog-list .blog-item:hover .top-wrapper .bg-img {
    transform: scale(1.1);
}

#blogSection .blog-list .blog-item .down-wrapper {
    padding: 38px 32px;
}

#blogSection .blog-list .blog-item .down-wrapper .b-title {
    /* font-family: Microsoft YaHei, Microsoft YaHei; */
font-weight: bold;
font-size: 28px;
color: #1D2D5E;
line-height: 39px;
padding-bottom: 11px;
}

#blogSection .blog-list .blog-item .down-wrapper .b-detail {
    /* font-family: Microsoft YaHei, Microsoft YaHei; */
    font-weight: 400;
    font-size: 16px;
    color: #1C1E53;
    line-height: 30px;
}

#blogSection .blog-list .blog-item .down-wrapper .btns {
    padding-top: 32px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#blogSection .blog-list .blog-item .down-wrapper .btns .btn-wrapper {
    display: flex;
    align-items: center;
    padding-bottom: 11px;
    border-bottom: 1px solid #1D2D5E;
}

#blogSection .blog-list .blog-item .down-wrapper .btns .btn-wrapper .btn-txt {
    /* font-family: Microsoft YaHei, Microsoft YaHei; */
    font-weight: bold;
    font-size: 19px;
    color: #1D2D5E;
    line-height: 28px;
}

#blogSection .blog-list .blog-item .down-wrapper .btns .btn-wrapper .blue-arrow {
    width: 16px;
    height: 16px;
    margin-left: 16px;
    transition: transform 0.2s ease-in-out;
}

.btn-wrapper:hover .blue-arrow {
    transform: rotate(45deg);
}

#demo-laypage-theme-1 {
    display: flex;
    justify-content: center;
    margin: 20px 0 60px 0;
}

.layui-laypage a, .layui-laypage span {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    font-weight: bold;
    margin: 0 1px;
}

.layui-laypage a, .layui-laypage button, .layui-laypage input, .layui-laypage select, .layui-laypage span {
    border: none;
}

.layui-disabled,
.layui-disabled:active {
    background-color: #ffffff !important;
}

.layui-laypage a, .layui-laypage span {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    font-weight: bold;
    margin: 0 1px;
}
.layui-laypage a:hover {
    color: #E73724;
  }