
/* header */
.header-warp {
    min-width: var(--content-witdh);
    /* 涓嬪奖闃� */
    box-shadow: 0 4px #f0f0f050;
    font-family: 'PingFang SC-Regular';
    font-size: 20px;
    padding: 8px 0;
    position: sticky;
    left: 0;
    top: 0;
    z-index: 998;
    background-color: #fff;
}
.header {
    width: var(--content-witdh);
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
}
.header .logo {
    width: 206px;
    height: 40px;
}
.header .menu {
    flex: 1;
    display: flex;
    justify-content: space-between;
    padding-left: 60px;
}
.header .menu a {
    display: inline-block;
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    text-decoration: none;
}
.header>.menu>.active {
    color: var(--active-color);
}
.header .menu .active::after {
    content: '';
    display: block;
    width: 26px;
    height: 5px;
    border-radius: 10px;
    margin: 0 auto;
    margin-top: -5px;
    background-color: var(--active-color);
    transition: width .3s;
}

.header>.menu>.more {
    width: 102px;
    height: 40px;
}

.header>.menu>.more>.moreButton {
    width: 102px;
    height: 28px;
    background: #E5001260;
    border-radius: 14px 14px 14px 14px;
    font-size: 14px;
    text-align: center;
    line-height: 28px;
    margin-top:4px;
    color: var(--active-color);
    cursor: pointer;
}

.header>.menu>.more>.moreButton::after {
    /* 鍚戜笅鐨勫疄蹇冧笁瑙掑舰 */
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-width: 5px;
    border-style: solid;
    border-color: var(--active-color) transparent transparent transparent;
    margin-left: 5px;
    margin-top: 2px;
    vertical-align: middle;
}

.pop-menu{
    position: absolute;
    top: 40px;
    right: 0;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    background-color: #fff;
    /* 澶栭槾褰� */
    box-shadow: 0 0 10px #ccc;
    padding: 20px;
    z-index: 999;
    border-radius: 4px;
}
.pop-menu>.pop-menu-item {
   font-size: 20px;
}
.pop-menu>.pop-menu-item-active{
    color: var(--active-color) !important;
}

.pop-menu>.pop-menu-item-active::after{
    content: '';
    display: block;
    width: 26px;
    height: 5px;
    border-radius: 10px;
    margin: 0 auto;
    margin-top: -5px;
    background-color: var(--active-color);
    transition: width .3s;
}
.section>.left-content{
    margin-top: 20px;
    width: 660px;
}
.section>.left-content .news-content{
    
}

.news-footer{
    display: flex;
    align-items: center;
    font-size: 14px;
}
.news-footer > div {
    /* margin-right: 20px; */
    color: #888888;
}
.news-footer .top {
    color: #E50012;
    margin-right: 10px;
}
.news-footer .time-ago{
    margin-right: 6px;
}
.news-footer .read-ctn::before {
    content: '路';
    margin-right: 6px;
}
.section>.right-content{
    width: 330px;
    margin-top: 20px;
}
.sub-section {
    display: flex;
    justify-content: space-between;
}
.sub-section .sub-text{
    color: #E50012;
    font-size: 20px;
}
.sub-section .sub-arrow{
    color: #777777;
    font-size: 12px;
    position: relative;
}
.sub-section .sub-arrow .arrow{
    /* 鍚戜笅鐨勫疄蹇冧笁瑙掑舰 */
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-width: 5px;
    border-style: dashed;
    border-color: transparent transparent transparent #777777;
    margin-left: 5px;
    margin-top: -3px;
    vertical-align: middle;
}
.sub-section .sub-arrow .arrow::before{
    /* 鍚戜笅鐨勫疄蹇冧笁瑙掑舰 */
    content: '';
    display: inline-block;
    top: 8px;
    left: 28px;
    position: absolute;
    width: 0;
    height: 0;
    border-width: 5px;
    border-style: dashed;
    border-color: transparent transparent transparent #fff;
    /* margin-left: 5px;
    margin-top: -3px; */
    vertical-align: middle;
}
.sub-news-item{
    display: flex;
    margin-top: 20px;
    cursor: pointer;
}
.sub-news-item .sub-news-txt{
    font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* max-height: 43px; */
    
}
.sub-news-title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.sub-news-time{
    color: #888;
    font-size: 14px;
}
.sub-news-item .sub-news-pic{
    margin-right: 5px;
}
.sub-news-item .sub-news-time{
    font-size: 14px;
}
.sub-news-pic > img {
    width: 104px;
    height: 72px;
}

/* 璇︽儏 */
.det-title{
    font-size: 40px;
    font-family: PingFang SC, PingFang SC;
    font-weight: bold;
    color: #000000;
}
.det-info{
    font-size: 14px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    color: #888888;
    margin-top:20px;
    margin-bottom:30px;
}
.det-content{
    line-height:36px;
    font-size:20px;
}
.det-content > p{
    white-space: pre-line;
    /* word-wrap: break-word; */
    /* white-space: pre-line; */
    font-size: 20px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    color: #000000;
    line-height: 36px;
    /* text-indent: 2em; */
    text-align: justify;
    margin-top: 36px;
}
.det-content img {
    width: 100%;
    height: auto;
    margin-top: 20px;
}
.det-tip{
    margin: 20px 0 100px;
}
.det-tip:first-of-type(span){
    font-size: 18px;
    color: var(--active-color)
}
a {
    display: block;
    text-decoration: none;
    color: inherit;
}


/* 鍥炲埌椤堕儴 */
.to-top-btn{
    position: fixed;
    bottom: 130px;
    right: calc(50% - 580px);
    font-size: 13px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    color: #000000;
    width: 60px;
    height: 60px;
    background: #F7F7F7;
    border-radius: 0px 0px 0px 0px;
    opacity: 1;
    text-align: center;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.top-btn{
    height: 24px;
}

/*.to-top-btn .top-btn::before{*/
/*    content: '';*/
/*    !* 鍚戜笂鐨勭澶� *!*/
/*    display: inline-block;*/
/*    width: 0;*/
/*    height: 0;*/
/*    border-width: 10px;*/
/*    border-style: solid;*/
/*    border-color: transparent transparent #000000 transparent;*/
/*    margin-left: 4px;*/
/*    margin-top: -3px;*/
/*    vertical-align: middle;*/
/*    margin-bottom: 2px;*/
/*}*/
/*.to-top-btn .top-btn::after{*/
/*    content: '';*/
/*    !* 鍚戜笂鐨勭澶� *!*/
/*    display: inline-block;*/
/*    width: 0;*/
/*    height: 0;*/
/*    position: absolute;*/
/*    border-width: 10px;*/
/*    border-style: solid;*/
/*    border-color: transparent transparent #fff transparent;*/
/*    vertical-align: middle;*/
/*    left: 22px;*/
/*    top: 9px;*/
/*    margin-bottom: 2px;*/
/*}*/

.to-top-btn .top-txt {
    font-size: 13px;
    font-family: PingFang SC, PingFang SC;
    color: #000000;
    user-select: none;
}
.sub-news-large {
    width: 330px;
    margin-top: 5px;
    position: relative;
}
.sub-news-large .play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.sub-news-large > img {
    width: 330px;
    height: 185px;
    object-fit: cover;
}
.sub-news-three {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}
.sub-news-three > img {
    width: 104px;
    height: 72px;
    object-fit: cover;
    margin-bottom: 4px;
}