/* ===============公用样式=============== */
* {
    padding: 0;
    margin: 0;
}

/* 主色调 var(--pm-c) 背景色var(--bg-c) 边框色var(--br-c) */
/* 底部背景色var(--fbg-c) */
:root {
    --pm-c: #00a040;
    --bg-c: #fff;
    --br-c: #f2f5f9;
    --fbg-c: #F0F0F0;
}

body {
    background-color: var(--bg-c);
}

a {
    text-decoration: none !important;
}

a:hover {
    text-decoration: none !important;
}

ul, li {
    list-style: none !important;
}

input, button {
    outline: none;
    background: none;
    border: none;
}

.img {
    overflow: hidden;
}

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

.infoSty {
    position: relative;
    display: block;
}

.infoSty .info {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
    background: rgba(0, 0, 0, .5);
}

.infoSty .info .title {
    font-size: 16px;
    color: #fff;
    width: 76%;
    padding-left: 14px;
}

.infoSty .info span {
    font-size: 14px;
    color: #fff;
    margin-right: 10px;
}

.flex1 {
    flex: 1;
    min-width: 0;
}

/* flex */
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/* flex 垂直排列*/
.flex-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/* flex  换行 align-items:center*/
.flexFull {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* flex align-items:center*/
.acenter {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* flex align-items:start*/
.astart {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

/* flex justify-content:start*/
.jstart {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
}

/* flex justify-content:center*/
.jcenter {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* flex 垂直、水平居中*/
.dcenter {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* 超出隐藏  1--5行 */
.t {
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.t2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /*!autoprefixer:off*/
    -webkit-box-orient: vertical;
    /* autoprefixer: on */
}

.t3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /*!autoprefixer:off*/
    -webkit-box-orient: vertical;
    /* autoprefixer: on */
}

.t4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /*!autoprefixer:off*/
    -webkit-box-orient: vertical;
    /* autoprefixer: on */
}

.t5 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    /*!autoprefixer:off*/
    -webkit-box-orient: vertical;
    /* autoprefixer: on */
}

/* ===============间距================== */
.grid10 {
    margin-left: 10px;
}

.grid15 {
    margin: 0 15px;
}

.grid20 {
    margin-left: 20px;
}

.grid30 {
    margin-left: 30px;
}

.ml10 {
    margin-left: -10px;
}

.ml50 {
    margin-left: -15px;
}

.ml20 {
    margin-left: -20px;
}

.ml30 {
    margin-left: -30px;
}

.mt10 {
    margin-top: 10px !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mt30 {
    margin-top: 30px !important;
}

.mt40 {
    margin-top: 40px !important;
}

.mt50 {
    margin-top: 50px !important;
}

.topMargin {
    margin-top: 0;
}

.pt10 {
    padding-top: 10px !important;
}

.pt20 {
    padding-top: 10px !important;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* 1-5等分 */
.col-1 {
    width: 100%;
}

.col-2 {
    width: 50%;
}

.col-m-2 {
    width: 48%;
}

.col-m-4 {
    width: 24%;
}

.col-3 {
    width: 32%;
}

.col-4 {
    width: 24%;
}

.col-5 {
    width: 20%;
}

.col-width-6 {
    width: 66.7%;
}

.col-width-3 {
    width: 30%;
}

.panel {
    width: 48%;
    margin-top: 20px;
}

/* 移动端导航滑动 */
.scro-x {
    display: -webkit-box;
    display: -ms-flexbox;
    overflow-x: auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.scro-x::-webkit-scrollbar {
    display: none;
}


.public-title {
    width: 100%;
    position: relative;
}

/* ===========公共标题============= */
.pubTitle > span {
    font-size: 16px;
    font-style: italic;
    color: var(--pm-c);
    font-weight: bold;
    padding-bottom: 10px;
    position: relative;
}

.pubTitle > span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--pm-c);
    z-index: 99;
}

.pubTitle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #eee;
}

.pubTitle > a {
    font-size: 12px;
    font-weight: 400;
    color: #999;
}

/* ====================pc头部=============== */
.logo {
    /* width: 296px; */
}

.logo img {
    display: block;
    width: 100%;
}

.p-header {
    display: block;
}

.m-header {
    display: none;
}

/* 以下替换pc头部样式 */
.p-header .top {
    height: 80px;
    border-bottom: 3px solid var(--pm-c);
}

.p-header .nav li a {
    display: block;
    font-size: 18px;
    color: #333;
    padding: 13px 20px;
    position: relative;
}

.p-header .nav .active::after, .p-header .nav li a:hover::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 30%;
    height: 4px;
    background: var(--pm-c);
    border-radius: 2px;
}

/* ====================pc头部/=============== */

/* =====================main内容================= */

.main {
    min-height: 550px;
    background: #fff;
}

/* 举例：row1 第一行 =>news */
.infoImgs > a .img {
    width: 100%;
    height: 200px;
}

.infoImgs > ul li {
    width: 48%;
    margin-top: 10px;
}

.infoImgs > ul li a .img {
    width: 100%;
    height: 120px;
}

.infoImgs > ul li a .img .info .title {
    width: 52%;
}

.newsImg1 {
    /* margin: 20px auto; */
    width: 100%;
}

.newsImg1 ul {
    position: relative;
}

.newsImg1 ul::after {
    content: "";
    width: 24%;
}

.newsImg1 ul li {
    margin-top: 20px;
}

.newsImg1 ul li a .img {
    width: 100%;
    height: 200px;
}

.newsImg1 ul li a .title {
    margin-top: 10px;
    text-align: center;
    width: 100%;
    font-size: 16px;
    color: #333;
}

.newsImg1 ul li a:hover .title {
    color: var(--pm-c);
}

.row1 {

}

.banner-container .swiper-pagination {
    bottom: 15px !important;
}

.swiper-pagination .swiper-pagination-bullet {
    background: #fff !important;
    width: 8px;
    height: 8px;
    margin-right: 10px;
    opacity: .5;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background: var(--pm-c) !important;
    opacity: 1;
}

.banner-container .img {
    width: 100%;
    height: 220px;
}

.icon1 ul li a {
    position: relative;
    padding-left: 16px;
}

.icon1 ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #999;
}

.icon1 ul li a:hover::before {
    background: var(--pm-c);
}

.rank-news {
    margin: 20px auto;
}

.rank-news ul li {
    margin-top: 20px;
}

.rank-news ul li label {
    font-style: italic;
    font-size: 14px;
    color: #999;
    margin-right: 10px;
}

.rank-news ul li a {
    font-size: 16px;
    color: #333;
    width: 80%;
}

.rank-news ul li a:hover {
    color: var(--pm-c);
}

.rank-news ul li span {
    font-size: 14px;
    color: #999;
}

.randImg {
    width: 100%;
    height: 160px;
}

.news1 {
    padding-top: 10px;
}

.news1 ul li {
    margin-top: 20px;
}

.news1 {
    margin: 0 auto;
}

.news1 ul li {
    margin-top: 18px;
}

.news1 ul li a {
    font-size: 16px;
    color: #333;
    width: 74%;
}

.news1 ul li a:hover {
    color: var(--pm-c);
}

.news1 ul li span {
    font-size: 14px;
    color: #999;
}

.top-news1 ul li:not(:last-child) {
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
}

.top-news1 ul li:not(:first-child) {
    margin-top: 20px;
}

.top-news1 ul li a {
    font-size: 18px;
    color: var(--pm-c);
    font-weight: bold;
    text-align: center;
}

.top-news1 ul li a span {
    font-size: 14px;
    color: var(--pm-c);
}

.top-news1 ul li p {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    line-height: 30px;
}

.row2 .news ul li {
    padding-top: 20px;
}

.row2 .news ul li:not(:last-child) {
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
}

.row2 .news ul li a .img {
    width: 150px;
    height: 90px;
}

.row2 .news ul li a .des {
    padding-left: 20px;
    padding-top: 4px;
    padding-bottom: 4px;
}

.row2 .news ul li a .des .title {
    font-size: 16px;
    color: #333;
    line-height: 24px;
    font-weight: bold;
}

.row2 .news ul li a .des > div span {
    font-size: 14px;
    color: #999;
}

.row2 .news ul li a .des > div label {
    width: 80px;
    height: 26px;
    font-size: 14px;
    color: #fff;
    background: var(--pm-c);
    text-align: center;
    line-height: 26px;
}

.row2 .news ul li a:hover .des .title {
    color: var(--pm-c);
}

.news2 ul li {
    margin-top: 20px;
    align-items: center;
}

.news2 ul li label {
    width: 48px;
    height: 28px;
    text-align: center;
    line-height: 28px;
    font-size: 14px;
    background: var(--pm-c);
    color: #fff;
    border-radius: 2px;
    margin-right: 10px;
}

/* .row3 .news ul li label{
    font-size: 14px;
    color: var(--pm-c);
} */
.news2 ul li a {
    font-size: 16px;
    color: #333;
    width: 72%;
}

.news2 ul li a:hover {
    color: var(--pm-c);
}

.news2 ul li span {
    font-size: 14px;
    color: #999;
}

/* ====================pc底部=============== */
.link p {
    margin-top: 0;
    line-height: 48px;
    flex-wrap: wrap;
}

.link p a {
    font-size: 12px;
    color: #999;
    margin-right: 10px;
}

.link p a:hover {
    color: var(--pm-c);
}

footer {
    background: var(--fbg-c);
    margin-top: 50px;
    padding: 50px 0;
}

footer p {
    font-size: 14px;
    color: #999;
    line-height: 30px;
    text-align: center;
}

footer p a {
    font-size: 14px;
    color: #999;
}

footer p a:hover {
    color: #ddd;
}

/* 分页 */
.pagination {
    text-align: center;
    margin-top: 40px;
}

.pagination .thisclass {
    color: #fff;
    font-weight: bold;
    background: var(--pm-c) !important;
    border: none !important;
}

.pagination .thisclass span {
    color: #fff;
}

.pagination li {
    display: inline-block;
    margin: 0 9px;
    padding: 5px 11px;
    font-size: 16px;
    color: #999;
    border: 1px solid #DCDCDC;
}

.pagination li:hover {
    background: var(--pm-c);
}

.pagination li:hover a, .pagination li:hover span {
    color: #fff;
    border: none;
}

.pagination li .page-link {
    cursor: pointer;
}

.pagination li span, .pagination li a {
    color: #999;
    display: inline-block;
}

.clearmt ul li:first-child {
    margin-top: 0 !important;
}

/* 列表页 */

.bread-nav {
    padding: 20px 0;
}

.bread-nav .breadCrumbs li {
    display: inline-block;
    font-size: 12px;
    color: #999;
}

.bread-nav .breadCrumbs li img {
    width: 12px;
    height: 14px;
    padding-right: 2px;
}

.bread-nav .breadCrumbs li a {
    font-size: 12px;
    color: #999;
}

.bread-nav .breadCrumbs li a:hover {
    color: var(--pm-c);
}

.itemList1 ul li {
    padding: 20px 0;
    border-bottom: 1px dashed #eee;
}

.itemList1 ul li > a {
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

.itemList1 ul li > a:hover {
    color: var(--pm-c);
}

.itemList1 ul li > div .img {
    width: 200px;
    height: 100px;
}

.itemList1 ul li > div .des {
    padding-left: 20px;
}

.itemList1 ul li > div .des p {
    font-size: 14px;
    color: #888;
    line-height: 24px;
}

.itemList1 ul li > div .des span {
    font-size: 14px;
    color: #999;
}

.itemList2 ul li {
    padding: 20px 0;
    border-bottom: 1px dashed #eee;
}

.itemList2 ul li .info .title {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    width: 80%;
}

.itemList2 ul li > .info .title:hover {
    color: var(--pm-c);
}

.itemList2 ul li .info .watch {
    font-size: 14px;
    color: var(--pm-c);
}

.itemList2 ul li .des p {
    font-size: 14px;
    color: #888;
    line-height: 24px;
}

.itemList2 ul li .des span {
    font-size: 14px;
    color: #999;
    margin-top: 4px;
}

/* 详情页 */
.detail .art-head {
    padding-bottom: 20px;
    border-bottom: 1px dashed #EEEEEE;
}

.detail .art-head h1 {
    font-size: 24px;
    color: #333;
    font-weight: bold;
    text-align: center;
}

.detail .art-head p {
    margin-top: 30px;
}

.detail .art-head p span {
    font-size: 14px;
    color: #999;
    margin-right: 20px;
}

.detail .art-cont {
    font-size: 15px;
    line-height: 36px;
    color: #666;
    padding: 20px 0;
}

.detail .art-cont a {
    display: inline-block;
    font-size: 15px;
    color: var(--pm-c);
    text-indent: 0;
}

.detail .art-cont img {
    display: block;
    max-width: 600px !important;
    height: auto;
    margin: 10px auto;
    /* margin-left: -2em; */
}

.detail .art-cont p {
    font-size: 15px;
    line-height: 36px;
    color: #666;
    text-indent: 2em;
}

.pages {
    margin-top: 40px;
}

.pages ul li {
    margin-top: 20px;
    font-size: 16px;
    color: #333;
}

.pages ul li a {
    font-size: 16px;
    color: #333;
    width: 74%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pages ul li a:hover {
    color: var(--pm-c);
}

/* =======================================移动端===================================== */
@media screen and (max-width: 900px) {
    .mt10 {
        margin-top: 5px !important;
    }

    .mt20 {
        margin-top: 10px !important;
    }

    .mt30 {
        margin-top: 15px !important;
    }

    .mt40 {
        margin-top: 20px !important;
    }

    .mt50 {
        margin-top: 25px !important;
    }

    .topMargin {
        margin-top: 20px;
    }

    .pt10 {
        padding-top: 5px !important;
    }

    .pt20 {
        padding-top: 5px !important;
    }

    .container {
        width: 100%;
    }

    .panel {
        width: 100%;
        /* margin-top: 0; */
    }

    .row {
        padding: 0 15px;
    }

    .col-2, .col-3, .col-4, .col-5, .col-width-3, .col-width-6 {
        width: 100%;
    }

    .col-m-2 {
        width: 48% !important;
    }

    .col-m-4 {
        width: 48%;
    }

    .p-header {
        display: none;
    }

    .m-header {
        display: block;
    }

    .pubTitle {
    }

    .pubTitle > span {
        color: var(--pm-c);
        font-size: 14px;
    }

    .pubTitle > a {
        color: #999;
    }

    /* 移动端控制列数 */
    /* 移动端控制列数 */
    .infoSty {
        position: relative;
        display: block;
    }

    .infoSty .info {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        padding: 5px 0;
        background: rgba(0, 0, 0, .5);
    }

    .infoSty .info .title {
        font-size: 14px;
        color: #fff;
        width: 76%;
        padding-left: 7px;
    }

    .infoSty .info span {
        font-size: 12px;
        color: #fff;
        margin-right: 5px;
    }

    /* ===========公共标题============= */
    .pubTitle > span {
        /* padding-left: 10px;  */
    }

    /* ====================移动端头部================== */
    /* 以下替换移动端头部样式 */
    .m-header {
        /* background: var(--pm-c); */
        height: 100px;
    }

    .m-header .top {
        padding: 15px 0 10px 0;
    }

    .m-header .logo {
        display: block;
        width: 120px;
    }

    .navBox {
        padding-top: 5px;
        border-top: 2px solid #fff;
    }

    .m-header .nav li {
        width: 90px;
        text-align: center;
        padding: 8px 0;
        margin-right: 10px;
    }

    .m-header .nav li a {
        display: block;
        font-size: 14px;
        color: #333;
    }

    .m-header .nav .active, .m-header .nav li:hover {
        font-weight: bold;
        color: #fff;
        background: var(--pm-c);
        border-radius: 27px;
    }

    .m-header .nav li:hover a {
        color: #333;
    }

    /* ====================移动端头部/================== */
    /* ====================移动端main内容================ */
    .main {
        min-height: 292px;
    }

    /* 第一行 */
    .newsImg1 ul {
        position: relative;
    }

    .newsImg1 ul::after {
        content: "";
        width: 48%;
    }

    .newsImg1 ul li {
        margin-top: 10px;
    }

    .newsImg1 ul li a .img {
        width: 100%;
        height: 100px;
    }

    .newsImg1 ul li a .title {
        margin-top: 6px;
        text-align: center;
        width: 100%;
        font-size: 14px;
        color: #333;
    }

    .rank-news {
        margin: 10px auto;
    }

    .rank-news ul li {
        margin-top: 10px;
    }

    .rank-news ul li label {
        font-style: italic;
        font-size: 12px;
        color: #999;
        margin-right: 10px;
    }

    .rank-news ul li a {
        font-size: 14px;
        color: #333;
        width: 80%;
    }

    .rank-news ul li a:hover {
        color: var(--pm-c);
    }

    .rank-news ul li span {
        font-size: 12px;
        color: #999;
    }

    .row1 {

    }

    .row1 .panel .img {
        width: 100%;
    }

    .news1 {
        padding-top: 0;
    }

    .news1 ul li {
        margin-top: 10px;
    }

    .row1 .news1 {
        margin: 10px auto;
    }

    .news1 ul li {
        margin-top: 10px;
    }

    .news1 ul li a {
        font-size: 14px;
        color: #333;
        width: 84%;
    }

    .news1 ul li a:hover {
        color: var(--pm-c);
    }

    .news1 ul li span {
        font-size: 12px;
        color: #999;
    }

    .top-news1 ul li:not(:last-child) {
        padding-bottom: 10px;
        border-bottom: 1px dashed #eee;
    }

    .top-news1 ul li:not(:first-child) {
        margin-top: 10px;
    }

    .top-news1 ul li {
        margin-top: 10px;
    }

    .top-news1 ul li a {
        font-size: 14px;
        color: var(--pm-c);
        font-weight: bold;
        text-align: center;
    }

    .top-news1 ul li a span {
        font-size: 12px;
        color: var(--pm-c);
    }

    .top-news1 ul li p {
        margin-top: 10px;
        font-size: 12px;
        color: #666;
        line-height: 20px;
    }

    .row2 .news ul li {
        padding: 20px 0;
        border-bottom: 1px dashed #eee;
    }

    .row2 .news ul li a .img {
        width: 120px;
        height: 80px;
    }

    .row2 .news ul li a .des {
        padding-left: 10px;
        padding-top: 2px;
        padding-bottom: 2px;
    }

    .row2 .news ul li a .des .title {
        font-size: 14px;
        color: #333;
        line-height: 18px;
        font-weight: bold;
    }

    .row2 .news ul li a .des span {
        font-size: 12px;
        color: #999;
    }

    .news2 ul li {
        margin-top: 10px;
        align-items: center;
    }

    .news2 ul li label {
        width: 36px;
        height: 20px;
        text-align: center;
        line-height: 20px;
        font-size: 12px;
        background: var(--pm-c);
        color: #fff;
        border-radius: 2px;
        margin-right: 6px;
    }

    /* .row3 .news ul li label{
        font-size: 14px;
        color: var(--pm-c);
    } */
    .news2 ul li a {
        font-size: 14px;
        color: #333;
        width: 72%;
    }

    .news2 ul li a:hover {
        color: var(--pm-c);
    }

    .news2 ul li span {
        font-size: 14px;
        color: #999;
    }

    .link p {
        margin-top: 20px;
        line-height: 24px;
        flex-wrap: wrap;
    }

    /* ====================m底部=============== */
    footer {
        background: var(--fbg-c);
        margin-top: 25px;
        padding: 25px 0;
    }

    footer p {
        font-size: 12px;
        color: #999;
        line-height: 18px;
        text-align: center;
    }

    footer p a {
        font-size: 12px;
        color: #999;
    }

    footer p a:hover {
        color: #ddd;
    }

    /* ====================m底部/=============== */
    /* 分页 */
    .pagination {
        text-align: center;
        margin-top: 20px;
    }

    .pagination .thisclass {
        color: #fff;
        font-weight: bold;
        background: var(--pm-c) !important;
        border: none !important;
    }

    .pagination .thisclass span {
        color: #fff;
    }

    .pagination li {
        display: inline-block;
        margin: 0 9px;
        padding: 5px 11px;
        font-size: 12px;
        color: #999;
        border: 1px solid #DCDCDC;
    }

    .pagination li:hover {
        background: var(--pm-c);
    }

    .pagination li:hover a, .pagination li:hover span {
        color: #fff;
        border: none;
    }

    .pagination li .page-link {
        cursor: pointer;
    }

    .pagination li span, .pagination li a {
        color: #999;
        display: inline-block;
    }

    .clearmt ul li:first-child {
        margin-top: 10px !important;
    }

    /* 列表页 */
    .bread-nav {
        padding: 10px 0;
    }

    .bread-nav .breadCrumbs li {
        display: inline-block;
        font-size: 12px;
        color: #999;
    }

    .bread-nav .breadCrumbs li img {
        width: 12px;
        height: 14px;
        padding-right: 2px;
    }

    .bread-nav .breadCrumbs li a {
        font-size: 12px;
        color: #999;
    }

    .bread-nav .breadCrumbs li a:hover {
        color: var(--pm-c);
    }

    .itemList1 ul li {
        padding: 10px 0;
        border-bottom: 1px dashed #eee;
    }

    .itemList1 ul li > a {
        font-size: 14px;
        color: #333;
        font-weight: bold;
    }

    .itemList1 ul li > a:hover {
        color: var(--pm-c);
    }

    .itemList1 ul li > div .img {
        width: 120px;
        height: 75px;
    }

    .itemList1 ul li > div .des {
        padding-left: 14px;
    }

    .itemList1 ul li > div .des p {
        font-size: 12px;
        color: #888;
        line-height: 20px;
    }

    .itemList1 ul li > div .des span {
        font-size: 12px;
        color: #999;
    }


    .itemList2 ul li {
        padding: 10px 0;
        border-bottom: 1px dashed #eee;
    }

    .itemList2 ul li .info .title {
        font-size: 14px;
        color: #333;
        font-weight: bold;
        width: 80%;
    }

    .itemList2 ul li > .info .title:hover {
        color: var(--pm-c);
    }

    .itemList2 ul li .info .watch {
        font-size: 12px;
        color: var(--pm-c);
    }

    .itemList2 ul li .des p {
        font-size: 12px;
        color: #888;
        line-height: 20px;
    }

    .itemList2 ul li .des span {
        font-size: 12px;
        color: #999;
    }

    /* 详情部分 */
    .detail .art-head {
        padding-bottom: 10px;
        border-bottom: 1px dashed #EEEEEE;
    }

    .detail .art-head h1 {
        font-size: 16px;
        color: #333;
        font-weight: bold;
        text-align: center;
    }

    .detail .art-head p {
        margin-top: 15px;
    }

    .detail .art-head p span {
        font-size: 12px;
        color: #999;
        margin-right: 10px;
    }

    .detail .art-cont {
        font-size: 13px;
        line-height: 24px;
        color: #666;
        padding: 10px 0;
    }

    .detail .art-cont a {
        display: inline-block;
        font-size: 13px;
        color: var(--pm-c);
        text-indent: 0;
    }

    .detail .art-cont img {
        display: block;
        max-width: 300px !important;
        width: 300px;
        height: auto;
        margin: 10px auto;
        /* margin-left: -2em; */
    }

    .detail .art-cont p {
        font-size: 13px;
        line-height: 24px;
        color: #666;
        text-indent: 2em;
    }

    /* 上下页 */
    .pages {
        margin-top: 20px;
    }

    .pages ul li {
        margin-top: 10px;
        font-size: 14px;
        color: #333;
    }

    .pages ul li a {
        font-size: 14px;
        color: #333;
        width: 74%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }


}

.pagination .active {
    background-color: var(--pm-c);
}

.pagination .active span {
    color: #fff;
}

.chooseNavBox {
    width: 800px;
    position: relative; /* 新增 - 为按钮定位做准备 */

}

.chooseNavBox > div {
    width: 100%;
    overflow: hidden;
}

.chooseNavUi {
    line-height: 30px;
    transition: transform 0.3s ease;
}

.chooseNavBox.padding {
    padding: 0 40px;
}

.chooseNavUi li {
    white-space: nowrap;
}

.dynamic-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    /*background: rgba(0,0,0,0.6);*/
    /*color: white;*/
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    /* opacity: 0; */
    transition: opacity 0.3s;
}

/* .box:hover .dynamic-scroll-btn {
    opacity: 1;
} */
.dynamic-scroll-btn.prev {
    left: -20px;
}

.dynamic-scroll-btn.next {
    right: -20px;
}

.dynamic-scroll-btn.hidden {
    display: none;
}


