* {
    margin: 0;
    padding: 0;
}

img {
    width: 100%;
    height: 100%;
    display: block;
}

input {
    border: none;
    /* 去除边框 */
    border-radius: 0;
    /* 去除圆角（如果浏览器默认添加了） */
}

/* 重置背景色和字体样式 */
input {
    background-color: transparent;
    /* 或者设置为其他颜色 */
    color: black;
    /* 文本颜色 */
    font-family: Arial, sans-serif;
    /* 字体族 */
    font-size: 16px;
    /* 字体大小 */
    padding: 0;
    /* 去除内边距 */
    margin: 0;
    /* 去除外边距（虽然input通常没有默认外边距） */
}

/* 去除焦点时的轮廓（outline） */
input:focus {
    outline: none;
    /* 注意：出于可访问性考虑，最好使用更明显的焦点指示器 */
    border: 1px solid blue;
    /* 或者其他明显的边框颜色 */
}

/* 去除其他可能的默认样式，如阴影等 */
input {
    box-shadow: none;
    /* 去除阴影 */
    /* 如果需要，可以继续添加其他属性的重置 */
}

.headerBox {
    width: 100vw;
    overflow: hidden;
}

.swiper a {
    color: #000;
}

.header {
    width: 100%;
    box-sizing: border-box;
    height: 1rem;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: url(//wap.hebccw.cn/images/header_bg1.png) no-repeat;
    background-size: 100% 100%;
}

.header .PC {
    width: 1.14rem;
    height: 0.64rem;
    background: rgba(0, 0, 0, .2);
    color: #fff;
    font-size: 14px;
    border-radius: 0.32rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header #logo {
    width: 1.44rem;
    height: 0.48rem;
}

.header .ipt {
    width: 5.17rem;
    height: 0.64rem;
    background: rgba(0, 0, 0, .2);
    border-radius: 0.32rem;
    box-sizing: border-box;
    padding-top: 0.12rem;
    padding-bottom: 0.12rem;
    padding-left: 0.16rem;
    display: flex;
    align-items: center;
    font-size: 0.28rem;
    border: none !important;
    box-shadow: none !important;
}

.header .ipt #search {
    width: 0.34rem;
    height: 0.32rem;
    margin-right: 0.2rem;
}

.header .ipt input {
    width: 70%;
    background-color: transparent;
    color: #FFFFFF;
    outline: none;
}

input::placeholder {
    color: #FFFFFF;
}

.headerSub {
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow-x: auto;
    box-sizing: border-box;
    height: 0.96rem;
    background: #FFFFFF;
    /* padding-left: 0.4rem; */
    /* padding-right: 0.4rem; */

}

.subItem {
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 0.36rem;
    color: #333333;
    padding: 0 0.26rem;
}

.headerSub_Con {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: center;
    position: relative;
}

.headerSub_Con_Item {
    white-space: nowrap;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 0.32rem;
    color: #333333;
    margin: 0 0.27rem;
    height: 0.8rem;
    line-height: 0.8rem;
}


.flexd {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 6;
    transition: all 0.5s;
}

.flexdColor {
    background: #CA0A0F;
    position: fixed;
    left: 0;
    right: 0;
    color: #FFFFFF;
    top: 1rem;
    z-index: 6;
    transition: all 1s;
}

/* 首页 */
html,
body {
    position: relative;
    height: 100%;
}

body {
    background: #eee;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mySwiper {
    height: 100%;
    width: 85%;
}


.toutiao {
    height: 2rem;
    box-sizing: border-box;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    background-color: #fff;
    display: flex;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
    overflow: hidden;
    border-top: 0.04rem solid #FAFAFA;
    border-bottom: 0.04rem solid #FAFAFA;
}

#index .toutiao {
    border-top: 0;
    border-bottom: 0;
}

.toutiao #toutiao {
    width: 0.9rem;
    height: auto;
    margin-right: 0.26rem;
}


.toutiao .swiper-pagination-bullet {
    width: 0.12rem;
    height: 0.12rem;
    background: #EEEEEE;
    border-radius: 0;
    opacity: 1;
}

.toutiao .swiper-pagination-bullet-active {
    background: #CA0A0F;
}

.toutiao .swiper-slide {
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 0.36rem;
    color: #333333;
    height: 100%;
    /* 两行溢出隐藏 省略号 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

.toutiao .swiper-slide {
    width: 90%;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.swiper2 {
    height: 3.4rem;
    width: 100%;
    margin-top: 0.3rem;
    box-sizing: border-box;
    padding-left: 0.3rem;
}

.swiper2 .swiper-slide {
    width: 90%;
    background: #F9F9F9;
    position: relative;
}

.swiper2 .slideBox1 {
    width: 100%;
    height: 100%;
}

.swiper2 img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.swiper2 .boxshadow {
    width: 100%;
    height: 1.3rem;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 0.32rem;
    color: #FFFFFF;
    line-height: 0.44rem;
    box-sizing: border-box;
    padding-top: 0.68rem;
    text-align: left;
    padding-left: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

}

/* 
.swiper-pagination-fraction {
    padding-left: 0.16rem;
    display: inline-block;
    width: auto;
    font-weight: 400;
    font-size: 0.22rem;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .2);
    border-radius: 2rem 0rem 0rem 2rem;
    bottom: 0.24rem;
    left: unset;
    right: 0.8rem;
    padding-right: 0rem;
}

.swiper-pagination-current {
    font-size: 0.26rem;
} */


.newsList {
    margin-top: 0.3rem;
    background-color: #ffffff;
}

.newsItem {
    display: flex;
    align-items: center;
    /* height: var(--text-size9); */
    box-sizing: border-box;
    padding-left: var(--text-size8);
    padding-right: var(--text-size8);
    padding-top: var(--text-size8);
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 0.04rem solid #FAFAFA;
}

.newsItem_left {
    flex: 1;
}

.left_tit {
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 0.38rem;
    color: #131516;
    height: 1rem;
    line-height: 0.5rem;
    margin-bottom: 0.15rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* 控制显示的行数 */
    overflow: hidden;
    text-overflow: ellipsis;
    /* 文本溢出时显示省略号 */
}

.left_time {
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 0.28rem;
    color: #9A9A9A;
    padding-bottom: var(--text-size8);
}

.newsItem_right {
    width: 2.26rem;
    height: 1.5rem;
    margin-left: 0.2rem;
}

.newsItem_right img {
    border-radius: 0.08rem;
}


.newsList :last-child {
    border-bottom: 0;
}

/* 首页 */



/* 频道 */
.swipers {
    width: 100%;
    height: 4.52rem;
}


.pindaoSwiper .swiperMsg {
    width: 7.5rem;
    height: 1.82rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.52) 100%);
    box-sizing: border-box;
    padding-top: 1.08rem;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 0.32rem;
    color: #FFFFFF;
    position: absolute;
    left: 0;
    bottom: 0;
    text-align: left;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


#pindaoA .toutiao {
    margin-bottom: 0.06rem;
}

.sudu {
    background-color: #fff;
    box-sizing: border-box;
    padding-top: 0.4rem;
}

.sudu .Tit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
    box-sizing: border-box;
    margin-bottom: 0.05rem;
}

.suduTit_left {
    font-family: PingFangSC, PingFang SC;
    font-weight: 600;
    font-size: 0.44rem;
    color: #000000;
}

.suduTit_right {
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 0.28rem;
    color: #999999;
    display: flex;
    align-items: center;
    margin-top: 0.02rem;
}

.suduTit_right img {
    width: 0.1rem;
    height: 0.18rem;
    margin-left: 0.08rem;
    margin-top: 0.02rem;

}

/* 频道 */




/* 详情 */

:root {
    --text-size1: 0.44rem;
    --text-size2: 0.28rem;
    --text-size3: 0.36rem;
    --text-size4: 0.4rem;

    --text-size5: 1rem;
    --text-size6: 0.5rem;

    --text-size7: 0.64rem;
    --text-size8: 0.3rem;
    --text-size9: 2.28rem;
}

#details {
    background-color: #fff;
}

.detailTit {
    font-family: PingFangSC, PingFang SC;
    font-weight: 500;
    font-size: var(--text-size1);
    color: #000000;
    line-height: var(--text-size7);
    margin-top: var(--text-size6);
    padding-left: var(--text-size8);
    padding-right: var(--text-size8);
}

#details .Msg {
    margin-top: 0.4rem;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    padding-left: var(--text-size8);
    padding-right: var(--text-size8);
    align-items: baseline;
}

#details .Msg_left1 {
    display: flex;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: var(--text-size2);
    color: #9C9C9C;
}

#details .Msg_left1 .source {
    margin-right: var(--text-size3);
}

#details .Msg_left2 {
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: var(--text-size2);
    color: #9C9C9C;
    margin-top: 0.14rem;
}

#details .Msg_right {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: var(--text-size2);
    color: #9C9C9C;
}

#details .Msg_right :nth-child(2) {
    margin: 0 0.15rem;
}

#details .active {
    color: #CA0A0F;
    position: relative;
}

#details .active::after {
    content: '';
    width: 0.36rem;
    height: 0.06rem;
    background: #CA0A0F;
    opacity: 0.28;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: 0rem;
}


#details .control {
    position: fixed;
    right: 0.3rem;
    top: 50vh;
}

#details .control1 {
    width: 0.8rem;
    height: 0.8rem;
    background: linear-gradient(180deg, #FF824E 0%, #FF2A16 100%), rgba(202, 10, 15, 0.36);
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 0.24rem;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

#details .control1 img {
    width: 0.44rem;
    height: 0.34rem;

}

#details .control2 {
    margin-top: 0.26rem;
    width: 0.8rem;
    height: 2.12rem;
    background: #FFFFFF;
    box-shadow: 0rem 0.06rem 0.12rem 0rem rgba(0, 0, 0, 0.13);
    border-radius: 0.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding-top: 0.26rem;
}

#details .control2 .line {
    width: 0.56rem;
    height: 0.02rem;
    background-color: #E1E1E1;
    margin-top: 0.3rem;
    margin-bottom: 0.38rem;
}

#details .control2 #top {
    width: 0.32rem;
    height: 0.36rem;
}

#details .control2 #home {
    width: 0.38rem;
    height: 0.38rem;
}


#details .Cons {
    margin-top: 0.52rem;
    box-sizing: border-box;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: var(--text-size3);
    color: #333333;
    line-height: 0.56rem;
    margin-bottom: 0.4rem;
}

#details .Cons_Tit {
    font-family: PingFangSC, PingFang SC;
    font-weight: 500;
    font-size: 0.36rem;
    color: #000000;
    line-height: 0.64rem;
}

#details .con_msg {
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: var(--text-size2);
    color: #9C9C9C;
}

#details .lines {
    height: 0.06rem;
    width: 100%;
    background: #F5F5F5;
}

#details .tuijian {
    font-family: PingFangSC, PingFang SC;
    font-weight: 500;
    font-size: var(--text-size4);
    color: #000000;
    position: relative;
}

#details .tuijian::after {
    content: '';
    width: 1.48rem;
    height: 0.06rem;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: 0;
    background: rgba(202, 10, 15, .28);
}


#details .left_tit {
    font-size: var(--text-size3);

    height: var(--text-size5);
    line-height: var(--text-size6);
}

/* 详情 */


/* 首页 */
#sy .sy {
    color: #CA0A0F;
    position: relative;
}

#sy .sy::after {
    width: 0.52rem;
    height: 0.05rem;
    background: #CA0A0F;
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: -0.15rem;
}


.flexdColor .sy {
    color: #fff !important;
}

.flexdColor .sy::after {
    background-color: #fff !important;
}


/* 问政 */
#wz .wz {
    color: #CA0A0F;
    position: relative;
}

#wz .wz::after {
    width: 0.52rem;
    height: 0.05rem;
    background: #CA0A0F;
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: -0.15rem;
}

.flexdColor .wz {
    color: #fff !important;
}

.flexdColor .wz::after {
    background-color: #fff !important;
}

/* 要闻 */

#yw .yw {
    color: #CA0A0F;
    position: relative;
}

#yw .yw::after {
    width: 0.52rem;
    height: 0.05rem;
    background: #CA0A0F;
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: -0.15rem;
}

.flexdColor .yw {
    color: #fff !important;
}

.flexdColor .yw::after {
    background-color: #fff !important;
}

/* 原创 */
#yc .yc {
    color: #CA0A0F;
    position: relative;
}

#yc .yc::after {
    width: 0.52rem;
    height: 0.05rem;
    background: #CA0A0F;
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: -0.15rem;
}

.flexdColor .yc {
    color: #fff !important;
}

.flexdColor .yc::after {
    background-color: #fff !important;
}

/* 频道 */
#pd .pd {
    color: #CA0A0F;
    position: relative;
}

#pd .pd::after {
    width: 0.52rem;
    height: 0.05rem;
    background: #CA0A0F;
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: -0.15rem;
}

.flexdColor .pd {
    color: #fff !important;
}

.flexdColor .pd::after {
    background-color: #fff !important;
}

/* 观点 */
#gd .gd {
    color: #CA0A0F;
    position: relative;
}

#gd .gd::after {
    width: 0.52rem;
    height: 0.05rem;
    background: #CA0A0F;
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: -0.15rem;
}

.flexdColor .gd {
    color: #fff !important;
}

.flexdColor .gd::after {
    background-color: #fff !important;
}

/* 地方 */
#df .df {
    color: #CA0A0F;
    position: relative;
}

#df .df::after {
    width: 0.52rem;
    height: 0.05rem;
    background: #CA0A0F;
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: -0.15rem;
}

.flexdColor .df {
    color: #fff !important;
}

.flexdColor .df::after {
    background-color: #fff !important;
}

/* 互动 */
#hd .hd {
    color: #CA0A0F;
    position: relative;
}

#hd .hd::after {
    width: 0.52rem;
    height: 0.05rem;
    background: #CA0A0F;
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: -0.15rem;
}

.flexdColor .hd {
    color: #fff !important;
}

.flexdColor .hd::after {
    background-color: #fff !important;
}













.headerSub_Con .shows {
    display: inline-block;
    width: 0.32rem;
    height: 0.2rem;
    margin-left: 0.3rem;
    position: absolute;
    right: 0.32rem;
    bottom: 0.3rem;
    /* transition: all 0.5s; */
}


.clicks {
    opacity: 0;
    display: none;
}

.onShowClass .clicks {
    opacity: 1;
    display: inline-block;
}

.onShowClass .shows {
    transform: rotate(180deg);
}


#list .headerSub {
    border-bottom: 0.02rem solid #EEEEEE;
    ;
}



#list .active {
    color: #CA0A0F;
    position: relative;
}

#list .active::after {
    width: 0.52rem;
    height: 0.05rem;
    background: #CA0A0F;
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: -0.15rem;
}



input[type="text"]:focus, textarea:focus {
    border: unset;
    /* 聚焦时边框颜色变为绿色 */
    outline: none;
    /* 移除聚焦时的默认轮廓线（如果需要的话） */
    box-shadow: 0;
    /* 添加聚焦时的阴影效果 */
}



.active1 {
    background: #FAFAFA;
    padding-top: 0.34rem;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
    padding-bottom: 0.4rem;
    box-sizing: border-box;
    display: block;
}

.active1 p {
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 0.38rem;
    color: #131516;
    line-height: 0.44rem;
    /* 两行溢出隐藏省略号 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.26rem;
}

.active1 img {
    width: 100% !important;
    height: 100% !important;
}

.active2 {
    display: block;
    width: 6.9rem;
    height: auto;
    margin: 0 auto;
    margin-top: 0.28rem;
    padding-bottom: 0.38rem;
    border-bottom: 0.01rem solid #FAFAFA;
}



#index .swiper2 .mySwiper2 .pagination {
    position: absolute;
    right: 0;
    bottom: 0.2rem;
    background: rgba(0, 0, 0, .2);
    border-radius: 1rem 0rem 0rem 1rem;
    padding-left: 0.08rem;
    padding-right: 0.04rem;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 0.22rem;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

#index .swiper2 .mySwiper2 .pagination p {
    font-size: 0.26rem;
}


/* 底部 */
.bottomBox {
    background-color: #ca0a0f;
}

.bottom_List {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.16rem;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
    padding-bottom: 0.16rem;
}

.bottom_item {
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    position: relative;
    white-space: nowrap;
    height: 0.4rem;
    line-height: 0.4rem;
}

.bottom_List div {
    width: 0.01rem;
    height: 0.35rem;
    background-color: #fff;
    margin-right: 0.05rem;
    margin-left: 0.05rem;
}

.bottom_msg {
    font-size: 16px;
    color: #fff;
    padding-bottom: 0.28rem;
    padding-top: 0.16rem;
}

.bottom_msg a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* 底部 */


.backTop {
    width: 1.04rem;
    height: 1.06rem;
    position: fixed;
    right: 0;
    top: 9.46rem;
    z-index: 99999;
}

.backTop img {
    width: 100%;
    height: 100%;
    display: block;
}

.toutiao2 {
    background-color: #fff;
    padding:0 0.28rem 0.28rem 0.28rem;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 0.32rem;
    color: #333333;
    line-height: 0.44rem;
    padding-left: 0.32rem;
    position: relative;
    display: flex;
}



.toutiao2Con {
    width: 100%;
    height: 100%;
    border-top: 0.02rem solid #FAFAFA;
    ;
    padding-top: 0.28rem;
    /* 两行溢出隐藏 */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    position: relative;
}
.toutiao2Con a{ color:#000;}

.toutiao2 .cir {
    width: 0.2rem;
    height: 0.2rem;
    background: #FFFFFF;
    border: 0.04rem solid #D0080D;
    border-radius: 50%;
    margin-top: 0.4rem;
    margin-right: 0.06rem;
}<!--ecms sync check [sync_thread_id="a68f6e271be0d23e820cf6e61402aa0b" sync_date="2025-06-03 15:30:26" check_sum="a68f6e271be0d23e820cf6e61402aa0b  signature="#$enorth_signature_value$#"]-->