@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&display=swap');

/*初始化样式*/
* {
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
}

:root {
    --primary-color: #D63384;
    --primary-dark: #A62766;
    --primary-light: #E85D9A;
    --accent-color: #C9A0DC;
    --accent-hover: #B48CC8;
    --bg-page: #F1F2F6;
    --bg-card: #ffffff;
    --text-primary: #1a1a2e;
    --text-secondary: #555b6e;
    --text-muted: #8e99a4;
    --border-color: #f0dce6;
    --shadow-sm: 0 1px 3px rgba(214,51,132,0.06);
    --shadow-md: 0 4px 16px rgba(214,51,132,0.08);
    --shadow-lg: 0 8px 32px rgba(214,51,132,0.12);
    --shadow-hover: 0 12px 40px rgba(214,51,132,0.16);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --font-size: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

article, aside, details, figcaption, figure, footer, header, main, nav, section {
    display: block;
}

div, html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, select, p, blockquote, th, td, hr, button, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-page);
    color: var(--text-primary);
    font: 16px/1.75em 'Noto Sans SC', -apple-system, BlinkMacSystemFont, "Microsoft Yahei", "PingFang SC", "Helvetica Neue", sans-serif;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

table {
    background-color: transparent;
    border-spacing: 0;
    border-collapse: collapse;
    font-size: 16px;
    width: 100%;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
    box-sizing: border-box;
}

table th {
    background-color: #f8f8f8;
    text-align: center;
    box-sizing: border-box;
}

table td, table th {
    padding: 10px;
    border: 1px solid #ddd;
    box-sizing: border-box;
}

button, select, input, textarea {
    background: none;
    border: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    color: var(--text-primary);
    outline: none;
    -webkit-appearance: none;
    font-family: inherit;
}

input:focus {
    outline: none;
}

textarea {
    resize: none;
}

a {
    text-decoration: none;
    outline: none;
    color: var(--text-primary);
    transition: color var(--transition);
}

a:focus {
    outline: none;
    -moz-outline: none;
}

a:hover {
    color: var(--primary-color);
}

a img {
    border: none;
}

li {
    list-style: none;
}

/*全局样式*/
.inner {
    width: 1440px;
    margin: 0 auto;
}

.clear {
    clear: both;
    height: 0px;
    overflow: hidden;
}

.thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.thumbnail a {
    display: block;
    position: relative;
    overflow: hidden;
    padding-bottom: 75%;
}

.thumbnail img {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.postbottom {
    font-size: 14px;
    color: var(--text-muted);
    margin-left: 80px;
    margin-bottom: 20px;
}

.bgcolor {
    background-color: var(--primary-color);
}

/*广告代码*/
.boxpic {
    overflow: hidden;
    margin-bottom: 25px;
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.boxpic a, .postpic a, .sitepic a {
    display: block;
}

.boxpic img, .postpic img, .sitepic img {
    display: block;
    width: 100%;
    height: auto;
}

.postpic {
    overflow: hidden;
    margin-bottom: 25px;
}

.sitepic {
    overflow: hidden;
    clear: both;
}

/*404页面*/
.error .title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    line-height: 1.35em;
    margin-bottom: 3.5%;
}

.error .warning {
    text-align: center;
    font-size: 28px;
    margin-bottom: 5%;
    line-height: 1.75em;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 5%;
}

.error .related .boxtitle {
    text-align: center;
}

.warning {
    margin-bottom: 25px;
    border-radius: var(--radius-md);
    background-color: var(--bg-card);
    overflow: hidden;
    padding: 20px;
    text-align: center;
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

/*全站头部*/
.header {
    padding: 28px 0;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.header .inner {
    position: relative;
}

/*topBar*/
#topBar {
    display: none;
}

/*logo*/
#logo {
    float: left;
}

#logo a {
    display: block;
    width: 200px;
    height: 44px;
    overflow: hidden;
    background: no-repeat left center;
    background-size: contain;
    transition: opacity var(--transition);
}

#logo a:hover {
    opacity: 0.8;
}

/*nav*/
.nav {
    clear: both;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    box-shadow: 0 2px 12px rgba(214,51,132,0.2);
    position: relative;
    z-index: 100;
}

.nav ul {
    position: relative;
    height: 54px;
}

.nav li {
    float: left;
    width: 10%;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    line-height: 54px;
    position: relative;
    letter-spacing: 1px;
}

.nav li a {
    display: block;
    color: rgba(255,255,255,0.9);
    position: relative;
    transition: all var(--transition);
    padding: 0 5px;
}

.nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px 2px 0 0;
    transition: transform var(--transition);
}

.nav li a:hover, .nav li a.cur {
    background-color: transparent;
    color: #fff;
    font-weight: 700;
}

.nav li a:hover::after, .nav li a.cur::after {
    transform: translateX(-50%) scaleX(1);
}

.nav li em {
    display: none;
}

.nav li ul {
    position: absolute;
    height: auto;
    left: 0;
    top: 100%;
    width: 100%;
    background: var(--bg-card);
    text-align: center;
    display: none;
    z-index: 5;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    overflow: hidden;
    border-top: 2px solid var(--accent-color);
}

.nav li ul.show {
    display: block;
}

.nav li li {
    width: auto;
    float: none;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
}

.nav li li a {
    line-height: 20px;
    padding: 12px 10px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    letter-spacing: 0;
}

.nav li li a::after {
    display: none;
}

.nav li li a:hover {
    background: var(--bg-page);
    color: var(--primary-color);
}

.nav li li:last-child a {
    border-bottom: none;
}

/*顶部搜索*/
.search {
    float: right;
    position: relative;
}

.schBtn {
    position: absolute;
    right: 40px;
    top: 50%;
    display: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 18px;
    text-align: center;
    line-height: 40px;
    color: var(--text-muted);
    margin-top: -20px;
}

.searchForm {
    width: 380px;
    padding: 0;
    border-radius: 50px;
    overflow: hidden;
    background: var(--bg-page);
    border: 1px solid var(--border-color);
    transition: all var(--transition);
}

.searchForm form {
    display: flex;
    align-items: center;
    height: 42px;
}

.searchForm:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(214,51,132,0.1);
    background: #fff;
}

.searchForm .submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 42px;
    min-width: 48px;
    float: none;
    position: static;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    background-color: var(--accent-color);
    text-align: center;
    border-radius: 0;
    transition: background var(--transition);
}

.searchForm .submit:hover {
    background-color: var(--accent-hover);
}

.searchForm .text {
    background-color: transparent;
    color: var(--text-primary);
    height: 42px;
    line-height: 42px;
    flex: 1;
    padding: 0 20px;
    -webkit-appearance: none;
    font-size: 14px;
    border: none;
    min-width: 0;
}

.searchForm .text::placeholder {
    color: var(--text-muted);
}

/*登录注册按钮*/
.user-actions {
    float: right;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 16px;
    margin-top: 4px;
}

.user-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 16px;
    font-size: 13px;
    border-radius: 20px;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
    line-height: 1.5;
}

.login-link {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.login-link:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.register-link {
    color: #fff;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.register-link:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.logout-link {
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

.logout-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/*手机端导航菜单中的登录注册*/
.mobile-user-links {
    display: none;
}

.mobile-user-links a {
    display: block;
    padding: 10px 2em 10px 1.5em !important;
    color: var(--primary-color) !important;
    border-bottom: 1px solid var(--border-color) !important;
    font-size: 15px;
}

.mobile-user-links a i {
    margin-right: 6px;
    width: 18px;
    text-align: center;
}

/*全站底部*/
#footer {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    margin-top: 20px;
}

#footer .btm {
    overflow: hidden;
    padding: 2% 0;
}

.links {
    padding: 1.5% 0 1%;
    border-bottom: 1px solid var(--border-color);
}

.links ul {
    overflow: hidden;
    font-size: 0;
    line-height: normal;
    text-align: center;
}

.links li {
    display: inline-block;
    font-size: 14px;
    color: var(--text-muted);
    padding: 0 10px;
    line-height: 30px;
    position: relative;
}

.links li a {
    color: var(--text-muted);
    transition: color var(--transition);
}

.links li a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 2;
}

.copyright a {
    color: var(--text-muted);
    transition: color var(--transition);
}

.copyright a:hover {
    color: var(--primary-color);
}

/*首页轮播图*/
.slides {
    margin-bottom: 28px;
    border-radius: var(--radius-lg);
    background-color: var(--bg-card);
    overflow: hidden;
    padding: 0;
    box-shadow: var(--shadow-md);
}

.slides .owl-stage-outer {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.slides .item {
    background: no-repeat center center;
    background-size: cover;
    padding-bottom: 40%;
    position: relative;
}

.slides .item a {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.slides .item i {
    font-style: normal;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 16px 24px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: linear-gradient(transparent, rgba(214,51,132,0.85));
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
    letter-spacing: 0.5px;
}

.slides .owl-nav button {
    position: absolute;
    top: 50%;
    display: block;
    margin-top: -25px;
}

.slides .owl-nav span {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: rgba(255,255,255,0.95);
    color: var(--primary-color);
    font-family: Arial;
    font-size: 20px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition);
}

.slides .owl-nav span:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: scale(1.1);
}

.slides .owl-nav .owl-prev {
    left: 12px;
}

.slides .owl-nav .owl-next {
    right: 12px;
}

.slides .load {
    padding-bottom: 34.375%;
    background-color: var(--bg-page);
    position: relative;
}

.slides .load span {
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    font-size: 36px;
    line-height: 1.125em;
    color: var(--text-muted);
    text-align: center;
}

/*首页推荐*/
.istop {
    padding: 24px;
    padding-bottom: 20px;
    margin-bottom: 28px;
    border-radius: var(--radius-lg);
    background-color: var(--bg-card);
    box-shadow: var(--shadow-md);
    position: relative;
    max-width: 100%;
}

.istop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 0 0 2px 2px;
}

.istop-header {
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.istop-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.istop-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.istop ul {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}

.istop li {
    width: calc(25% - 12px);
    float: none;
    padding: 8px 0;
}

.istop li .thumbnail {
    margin-bottom: 12px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.istop li .thumbnail a {
    border-radius: var(--radius-md);
}

.istop li .thumbnail img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.istop li:hover .thumbnail img {
    transform: scale(1.08);
}

.istop li h3 {
    font-weight: 500;
    font-size: 15px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.5em;
    height: 3em;
    color: var(--text-primary);
    transition: color var(--transition);
}

.istop li h3 a:hover {
    color: var(--primary-color);
}

/*首页模块*/
.hmBox {
    overflow: visible;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hmBox .boxWrap {
    width: calc(50% - 10px);
    float: none;
    padding-right: 0;
    padding-bottom: 0;
}

.hmBox .box {
    border-radius: var(--radius-lg);
    background-color: var(--bg-card);
    overflow: hidden;
    padding: 16px;
    box-shadow: var(--shadow-md);
    transition: box-shadow var(--transition);
    position: relative;
}

.hmBox .box:hover {
    box-shadow: var(--shadow-hover);
}

.hmBox .top {
    overflow: hidden;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: none;
    position: relative;
}

.hmBox .top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.hmBox .top h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-right: 35px;
    letter-spacing: 0.5px;
}

.hmBox .top span {
    float: right;
    font-size: 13px;
    color: var(--text-muted);
    background: var(--bg-page);
    padding: 4px 14px;
    border-radius: 20px;
    transition: all var(--transition);
    margin-top: 2px;
}

.hmBox .top span a {
    color: var(--text-muted);
}

.hmBox .top span:hover {
    background: var(--primary-color);
}

.hmBox .top span:hover a {
    color: #fff;
}

.hmBox li {
    overflow: hidden;
}

.hmBox .thumbnail {
    width: 130px;
    float: left;
    border-radius: var(--radius-sm);
}

.hmBox .info {
    margin-left: 142px;
    overflow: hidden;
}

.hmBox h4 {
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em;
    color: var(--text-primary);
    transition: color var(--transition);
}

.hmBox h4 a:hover {
    color: var(--primary-color);
}

.hmBox .first {
    padding-bottom: 5px;
}

.hmBox .first h4 {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 700;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em;
    height: 4.5em;
}

.hmBox .first p {
    display: none;
}

.hmBox .list {
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
    margin-top: 14px;
}

/*内页*/
.wrapper {
    margin-bottom: 4%;
}

/*内页模幅*/
.banner {
    background: no-repeat center center;
    background-size: cover;
    padding-bottom: 26%;
    overflow: hidden;
}

/*面包屑*/
.breadcrumb {
    padding: 12px 0;
    font-size: 13px;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background-color: var(--bg-card);
    border-radius: var(--radius-sm);
    margin-bottom: 25px;
    clear: both;
    padding-left: 16px;
    box-shadow: var(--shadow-sm);
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

/*内页分页*/
.pagenavi {
    font-size: 0;
    line-height: normal;
    text-align: center;
    padding-top: 15px;
}
.pagenavi ul{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 6px;
}

.pagenavi a, .pagenavi span.now-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-secondary);
    background-color: var(--bg-card);
    min-width: 36px;
    height: 36px;
    line-height: 36px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.pagenavi .active{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    background-color: var(--primary-color);
    min-width: 36px;
    height: 36px;
    line-height: 36px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
    font-weight: 500;
}

.pagenavi a:hover, .pagenavi span.now-page {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 500;
    box-shadow: var(--shadow-md);
}

/*新闻列表*/
.newsitem {
    overflow: hidden;
    margin-bottom: 20px;
    background-color: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.newsitem:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.newsitem .thumbnail {
    float: left;
    width: 200px;
    border-radius: var(--radius-sm);
}

.newsitem .info {
    margin-left: 220px;
    overflow: hidden;
}

.newsitem h2 {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.newsitem h2 a {
    color: var(--text-primary);
    transition: color var(--transition);
}

.newsitem h2 a:hover {
    color: var(--primary-color);
}

.newsitem .meta {
    color: var(--text-muted);
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
}

.newsitem .meta a {
    color: var(--text-muted);
}

.newsitem .meta span {
    margin-right: 15px;
}

.newsitem .meta span:last-child {
    margin-right: 0;
}

.newsitem p {
    font-size: 15px;
    line-height: 1.75em;
    overflow: hidden;
    color: var(--text-secondary);
}

/*详情页*/
.details {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.details .title {
    font-size: 26px;
    text-align: center;
    line-height: 1.4em;
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.details .meta {
    text-align: center;
    font-size: 0;
    line-height: normal;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5%;
    margin-bottom: 2.43%;
}

.details .meta span {
    font-size: 13px;
    color: var(--text-muted);
    padding: 4px 16px;
    display: inline-block;
    background: var(--bg-page);
    border-radius: 20px;
    margin: 2px 4px;
}

.details .meta a {
    color: var(--text-muted);
}

/*详情内容*/
.entry {
    font-size: 16px;
    line-height: 1.85em;
    color: var(--text-primary);
}

.entry p, .entry h1, .entry h2, .entry h3, .entry h4, .entry h5, .entry h6 {
    margin-bottom: 20px;
    word-break: break-all;
}

.entry h2, .entry h3 {
    font-weight: 700;
    color: var(--text-primary);
}

.entry ul, .entry ol {
    margin-bottom: 2.43%;
    word-break: break-all;
    margin-left: 2em;
}

.entry img {
    max-width: 100%;
    height: auto !important;
    border-radius: var(--radius-sm);
}

.entry ul li {
    list-style: outside disc none;
    margin-left: 1em;
}

.entry ol li {
    list-style: outside decimal none;
    margin-left: 1em;
}

.entry blockquote {
    margin: 0 2em 2.43%;
    padding: 2.43% 2.43% 0;
    font-style: italic;
    overflow: hidden;
    color: var(--text-secondary);
    border-left: 4px solid var(--primary-color);
    background-color: var(--bg-page);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.entry hr {
    border: none;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2.43%;
}

.entry li p {
    display: inline;
}

/*标签*/
.tags {
    overflow: hidden;
    font-size: 16px;
    color: var(--text-primary);
    padding: 10px 0;
}

.tags a {
    color: var(--text-primary);
    margin-left: 15px;
}

/*上下篇文章*/
.postnavi {
    overflow: hidden;
    padding: 10px 0 20px;
    color: var(--text-primary);
}

.postnavi div {
    padding: 5px 0;
}

.postnavi a {
    color: var(--text-primary);
}

.postnavi a:hover {
    color: var(--primary-color);
}

/*详情模块标题*/
.boxtitle {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.35em;
    font-weight: 700;
    color: var(--text-primary);
}

/*相关推荐*/
.related {
    margin-bottom: 20px;
}

.related ul {
    overflow: hidden;
    width: 102%;
}

.related li {
    float: left;
    width: 23%;
    padding-right: 2%;
}

.related li .thumbnail {
    margin-bottom: 15px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.related li .thumbnail img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.related li:hover .thumbnail img {
    transform: scale(1.08);
}

.related li h3 {
    font-weight: 500;
    font-size: 15px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 28px;
}

/*评论留言*/
.commentlist {
    overflow: hidden;
    margin-bottom: 2.43%;
}

.commentlist li {
    overflow: hidden;
    margin-bottom: 2.43%;
    padding-bottom: 2.43%;
    border-bottom: 1px solid var(--border-color);
}

.commentlist .avatar {
    float: left;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.commentlist .avatar img {
    display: block;
    width: 100%;
    height: 100%;
}

.commentlist .info {
    margin-left: 80px;
    overflow: hidden;
}

.commentlist .name {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35em;
    color: var(--text-primary);
}

.commentlist time {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.5em;
}

.commentlist .replay {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
}

.commentlist .text {
    padding: 5px 0;
    font-size: 16px;
    color: var(--text-secondary);
}

.commentlist li li {
    margin: 2.43% 0 0 2%;
    padding-bottom: 0;
    border-bottom: none;
}

.commentlist p {
    text-align: center;
    font-size: 14px;
    padding: 1% 0;
    color: var(--text-secondary);
}

/*评论框*/
#comment .item {
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

#comment label {
    display: block;
    float: left;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    font-weight: 500;
}

#comment label i {
    font-style: normal;
    color: #e74c3c;
}

#comment .input {
    margin-left: 80px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition);
}

#comment .input:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(214,51,132,0.08);
}

#comment .text, #comment textarea {
    width: 98%;
    height: 20px;
    line-height: normal;
    padding: 10px 1%;
    font-size: 16px;
    font-family: 'Noto Sans SC', 'Microsoft Yahei', sans-serif;
    -webkit-appearance: none;
}

#comment textarea {
    height: 150px;
    resize: none;
}

#comment .submit {
    margin-left: 80px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-sm);
    height: 45px;
    width: 150px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

#comment .submit:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

#comment .verify {
    position: relative;
}

#comment .verify .input {
    margin-right: 126px;
}

#comment .verify img {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: auto;
    cursor: pointer;
    border-radius: 2px;
}

/*两栏*/
.main {
    float: left;
    width: 74%;
    overflow: hidden;
}

.sidebar {
    width: 24%;
    float: right;
}

.widget {
    margin-bottom: 24px;
    overflow: hidden;
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.widget h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.125em;
    margin-bottom: 18px;
    color: var(--text-primary);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.widget h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--accent-color);
}

.widget li {
    border-top: 1px solid var(--border-color);
    overflow: hidden;
    font-size: 15px;
    position: relative;
    padding: 12px 0 12px 18px;
    transition: padding-left var(--transition);
}

.widget li:hover {
    padding-left: 24px;
}

.widget li:before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 21px;
    opacity: 0.4;
    transition: opacity var(--transition);
}

.widget li:hover:before {
    opacity: 1;
}

.widget li a {
    display: block;
    word-break: break-all;
    color: var(--text-secondary);
    transition: color var(--transition);
}

.widget li a:hover {
    color: var(--primary-color);
}

.widget .text time {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.widget .pic {
    padding: 12px 0;
    border-top: 1px solid var(--border-color);
}

.widget .pic:before {
    display: none;
}

.widget .pic .thumbnail {
    float: left;
    width: 100px;
    border-radius: var(--radius-sm);
}

.widget .pic p {
    margin-left: 110px;
    overflow: hidden;
}

.widget .pic a {
    display: block;
    font-size: 15px;
    line-height: 1.5em;
    max-height: 4.5em;
    overflow: hidden;
    color: var(--text-secondary);
}

.widget .pic a:hover {
    color: var(--primary-color);
}

.divTags ul {
    overflow: hidden;
    width: 102%;
}

.divTags li {
    float: left;
    padding: 5px 2% 5px 0;
    border: none;
}

.divTags li:before {
    display: none;
}

.divTags li a {
    display: block;
    background-color: var(--bg-page);
    border-radius: 20px;
    padding: 4px 14px;
    color: var(--text-secondary);
    font-size: 12px;
    transition: all var(--transition);
}

.divTags li a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.divTags li:nth-child(8n-7) a { background-color: #e8f4f8; color: var(--primary-color); }
.divTags li:nth-child(8n-6) a { background-color: #fef3e2; color: #c4891a; }
.divTags li:nth-child(8n-5) a { background-color: #e8f8f5; color: #2a9d8f; }
.divTags li:nth-child(8n-4) a { background-color: #fde8ec; color: #e63946; }
.divTags li:nth-child(8n-3) a { background-color: #f0e6f6; color: #7b2d8e; }
.divTags li:nth-child(8n-2) a { background-color: #fef9e7; color: #b8860b; }
.divTags li:nth-child(8n-1) a { background-color: #f0f0eb; color: #6b7b6e; }
.divTags li:nth-child(8n) a { background-color: #e6f2ee; color: #2d6a4f; }

.divTags li:first-child a { background-color: #fde8ec; color: #e63946; }
.divTags li:last-child a { background-color: #e8f4f8; color: var(--primary-color); }

.divLinkage li {
    float: left;
    width: 45%;
}

.divLinkage li a {
    color: var(--text-secondary);
    transition: color var(--transition);
}

.divLinkage li a:hover {
    color: var(--primary-color);
}

.divSearchPanel form {
    border: 1px solid var(--border-color);
    position: relative;
    padding-right: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.divSearchPanel input[type='submit'] {
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    height: 100%;
    width: 60px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-weight: 500;
}

.divSearchPanel input[type='text'] {
    text-indent: 5px;
    padding: 8px 0;
    font-size: 14px;
    font-family: 'Noto Sans SC', 'Microsoft Yahei', sans-serif;
    width: 100%;
}

.textwidget {
    overflow: hidden;
}

.textwidget a {
    display: block;
}

.textwidget img {
    display: block;
    width: 100%;
    height: auto;
}

.meeting-box{
    width: 100%;
    display: flex;
    height: auto;
    flex-wrap: wrap;
    justify-content:space-between;
}
.meeting-box .box{
    width: 45%;
    height: 100px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.meeting-box .box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.meeting-info{
    display: flex;
    justify-content: space-between;
}
.meeting-div{
    background: var(--bg-card);
    margin: 10px 0;
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.meeting-div .meeting-info{
    margin: 10px 0;
}

@media only screen and (max-width: 1536px) {
    .inner {
        width: 93.75%;
    }
}

@media only screen and (max-width: 1280px) {
    .main {
        width: 70%;
    }

    .sidebar {
        width: 28%;
    }

    .newsitem .thumbnail {
        width: 250px;
    }

    .newsitem .info {
        margin-left: 270px;
    }

    .newsitem h2 {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .newsitem time {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .newsitem p {
        font-size: 15px;
        height: 7em;
    }
}

@media only screen and (max-width: 960px) {
    .wrapper {
        margin-bottom: 0;
    }

    .header {
        border-bottom: 1px solid var(--border-color);
        padding: 15px 0;
    }

    .header::after {
        display: none;
    }

    .search {
        display: none;
        position: absolute;
        top: 50px;
        right: 0;
        width: 100%;
    }

    .searchForm {
        width: auto;
    }

    .schBtn {
        display: block;
    }

    .user-actions {
        display: none;
    }

    .mobile-user-links {
        display: list-item !important;
        border-top: 1px solid var(--border-color);
        margin-top: 10px;
        padding-top: 6px;
    }

    body.open {
        overflow: hidden;
        position: fixed;
        left: 0;
        top: 0;
    }

    .navBtn {
        width: 25px;
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -20px;
        height: 40px;
        cursor: pointer;
    }

    .navBtn span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--text-secondary);
        position: absolute;
        top: 50%;
        left: 0;
        margin-top: -1.5px;
        border-radius: 2px;
    }

    .navBtn span:before, .navBtn span:after {
        content: '';
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--text-secondary);
        position: absolute;
        left: 0;
        top: -9px;
        transition: transform .3s;
        border-radius: 2px;
    }

    .navBtn span:after {
        top: auto;
        bottom: -9px;
    }

    .navBtn.open span {
        height: 0;
    }

    .navBtn.open span:before {
        transform: rotate(45deg);
        top: 0;
    }

    .navBtn.open span:after {
        transform: rotate(-45deg);
        bottom: auto;
        top: 0;
    }

    .nav {
        position: fixed;
        right: -200px;
        top: 82px;
        height: 100%;
        width: 200px;
        background: var(--bg-card);
        overflow-y: auto;
        transition: right .3s;
        -webkit-overflow-scrolling: touch;
        border-top: 1px solid var(--border-color);
        border-left: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
        z-index: 9;
    }

    .nav.open {
        right: 0;
    }

    .nav .inner {
        width: auto;
    }

    .nav ul {
        padding-bottom: 106px;
    }

    .nav li {
        float: none;
        width: auto;
        text-align: left;
    }

    .nav li a {
        line-height: 26px;
        padding: 12px 2em 12px 1.5em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        color: var(--text-secondary);
    }

    .nav li a::after {
        display: none;
    }

    .nav li a:hover {
        background-color: transparent;
    }

    .nav li ul {
        position: static;
        left: auto;
        top: auto;
        width: auto;
        margin-left: 0;
        background-color: transparent;
        text-align: left;
        border: none;
        padding-bottom: 0;
        box-shadow: none;
        border-radius: 0;
        border-top: none;
    }

    .nav li ul.show {
        display: none;
    }

    .nav li ul.open {
        display: block;
    }

    .nav li li {
        font-size: 18px;
    }

    .nav li li a {
        line-height: 26px;
        padding: 12px 1.5em 12px 2.5em;
        border-bottom: none;
    }

    .nav li em {
        position: absolute;
        right: 0;
        top: 12px;
        width: 2em;
        height: 26px;
        display: block;
        cursor: pointer;
    }

    .nav li em:before {
        content: '';
        display: block;
        width: 9px;
        height: 9px;
        border-right: 1px solid var(--text-secondary);
        border-bottom: 1px solid var(--text-secondary);
        transition: transform .3s;
        position: absolute;
        left: 50%;
        top: 50%;
        margin-top: -6px;
        margin-left: -5px;
    }

    .nav li em.open:before {
        transform: rotate(45deg);
    }

    .pagenavi {
        padding-top: 20px;
    }

    .details .title {
        font-size: 24px;
    }

    .main {
        width: auto;
        float: none;
        margin-bottom: 0;
    }

    .sidebar {
        width: auto;
        float: none;
    }

    .widget h3 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 768px) {
    .postbottom {
        margin-left: 50px;
    }

    .boxpic {
        margin-bottom: 15px;
        padding: 15px;
    }

    .postpic {
        margin-bottom: 20px;
    }

    #footer .btm {
        padding: 10px 0;
    }

    .links {
        padding: 10px 0 5px;
    }

    .links ul {
        margin-left: 0;
        font-size: 0;
        line-height: normal;
    }

    .links li {
        float: none;
        display: inline-block;
        padding: 0 5px;
        font-size: 12px;
        line-height: 1.75em;
    }

    .copyright {
        float: none;
        line-height: 1.5em;
        font-size: 12px;
    }

    .header {
        padding: 5px 0;
    }

    .header .inner {
        height: 40px;
    }

    #topBar {
        padding: 0;
    }

    #logo {
        padding: 7px 0;
    }

    #logo a {
        height: 26px;
    }

    .navBtn {
        height: 30px;
        margin-top: -15px;
    }

    .nav {
        top: 55px;
    }

    .nav ul {
        padding-bottom: 80px;
    }

    .nav li, .nav li li {
        font-size: 16px;
    }

    .search {
        top: 47px;
    }

    .breadcrumb {
        margin-bottom: 15px;
    }

    .slides {
        padding: 0;
        margin-bottom: 15px;
        border-radius: var(--radius-md);
    }

    .slides .item i {
        font-size: 12px;
        line-height: 32px;
    }

    .slides .owl-nav span {
        font-size: 32px;
        width: 20px;
        height: 30px;
        line-height: 25px;
    }

    .hmBox {
        width: auto;
        flex-direction: column;
        gap: 15px;
    }

    .hmBox .boxWrap {
        width: 100%;
        float: none;
        padding-right: 0;
        padding-bottom: 0;
    }

    .hmBox .box {
        padding: 16px;
        border-radius: var(--radius-md);
    }

    .hmBox .thumbnail {
        width: 105px;
    }

    .hmBox .info {
        margin-left: 115px;
    }

    .hmBox .first h4 {
        margin-bottom: 5px;
        font-size: 16px;
    }

    .hmBox .first p {
        height: 3.5em;
    }

    .hmBox .list {
        padding-top: 10px;
        margin-top: 10px;
    }

    .hmBox h4 {
        font-size: 14px;
    }

    .istop {
        padding: 16px;
        padding-top: 20px;
        margin-bottom: 15px;
        border-radius: var(--radius-md);
    }

    .istop::before {
        left: 16px;
        right: 16px;
    }

    .istop li {
        width: calc(50% - 8px);
        padding-top: 3px;
        padding-bottom: 3px;
    }

    .istop li .thumbnail {
        margin-bottom: 5px;
    }

    .istop li h3 {
        line-height: 32px;
        font-size: 14px;
    }

    .related {
        margin-bottom: 5px;
    }

    .related li {
        width: 48%;
        padding-bottom: 10px;
    }

    .related li h3 {
        font-size: 14px;
    }

    .related li .thumbnail {
        margin-bottom: 5px;
    }

    .pagenavi {
        padding-top: 0;
        margin-bottom: 15px;
    }

    .newsitem {
        margin-bottom: 15px;
        padding: 10px;
    }

    .newsitem .thumbnail {
        width: 110px;
    }

    .newsitem .info {
        margin-left: 120px;
    }

    .newsitem h2 {
        font-size: 16px;
        white-space: normal;
        line-height: 1.75em;
    }

    .newsitem .meta {
        display: none;
    }

    .newsitem p {
        display: none;
    }

    .details {
        padding: 15px 10px;
        margin-bottom: 15px;
    }

    .details .title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .details .meta {
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .details .meta span {
        padding: 2px 7px;
        font-size: 12px;
    }

    .postnavi {
        padding: 5px 0 10px;
        font-size: 14px;
    }

    .entry {
        font-size: 16px;
    }

    .entry p, .entry ul, .entry ol, .entry h1, .entry h2, .entry h3, .entry h4, .entry h5, .entry h6, .entry hr {
        margin-bottom: 15px;
    }

    .entry blockquote {
        margin-bottom: 15px;
        padding: 15px 15px 0;
    }

    .tags {
        padding: 0;
        font-size: 14px;
        color: #888;
    }

    .tags a {
        color: #888;
    }

    .boxtitle {
        margin-bottom: 15px;
    }

    .commentlist {
        margin-bottom: 20px;
    }

    .commentlist li {
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .commentlist .avatar {
        width: 30px;
        height: 30px;
    }

    .commentlist .info {
        margin-left: 40px;
    }

    .commentlist .name {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .commentlist .replay a {
        color: #999;
    }

    .commentlist .text {
        font-size: 14px;
        line-height: 1.75em;
    }

    .commentlist li li {
        margin-top: 15px;
    }

    #comment label {
        font-size: 14px;
        height: 35px;
        line-height: 35px;
    }

    #comment .input {
        margin-left: 50px;
    }

    #comment .text, #comment textarea {
        padding: 7.5px 2%;
        width: 96%;
        font-size: 14px;
    }

    #comment textarea {
        height: 90px;
    }

    #comment .submit {
        margin-left: 50px;
        font-size: 14px;
        height: 37px;
        width: 100px;
    }

    #comment .verify .input {
        margin-right: 111px;
    }

    .error .title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .error .warning {
        font-size: 20px;
        margin-bottom: 25px;
        padding-bottom: 25px;
    }

    .widget {
        padding: 10px;
        margin-bottom: 15px;
    }

    .widget h3 {
        margin-bottom: 10px;
        line-height: 1.35em;
    }

    .widget li {
        padding: 5px 0 5px 15px;
        font-size: 14px;
    }

    .widget li:before {
        top: 15px;
    }

    .widget .pic {
        padding: 10px 0;
    }

    .divTags ul {
        width: auto;
    }

    .divTags li {
        padding: 5px 7px 2px 0;
    }

    .divTags li a {
        font-size: 12px;
    }

    .cead img {
        width: 100%;
        height: auto;
    }
}

.pcd_ad {
    display: block;
}

.mbd_ad {
    display: none
}

@media screen and (max-width: 768px) {
    .pcd_ad {
        display: none !important;
    }

    .mbd_ad {
        display: block !important;
        overflow: hidden;
    }
}

.ecomment {
    margin: 0;
    padding: 0;
}

.ecomment {
    margin-bottom: 12px;
    background: #FFFFEE;
    padding: 3px 8px;
    border-radius: 4px;
}

.ecommentauthor {
    float: left;
    color: #F96;
    font-weight: bold;
}

.ecommenttext {
    clear: left;
    margin: 0;
    padding: 0;
    text-align: left !important;
}

/* ========== 登录/注册页面样式 ========== */
#content-container {
    padding-top: 40px;
    padding-bottom: 40px;
    min-height: calc(100vh - 200px);
}

.user-section {
    max-width: 440px;
    margin: 0 auto;
}

.login-section {
    background: var(--bg-card);
    border-radius: var(--radius-lg, 16px);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

/* 登录/注册 Tab 切换 */
.logon-tab {
    text-align: center;
    margin-bottom: 28px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0;
}

.logon-tab a {
    display: inline-block;
    padding: 10px 28px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.25s ease;
}

.logon-tab a:hover {
    color: var(--primary-color);
}

.logon-tab a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    font-weight: 600;
}

/* 表单主体 */
.login-main {
    margin-top: 0;
}

.login-section .form-group {
    margin-bottom: 20px;
}

.login-section .control-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.login-section .control-label .required::after {
    content: ' *';
    color: var(--primary-color);
}

.login-section .form-control {
    width: 100%;
    height: 44px;
    padding: 8px 14px;
    font-size: 14px;
    color: var(--text-primary);
    background: var(--bg-page);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.25s ease;
    outline: none;
    box-shadow: none;
}

.login-section .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(214,51,132,0.1);
    background: #fff;
}

.login-section .form-control::placeholder {
    color: var(--text-muted);
}

.login-section .help-block {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* 按钮 */
.login-section .btn-primary {
    width: 100%;
    height: 46px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(214,51,132,0.25);
    letter-spacing: 1px;
}

.login-section .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    box-shadow: 0 6px 20px rgba(214,51,132,0.35);
    transform: translateY(-1px);
}

.login-section .btn-default {
    width: 100%;
    height: 46px;
    font-size: 15px;
    color: var(--text-secondary);
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.login-section .btn-default:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(214,51,132,0.04);
}

.login-section .btn-default.no-border {
    border: none;
}

.login-section .mt-3 {
    margin-top: 12px;
}

/* 记住登录 & 忘记密码 */
.login-section .checkbox {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.login-section .checkbox input[type="checkbox"] {
    accent-color: var(--primary-color);
}

.login-section .btn-forgot {
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.login-section .btn-forgot:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* 验证码输入组 */
.login-section .input-group {
    display: flex;
    align-items: stretch;
}

.login-section .input-group .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    flex: 1;
}

.login-section .input-group .btn-captcha {
    white-space: nowrap;
    padding: 0 18px;
    height: 44px;
    font-size: 14px;
    border-radius: 0 10px 10px 0;
    background: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.25s;
    display: flex;
    align-items: center;
}

.login-section .input-group .btn-captcha:hover {
    background: var(--primary-dark);
}

.login-section .input-group-btn {
    display: flex;
    align-items: center;
    /* 覆盖 bootstrap 的 width:1%，否则 flex 子项只有 1% 宽，验证码图会溢出 */
    width: auto;
    flex: none;
    padding: 0;
    border: none;
}

.login-section .input-group-btn img {
    height: 44px;
    width: auto;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
}

/* 密码重置弹窗 */
#resetpwdtpl .form-body {
    padding: 20px;
}

#resetpwdtpl .radio label {
    font-size: 14px;
    color: var(--text-primary);
}

#resetpwdtpl .radio input[type="radio"] {
    accent-color: var(--primary-color);
}

/* 手机端适配 */
@media (max-width: 960px) {
    .login-section {
        padding: 28px 20px 24px;
        margin: 0 12px;
        border-radius: 12px;
    }

    .logon-tab a {
        padding: 8px 20px;
        font-size: 15px;
    }

    .login-section .btn-primary,
    .login-section .btn-default {
        height: 42px;
        font-size: 15px;
    }
}
