/* ===============公用样式=============== */

* {
    padding: 0;
    margin: 0;
}


/* 主色调var(--pm-c) 背景色var(--bg-c) 边框色var(--br-c) */


/* 底部背景色var(--fbg-c)   :hover部分背景色*/

:root {
    --pm-c: #ea3b28;
    --bg-c: #fff;
    --br-c: #f2f5f9;
    --fbg-c: #333;
}

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;
    align-items: 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;
}

.ml10 {
    margin-left: -10px;
}

.ml50 {
    margin-left: -15px;
}

.ml20 {
    margin-left: -20px;
}

.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;
}

.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: 50%;
}

.col-3 {
    width: 32%;
}

.col-4 {
    width: 25%;
}

.col-5 {
    width: 20%;
}

.col-width-6 {
    width: 66.7%;
}

.col-width-3 {
    width: 30%;
}

.panel {
    width: 48%;
}


/* 移动端导航滑动 */

.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;
}


/* pc */


/* ===========公共标题============= */


/* pc */

.pubTitle {
    line-height: 40px;
    border: 1px solid #eee;
    border-left: 4px solid var(--pm-c);
    padding: 0 10px;
}

.pubTitle>span {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    color: var(--pm-c);
}


/* .pubTitle>span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background-color: var(--pm-c);
    border-radius: 50%;
    transform: translateY(-50%);
}

.pubTitle>span::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    width: 6px;
    height: 6px;
    background-color: var(--pm-c);
    border-radius: 50%;
    transform: translateY(-50%);
} */

.pubTitle a {
    font-size: 12px;
    color: #999;
    /* width: 26px;
    height: 26px;
    background: url(../images/more-arr.png) no-repeat;
    background-size: 20px 20px; */
}


/* ====================pc头部=============== */

.logo img {
    display: block;
    width: 100%;
    height: 61px;
}

.p-header {
    display: block;
}

.m-header {
    display: none;
}


/* 以下替换pc头部样式 */

.p-header {
    background: #fff;
}

.p-header .top {
    height: 80px;
}

.p-header .top .searchBox form {
    width: 360px;
    height: 34px;
    border: 1px solid var(--pm-c);
    border-radius: 10px;
}

.p-header .top .searchBox form input {
    padding-left: 10px;
}

.p-header .top .searchBox form input::placeholder {
    font-size: 14px;
    color: #999;
}

.p-header .top .searchBox form button {
    width: 60px;
    height: 36px;
    cursor: pointer;
    background: var(--pm-c) url(../images/search_icon.png) center center no-repeat;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.navBox {
    margin-top: 6px;
    background: var(--pm-c);
}

.p-header .nav li {
    position: relative;
}

.p-header .nav li a {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    padding: 20px 62px;
    margin-right: 15px;
}

.p-header .nav .active,
.p-header .nav li a:hover {
    font-weight: bold;
}

.p-header .nav .active::before,
.p-header .nav li a:hover::before {
    content: "";
    position: absolute;
    left: 46%;
    bottom: 7px;
    width: 30px;
    height: 4px;
    background-color: #fff;
    transform: translateX(-50%);
}


/* ====================pc头部/=============== */


/* =====================main内容================= */

.main {
    min-height: 550px;
}

.banner-container .img img {
    height: 392px;
}

.banner-container .swiper-button-next,
.banner-container .swiper-button-prev {
    width: 40px;
    height: 88px;
    background: rgba(0, 0, 0, .4);
    color: #fff!important;
    border-radius: 6px;
}

.banner-container .swiper-button-prev {
    left: 0;
    top: 43%;
}

.banner-container .swiper-button-next {
    right: 0;
    top: 43%;
}

.banner-container .swiper-button-next::after {
    content: "next";
    font-size: 32px;
    font-weight: 700;
    width: 18px!important;
    height: 31px!important;
}

.banner-container .swiper-button-prev::after {
    content: "prev";
    font-size: 32px;
    font-weight: 700;
    width: 18px!important;
    height: 31px!important;
}

.banner-container .swiper-pagination {
    right: 10px;
    left: auto;
    bottom: 15px !important;
    color: #fff;
    /* justify-content: flex-end !important; */
}

.banner-container .swiper-pagination .swiper-pagination-total {
    font-size: 16px;
    color: #fff;
}

.banner-container .swiper-pagination .swiper-pagination-current {
    font-size: 16px;
    color: #fff;
}

.banner-container .swiper-pagination-bullet {
    opacity: .6;
    background-color: #fff;
}

.banner-container .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--pm-c);
}


/* 图片下是文字 */

.news1 img {
    height: 145px;
}

.news1 .title {
    margin-top: 10px;
    text-align: left;
    width: 100%;
    font-size: 14px;
    color: #333;
}

.news1 ul li a:hover .title {
    color: var(--pm-c);
}

.news1 ul li a span {
    margin-top: 8px;
    font-size: 12px;
    color: #999;
}


/* 图片下文字定位 */

.news4 img {
    height: 166px;
}

.news4-2 img {
    height: 120px;
}

.news_info img {
    height: 140px;
}


/* 文字+时间 */

.news2 ul li {
    line-height: 36px;
}

.news2 ul li a {
    font-size: 16px;
    color: #333;
    width: 83%;
}

.news2 ul li a:hover {
    color: var(--pm-c);
}

.news2 ul li span {
    font-size: 14px;
    color: #999;
}

.news2 li em {
    font-size: 14px;
    font-style: normal;
    /* color: var(--pm-c); */
    color: #f2424a;
}

.list2_news ul li a {
    width: 73%;
}

.list2_news ul li label {
    width: 48px;
    height: 31px;
    text-align: center;
    line-height: 31px;
    font-size: 14px;
    background: var(--pm-c);
    color: #fff;
    border-radius: 10px;
    margin-right: 10px;
}

.list2 li em {
    color: var(--pm-c);
}


/* .list2 li:nth-child(1) em {
    color: #D61A3A;
}

.list2 li:nth-child(2) em {
    color: #D61A3A;
}

.list2 li:nth-child(3) em {
    color: #D61A3A;
} */

.list2 ul li a {
    width: 67%;
}


/* icon1 标题前面+小圆点、小方块 */

.icon1 ul li a,
.icon2 ul li a,
.icon3 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;
    background: #999;
    border-radius: 50%;
}


/* 菱形 */

.icon2 ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #999;
    transform: translateY(-50%) rotate(45deg);
    margin-left: 2px;
}

.icon1 ul li a:hover::before,
.icon2 ul li a:hover::before,
.icon3 ul li a:hover::before {
    background: var(--pm-c);
}


/* 方块 */

.icon3 ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #999;
}

.list4 ul li {
    width: 48%;
}


/*  */

.news3 ul {
    flex: wrap;
}

.news3 ul li {
    /* width: 48%; */
    padding: 20px 0;
    border-bottom: 1px dashed #eee;
}

.news3 ul li a .img {
    width: 28%;
    height: 90px;
    /* padding-left: 20px; */
}

.news3 ul li a .des {
    padding-left: 20px;
}

.news3 ul li a .des .title {
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

.news3 ul li a .des p {
    font-size: 14px;
    color: #888;
    line-height: 24px;
}

.news3 ul li a .des span {
    position: relative;
    font-size: 12px;
    color: #999;
    padding-left: 20px;
}

.news3 ul li a .des span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 16px;
    background: url(../images/time.png) no-repeat;
    background-size: 14px 14px;
}

.news3 ul li a:hover .des .title {
    color: var(--pm-c);
}

.list3-1 ul li a .des .title {
    line-height: 30px;
}

.list3-1 ul li a .img {
    width: 35%;
    height: 100px;
}

.list3 ul li a .img {
    width: 40%;
    height: 100px;
}

.homelist-news3 ul li a .img {
    height: 120px;
}

.homelist-news3 ul li a label {
    font-size: 14px;
    font-weight: 400;
    color: var(--pm-c);
}

.homelist-news3 ul li a .img {
    padding-left: 20px;
}

.homelist-news3 ul li a .des {
    padding-left: 0px;
}


/*  */


/* .row1 .news-title li:not(:nth-child(2)) {
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
} */

.news-title li {
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.news-title li a {
    display: block;
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    line-height: 48px;
    text-align: center;
}

.news-title li a:hover {
    color: var(--pm-c);
}

.news-title li span {
    font-size: 12px;
    color: #999;
}

.news-title li p {
    font-size: 14px;
    font-weight: 400;
    color: #888;
    line-height: 24px;
}

.news1_title li a {
    width: 86%;
    text-align: left;
    color: var(--pm-c);
}


/* 都是文字   title右侧是时间 */

.homelist1 li a {
    text-align: left;
}


/* ====================pc底部=============== */

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;
}


/* link  友情链接 */

.link p {
    padding: 10px 0;
}

.link p a {
    font-size: 12px;
    font-weight: 400;
    color: #999;
    margin-right: 17px;
}

.link p a:hover {
    color: var(--pm-c);
}


/* 面包屑 */

.bread-nav {
    padding: 15px 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);
}


/* 列表页 */

.homelist ul li {
    width: 100%;
}

.homelist ul li a .img {
    width: 23%;
}

.homelist ul li a .des .title {
    color: #333;
}


/* 上面是title.下面图片+详情 */

.homeList1 ul li {
    padding: 20px 0;
    border-bottom: 1px dashed #eee;
}

.homeList1 ul li>a {
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

.homeList1 ul li>a:hover {
    color: var(--pm-c);
}

.homeList1 ul li>div .img {
    width: 185px;
    height: 100px;
}

.homeList1 ul li>div .des {
    padding-left: 20px;
}

.homeList1 ul li>div .des p {
    font-size: 14px;
    color: #888;
    line-height: 24px;
}

.homeList1 ul li>div .des span {
    font-size: 14px;
    color: #999;
}


/* 列表 */

.itemList ul li {
    padding: 20px 0;
    border-bottom: 1px dashed #eee;
}

.itemList ul li .info span {
    display: block;
    padding: 0 5px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    background-color: var(--pm-c);
}

.itemList ul li .info .title {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    width: 80%;
}

.itemList ul li>.info .title:hover {
    color: var(--pm-c);
}

.itemList ul li .info .watch {
    font-size: 14px;
    color: var(--pm-c);
}

.itemList ul li .des p {
    font-size: 14px;
    color: #888;
    line-height: 24px;
}

.itemList ul li .des span {
    position: relative;
    font-size: 12px;
    color: #999;
    margin-top: 10px;
    padding-left: 20px;
}

.itemList ul li .des span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 16px;
    background: url(../images/time.png) no-repeat;
    background-size: 14px 14px;
}


/* ------------分页--------- */

.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;
    font-size: 16px;
    border: 1px solid #DCDCDC;
    padding: 5px 11px;
}

.pagination li:hover,
.pagination li:hover span {
    color: #fff;
    background: var(--pm-c);
    border: none;
}

.pagination li .page-link {
    cursor: pointer;
}

.pagination li a {
    color: #999;
}

.pagination li:hover a {
    color: #fff;
}


/* 清除news下第一个li的margin-top */

.clearmt ul li:first-child {
    margin-top: 0 !important;
}


/* 详情页 */

.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;
}

.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%;
    }
    .row {
        padding: 0 15px;
    }
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-width-3,
    .col-width-6 {
        width: 100%;
    }
    .col-m-2 {
        width: 50% !important;
    }
    .grid20 {
        margin: 0!important;
    }
    .ml20 {
        margin-left: 0!important;
    }
    .panel1 {
        width: 48%;
    }
    .p-header {
        display: none;
    }
    .m-header {
        display: block;
    }
    .pubTitle>span {
        font-size: 16px;
    }
    /* 移动端控制列数 */
    /* 移动端控制列数 */
    .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: 14px;
        color: #fff;
        width: 76%;
        padding-left: 7px;
    }
    .infoSty .info span {
        font-size: 12px;
        color: #fff;
        margin-right: 5px;
    }
    /* ===========公共标题============= */
    /* ====================移动端头部================== */
    /* 以下替换移动端头部样式 */
    .m-header {
        height: 107px;
    }
    .m-header .top {
        padding: 15px 0 10px 0;
    }
    .m-header .logo {
        display: block;
        width: 165px;
    }
    .m-header .logo img {
        /* height: 45px; */
        height: 36px;
    }
    .navBox {
        background: var(--pm-c);
        margin-top: 0;
        border-bottom: 2px solid #eee;
    }
    .m-header .nav li {
        position: relative;
    }
    .m-header .nav li a {
        display: block;
        font-size: 14px;
        color: #fff;
        padding: 10px 0;
        margin-right: 30px;
    }
    .m-header .nav .active,
    .m-header .nav li a:hover {
        font-weight: bold;
    }
    .m-header .nav .active::before,
    .m-header .nav li a:hover::before {
        content: "";
        position: absolute;
        left: 30%;
        bottom: 3px;
        width: 17px;
        height: 4px;
        background-color: #fff;
        transform: translateX(-50%);
    }
    /* ====================移动端头部/================== */
    /* ====================移动端main内容================ */
    .main {
        min-height: 292px;
    }
    .row .row {
        padding: 0;
    }
    .banner-container .img img {
        height: 200px;
    }
    .banner-container .swiper-button-prev,
    .banner-container .swiper-button-next {
        width: 26px;
        height: 45px;
    }
    .banner-container .swiper-button-prev {
        left: 0;
        top: 56%;
    }
    .banner-container .swiper-button-next {
        right: 0;
        top: 56%;
    }
    .banner-container .swiper-button-next::after {
        content: "next";
        font-size: 22px;
        text-align: center;
        line-height: 31px!important;
    }
    .banner-container .swiper-button-prev::after {
        content: "prev";
        font-size: 22px;
        text-align: center;
        line-height: 31px!important;
    }
    .banner-container .swiper-pagination {
        bottom: 9px !important;
    }
    /* 图片下是文字 */
    .news1 {
        padding-bottom: 10px;
        border-bottom: 1px dashed #eee;
    }
    .news1 ul li {
        margin-top: 10px;
    }
    .news1 ul li a .title {
        margin-top: 6px;
        text-align: left;
        width: 100%;
        font-size: 14px;
        color: #333;
    }
    .news1 img {
        height: 120px;
    }
    /* 文字+时间 */
    .news2 ul li a {
        width: 73%;
        font-size: 14px;
    }
    .news2 ul li span {
        font-size: 12px;
    }
    .row3 .news2 li {
        width: 100%;
    }
    .list2 ul li a {
        width: 66%;
    }
    /*  */
    .news3 ul li {
        width: 100%;
    }
    .news3 ul li a .img {
        width: 40%;
        height: 100px;
    }
    .news3 ul li a .des .title {
        font-size: 14px;
    }
    .news3 ul li a .des p {
        font-size: 12px;
    }
    .news4 img {
        height: 180px;
    }
    .news_info img {
        height: 120px;
    }
    .news-title li a {
        width: 83%;
        text-align: left;
    }
    /* ====================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底部/=============== */
    .clearmt ul li:first-child {
        margin-top: 10px !important;
    }
    /* 面包屑 */
    .bread-nav {
        padding: 5px 0;
    }
    .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 4px;
        font-size: 12px;
        border: 1px solid #DCDCDC;
        background-color: #333;
        color: #fff;
    }
    .pagination li:hover a,
    .pagination li:hover span {
        border: none;
    }
    .pagination li .page-link {
        cursor: pointer;
    }
    .pagination li span,
    .pagination li a {
        color: #fff;
    }
    /* 列表页 */
    .itemList ul li {
        padding: 10px 0;
        border-bottom: 1px dashed #eee;
    }
    .itemList ul li .info .title {
        font-size: 14px;
        color: #333;
        font-weight: bold;
        width: 80%;
    }
    .itemList ul li>.info .title:hover {
        color: var(--pm-c);
    }
    .itemList ul li .info .watch {
        font-size: 12px;
        color: var(--pm-c);
    }
    .itemList ul li .des p {
        font-size: 12px;
        color: #888;
        line-height: 20px;
    }
    .itemList ul li .des span {
        font-size: 12px;
        color: #999;
    }
    /*  */
    .homeList1 ul li>div .img {
        width: 125px;
        height: 100px;
    }
    /* 详情部分 */
    .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;
        height: auto;
        margin: 10px auto;
    }
    .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;
    }
}