/* 初始化配置 */
:root {
    --body-bg-color: #fffaef;
    --button-text-color: #FFF6e0;
    --white-color: #ffffff;
    --text-color: #83644b;
    --title-color: #946429;
    --gold-color: #E2B442;
    --more-bgcolor: #F1E4CD;
    --award-color: #c9ab91;
    --person-text-color: #7e654e;
}

/* 全局配置 */
body {
    margin: 0;
    padding: 0;
    background: var(--body-bg-color);
}

ul,
ol {
    list-style-type: none;
    padding-left: 0;
    /* 可选：同时去掉默认的左内边距 */
}

h1,
h2,
h3,
h4,
h5,
p {
    margin: 0;
    padding: 0;
    height: auto;
}

a {
    color: var(--text-color);
    text-decoration: none;
}

/* 主要配置 */
/* 1.顶部header section*/
.header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.h-bgpic {
    width: 7.5rem;
    height: 4.22rem;
    background: url(//n.sinaimg.cn/finance/subject/jrzlxczx/image/wap/head-banner.png) no-repeat center top;
    background-size: 100% auto;
    align-items: center;
    position: relative;
}

.bgp-wrap {
    width: 1.8rem;
    height: .56rem;
    position: absolute;
    bottom: .47rem;
    right: .43rem;
    background: url(//n.sinaimg.cn/finance/subject/jrzlxczx/image/wap/signup-btn.png) no-repeat center top;
    background-size: 100% auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bgp-wrap .signup {
    font-family: PingFangSC-Medium;
    font-size: .24rem;
    color: #FFF6E0;
    letter-spacing: 0;
    text-align: center;
    text-shadow: 0 .02rem .04rem #976404;
}

.header-cont {
    width: 7.5rem;
    background: url(//n.sinaimg.cn/finance/subject/jrzlxczx/image/wap/nav-bg.png);
    background-size: 7.5rem auto;
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.header-cont .nav-w {
    padding: 0 .35rem;
    /* width: 100%; */
    height: .8rem;
    display: flex;
    align-content: space-between;
}

.nav-w .item {
    flex: 1;
    text-align: center;
    padding-right: .3rem;
    border: .01rem solid transparent;
    font-size: .26rem;
    align-content: center;
    color: var(--button-text-color);
    cursor: pointer;
    position: relative;
}

.nav-w .navItems {
    flex: 1;
    text-align: center;
    padding-right: .3rem;
    border: .01rem solid transparent;
    font-size: .26rem;
    align-content: center;
    color: var(--button-text-color);
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.nav-w .cur {
    flex: 1;
    text-align: center;
    padding-right: .3rem;
    border: .01rem solid transparent;
    font-size: .26rem;
    align-content: center;
    color: var(--white-color)
}

.nav-fixed {
    position: fixed;
    top: 0;
    z-index: 9999;
}

.descript {
    width: 7.5rem;
    /* width: 100%; */
    background-image: linear-gradient(179deg, #FFF1D0 1%, #F0CF7E 100%);
}

.descript div {
    margin: .35rem .35rem .45rem;
}

.descript p {
    font-family: PingFangSC-Regular;
    font-size: .26rem;
    color: var(--text-color);
    letter-spacing: 0;
    text-align: justify;
    line-height: .4rem;
}

/* 2.展示container */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container .blk {
    margin-top: .6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.blk .u-title {
    margin: 0 auto;
    width: 7.5rem;
}

/* 2.1-0热点聚焦 */
.rdjj-slide {
    position: relative;
    width: 6.8rem;
    height: 4.51rem;
    overflow: hidden;
    border-radius: .08rem;
    box-shadow: 0 .04rem .12rem rgba(0, 0, 0, 0.1);
    margin: .2rem .35rem;
}

.carousel {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 25%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-title {
    position: absolute;
    left: 0;
    bottom: 0;
    /* color: white; */
    /* font-size: .24rem; */
    /* font-weight: bold; */
    text-shadow: .01rem .01rem .03rem rgba(0, 0, 0, 0.8);
    background-color: rgba(0, 0, 0, 0.5);
    padding: .08rem .16rem;
    /* border-radius: .04rem; */
    font-family: PingFangSC-Regular;
    font-size: .22rem;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: .22rem;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.indicators {
    position: absolute;
    bottom: .2rem;
    right: .2rem;
    display: flex;
    gap: .1rem;
    /* width:30%; */
}

.indicator {
    width: .12rem;
    height: .12rem;
    border-radius: 50%;
    background-color: #E2B442;
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: white;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: .4rem;
    height: .4rem;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: .2rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.prev {
    left: .2rem;
}

.next {
    right: .2rem;
}

/* 2.1-1新闻列表 */
.rdjj-news {
    width: 6.8rem;
}

#rdjj-news-blk {
    font-family: PingFangSC-Regular;
    font-size: .32rem;
    color: var(--text-color);
    letter-spacing: 0;
    line-height: .50rem;
}

.more-li {
    margin-bottom: .1rem;
    position: relative;
    padding-left: .2rem;
}

.more-li a:hover {
    font-family: PingFangSC-Semibold;
    /* color: #f8f8f8; */
}

.more-li::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -0.04rem;
    width: .1rem;
    height: .1rem;
    background: #b89c89;
    border-radius: 9.99rem;

}

#rdjj-news-blk li:nth-child(n+4) {
    display: none;
}

/* 当列表展开时显示所有项目 */
.list-expanded li {
    display: block !important;
}

.rdjj-news-more {
    width: 6.8rem;
    height: .6rem;
    opacity: 0.6;
    background: #F1E4CD;
    border: .01rem solid #EBDECC;
    border-radius: .02rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rdjj-news-more span {
    font-family: PingFangSC-Regular;
    font-size: .24rem;
    color: var(--text-color);
    letter-spacing: .0171rem;
}

/* 2.2获奖榜单 暂时不处理20250812 */
#dsbd {
    /* display: none; */
    width: 7.5rem;
}

#vote-case .sub-title,
#dsbd .sub-title {
    margin-top: .5rem;
}

#dsbd .bd-subtitle {
    background: #B98B4C;
    border-radius: 0 .3584rem .3584rem 0;
    width: 3.07rem;
    height: .64rem;
    font-size: .2816rem;
    color: #FFF6E0;
    letter-spacing: 0;
    text-align: center;
    align-content: center;
    font-weight: 300;
    margin-bottom: .1rem;
    margin-left: .35rem;
}

#dsbd .bd-subtitle2 {
    background: #B98B4C;
    border-radius: 0 .3584rem .3584rem 0;
    width: 3.07rem;
    height: .64rem;
    font-size: .2816rem;
    color: #FFF6E0;
    letter-spacing: 0;
    text-align: center;
    align-content: center;
    font-weight: 300;
    margin-bottom: .1rem;
}

.blk-single {
    margin-top: .4rem;
}

#person_cyzx,
#person_phjr,
#person_lsjr,
#person_szjr,
#person_whjr {
    margin-top: .4rem;
    width: 100%;
}

.blk-person {
    display: flex;
    flex-wrap: wrap;
    gap: .2rem;
    margin: 0 .35rem;
}

.person-group {
    width: 3.3rem;
    margin-top: .25rem;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.person-group .person-img {
    height: 2.2rem;
    background: url(//n.sinaimg.cn/finance/subject/jrzlxczx/image/wap/item-mrpic.png) no-repeat center center;
}

.person-group .person-img img {
    width: 3.3rem;
    height: 2.2rem;
}

.person-group .img-text {
    opacity: 0;
    position: absolute;
    top: 0;
    padding: .05rem;
    height: 1.8rem;
    width: 1.8rem;
    color: #fff;
    font-size: .12rem;
    overflow: auto;
    background: rgba(0, 0, 0, .3);
    box-sizing: border-box;
    text-align: justify;
    z-index: 90;
}

.person-group .person-detail {
    width: 3.3rem;
    height: 1.26rem;
    border-radius: .04rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(179deg, #FFF1D0 1%, #F0CF7E 100%);
}

.person-group .person-name {
    margin-top: .2rem;
    font-family: PingFangSC-Semibold;
    font-size: .24rem;
    color: #83644B;
    letter-spacing: 0;
    text-align: center;
    line-height: .24rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
}

.person-group .person-position {
    margin-top: .15rem;
    font-family: PingFangSC-Regular;
    font-size: .2rem;
    color: #83644B;
    letter-spacing: 0;
    text-align: center;
    line-height: .3rem;
    /* white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden; */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

/* 2.3评选介绍 */
.intro-blk {
    margin: .3rem .35rem;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.intro-blk .cxfs-text {
    margin-top: .3rem;
    font-family: PingFangSC-Regular;
    font-size: .26rem;
    color: var(--text-color);
    letter-spacing: 0;
    line-height: .4rem;
    width: 6.8rem;
}

.intro-pxwd,
.intro-pxlc {
    margin: .3rem auto;
    width: 6.8rem;
}

.sub-title {
    width: 3.7rem;
    height: .34rem;
}

/* 2.3--奖项设置 */
.award-set {
    display: flex;
    flex-direction: column;
    width: 6.8rem;
}

.as-tit {
    margin-top: .4rem;
    background: url(//n.sinaimg.cn/finance/subject/jrzlxczx/image/wap/jxset-titbg.png) no-repeat center center;
    background-size: 100% auto;
    width: 2.1rem;
    height: .54rem;
    /* font-family: .AppleSystemUIFont; */
    font-size: .26rem;
    color: var(--button-text-color);
    letter-spacing: 0;
    /* text-align: center; */
    align-content: center;
    text-indent: 1em;
}

.intro-blk .as {
    margin: .3rem 0 .08rem 0;
}

.as h5 {
    font-family: PingFangSC-Semibold;
    font-size: .26rem;
    color: var(--text-color);
    letter-spacing: 0;
    line-height: .4rem;
}

.as p {
    font-family: PingFangSC-regular;
    font-size: .26rem;
    color: var(--text-color);
    letter-spacing: 0;
    line-height: .4rem;
}

/* 2.4案例投票 暂不处理 20250812*/
#vote-case {
    /* display: none; */
    width: 100%;
}

#vote_cyzx,
#vote_phjr,
#vote_lsjr,
#vote_whjr,
#vote_szjr {
    width: 6.8rem;
    margin: .4rem .35rem 0;
}

.vote-titlebar {
    display: flex;
    align-items: center;
    position: relative;
    /* justify-content: center; */
}

.vote-titlebar .vote-title {
    width: 3.07rem;
    height: .64rem;
    background: #B98B4C;
    border-radius: 0 .3584rem .3584rem 0;
    font-size: .2816rem;
    color: #FFF6E0;
    letter-spacing: 0;
    text-align: center;
    align-content: center;
    font-weight: 300;

}

.vote-titlebar .search-blk {
    position: absolute;
    right: 0;
    width: 2.8rem;
    height: .54rem;
    background: #F1E4CD;
    border: .01rem solid #EBDECC;
    border-radius: .02rem;
    display: flex;
    align-items: center;
}

.search-blk .search-input {
    /* float: left; */
    height: .26rem;
    text-indent: .05rem;
    border: none;
    background: #F1E4CD;
    font-family: PingFangSC-Regular;
    font-size: .2rem;
    color: #83644B;
    letter-spacing: .0143rem;
    line-height: .22rem;
    font-weight: 300;
    width: 2.42rem;
    outline: none;
}

.search-blk .search-btn {
    float: right;
    width: .2rem;
    height: .2rem;
    background: url(//n.sinaimg.cn/finance/subject/jrzlxczx/image/wap/search-icon.png) no-repeat center center;
    background-size: 100%;
    cursor: pointer;
    border: none;
}

.vote-section {
    display: flex;
    flex-wrap: wrap;
    gap: .2rem;
}

.vote-group {
    height: 4.54rem
}

.vote-bottominfo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(179deg, #FFF1D0 1%, #F0CF7E 100%);
    width: 3.3rem;
    /* height: 2.44rem; */
}

.vote-bottominfo .vb-name {
    margin-top: .2rem;
    font-family: PingFangSC-Semibold;
    font-size: .24rem;
    color: #83644B;
    letter-spacing: 0;
    text-align: center;
    line-height: .24rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
}

.vote-bottominfo .vb-position {
    margin-top: .15rem;
    font-family: PingFangSC-Regular;
    font-size: .18rem;
    color: #83644B;
    letter-spacing: 0;
    text-align: center;
    line-height: .28rem;
    /* white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden; */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    height: .5rem;
}

.vote-bottominfo .vb-count {
    margin-top: .19rem;
    display: flex;
}

.vote-bottominfo .vote-num {
    font-family: HelveticaNeue-Bold;
    font-size: .26rem;
    color: #83644B;
    letter-spacing: 0;
    line-height: .32rem;
}

.vote-bottominfo .vote-numtext {
    font-family: PingFangSC-Semibold;
    font-size: .2rem;
    color: #83644B;
    letter-spacing: 0;
    line-height: .32rem;
    margin-left: .06rem;
}

.vote-bottominfo .vote-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .1rem;
    margin-bottom: .1rem;
    margin-top: .2rem;
}

.vote-bottominfo .vote-btn span {
    width: 1.5rem;
    height: .44rem;
    background-image: linear-gradient(180deg, #E2AF6D 0%, #733D15 99%);
    border-radius: .0639rem;
    font-family: PingFangSC-Medium;
    font-size: .24rem;
    color: #FFF0CA;
    letter-spacing: 0;
    text-align: center;
    line-height: .24rem;
    align-content: center;
}

.voteMore-btn {
    opacity: 0.6;
    background: #F1E4CD;
    border: .01rem solid #EBDECC;
    border-radius: .02rem;
    width: 100%;
    height: .6rem;
    margin-top: .3rem;
    font-family: PingFangSC-Regular;
    font-size: .24rem;
    color: #83644B;
    letter-spacing: .0171rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 2.5专家访谈 */
#expert {
    overflow: hidden;
    /* 隐藏超出部分 */
    position: relative;
}

.talk-group {
    margin-top: .4rem;
    width: 6.8rem;
    display: flex;
    overflow-x: auto;
    /* 允许横向滚动 */
    scroll-behavior: smooth;
    /* 平滑滚动效果 */
    -webkit-overflow-scrolling: touch;
    /* iOS平滑滚动 */
    padding-bottom: .2rem;
    /* 给滚动条留出空间 */
    gap: .2rem;
    /* 子项之间的间距 */
}

.talk-group::-webkit-scrollbar {
    display: none;
}

.talk-group .talk-item {
    display: flex;
    flex-direction: column;
}

.talk-item img {
    width: 3.1rem;
    height: 2.05rem;
    /* margin: 0 auto; */
}

.talk-item span {
    width: 3.1rem;
    color: var(--text-color);
    font-size: .20rem;

}

.talk-tit {
    margin-top: .16rem;
    font-weight: 500;
}

.talk-desc {
    margin-top: .1rem;
    line-height: .26rem;
}

.talk-scroll img {
    width: .36rem;
    height: .36rem;
    display: block;
}

.talk-scroll {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: .36rem;
    height: .36rem;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    line-height: .36rem;
}

#expert .left-btn {
    left: .1rem;
}

#expert .right-btn {
    right: .1rem;
}

/* 2.6评委风采 */
.dspw-group {

    width: 6.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}

.dspw-group .dspw {
    /* float: left; */
    margin-top: .4rem;
    width: 2rem;

}

.dspw-group .dspw img {
    display: block;
    width: 1.8rem;
    height: 1.8rem;
    border: .12rem solid #dcd4c5;
    border-radius: 50%;
}

.dspw-group .dspw .dspw-name {
    display: block;
    margin: .23rem auto .14rem 0;
    width: 2rem;
    line-height: .24rem;
    color: var(--text-color);
    font-size: .28rem;
    font-weight: bold;
    text-align: center;
}

.dspw-group .dspw .dspw-position {
    display: block;
    margin: .1rem auto 0;
    width: 2rem;
    height: .6rem;
    line-height: .18rem;
    color: var(--text-color);
    font-size: .16rem;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 2.7组织机构 */
.org {
    margin: .3rem auto;
    /* width: 6.04rem; */
}

.org img {
    width: 6.04rem;
}

/* 2.8联系我们 */

.contact-cont {
    margin-top: .6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-text {
    color: var(--text-color);
    font-family: PingFangSC-Regular;
    font-size: .26rem;
    letter-spacing: 0;
    text-align: center;
    line-height: .4rem;
}

.contact-weibo {
    margin-top: .6rem;
    display: flex;
    flex-direction: column;
}

.c-weibo-pic {
    border-radius: 50%;
    width: 2.2rem;
    height: 2.2rem;
}

.c-weibo-info {
    margin-top: .2rem;
    align-self: center;
}

.c-weibo-info h4 {
    font-family: PingFangSC-Regular;
    font-size: .22rem;
    color: var(--text-color);
    letter-spacing: .0157rem;
    text-align: center;
}

.c-weibo-btn {
    margin-top: .1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFDB1E;
    border-radius: .0175rem;
    width: 1.4rem;
    height: .56rem;
}

.c-weibo-btn a {
    font-family: PingFangSC-Regular;
    font-size: .3rem;
    color: #000000;
    letter-spacing: .0214rem;
}

/* 3.footer */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    font-family: PingFangSC-Regular;
    font-size: .18rem;
    color: #666666;
    letter-spacing: 0;
    text-align: center;
    line-height: .3rem;
    margin-bottom: .5rem;
}

/* 4.侧边导航栏 */
.nav-bar {
    display: none;
    position: fixed;
    bottom: .6rem;
    right: .2rem;


}

.nav-bar .sidebar-icon {
    margin-top: .1rem;
    width: .64rem;
    height: .64rem;
    background: #E2B442;
    border-radius: .06rem;
    display: flex;
    align-items: center;
    justify-content: center;

}

.sidebar-icon span {
    margin-left: .02rem;
    font-family: PingFangSC-Semibold;
    font-size: .2rem;
    color: #FFFAEE;
    letter-spacing: .0111rem;
    line-height: .22rem;
    text-align: center;
}

.sidebar-icon img {
    width: .4rem;
    /* height: .4rem; */
}

.aside-show {
    display: flex !important;
    animation: fadeIn 2s;
    flex-direction: column;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* 5.弹出浮层 暂不处理*/
.vote-pop-up {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.vote-pop-up .mask {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: .5;
    background: rgb(0, 0, 0);
}

.vote-model {
    position: absolute;
    top: 20%;
    left: 50%;
    border-radius: .05rem;
    margin-left: -3.3rem;
    /* margin-top: -4.99rem; */
    width: 6.6rem;
    height: auto;
    line-height: .24rem;
    background-color: #fff;
}

.vote-model-banner {
    width: 100%;
    aspect-ratio: 660 / 250;
    position: relative;
}

.vote-model-banner img {
    width: 100%;
    aspect-ratio: 660 / 250;
}

.vote-pop-up .vote-close {
    width: .6rem;
    height: .6rem;
    cursor: pointer;
    margin: .2rem auto;
    display: flex;
}

.vote-close img {
    width: .6rem;
    height: .6rem;
}

.vote-model-main {
    display: flex;
    flex-direction: column;
    margin: .22rem .3rem .3rem;
    padding: .2rem;
    background: #FFFAEE;
    border-radius: .06rem;
    align-items: center;
    justify-content: center;
}

.vote-model-main .vmm-title {
    margin-top: .1rem;
    font-family: PingFangSC-Semibold;
    font-size: .32rem;
    color: #83644B;
    letter-spacing: 0;
    text-align: center;
    line-height: .32rem;
}

.vote-model-main .vmm-desc {
    margin-top: .25rem;
    font-family: PingFangSC-Regular;
    font-size: .24rem;
    color: #83644B;
    letter-spacing: 0;
    text-align: center;
    line-height: .24rem;
}

.vote-model-main .vmm-text {
    text-indent: 2em;
    margin-top: .4rem;
    margin-bottom: .15rem;
    font-family: PingFangSC-Regular;
    font-size: .26rem;
    color: #83644B;
    letter-spacing: 0;
    line-height: .4rem;
    width: 100%;
    max-height: 2.5rem;
    overflow-y: auto;
}

/* 备用方案 */
.vote-close1 {
    width: .3rem;
    height: .3rem;
    cursor: pointer;
    position: absolute;
    top: .2rem;
    right: .2rem;
    z-index: 9999;
}

.vote-close1 img {
    width: .3rem;
    height: .3rem;
    display: block;
}

@media (min-width: 750px) {
    html {
        font-size: 100px;
    }
}