/* 知识匹配页面样式 */

/* 按钮样式 */
.btn-primary, .btn-outline, .btn-sm {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 14px;
}

/* 知识匹配结果区域 */
.knowledge-match-section {
    padding: 40px 0 20px 0;
}

.match-header {
    margin-bottom: 30px;
}

.match-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.match-subtitle {
    color: var(--text-secondary);
    font-size: 14px;
}

.match-content {
    display: flex;
    gap: 30px;
}

/* 左侧主要内容 */
.knowledge-main {
    flex: 2;
}

/* 知识分类标签 */
.knowledge-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    background-color: var(--background-white);
    padding: 15px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.knowledge-tab {
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.knowledge-tab:hover {
    background-color: var(--background-light);
}

.knowledge-tab.active {
    background-color: var(--primary-color);
    color: white;
}

/* 知识部分通用样式 */
.knowledge-section {
    background-color: var(--background-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    padding: 20px;
}

.section-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.section-title i {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 10px;
}

.section-title h3 {
    margin: 0;
    flex: 1;
    font-size: 18px;
}

.view-more {
    font-size: 14px;
    color: var(--primary-color);
}

/* 常见问答 */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-question {
    padding: 15px;
    background-color: var(--background-light);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 15px;
    max-height: 500px;
}
.faq-answer ol,.faq-answer ul{
	padding: 0 15px 20px 15px;
}

.faq-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.faq-meta span {
    display: flex;
    align-items: center;
}

.faq-meta i {
    margin-right: 5px;
}

/* 文书范本 */
.template-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.template-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.template-header {
    padding: 15px;
    background-color: var(--background-light);
    display: flex;
    align-items: center;
    gap: 15px;
}

.template-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.template-title {
    margin: 0;
    font-size: 16px;
}

.template-content {
    padding: 15px;
}

.template-desc {
    margin-top: 0;
    color: var(--text-secondary);
}

.template-meta {
    display: flex;
    gap: 15px;
    margin: 10px 0;
    font-size: 14px;
    color: var(--text-light);
}

.template-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.template-action {
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: var(--transition);
}

.template-action.preview {
    background-color: var(--background-light);
    color: var(--text-primary);
}

.template-action.download {
    background-color: var(--primary-color);
    color: white;
}

.template-action.preview:hover {
    background-color: #e0e0e0;
}

.template-action.download:hover {
    background-color: var(--primary-dark);
}

/* 律师解读 */
.lawyer-analysis-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lawyer-analysis-item {
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.lawyer-analysis-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.lawyer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
}

.lawyer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
}

.lawyer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lawyer-details {
    text-align: center;
}

.lawyer-details h4 {
    margin: 0 0 5px;
    font-size: 16px;
}

.lawyer-details p {
    margin: 0;
    font-size: 12px;
    color: var(--text-light);
}

.analysis-content {
    flex: 1;
}

.analysis-content h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
}

.analysis-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.analysis-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.read-more {
    font-size: 14px;
    font-weight: 500;
}

/* 法律法规 */
.law-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.law-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background-color: var(--background-light);
    border-radius: var(--radius-sm);
}

.law-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.law-content {
    flex: 1;
}

.law-content h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
}

.law-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 14px;
}

.law-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 12px;
}

.law-status {
    background-color: var(--success-color);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.law-actions {
    display: flex;
    gap: 15px;
}

.law-action {
    font-size: 14px;
    color: var(--primary-color);
}

/* 案例解析 */
.case-analysis-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.case-analysis-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 15px;
}

.case-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.case-type {
    background-color: var(--primary-light);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.case-date {
    font-size: 14px;
    color: var(--text-light);
}

.case-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
}
.analysis-content .title-link,.case-title .title-link{
	font-size:16px;
}
.case-summary {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 16px;
}

.case-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.case-court {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.case-court i {
    margin-right: 5px;
}

/* 法律产品 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--secondary-color);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.product-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
}

.product-card h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
}

.product-price {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-price span {
    font-size: 14px;
    font-weight: normal;
    color: var(--text-light);
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: left;
}

.product-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.product-features i {
    color: var(--success-color);
    margin-right: 8px;
}

.buy-btn {
    display: block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.buy-btn:hover {
    background-color: var(--primary-dark);
    color: white;
}

/* 右侧边栏 */
.knowledge-sidebar {
    flex: 1;
}

.sidebar-section {
    background-color: var(--background-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    padding: 20px;
}

.sidebar-title {
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 18px;
}

/* 筛选器 */
.filter-group {
    margin-bottom: 20px;
}

.filter-group h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.filter-option input {
    margin-right: 10px;
}

.count {
    color: var(--text-light);
    font-size: 12px;
	padding-left:5px;
}

.filter-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.filter-actions button {
    flex: 1;
}

/* 律师推荐 */
.lawyer-recommend-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lawyer-recommend-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: var(--background-light);
    border-radius: var(--radius-sm);
}

.lawyer-recommend-item .lawyer-avatar {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 15px 0 0;
}

.online-status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--text-light);
    border: 2px solid white;
}

.online-status.online {
    background-color: var(--success-color);
}

.lawyer-recommend-item .lawyer-info {
    flex: 1;
    width: auto;
    align-items: flex-start;
    text-align: left;
}

.lawyer-specialty {
    font-size: 12px;
    color: var(--text-light);
    margin: 0 0 5px;
}

.lawyer-rating {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.lawyer-rating i {
    color: #ffc107;
    font-size: 12px;
}

.lawyer-rating span {
    margin-left: 5px;
    font-size: 12px;
    font-weight: bold;
}

.lawyer-cases {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
}

.lawyer-cases span {
    color: var(--primary-color);
    font-weight: bold;
}

.lawyer-actions {
    margin-left: 10px;
}

/* 相关问题 */
.related-questions-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.related-question-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.related-question-item:hover {
    background-color: var(--background-light);
}

.related-question-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 16px;
}

.related-question-item span {
    flex: 1;
    font-size: 16px;
}

.question-views {
    font-size: 12px;
    color: var(--text-light);
}

/* 相关服务 */
.related-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.service-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 15px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.service-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 10px;
}

.service-card h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 15px;
}

.service-price {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-price span {
    font-size: 12px;
    font-weight: normal;
    color: var(--text-light);
}

/* 相关案例 */
.related-cases-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.case-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 15px;
    transition: var(--transition);
}

.case-card:hover {
    box-shadow: var(--shadow-sm);
}

.case-card h4 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 16px;
}

.case-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
}

.case-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.case-link {
    font-size: 14px;
    font-weight: 500;
}

/* 标签页切换 */
.tab-section {
    padding: 40px 0;
    background-color: var(--background-light);
}

.tab-container {
    background-color: var(--background-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.tab-header {
    display: flex;
    background-color: var(--background-light);
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    padding: 15px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    flex: 1;
    text-align: center;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.tab-content {
    padding: 20px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* 知识卡片网格 */
.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.knowledge-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    position: relative;
    transition: var(--transition);
    background-color: var(--background-white);
}

.knowledge-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.knowledge-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.knowledge-type {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 14px;
}

.knowledge-type i {
    margin-right: 5px;
}

.knowledge-card h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
}

.knowledge-card p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 14px;
}

.knowledge-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 12px;
    color: var(--text-light);
}


/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 98;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}


/* 响应式设计 */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .match-content {
        flex-direction: column;
    }
    
    .knowledge-main, .knowledge-sidebar {
        flex: none;
        width: 100%;
    }
    
    .knowledge-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .search-title {
        font-size: 24px;
    }
    
    .search-form {
        flex-direction: column;
        box-shadow: none;
    }
    
    .search-input {
        border-radius: var(--radius-md);
        margin-bottom: 10px;
        box-shadow: var(--shadow-sm);
    }
    
    .search-btn {
        border-radius: var(--radius-md);
        padding: 12px;
    }
    
    .lawyer-analysis-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .lawyer-info {
        width: auto;
        margin-bottom: 15px;
    }
    
    .analysis-content {
        width: 100%;
    }
    
    .tab-header {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid var(--border-color);
    }
    
    .tab-btn.active {
        border-bottom: 1px solid var(--primary-color);
    }
    
    .knowledge-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top, .footer-nav, .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-social {
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }
    
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        width: 100%;
        justify-content: space-between;
    }
    
    .user-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .knowledge-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 10px;
    }
    
    .knowledge-tab {
        white-space: nowrap;
    }
    
    .section-title {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .view-more {
        margin-top: 10px;
    }
    
    .lawyer-recommend-item {
        flex-direction: column;
        text-align: center;
    }
    
    .lawyer-recommend-item .lawyer-avatar {
        margin: 0 auto 15px;
    }
    
    .lawyer-recommend-item .lawyer-info {
        align-items: center;
        text-align: center;
    }
    
    .lawyer-actions {
        margin-top: 15px;
        margin-left: 0;
    }
    
    
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* 打印样式 */
@media print {
    .header, .search-section, .knowledge-sidebar, .tab-section, .floating-consult, .back-to-top, .footer {
        display: none;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    .knowledge-main {
        width: 100%;
    }
    
    .knowledge-section {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .section-title {
        color: #000;
    }
    
    .view-more {
        display: none;
    }
    
    a {
        text-decoration: none;
        color: #000;
    }
    
    .faq-answer {
        max-height: none;
        padding: 15px;
    }
}

/* 匹配结果操作按钮 */
.match-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* 匹配结果标题组 */
.match-title-group {
    margin-right: auto;
}

.match-title {
    margin-bottom: 8px;
}

.match-subtitle {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 0;
}

.result-count {
    color: var(--primary-color);
    font-weight: 600;
}

.match-actions {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.action-btn {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.action-btn i {
    margin-right: 6px;
}

.action-btn:hover {
    background-color: var(--background-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.favorite-btn.active {
    background-color: #fff8e1;
    border-color: #ffc107;
    color: #ff9800;
}

.favorite-btn.active i {
    color: #ff9800;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .match-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .match-title-group {
        margin-bottom: 15px;
        width: 100%;
    }
    
    .match-actions {
        margin-left: 0;
        width: 100%;
        justify-content: space-between;
    }
    
    .action-btn {
        flex: 1;
        justify-content: center;
    }
}

/* 查看更多链接样式调整 */
.view-more {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 14px;
    transition: var(--transition);
}

.view-more i {
    margin-left: 5px;
}

.view-more:hover {
    color: var(--primary-dark);
    transform: translateX(3px);
}

/* 行政法规样式 */
.admin-regulations-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.regulation-item {
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 15px;
    transition: var(--transition);
}

.regulation-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.regulation-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: var(--text-primary);
}

.regulation-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-secondary);
}

.regulation-date i {
    margin-right: 5px;
    color: var(--primary-color);
}

.regulation-status {
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
}

.regulation-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.regulation-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.regulation-link:hover {
    color: var(--primary-dark);
}

.regulation-link:hover i {
    transform: translateX(3px);
}

/* 标题链接样式 */
.title-link {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.title-link:hover {
    color: var(--primary-color);
}