*{
    margin:0;
    padding:0;
    box-sizing:
    border-box;
}
body {
    font-family:'Noto Sans SC',Arial,Helvetica,sans-serif;
    line-height:1.75;
    color:#333;
    background:#fff;
    -webkit-font-smoothing:antialiased;
    height: 100vh;
    overflow-y: auto;
}
/* ::-webkit-scrollbar              { width: 1px; height: 8px; }
::-webkit-scrollbar-track        { background: #f1f1f1; border-radius: 4px; }
::-webkit-scrollbar-thumb        { background: #c1c1c1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover  { background: #a8a8a8; } */
a {
    text-decoration:none;
    color:inherit;
}
a:hover {
    text-decoration:none;
}
img {
    max-width:100%;
    height:100%;
    display:block;
}
ul,li {
    list-style:none;
}

/* 主导航 */
.header {
    height: 14vh;
    background:url('../imgs/top_bg.png') no-repeat center;
    background-size: 100% 100%;
    box-shadow:0 2px 4px rgba(0,0,0,.05);
}
.header a {
    color: #fff;
}
/* 顶部工具栏 */
.header .top-bar {
    font-size: 0.75vw;
    padding: 1vh 0;
}
.header .top-bar .container {
    width: 100%;
    height: 4vh;
    max-width:70vw;
    margin:0 auto;
    display:flex;
    justify-content:flex-end;
    align-items:center;
    /* gap: 2vh; */
    padding:0;
    color: #FFFFFF;
}
.header .top-bar .container span {
   margin: 0 2vh 0 0.5vh;
}
.header .top-bar .container img {
    cursor: pointer;
    width: 0.8vw;
    height: auto;
    margin-left: 2vh;
}
.header .container {
    max-width:70vw;
    height: 8vh;
    margin:0 auto;
    padding:0.5vh 2vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    position: relative;
}
.header .top-bar .container .searchInput {
    appearance: none;          
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 8vw;
    height: 2.8vh;
    margin: 0;
    padding: 0 1vh;
    border: 1px solid #fff;
    border-radius: 4px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 0.7vw;
    margin-left: 1vh;
}
.header .top-bar .container .searchInput:hover {
    border-color: #fff;
    color: #FFF;
}
.header .top-bar .container .searchInput:focus {
    outline: none;
    border-color: #fff;
}
.header .top-bar .container .searchInput::placeholder {
    color: #ecebeb;            /* 占位文字颜色 */
    opacity: 1;             /* 保持完全不透明（Firefox 默认 0.54） */
  }

.logo {
    display:flex;
    align-items:center;
    gap:1vh;
    position: absolute;
    top: -2vh;
    left: 0;
}
.logo img {
    height:6vh;
    width:auto;
}

/* 导航菜单 */
.nav ul {
    font-size: 0.85vw;
    display:flex;
    gap:2.5vh;
    flex-wrap:wrap;
    position: absolute;
    bottom: 2vh;
    right: 0;
}
.nav a {
    font-weight:500;
    padding:1vh 0;
    position:relative;
    list-style-type: none;
}
.nav a {
    font-size: 0.95vw;
}

.nav a::after {
    content:'';
    position:absolute;
    left:0;bottom:-2px;width:0;height:2px;
    background:#FF934D;
    transition:width .3s;
}
.nav a:hover::after {
    width:100%;
}
.main {
    min-height: 58vh;
}
/* --------------------------首页 */
.main .content,
.main .contentBg {
    max-width:70vw;
    margin:2vh auto;
    display:flex;
    gap:2%;
}
.main .contentBg {
    max-width:100vw;
    margin:2vh auto;
    padding: 3vh 15vw;
    background: #F9F4F4;
}
.main .content .aside,
.main .contentBg .contents{
    flex:0 0 49%;
    display:flex;
    flex-direction:column;
}
.main .content .contents {
    flex:0 0 49%;
    padding-right:2vh;
    display:flex;
    flex-direction:column;
}
.main .content .contents h2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    border-bottom: 1px solid #EEEEEE;
    margin-bottom: 2vh;
    font-size: 1.2vw;
}
.main .content .contents h2 .download {
    width: 23vw;
    color: #000000;
    font-weight: 500;
}
.main .content .contents h2 .red {
    color:#D10000;
    border-bottom:3px solid #D10000;
}
.main .content .contents .imgs {
    width: 1.2vw;
    height: 1.3vh;
    background: url('../imgs/more.png') no-repeat center;
    background-size: 100% 100%;
    cursor:pointer;
}
.news-item,
.news-items {
    display:flex;
    align-items:center;
    padding: 1vh 0;
    border-bottom: 1px solid #EEEEEE;
}
.news-items {
    min-height:9vh;
}
.news-item .times,
.news-items .times {
    flex:0 0 12%;
    text-align:center;
    font-size: 0.85vw;
    border-right: 1px solid #EEEEEE;
    margin-right: 2%;
}
.news-item .times .style,
.news-items .times .style {
    font-size: 1.2vw;
    color: #D10000;
    font-family: 'Source Han Serif CN';
}
.news-item .txt,
.news-items .txt {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.news-item .txt a,
.news-items .txt a {
    font-size:0.85vw;
    color:#333;
}
.news-item .txt a:hover,
.news-items .txt a:hover { 
    color:#B41813;
}
.news-item .txt .brief,
.news-items .txt .brief {
    font-size:0.85vw;
    color:#999;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-item li {
    display: flex;
    align-items: center;
    width: 100%;
}
.news-item .dot {
    flex: 0 0 4px;
    width: 4px;
    height: 4px;
    background: #333;
    margin-right: 0.5vw;
}
.news-item .clamp {
    flex:1;
    font-size:0.85vw;
    display:-webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
    overflow:hidden;
}
.news-item .time {
    flex:0 0 15%;
    text-align: right;
    font-size: 0.85vw;
    color: #999;
}

.main .list-img {
    max-width: 70vw;
    margin: 4vh auto;
    display: flex;
    gap: 2%;
    justify-content: space-between;
}
.main .list-img .round-bg {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;
    color:#fff;
    font-size: 1vw;
    border-radius: 4px;
}
.round-bg.bg1 {
    background:url('../imgs/img_bg1.png') center/cover;
}
.round-bg.bg2 {
    background:url('../imgs/img_bg2.png') center/cover;
}
.round-bg.bg3 {
    background:url('../imgs/img_bg3.png') center/cover;
}
.round-bg.bg4 {
    background:url('../imgs/img_bg4.png') center/cover;
}
.round-bg.bg5 {
    background:url('../imgs/img_bg5.png') center/cover;
    margin: 0;
}

.main .carousel {
    position: relative;
    overflow: hidden;
}
.carousel-track {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.4s ease;
}
.carousel-item {
    flex: 0 0 33.333%;
    position: relative;
}
.carousel-item h5 {
    position: absolute;
    bottom: 1vh;
    left: 1%;
    color: #fff;
    font-size: 0.85vw
}
.carousel-indicators {
    position: absolute;
    bottom: 1.2vh;
    right: 3%;
    display: flex;
    gap: 0.8vh;
}
.indicator {
    width: 0.7vw;
    height: 0.7vw;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
}
.indicator.active {
    background: #fff;
}
/* --------------------------工作动态 */
.main .content-trend {
    display:flex;    
    max-width:70vw;
    margin:2vh auto;
}
.main .content-trend .navigation {
    flex:0 0 18%;
    margin-right:2%;
}
.main .content-trend .navigation .tabs {
    display:flex;
    align-items:center;
    justify-content:center;
    height:6vh;
    color:#fff;
    font-size:1.2vw;
    font-weight:bold;
    background:#B41813;
}
.main .content-trend .navigation .tab .work.active,
.main .content-trend .navigation .tab .work.hover {
    background: #FFF0F0;
}
.main .content-trend .navigation .tab .work {
    width: 100%;
    height: 5vh;
    line-height: 5vh;
    border-left: 3px solid #B41813;
    display: flex;
    cursor: pointer;
}
.main .content-trend .navigation .tab .work span {
    flex:0 0 90%;
    padding-left: 6%;
    font-size: 0.85vw;
}
.main .content-trend .navigation .tab .work .icon {
    flex:0 0 1.5vh;
    width: 1.5vh;
    height: 1.5vh;
    display: inline-block;
    background: url('../imgs/tab.png') no-repeat center;
    background-size: 100% 100%;
    margin: 1.75vh 0;
}
.main .content-trend .navigation .tab .work.active .icon {
    background: url('../imgs/tab_ac.png') no-repeat center;
    background-size: 100% 100%;
}
.main .content-trend .trend-list {
    flex:1;                    
    display:flex;
    flex-direction:column;      
}
.main .content-trend .trend-list .nav_ac {
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:4vh;
    line-height:4vh;
    border-bottom:3px solid #E7E7E7;
    margin-bottom:2vh;
}
.main .content-trend .trend-list .nav_ac .title {
    font-size:1.2vw;
    font-weight:500;
    border-bottom:3px solid #B41813;
}
.main .content-trend .trend-list .nav_ac .position {
    font-size:0.7vw;
    color:#999;
}
.list-data  {
    display:flex;
    gap:1vw;
    height: 21vh;
    border-bottom: 1px solid #EEEEEE;
    padding: 1vh 0 3vh 0;
}
.list-data .img-div {
    position:relative;
    flex:0 0 15vw; 
    height: 17vh;
}
.list-data .img-div img {
    width:15vw;
    height: 17vh;
}
.list-data .img-div .drop {
    width: 3.7vw;
    height: 3.7vw;
    position: absolute;
    bottom: 0;
    left: 0;
    background: url('../imgs/drop.png') no-repeat center;
    background-size: 100% 100%;
    color: #FFFFFF;
    text-align: center;
    line-height: 2.5vh;
    font-size: 0.75vw;
    padding-top: 1vh;
}
.list-data .img-div .drop .big {
    font-size: 1.5vw;
}
.list-data .list-view {
    flex:1; 
    display:flex;
    flex-direction:column;
    justify-content:center;
    font-size: 0.85vw;
}
.list-data .list-view a {
    color: #333;
    font-size: 0.95vw;
}
.list-data .list-view span {
    color: #999;
    display: inline-block;
    margin: 1vh 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.list-data .list-view .img {
    width: 1.8vw;
    height: 1.8vw;
    margin-top: 1vh;
    background: url('../imgs/arrows.png') no-repeat center;
    background-size: 100% 100%;
}
.list-data:hover {
    border-bottom: 1px dashed #B41813;
}
.list-data:hover .list-view a {
    color: #B41813;
}
.list-data:hover .list-view .img {
    background: url('../imgs/arrows_ac.png') no-repeat center;
    background-size: 100% 100%;
}
.pagination{
    margin:20px 0;
    text-align:center;
}
.pagination button {
    width: 4.5vh;
    height: 3.2vh;
    font-size:0.8vw;
    margin:0 0.2vw;
    /* padding:0.5vh 1vh; */
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #999999;
    background: #EAEAEA;
    cursor:pointer;
}
.pagination .active{
    background: #B41813;
    color: #fff;
    border-color: #B41813;
}
.pagination button[disabled]{
    cursor:not-allowed;
    opacity:0.8;
}
/* --------------------------工作动态-详情 */
.main .content-trend .list-detail {
    flex: 1;                    
    display: flex;
    flex-direction: column;      
}
.article-header {
    text-align: center;
    border-bottom: 1px dashed #C6BFB4;
    padding-bottom: 1vh;
    margin-bottom: 2vh;
}
.article-title {
    font-size: 1.3vw;
    font-weight: normal;
    line-height: 5vh;
    margin-bottom: 0.5vh;
}
.article-meta {
    font-size: 0.75vw;
    color: #666;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:1vh;
}
.article-text {
    border-bottom: 1px dashed #C6BFB4;
    text-indent: 3vh;
    padding-bottom: 2vh;
    margin-bottom: 2vh;
    font-size: 0.92vw;
}
.article-nav a {
    display: block;
    width: 100%;
    color:#333;
    font-size: 0.85vw;
}
.article-nav a:hover {
    color:#B41813;
}
/* --------------------------工作办法 */
.methods-data  {
    display:flex;
    gap:0.5vw;
    height: 5vh;
    line-height: 5vh;
    border-bottom: 1px solid #EEEEEE;
    font-size: 0.85vw;
}
.methods-data .line {
    background: #B41813;
    width: 0.3vh;
    height: 2vh;
    margin: 1.5vh 0;
}
.methods-data .headline {
    position:relative;
    flex:0 0 90%; 
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #333;
}
.methods-data .headline:hover {
    color: #B41813;
}
.methods-data .times {
    position:relative;
    color: #999999;
}
/* 页脚 */
.footer {
    background: url('../imgs/footer.png') no-repeat center;
    background-size: 100% 100%;
    font-size:0.75vw;
    color:#FFF;
    height: 26vh;
}
.footer .container {
    max-width:70vw;
    height: 21.5vh;
    margin:0 auto;
    padding:2vh 0;
    display:flex;
    flex-wrap:wrap;
    gap:2vh;
    justify-content:space-between;
}
.footer a {
    color:#fff;
}
.footer-left p {
    margin:4px 0;
}
.footer-center {
    display:flex;
    gap:1.5vh;
    align-items:center;
}
.footer-center img {
    height:6.5vh;
}
.footer .filing {
    height: 4.5vh;
    line-height: 4.5vh;
    margin: 0 auto;
    width:100%;
    text-align: center;
    background: #8F0404;
}
.footer-right {
    padding: 4.5vh 0;
}
.footer-right .select-wrap {
    position: relative;
    display: block;
}
.footer-right .select-wrap select {
    appearance: none;          
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    width: 12vw;
    height: 3.5vh;
    margin: 0;
    padding: 0 1vh;
    margin-bottom: 1vh;
    border: 1px solid #fff;
    border-radius: 4px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 0.75vw;
}
.footer-right .select-wrap::after {
    content: "⌵";
    position: absolute;
    right: 1.5vh;
    top: 35%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #fff;
    font-size: 0.85vw;
}
.footer-right .select-wrap select:hover {
    border-color: #fff;
    color: #000;
}
.footer-right .select-wrap select:focus {
    outline: none;
    border-color: #fff;
    box-shadow: 0 0 0 2px rgba(0,90,158,.2);
}