/* --- 认证服务专用：精致政务风列表样式 --- */

/* 分类切换导航 */
.new_title { 
    margin-bottom: 30px; 
    border-bottom: 2px solid #f2f2f2; 
    padding: 10px 0; 
    display: flex; 
    flex-wrap: wrap; 
    gap: 10px 8px;
    align-items: center;
    height: auto !important;
    overflow: visible !important;
    width: auto !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
}
.new_title a { 
    display: inline-block; 
    padding: 8px 20px; 
    font-size: 15px; 
    color: #555; 
    border-radius: 4px; 
    transition: all 0.3s;
    line-height: 1.5;
    white-space: nowrap;
    flex: none !important;
    height: auto !important;
    min-width: auto !important;
    text-align: left !important;
    background: transparent !important;
    position: static !important;
}
.new_title a::after {
    display: none !important;
}
.new_title a:hover {
    background: #f0f7ff !important;
    color: #0a69fb !important;
    flex: none !important;
}
.new_title a.currclass { 
    background: #0a69fb !important; 
    color: #fff !important; 
    font-weight: bold; 
    flex: none !important;
    overflow: visible !important;
}

/* 列表网格系统 */
.jigou-row { display: flex; flex-wrap: wrap; margin: 0 -12px; }
.jigou-col { width: 33.333%; padding: 12px; box-sizing: border-box; display: flex; }

/* 核心卡片样式（参考您认可的风格） */
.rz-card {
    flex: 1;
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 8px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.rz-card:hover {
    box-shadow: 0 12px 30px rgba(0, 51, 153, 0.1); /* 蓝色调投影 */
    border-color: #ff6600; /* 悬停变橙色边框 */
    transform: translateY(-6px);
}

/* 标题与装饰线 */
.rz-name { 
    font-size: 19px; 
    color: #333; 
    font-weight: bold; 
    margin-bottom: 12px; 
    transition: color 0.3s;
}
.rz-card:hover .rz-name { color: #0a69fb; }

.rz-line { 
    width: 35px; height: 3px; background: #e0e0e0; 
    margin-bottom: 20px; transition: all 0.4s; 
}
.rz-card:hover .rz-line { width: 70px; background: #ff6600; }

/* 精致信息列表 */
.jigou-info-list { list-style: none; padding: 0; margin: 0; }
.jigou-info-list li { 
    display: flex; align-items: center; 
    margin-bottom: 14px; color: #666; font-size: 14.5px; 
}

/* 图标底座设计 */
.jigou-info-list li i {
    width: 32px; height: 32px;
    background-color: #f0f4fa; /* 浅蓝底座 */
    color: #0a69fb;           /* 标志性深蓝 */
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 6px; margin-right: 12px;
    font-size: 16px; flex-shrink: 0;
    transition: all 0.3s;
}

/* 悬停时图标反白效果 */
.rz-card:hover .jigou-info-list li i {
    background-color: #0a69fb;
    color: #fff;
}

/* --- 详情页表格美化 --- */
.rz-detail-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    border: 1px solid #eef2f7;
}

.rz-detail-table td {
    padding: 15px 20px;
	border: 1px solid #f0f4fa;
}

.rz-label {
    background: #f8faff;
    width: 120px;
    color: #666;
    font-weight: bold;
}

.rz-content {
    color: #333;
}

.rz-content strong {
    color: #0a69fb;
    font-size: 18px;
}

/* --- 认证服务专用：详情页留言样式 --- */
/* 表单容器 */
.guestbook-box {
    margin-top: 50px;
    padding: 30px;
    background: #f8faff;
    border-radius: 12px;
}

.gb-title {
    font-size: 20px;
    color: #0a69fb;
    font-weight: bold;
    margin-bottom: 25px;
    border-left: 5px solid #ff6600;
    padding-left: 15px;
}

/* 每一行表单项 */
.gb-item {
    margin-bottom: 20px;
}

.gb-item label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

/* 针对易优生成的 input 和 textarea 进行统一 */
.gb-form input, .gb-form textarea {
    width: 100%;
    border: 1px solid #d1d9e6;
    padding: 10px;
    border-radius: 4px;
    margin-top: 5px;
	box-sizing: border-box;
	font-family: inherit;
}


/* 提交按钮 */
.gb-submit {
    background: #0a69fb;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
}

.gb-submit:hover {
    background: #ff6600;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.2);
}

/* --- 认证服务专用：搜索样式 --- */
/* 搜索框容器 */
.rz-search-box {
    margin-bottom: 40px;
    background: #f8faff;
    padding: 25px;
    border-radius: 12px;
}

.search-input-group {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #e1e8f5;
    border-radius: 8px;
    padding: 5px 15px;
    transition: all 0.3s;
}

.search-input-group:focus-within {
    border-color: #0a69fb; /* 聚焦时变政务蓝 */
    box-shadow: 0 0 8px rgba(0, 51, 153, 0.1);
}

.search-input-group i { color: #999; font-size: 20px; }

.search-input-group input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 15px;
    font-size: 15px;
    color: #333;
}

.search-input-group button {
    background: #0a69fb;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.search-input-group button:hover {
    background: #ff6600; /* 悬停变橙色，与您的主视觉呼应 */
}

/* 验证码布局微调 */
.vertify-flex {
    display: flex;
    align-items: center;
    gap: 10px; /* 元素间距 */
    margin-top: 5px;
}

.v-input {
    flex: 1; /* 输入框占据剩余空间 */
}

.v-img {
    cursor: pointer;
    height: 40px; /* 与输入框高度匹配 */
    border-radius: 4px;
    border: 1px solid #d1d9e6;
}

.v-link {
    font-size: 13px;
    color: #0a69fb;
    text-decoration: none;
    white-space: nowrap;
}

.v-link:hover {
    color: #ff6600;
}
/* --- 计量校准详情页内容换行专用 */
/* 多行文本展开样式 */
.expand-text {
    line-height: 1.8;           /* 增加行高，提升阅读舒适度 */
    color: #444;                /* 正文深灰色 */
    font-size: 14.5px;
    padding: 8px 0;
    word-break: break-all;      /* 强制长数字或英文换行 */
    white-space: pre-line;      /* 核心：保留换行符逻辑 */
}

/* 针对计量参数中的重点项加粗显色 */
.expand-text b, .expand-text strong {
    color: #003399;
    margin-top: 5px;
    display: inline-block;
}

/* 优化表格左侧标签在多行内容下的对齐方式 */
.rz-detail-table td.rz-label {
    vertical-align: top;        /* 顶部对齐，方便多行内容展示 */
    padding-top: 15px;          /* 与右侧文字对齐 */
    background-color: #f9fbff;  /* 淡淡的政务蓝背景 */
    font-weight: 600;
}

/* 列表页卡片信息项对齐优化 */
.jigou-info-list li {
    display: flex;
    align-items: flex-start; /* 确保图标对齐首行文字 */
    margin-bottom: 12px;
}

.jigou-info-list li i {
    margin-top: 3px; /* 微调图标位置，与首行文字对齐 */
    flex-shrink: 0;
}

.info-content {
    margin-left: 5px;
    line-height: 1.6;
    font-size: 14px;
}

.info-content strong {
    color: #666;
    font-weight: 600;
}
/* --- 计量校准列表页内容换行专用 列表---*/
/* 列表页计量能力换行样式 */
.list-expand-text {
    display: block;
    color: #333;
    white-space: pre-line; /* 配合 nl2br */
    margin-top: 4px;
    /* 限制最大显示，防止个别项目内容过长撑破布局（可选） */
    max-height: 120px;
    overflow-y: auto;
    padding-left: 15px;
	position: relative;
}
/* 针对第一行 */
.list-expand-text::before {
    position: absolute;
    left: 0;
    color: #0a69fb; /* 圆点颜色，建议用您的政务蓝 */
    font-size: 10px;
    top: 0;
}

/* 详情页同样适用（如果详情页也需要） */
.expand-text {
    padding-left: 18px;
    position: relative;
    white-space: pre-line;
}

.expand-text::before {
    position: absolute;
    left: 0;
    color: #0a69fb;
    font-size: 10px;
    top: 0;
}

/* 滚动条美化（如果内容过多出现滚动条） */
.list-expand-text::-webkit-scrollbar {
    width: 4px;
}
.list-expand-text::-webkit-scrollbar-thumb {
    background: #e1e8f5;
    border-radius: 2px;
}