
/* =========================================================
   1. 全局基础
   ========================================================= */
:root{
  --kyyw-blue:#155efb;
  --kyyw-blue-dark:#0b3d91;
  --kyyw-blue-deep:#082f6f;
  --kyyw-red:#c82027;
  --kyyw-text:#26374d;
  --kyyw-muted:#65758b;
  --kyyw-light:#f3f6fa;
  --kyyw-border:#d9e3ef;
  --kyyw-border-light:#e8edf4;
  --kyyw-white:#fff;
  --kyyw-shadow:0 8px 24px rgba(11,61,145,.08);
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  font-size:16px;
  -webkit-text-size-adjust:100%;
}

body{
  margin:0;
  overflow-x:hidden;
  background:#eef3f8;
  color:var(--kyyw-text);
  font-family:"Microsoft YaHei","PingFang SC","Helvetica Neue",Arial,sans-serif;
  font-size:16px;
  line-height:1.7;
}

a{
  color:inherit;
  text-decoration:none;
}

a:hover{
  color:var(--kyyw-blue);
}

img{
  display:block;
  max-width:100%;
  height:auto;
}

ul,
ol{
  margin:0;
  padding:0;
  list-style:none;
}

h1,
h2,
h3,
h4,
p{
  margin-top:0;
}

button,
input,
select,
textarea{
  font-family:inherit;
}

.container{
  width:1200px;
  max-width:calc(100% - 32px);
  margin:0 auto;
}

.clearfix::after{
  content:"";
  display:block;
  clear:both;
}

.hide{
  display:none!important;
}

.official-card,
.card{
  background:#fff;
  border:1px solid var(--kyyw-border);
  box-shadow:0 2px 8px rgba(15,23,42,.035);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:10px 22px;
  border:1px solid transparent;
  border-radius:2px;
  font-size:15px;
  font-weight:600;
  line-height:1.4;
  transition:.2s ease;
}

.btn-official,
.btn-primary{
  border-color:#fff;
  background:#fff;
  color:var(--kyyw-blue-dark);
}

.btn-official:hover,
.btn-primary:hover{
  background:#eaf2ff;
  color:var(--kyyw-blue-dark);
}

.btn-official-light,
.btn-outline{
  border-color:rgba(255,255,255,.7);
  background:rgba(255,255,255,.08);
  color:#fff;
}

.btn-official-light:hover,
.btn-outline:hover{
  border-color:#fff;
  background:#fff;
  color:var(--kyyw-blue-dark);
}

/* =========================================================
   2. 公共头部：规范信息门户风格
   对应 temp.header 中的 gov-* 类名
   ========================================================= */
.gov-header{
  position:relative;
  z-index:100;
  background:#fff;
  color:#17365d;
}

.gov-topbar{
  border-bottom:1px solid #dfe6ef;
  background:#f4f6f9;
  color:#52677f;
  font-size:13px;
}

.gov-topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  min-height:38px;
}

.gov-topbar-left{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.gov-topbar-right{
  display:flex;
  flex:0 0 auto;
  align-items:center;
  gap:10px;
  white-space:nowrap;
}

.gov-topbar-right a{
  color:#52677f;
}

.gov-topbar-right a:hover{
  color:var(--kyyw-blue-dark);
}

.gov-topbar-right span{
  color:#b9c4d0;
}

.gov-topline{
  height:5px;
  background:linear-gradient(90deg,var(--kyyw-red) 0,var(--kyyw-red) 9%,var(--kyyw-blue-dark) 9%,var(--kyyw-blue-dark) 100%);
}

.gov-header-main{
  border-bottom:1px solid #e1e8f0;
  background:#fff;
}

.gov-header-main-inner{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:36px;
  min-height:168px;
  padding:26px 0;
}

.gov-brand{
  display:flex;
  min-width:0;
  flex:1 1 auto;
  align-items:center;
  gap:20px;
  color:inherit;
}

.gov-brand:hover{
  color:inherit;
}

.gov-brand img{
  flex:0 0 112px;
  width:112px;
  height:112px;
  padding:8px;
  border:1px solid #d7e2ed;
  border-radius:14px;
  background:#fff;
  object-fit:contain;
}

.gov-brand-text{
  min-width:0;
}

.gov-brand-text h1{
  margin:0;
  color:#082f6f;
  font-size:37px;
  font-weight:800;
  line-height:1.25;
  letter-spacing:1.2px;
  white-space:nowrap;
}

.gov-brand-text p{
  margin:12px 0 0;
  color:var(--kyyw-blue-dark);
  font-size:17px;
  font-weight:600;
  line-height:1.7;
  letter-spacing:.2px;
  white-space:nowrap;
}

.gov-header-tools{
  display:flex;
  flex:0 0 430px;
  flex-direction:column;
  align-items:flex-end;
  gap:14px;
}

.gov-quick-entry{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
}

.gov-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:112px;
  height:40px;
  padding:0 16px;
  border:1px solid #c7d7e9;
  border-radius:2px;
  background:#fff;
  color:var(--kyyw-blue-dark);
  font-size:14px;
  font-weight:600;
  line-height:38px;
  transition:border-color .2s ease,background .2s ease,color .2s ease;
}

.gov-btn:hover{
  border-color:var(--kyyw-blue-dark);
  color:var(--kyyw-blue-dark);
}

.gov-btn-primary{
  border-color:var(--kyyw-blue-dark);
  background:var(--kyyw-blue-dark);
  color:#fff;
}

.gov-btn-primary:hover{
  border-color:var(--kyyw-blue-deep);
  background:var(--kyyw-blue-deep);
  color:#fff;
}

.gov-btn-light{
  background:#f8fbff;
}

.gov-search{
  display:flex;
  width:430px;
  height:42px;
  margin:0;
  align-items:center;
}

.gov-search-label{
  flex:0 0 auto;
  margin-right:9px;
  color:#35577f;
  font-size:14px;
  font-weight:600;
  white-space:nowrap;
}

.gov-search-input{
  flex:1 1 auto;
  min-width:0;
  height:42px;
  padding:0 13px;
  border:1px solid #b9cce2;
  border-right:0;
  border-radius:0;
  outline:0;
  background:#fff;
  color:#263f5d;
  font-size:14px;
}

.gov-search-input::placeholder{
  color:#8796a8;
}

.gov-search-input:focus{
  border-color:var(--kyyw-blue-dark);
  box-shadow:inset 0 0 0 1px var(--kyyw-blue-dark);
}

.gov-search-btn{
  flex:0 0 76px;
  width:76px;
  height:42px;
  padding:0;
  border:1px solid var(--kyyw-blue-dark);
  border-radius:0;
  background:var(--kyyw-blue-dark);
  color:#fff;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
}

.gov-search-btn:hover{
  border-color:var(--kyyw-blue-deep);
  background:var(--kyyw-blue-deep);
}

.gov-nav-toggle{
  display:none;
  flex:0 0 42px;
  width:42px;
  height:40px;
  padding:0;
  border:1px solid #c9d6e6;
  border-radius:3px;
  background:#fff;
  cursor:pointer;
}

.gov-nav-toggle span{
  display:block;
  width:20px;
  height:2px;
  margin:5px auto;
  background:var(--kyyw-blue-dark);
  transition:transform .2s ease,opacity .2s ease;
}

.gov-nav-toggle.is-active span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.gov-nav-toggle.is-active span:nth-child(2){
  opacity:0;
}

.gov-nav-toggle.is-active span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

.gov-main-nav{
  position:relative;
  z-index:101;
  background:var(--kyyw-blue-dark);
  box-shadow:0 5px 14px rgba(8,47,111,.16);
}

.gov-main-nav-list{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
}

.gov-main-nav-list > li{
  position:relative;
}

.gov-main-nav-list > li > a{
  display:block;
  height:62px;
  padding:0 30px;
  color:#fff;
  font-size:17px;
  font-weight:700;
  line-height:62px;
  text-align:center;
  white-space:nowrap;
  transition:background .2s ease;
}

.gov-main-nav-list > li > a:hover,
.gov-main-nav-list > li.active > a{
  background:#0a347d;
  color:#fff;
}

.gov-main-nav-list > li.nav-highlight > a{
  background:#b51f2b;
}

.gov-main-nav-list > li.nav-highlight > a:hover{
  background:#9f1823;
}

.gov-nav-sub{
  display:none;
  position:absolute;
  top:62px;
  left:0;
  z-index:120;
  min-width:210px;
  padding:7px 0;
  border:1px solid #d5e2f3;
  border-top:0;
  background:#fff;
  box-shadow:0 14px 30px rgba(11,61,145,.17);
}

.gov-main-nav-list > li:hover > .gov-nav-sub{
  display:block;
}

.gov-nav-sub a{
  display:block;
  height:42px;
  padding:0 18px;
  border-bottom:1px solid #edf1f6;
  color:#334b67;
  font-size:14px;
  font-weight:400;
  line-height:42px;
  white-space:nowrap;
}

.gov-nav-sub a:hover{
  background:#f2f7ff;
  color:var(--kyyw-blue-dark);
}

.sr-only{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  padding:0!important;
  margin:-1px!important;
  overflow:hidden!important;
  clip:rect(0,0,0,0)!important;
  white-space:nowrap!important;
  border:0!important;
}

/* =========================================================
   4. 首页统一模块标题
   ========================================================= */
.authority-home{
  background:#eef3f8;
}

.platform-main{
  padding-top:24px;
  padding-bottom:12px;
}

.platform-section{
  margin-top:24px;
}

.section-head.official-head,
.section-head-v3{
  position:relative;
  display:flex;
  align-items:center;
  min-height:55px;
  padding:0 18px;
  border:1px solid var(--kyyw-border);
  border-top:4px solid var(--kyyw-blue-dark);
  border-bottom:2px solid var(--kyyw-blue-dark);
  background:#fff;
}

.section-head.official-head::before,
.section-head-v3::before{
  content:"";
  width:5px;
  height:34px;
  margin-right:13px;
  background:var(--kyyw-red);
}

.section-head.official-head h2,
.section-head-v3 h2{
  margin:0;
  color:#083875;
  font-size:22px;
  font-weight:700;
  line-height:1.4;
}

.section-head.official-head > span,
.section-head-v3 > span{
  margin-left:13px;
  color:#8999b3;
  font-size:13px;
  font-weight:400;
  line-height:1.4;
  letter-spacing:.4px;
  text-transform:uppercase;
}

.section-head.official-head > a,
.section-head-v3 > a{
  margin-left:auto;
  color:var(--kyyw-blue-dark);
  font-size:13px;
}

.section-head.official-head > a:hover,
.section-head-v3 > a:hover{
  color:var(--kyyw-blue);
}

.card-title-line,
.panel-head-v4{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:52px;
  padding:0 17px;
  border-bottom:1px solid var(--kyyw-border-light);
  background:#fff;
}

.card-title-line h2,
.panel-head-v4 h2{
  position:relative;
  margin:0;
  padding-left:13px;
  color:#0a3a78;
  font-size:19px;
  font-weight:700;
  line-height:1.45;
}

.card-title-line h2::before,
.panel-head-v4 h2::before{
  content:"";
  position:absolute;
  top:50%;
  left:0;
  width:4px;
  height:28px;
  background:var(--kyyw-blue-dark);
  transform:translateY(-50%);
}

.card-title-line > a,
.panel-head-v4 > a{
  color:#6d7d91;
  font-size:13px;
}

/* =========================================================
   5. 首页首屏
   ========================================================= */
.home-focus-v4{
  padding:18px 0 0;
  border-bottom:1px solid #dbe4f0;
  background:linear-gradient(180deg,#eaf2ff 0,#f5f8fd 56%,#eef3f8 100%);
}

.home-ticker-v4{
  display:flex;
  align-items:center;
  min-height:46px;
  overflow:hidden;
  border:1px solid var(--kyyw-border);
  border-left:5px solid var(--kyyw-red);
  background:#fff;
}

.ticker-label-v4{
  display:flex;
  flex:0 0 105px;
  align-items:center;
  align-self:stretch;
  justify-content:center;
  background:#f7f9fc;
  color:#143c70;
  font-size:15px;
  font-weight:700;
}

.ticker-list-v4{
  flex:1;
  min-width:0;
  padding:0 16px;
}

.ticker-list-v4 a{
  display:block;
  overflow:hidden;
  color:#344d69;
  font-size:15px;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.ticker-more-v4{
  flex:0 0 auto;
  margin-right:16px;
  color:var(--kyyw-blue-dark);
  font-size:13px;
}

.focus-grid-v4{
  display:grid;
  grid-template-columns:minmax(0,1.12fr) minmax(410px,.88fr);
  gap:20px;
  padding:18px 0 25px;
}

.focus-main-v4{
  position:relative;
  overflow:hidden;
  min-height:330px;
  padding:44px 42px;
  border-top:6px solid var(--kyyw-red);
  background:linear-gradient(135deg,#0b3d91 0,#082f6f 75%,#155efb 100%);
  color:#fff;
}

.focus-main-v4::after{
  content:"";
  position:absolute;
  right:-90px;
  bottom:-120px;
  width:330px;
  height:330px;
  border:48px solid rgba(255,255,255,.075);
  border-radius:50%;
}

.focus-kicker-v4{
  position:relative;
  z-index:2;
  margin-bottom:13px;
  color:#d9e8ff;
  font-size:15px;
  letter-spacing:4px;
}

.focus-main-v4 h1{
  position:relative;
  z-index:2;
  margin:0;
  color:#fff;
  font-size:38px;
  font-weight:800;
  line-height:1.35;
  letter-spacing:1px;
}

.focus-main-v4 p{
  position:relative;
  z-index:2;
  margin:20px 0 28px;
  color:#e8f1ff;
  font-size:17px;
  line-height:1.9;
}

.focus-actions-v4{
  position:relative;
  z-index:2;
  display:flex;
  flex-wrap:wrap;
  gap:11px;
}

.focus-news-v4{
  min-height:330px;
  border-top:5px solid var(--kyyw-blue-dark);
  background:#fff;
}

.focus-news-v4 ul{
  padding:9px 18px 12px;
}

.focus-news-v4 li{
  display:flex;
  align-items:center;
  gap:14px;
  min-height:33px;
  border-bottom:1px dashed #e1e8f0;
}

.focus-news-v4 li:last-child{
  border-bottom:0;
}

.focus-news-v4 li::before{
  content:"";
  flex:0 0 5px;
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--kyyw-blue-dark);
}

.focus-news-v4 li a{
  flex:1;
  min-width:0;
  overflow:hidden;
  color:#344d67;
  font-size:15px;
  line-height:1.6;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.focus-news-v4 li time{
  flex:0 0 auto;
  color:#98a4b3;
  font-size:13px;
}

/* =========================================================
   6. 信息公开
   ========================================================= */
.info-grid-v3{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  padding:18px;
  border:1px solid var(--kyyw-border);
  border-top:0;
  background:#f8fafc;
}

.news-card-v3{
  min-width:0;
}

.official-news-list{
  padding:9px 17px 14px;
}

.official-news-list li{
  display:flex;
  align-items:center;
  gap:10px;
  min-height:39px;
  border-bottom:1px dashed #e1e7ef;
}

.official-news-list li:last-child{
  border-bottom:0;
}

.official-news-list li::before{
  content:"";
  flex:0 0 5px;
  width:5px;
  height:5px;
  border-radius:50%;
  background:#7891b3;
}

.official-news-list a{
  flex:1;
  min-width:0;
  overflow:hidden;
  color:#354e69;
  font-size:15px;
  line-height:1.65;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.official-news-list time{
  flex:0 0 auto;
  color:#9aa6b5;
  font-size:13px;
}

/* =========================================================
   7. 服务事项
   ========================================================= */
.service-hall{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  border-right:1px solid var(--kyyw-border);
  border-bottom:1px solid var(--kyyw-border);
  background:#fff;
}

.service-hall-item{
  position:relative;
  min-height:138px;
  padding:25px 20px 22px 78px;
  border-top:1px solid var(--kyyw-border);
  border-left:1px solid var(--kyyw-border);
  background:#fff;
  transition:.2s ease;
}

.service-hall-item b{
  position:absolute;
  top:26px;
  left:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:50%;
  background:#edf4ff;
  color:var(--kyyw-blue-dark);
  font-size:16px;
  font-weight:700;
}

.service-hall-item strong{
  display:block;
  margin-bottom:8px;
  color:#123d73;
  font-size:18px;
  font-weight:700;
  line-height:1.5;
}

.service-hall-item span{
  display:block;
  color:#65758a;
  font-size:14px;
  line-height:1.75;
}

.service-hall-item:hover{
  background:#f7faff;
  box-shadow:inset 0 4px 0 var(--kyyw-red);
}

.service-hall-item:hover strong{
  color:var(--kyyw-blue);
}

/* =========================================================
   8. 首页资源协作：最终三栏
   仅调用工程师、服务机构、设备配件
   ========================================================= */
.kyyw-home-resource{
  border:1px solid var(--kyyw-border);
  border-top:0;
  background:#fff;
}

.kyyw-home-resource-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  padding:18px;
  background:#f8fafc;
}

.kyyw-home-resource-card{
  min-width:0;
  overflow:hidden;
  border:1px solid var(--kyyw-border);
  border-top:4px solid var(--kyyw-blue-dark);
  background:#fff;
  box-shadow:0 4px 14px rgba(11,61,145,.04);
  transition:.2s ease;
}

.kyyw-home-resource-card:hover{
  transform:translateY(-2px);
  border-top-color:var(--kyyw-red);
  box-shadow:var(--kyyw-shadow);
}

.kyyw-home-resource-card-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  min-height:55px;
  padding:0 18px;
  border-bottom:1px solid var(--kyyw-border-light);
}

.kyyw-home-resource-card-head h3{
  position:relative;
  min-width:0;
  margin:0;
  padding-left:13px;
  font-size:19px;
  font-weight:700;
  line-height:1.45;
}

.kyyw-home-resource-card-head h3::before{
  content:"";
  position:absolute;
  top:50%;
  left:0;
  width:4px;
  height:30px;
  background:var(--kyyw-blue);
  transform:translateY(-50%);
}

.kyyw-home-resource-card-head h3 a{
  display:block;
  overflow:hidden;
  color:#093a78;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.kyyw-home-resource-card-head > a{
  flex:0 0 auto;
  color:#6e7e92;
  font-size:13px;
}

.kyyw-home-resource-list{
  min-height:188px;
  padding:9px 17px 12px;
}

.kyyw-home-resource-list li{
  display:flex;
  align-items:center;
  gap:9px;
  min-height:42px;
  border-bottom:1px dashed #e1e8f0;
}

.kyyw-home-resource-list li:last-child{
  border-bottom:0;
}

.kyyw-home-resource-tag{
  flex:0 0 auto;
  min-width:42px;
  padding:3px 7px;
  border:1px solid #dce9fb;
  border-radius:2px;
  background:#eef5ff;
  color:#174e96;
  font-size:13px;
  line-height:1.5;
  text-align:center;
}

.kyyw-home-resource-list li > a{
  flex:1;
  min-width:0;
  overflow:hidden;
  color:#344e69;
  font-size:15px;
  line-height:1.7;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.kyyw-home-resource-list time{
  flex:0 0 auto;
  color:#9aa6b5;
  font-size:13px;
}

.kyyw-home-resource-empty{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-height:155px!important;
  border-bottom:0!important;
  color:#8391a2;
  font-size:14px;
  text-align:center;
}

.kyyw-home-resource-note{
  padding:13px 18px;
  border-top:1px solid var(--kyyw-border);
  background:#fff;
  color:#64758a;
  font-size:14px;
  line-height:1.8;
}

.kyyw-home-resource-note strong{
  color:#37526f;
}

/* =========================================================
   9. 专题专区：静态四张卡片
   ========================================================= */
.topic-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  padding:18px;
  border:1px solid var(--kyyw-border);
  border-top:0;
  background:#f8fafc;
}

.topic-grid a{
  position:relative;
  min-height:148px;
  padding:25px 20px 20px;
  overflow:hidden;
  border:1px solid var(--kyyw-border);
  border-top:4px solid var(--kyyw-blue-dark);
  background:linear-gradient(180deg,#f8fbff 0,#fff 72%);
  transition:.22s ease;
}

.topic-grid a::after{
  content:"→";
  position:absolute;
  right:18px;
  bottom:15px;
  color:#9db0c9;
  font-size:20px;
  transition:.2s ease;
}

.topic-grid a strong{
  display:block;
  margin-bottom:11px;
  color:#103d75;
  font-size:18px;
  font-weight:700;
  line-height:1.5;
}

.topic-grid a span{
  display:block;
  padding-right:16px;
  color:#65758a;
  font-size:14px;
  line-height:1.75;
}

.topic-grid a:hover{
  transform:translateY(-3px);
  border-top-color:var(--kyyw-red);
  box-shadow:var(--kyyw-shadow);
}

.topic-grid a:hover::after{
  right:14px;
  color:var(--kyyw-blue);
}

/* =========================================================
   10. 常用内页基础样式
   ========================================================= */
.breadcrumb{
  border-bottom:1px solid var(--kyyw-border);
  background:#fff;
}

.breadcrumb .container{
  display:flex;
  align-items:center;
  min-height:44px;
  color:#66758a;
  font-size:14px;
}

.page-wrap{
  display:grid;
  grid-template-columns:260px minmax(0,1fr);
  gap:22px;
  margin-top:22px;
  margin-bottom:34px;
}

.sidebar{
  align-self:start;
  border:1px solid var(--kyyw-border);
  background:#fff;
}

.sidebar-title{
  display:flex;
  align-items:center;
  min-height:54px;
  padding:0 18px;
  background:var(--kyyw-blue-dark);
  color:#fff;
  font-size:18px;
  font-weight:700;
}

.sidebar-menu a{
  display:block;
  padding:14px 18px;
  border-bottom:1px solid #edf1f6;
  color:#354b64;
}

.sidebar-menu a:hover,
.sidebar-menu .active a{
  background:#f3f7fd;
  color:var(--kyyw-blue);
}

.main-card{
  min-width:0;
  min-height:500px;
  border:1px solid var(--kyyw-border);
  background:#fff;
}

.page-title{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:18px 22px;
  border-bottom:1px solid var(--kyyw-border);
}

.page-title h1,
.page-title h2{
  margin:0;
  color:#103b70;
  font-size:24px;
  line-height:1.45;
}

.page-title span{
  color:#98a4b3;
  font-size:14px;
}

.list-body{
  padding:7px 22px 22px;
}

.article-list-item{
  display:flex;
  gap:15px;
  padding:18px 0;
  border-bottom:1px dashed #dce4ed;
}

.article-list-date{
  flex:0 0 72px;
  width:72px;
  height:64px;
  border:1px solid #dce5f0;
  text-align:center;
}

.article-list-date strong{
  display:block;
  height:38px;
  background:#f2f6fc;
  color:var(--kyyw-blue-dark);
  font-size:23px;
  line-height:38px;
}

.article-list-date span{
  display:block;
  color:#6f7e91;
  font-size:12px;
  line-height:25px;
}

.article-list-copy{
  min-width:0;
}

.article-list-copy h3{
  margin:0 0 7px;
  color:#2c4057;
  font-size:18px;
  font-weight:600;
  line-height:1.6;
}

.article-list-copy p{
  margin:0;
  color:#67778a;
  font-size:14px;
  line-height:1.75;
}

.article-list-meta{
  margin-top:7px;
  color:#99a5b3;
  font-size:13px;
}

.pagination{
  padding:20px 22px 26px;
  color:#66758a;
  text-align:center;
}

.pagination a,
.pagination b{
  display:inline-block;
  min-width:34px;
  height:34px;
  margin:3px;
  border:1px solid #dce5ef;
  background:#fff;
  line-height:32px;
}

.pagination b,
.pagination a:hover{
  border-color:var(--kyyw-blue);
  background:var(--kyyw-blue);
  color:#fff;
}

.article{
  padding:30px 38px 38px;
}

.article h1.article-title{
  margin:0 0 17px;
  color:#17283d;
  font-size:30px;
  font-weight:700;
  line-height:1.5;
  text-align:center;
}

.article-meta{
  margin-bottom:25px;
  padding:10px;
  border:1px solid #e8edf3;
  background:#f7f9fc;
  color:#6b7b8e;
  font-size:14px;
  text-align:center;
}

.article-meta span{
  margin:0 9px;
}

.article-summary{
  margin-bottom:24px;
  padding:14px 18px;
  border-left:4px solid var(--kyyw-blue);
  background:#f5f9ff;
  color:#4e6177;
}

.article-body{
  color:#263a50;
  font-size:17px;
  line-height:2;
  word-break:break-word;
}

.article-body p{
  margin:0 0 1.05em;
}

.article-body h2{
  margin:29px 0 15px;
  padding-left:12px;
  border-left:4px solid var(--kyyw-blue);
  color:#0f3b71;
  font-size:22px;
}

.article-body h3{
  margin:24px 0 11px;
  color:#194474;
  font-size:20px;
}

.article-body table{
  display:block;
  width:100%;
  margin:18px 0;
  overflow-x:auto;
  border-collapse:collapse;
  white-space:nowrap;
}

.article-body td,
.article-body th{
  padding:10px 12px;
  border:1px solid #dce5ef;
}

.article-body th{
  background:#f3f7fc;
}

.article-actions{
  display:flex;
  justify-content:space-between;
  gap:16px;
  margin-top:28px;
  padding-top:18px;
  border-top:1px solid var(--kyyw-border);
}

.search-box{
  margin-bottom:22px;
  padding:22px;
  border:1px solid var(--kyyw-border);
  background:#fff;
}

.search-form{
  display:flex;
  gap:10px;
}

.search-form input[type="text"],
.search-form input[name="keyboard"]{
  flex:1;
  min-width:0;
  height:42px;
  padding:0 12px;
  border:1px solid #ccd6e2;
  font-size:15px;
}

.search-form button,
.search-form input[type="submit"]{
  height:42px;
  padding:0 24px;
  border:0;
  background:var(--kyyw-blue);
  color:#fff;
  font-size:15px;
}


/* =========================================================
   科仪有维网站底部
   公共服务平台 / 规范权威风格
   ========================================================= */

.site-footer {
  margin-top: 60px;
  background: #0b2b4f;
  color: #d8e4ef;
  font-size: 14px;
}

.footer-service-line {
  width: 100%;
  height: 4px;
  background: #155efb;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(340px, 1.65fr) minmax(140px, 0.72fr) minmax(170px, 0.85fr) minmax(180px, 0.78fr);
  gap: 48px;
  padding-top: 48px;
  padding-bottom: 42px;
}

/* 平台名称 */

.footer-brand {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-brand strong {
  color: #ffffff;
  font-size: 25px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 2px;
}

.footer-brand span {
  color: #b9ccde;
  font-size: 15px;
  line-height: 1.6;
}

.footer-description {
  max-width: 540px;
  margin: 0;
  color: #c5d4e2;
  font-size: 14px;
  line-height: 2;
  text-align: justify;
}

.footer-slogan {
  position: relative;
  margin-top: 20px;
  padding-left: 14px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.8;
}

.footer-slogan::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 0;
  width: 3px;
  background: #3b82f6;
}

/* 栏目 */

.footer-column h3 {
  position: relative;
  margin: 3px 0 19px;
  padding-bottom: 12px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #3b82f6;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li {
  margin: 0;
  padding: 0;
}

.footer-column li + li {
  margin-top: 11px;
}

.footer-column a {
  color: #c5d4e2;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #ffffff;
}

/* 工程师查询入口 */

.footer-cert-link {
  display: block;
  margin-bottom: 18px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff !important;
  font-size: 13px !important;
  line-height: 1.7 !important;
  background: rgba(255, 255, 255, 0.04);
}

.footer-cert-link:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

/* 小程序码 */

.footer-qrcode {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-qrcode img {
  display: block;
  width: 104px;
  height: 104px;
  padding: 5px;
  object-fit: contain;
  background: #ffffff;
}

.footer-qrcode span {
  display: block;
  margin-top: 9px;
  color: #aebfd0;
  font-size: 12px;
  line-height: 1.6;
}

/* 主办单位信息 */

.footer-info {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(0, 0, 0, 0.08);
}

.footer-info-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 34px;
  padding-top: 18px;
  padding-bottom: 18px;
  color: #c5d4e2;
  font-size: 13px;
  line-height: 1.8;
}

.footer-info-label {
  color: #ffffff;
}

/* 版权备案 */

.footer-bottom {
  background: #071e37;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 58px;
  padding-top: 12px;
  padding-bottom: 12px;
  color: #8fa5b9;
  font-size: 12px;
  line-height: 1.7;
}

.footer-copyright span {
  margin-left: 8px;
}

.footer-record {
  text-align: right;
}

.footer-record a {
  color: #a9bac9;
  text-decoration: none;
}

.footer-record a:hover {
  color: #ffffff;
}

.footer-divider {
  margin: 0 9px;
  color: #57718a;
}

/* =========================================================
   平板端
   ========================================================= */

@media (max-width: 1024px) {

  .footer-main {
    grid-template-columns: 1.5fr 0.8fr 0.9fr;
    gap: 36px;
  }

  .footer-entry {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 6px;
  }

  .footer-entry h3 {
    width: 100%;
    margin-bottom: 0;
  }

  .footer-cert-link {
    width: 220px;
    margin-bottom: 0;
  }

  .footer-qrcode {
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }

  .footer-qrcode span {
    max-width: 120px;
    margin-top: 0;
  }
}

/* =========================================================
   手机版
   ========================================================= */

@media (max-width: 768px) {

  .site-footer {
    margin-top: 40px;
  }

  .footer-service-line {
    height: 3px;
  }

  .footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
    padding-top: 34px;
    padding-bottom: 32px;
  }

  .footer-platform {
    grid-column: 1 / -1;
  }

  .footer-brand {
    display: block;
    margin-bottom: 15px;
  }

  .footer-brand strong {
    display: block;
    font-size: 22px;
    letter-spacing: 1px;
  }

  .footer-brand span {
    display: block;
    margin-top: 6px;
    font-size: 14px;
  }

  .footer-description {
    max-width: none;
    font-size: 14px;
    line-height: 1.9;
    text-align: left;
  }

  .footer-slogan {
    margin-top: 17px;
    font-size: 13px;
  }

  .footer-column h3 {
    margin-bottom: 15px;
    font-size: 15px;
  }

  .footer-column li + li {
    margin-top: 9px;
  }

  .footer-column a {
    font-size: 13px;
  }

  .footer-entry {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding-top: 4px;
  }

  .footer-entry h3 {
    grid-column: 1 / -1;
  }

  .footer-cert-link {
    width: auto;
    margin: 0;
  }

  .footer-qrcode {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-qrcode img {
    width: 88px;
    height: 88px;
  }

  .footer-qrcode span {
    max-width: 110px;
    margin-top: 7px;
    font-size: 11px;
    text-align: center;
  }

  .footer-info-inner {
    display: block;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 12px;
  }

  .footer-info-inner > div + div {
    margin-top: 5px;
  }

  .footer-bottom-inner {
    display: block;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 18px;
    text-align: center;
  }

  .footer-copyright span {
    display: block;
    margin: 3px 0 0;
  }

  .footer-record {
    margin-top: 8px;
    text-align: center;
  }

  .footer-record > span:last-child {
    display: block;
    margin-top: 5px;
  }

  .footer-record .footer-divider {
    display: none;
  }
}

/* 小屏手机 */

@media (max-width: 420px) {

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-platform,
  .footer-entry {
    grid-column: auto;
  }

  .footer-entry {
    grid-template-columns: 1fr;
  }

  .footer-entry h3 {
    grid-column: auto;
  }

  .footer-cert-link {
    max-width: none;
  }

  .footer-qrcode {
    align-items: flex-start;
    flex-direction: row;
    gap: 13px;
  }

  .footer-qrcode span {
    max-width: 130px;
    margin-top: 0;
    text-align: left;
  }
}

/* =========================================================
   12. 全站响应式
   ========================================================= */
@media(max-width:1180px){
  .gov-header-main-inner{
    gap:26px;
    min-height:152px;
    padding:23px 0;
  }

  .gov-brand img{
    flex-basis:96px;
    width:96px;
    height:96px;
  }

  .gov-brand-text h1{
    font-size:31px;
  }

  .gov-brand-text p{
    font-size:15px;
  }

  .gov-header-tools,
  .gov-search{
    flex-basis:370px;
    width:370px;
  }

  .gov-main-nav-list > li > a{
    padding:0 21px;
    font-size:16px;
  }

  .focus-grid-v4{
    grid-template-columns:minmax(0,1fr) 390px;
  }
}

@media(max-width:960px){
  .gov-header-main-inner{
    display:flex;
    flex-wrap:wrap;
    min-height:0;
    padding:15px 0 13px;
  }

  .gov-brand{
    width:calc(100% - 54px);
    padding-right:4px;
  }

  .gov-brand img{
    flex-basis:68px;
    width:68px;
    height:68px;
    padding:5px;
    border-radius:10px;
  }

  .gov-brand-text h1{
    overflow:hidden;
    font-size:25px;
    text-overflow:ellipsis;
    white-space:nowrap;
  }

  .gov-brand-text p{
    margin-top:5px;
    overflow:hidden;
    font-size:14px;
    text-overflow:ellipsis;
    white-space:nowrap;
  }

  .gov-nav-toggle{
    display:block;
    position:absolute;
    top:30px;
    right:0;
  }

  .gov-header-tools{
    display:block;
    flex:0 0 100%;
    width:100%;
    margin-top:10px;
  }

  .gov-quick-entry{
    display:none;
  }

  .gov-search{
    width:100%;
  }

  .gov-main-nav{
    display:none;
  }

  .gov-main-nav.is-open{
    display:block;
  }

  .gov-main-nav .container{
    width:100%;
    max-width:100%;
  }

  .gov-main-nav-list{
    display:block;
  }

  .gov-main-nav-list > li{
    border-bottom:1px solid rgba(255,255,255,.12);
  }

  .gov-main-nav-list > li:last-child{
    border-bottom:0;
  }

  .gov-main-nav-list > li > a{
    height:48px;
    padding:0 20px;
    font-size:15px;
    line-height:48px;
    text-align:left;
  }

  .gov-main-nav-list > li.nav-highlight > a{
    background:#0c4c9d;
  }

  .gov-nav-sub,
  .gov-main-nav-list > li:hover > .gov-nav-sub{
    display:none;
  }

  .focus-grid-v4{
    grid-template-columns:1fr;
  }

  .focus-main-v4,
  .focus-news-v4{
    min-height:0;
  }

  .info-grid-v3,
  .kyyw-home-resource-grid{
    grid-template-columns:1fr;
  }

  .service-hall,
  .service-hall-v3,
  .topic-grid,
  .topic-grid-v3{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .page-wrap{
    grid-template-columns:220px minmax(0,1fr);
  }
}

@media(max-width:768px){
  html{
    font-size:15px;
  }

  body{
    background:#f2f5f9;
  }

  .container{
    width:auto;
    max-width:none;
    margin-right:12px;
    margin-left:12px;
  }

  .gov-topbar{
    display:none;
  }

  .gov-topline{
    height:4px;
  }

  .gov-header-main-inner{
    gap:0;
    padding:11px 0 10px;
  }

  .gov-brand{
    width:calc(100% - 50px);
    min-height:58px;
    gap:10px;
  }

  .gov-brand img{
    flex-basis:56px;
    width:56px;
    height:56px;
    padding:4px;
    border-radius:9px;
  }

  .gov-brand-text h1{
    font-size:20px;
    line-height:1.3;
    letter-spacing:0;
  }

  .gov-brand-text p{
    max-width:calc(100vw - 118px);
    margin-top:3px;
    font-size:12px;
    line-height:1.45;
  }

  .gov-nav-toggle{
    top:20px;
    width:40px;
    height:40px;
  }

  .gov-header-tools{
    margin-top:9px;
  }

  .gov-search{
    display:grid;
    grid-template-columns:minmax(0,1fr) 70px;
    height:40px;
  }

  .gov-search-label{
    display:none;
  }

  .gov-search-input{
    width:100%;
    height:40px;
    border-right:0;
    font-size:13px;
  }

  .gov-search-btn{
    width:70px;
    height:40px;
    font-size:14px;
  }

  .gov-main-nav .container{
    margin:0;
  }

  .gov-main-nav-list > li > a{
    height:47px;
    padding:0 18px;
    line-height:47px;
  }

  .home-focus-v4{
    padding:10px 0 14px;
  }

  .home-ticker-v4{
    min-height:40px;
  }

  .ticker-label-v4{
    flex-basis:auto;
    padding:0 11px;
    font-size:13px;
  }

  .ticker-list-v4{
    padding:0 9px;
  }

  .ticker-list-v4 a{
    font-size:13px;
  }

  .ticker-list-v4 a:nth-child(n+2),
  .ticker-more-v4{
    display:none;
  }

  .focus-grid-v4{
    gap:12px;
    padding:12px 0 16px;
  }

  .focus-main-v4{
    min-height:0;
    padding:26px 18px 21px;
    border-top-width:4px;
  }

  .focus-main-v4::after,
  .focus-kicker-v4{
    display:none;
  }

  .focus-main-v4 h1{
    font-size:27px;
    line-height:1.38;
    letter-spacing:0;
  }

  .focus-main-v4 p{
    margin:14px 0 18px;
    font-size:15px;
  }

  .focus-actions-v4{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:9px;
  }

  .focus-actions-v4 .btn{
    width:100%;
    min-height:41px;
    padding:8px 10px;
  }

  .focus-actions-v4 .btn:nth-child(2){
    display:none;
  }

  .focus-news-v4 li{
    align-items:flex-start;
    min-height:0;
    padding:9px 0;
  }

  .focus-news-v4 li:nth-child(n+5){
    display:none;
  }

  .focus-news-v4 li a{
    display:-webkit-box;
    overflow:hidden;
    white-space:normal;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
  }

  .focus-news-v4 li time{
    display:none;
  }

  .platform-main,
  .platform-main-v3{
    padding-top:2px;
  }

  .platform-section{
    margin-top:15px;
  }

  .section-head.official-head,
  .section-head-v3{
    min-height:49px;
    padding:7px 13px;
  }

  .section-head.official-head::before,
  .section-head-v3::before{
    height:29px;
    margin-right:9px;
  }

  .section-head.official-head h2,
  .section-head-v3 h2{
    font-size:19px;
  }

  .section-head.official-head > span,
  .section-head-v3 > span,
  .kyyw-home-resource-en{
    display:none;
  }

  .info-open-v3{
    display:none;
  }

  .info-grid-v3,
  .kyyw-home-resource-grid,
  .topic-grid,
  .topic-grid-v3{
    gap:10px;
    padding:10px;
  }

  .service-hall,
  .service-hall-v3{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:1px;
    padding:1px;
    background:#dbe4ee;
  }

  .service-hall-item{
    min-height:78px;
    padding:13px 10px;
    border:0;
  }

  .service-hall-item b{
    position:static;
    display:block;
    width:auto;
    height:auto;
    margin-bottom:4px;
    background:transparent;
    color:#93a4b8;
    font-size:11px;
    line-height:1;
  }

  .service-hall-item strong{
    margin:0;
    font-size:15px;
    line-height:1.45;
  }

  .service-hall-item span{
    display:none;
  }

  .kyyw-home-resource-card{
    box-shadow:none;
  }

  .kyyw-home-resource-list{
    min-height:0;
  }

  .kyyw-home-resource-list li:nth-child(n+3){
    display:none;
  }

  .kyyw-home-resource-list time,
  .kyyw-home-resource-note{
    display:none;
  }

  .topic-grid,
  .topic-grid-v3{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .topic-grid a,
  .topic-grid-v3 a{
    min-height:92px;
    padding:16px 13px;
  }

  .topic-grid a span,
  .topic-grid-v3 a span{
    display:none;
  }

  .page-wrap{
    display:block;
    margin-top:14px;
  }

  .sidebar{
    display:none;
  }

  .main-card{
    min-height:0;
  }

  .page-title{
    display:block;
    padding:14px 16px;
  }

  .page-title h1,
  .page-title h2{
    font-size:21px;
  }

  .page-title span{
    display:block;
    margin-top:4px;
  }

  .list-body{
    padding:4px 16px 16px;
  }

  .article-list-date{
    flex-basis:58px;
    width:58px;
    height:54px;
  }

  .article-list-date strong{
    height:31px;
    font-size:17px;
    line-height:31px;
  }

  .article-list-date span{
    line-height:22px;
  }

  .article-list-copy h3{
    font-size:16px;
  }

  .article-list-copy p{
    display:none;
  }

  .article{
    padding:20px 16px;
  }

  .article h1.article-title{
    font-size:23px;
    text-align:left;
  }

  .article-meta{
    font-size:12px;
    text-align:left;
  }

  .article-body{
    font-size:16px;
    line-height:1.9;
  }

  .article-body h2{
    font-size:20px;
  }

  .article-actions{
    flex-direction:column;
  }

  .search-form{
    display:block;
  }

  .search-form input[type="text"],
  .search-form input[name="keyboard"],
  .search-form button,
  .search-form input[type="submit"]{
    width:100%;
  }

  .search-form button,
  .search-form input[type="submit"]{
    margin-top:8px;
  }

  .float-xcx,
  .backtop{
    display:none;
  }
}

@media(max-width:420px){
  .gov-brand-text h1{
    font-size:18px;
  }

  .gov-brand-text p{
    display:none;
  }

  .focus-main-v4 h1{
    font-size:24px;
  }

  .focus-actions-v4{
    grid-template-columns:1fr;
  }

  .topic-grid,
  .topic-grid-v3{
    grid-template-columns:1fr 1fr;
  }

  .article-list-date{
    display:none;
  }
}
/* =========================================================
   首页资源协作轻量美化补丁
   追加到 /skin/kyywgov/css/style.css 最末尾
   ========================================================= */

.kyyw-home-resource-grid{
  align-items:stretch;
}

.kyyw-home-resource-card{
  display:flex;
  min-height:248px;
  overflow:hidden;
  flex-direction:column;
  border:1px solid #d7e2ee;
  border-top:4px solid #0b4296;
  background:#fff;
  box-shadow:0 3px 12px rgba(11,66,150,.045);
  transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.kyyw-home-resource-card:hover{
  transform:translateY(-2px);
  border-top-color:#c82027;
  box-shadow:0 8px 22px rgba(11,66,150,.09);
}

.kyyw-home-resource-card-head{
  min-height:56px;
  padding:0 18px;
  border-bottom:1px solid #e4ebf3;
  background:linear-gradient(180deg,#fff 0%,#fbfdff 100%);
}

.kyyw-home-resource-card-head h3{
  padding-left:14px;
  color:#0a3c7b;
  font-size:19px;
  line-height:1.45;
}

.kyyw-home-resource-card-head h3::before{
  width:4px;
  height:29px;
  background:#155efb;
}

.kyyw-home-resource-card-head > a{
  color:#708198;
  font-size:13px;
}

.kyyw-home-resource-card-head > a:hover{
  color:#0b4296;
}

.kyyw-home-resource-list{
  flex:1;
  min-height:0;
  padding:10px 16px 14px;
}

.kyyw-home-resource-list li{
  display:flex;
  min-height:42px;
  align-items:center;
  gap:10px;
  padding:7px 0;
  border-bottom:1px dashed #e1e8f0;
}

.kyyw-home-resource-list li:last-child{
  border-bottom:0;
}

.kyyw-home-resource-list li:hover{
  background:#f7faff;
}

.kyyw-home-resource-tag{
  flex:0 0 auto;
  max-width:136px;
  overflow:hidden;
  padding:4px 9px;
  border:1px solid #d7e5f6;
  border-radius:2px;
  background:#eef5ff;
  color:#174e96;
  font-size:12px;
  line-height:1.45;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.kyyw-home-resource-list li > a{
  flex:1;
  min-width:0;
  overflow:hidden;
  color:#2f4863;
  font-size:14px;
  line-height:1.6;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.kyyw-home-resource-list li > a:hover{
  color:#155efb;
}

.kyyw-home-resource-empty{
  min-height:145px !important;
  color:#8b98a8;
  background:#fafcff;
}

/* 三个栏目标签略作区分，但保持统一风格 */
.kyyw-home-resource-card:nth-child(1) .kyyw-home-resource-tag{
  border-color:#d8e4f4;
  background:#eff5fd;
  color:#1d5593;
}

.kyyw-home-resource-card:nth-child(2) .kyyw-home-resource-tag{
  border-color:#dce8df;
  background:#f1f8f3;
  color:#3e7650;
}

.kyyw-home-resource-card:nth-child(3) .kyyw-home-resource-tag{
  border-color:#eadfce;
  background:#fbf6ef;
  color:#8a5b24;
}

@media(max-width:768px){
  .kyyw-home-resource-card{
    min-height:0;
  }

  .kyyw-home-resource-card-head{
    min-height:50px;
    padding:0 14px;
  }

  .kyyw-home-resource-card-head h3{
    font-size:17px;
  }

  .kyyw-home-resource-list{
    padding:7px 12px 11px;
  }

  .kyyw-home-resource-list li{
    min-height:40px;
    gap:8px;
    padding:6px 0;
  }

  .kyyw-home-resource-tag{
    max-width:112px;
    padding:3px 7px;
    font-size:11px;
  }

  .kyyw-home-resource-list li > a{
    font-size:13px;
  }
}
/* =========================================================
   首页“工程师资源”专属优化
   追加到 /skin/kyywgov/css/style.css 最末尾
   不影响服务机构资源库和设备配件资源
   ========================================================= */

/* 工程师资源改成两列小卡片 */
.kyyw-home-resource-card:nth-child(1) .kyyw-home-resource-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  align-content:start;
  gap:10px;
  padding:14px 16px 16px;
}

/* 每位工程师独立成一个紧凑信息块 */
.kyyw-home-resource-card:nth-child(1) .kyyw-home-resource-list li{
  display:flex;
  min-width:0;
  min-height:76px;
  padding:11px 12px;
  align-items:flex-start;
  justify-content:center;
  flex-direction:column;
  gap:7px;
  border:1px solid #e0e8f2;
  border-radius:2px;
  background:#fbfdff;
  transition:border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.kyyw-home-resource-card:nth-child(1) .kyyw-home-resource-list li:last-child{
  border-bottom:1px solid #e0e8f2;
}

.kyyw-home-resource-card:nth-child(1) .kyyw-home-resource-list li:hover{
  border-color:#bcd2ed;
  background:#f3f8ff;
  box-shadow:0 4px 12px rgba(11,66,150,.06);
}

/* 工程师类型放在上面，不再横向挤占姓名空间 */
.kyyw-home-resource-card:nth-child(1) .kyyw-home-resource-tag{
  display:block;
  width:auto;
  max-width:100%;
  padding:3px 7px;
  overflow:hidden;
  border-color:#d6e4f5;
  background:#edf5ff;
  color:#1b5597;
  font-size:11px;
  line-height:1.45;
  text-overflow:ellipsis;
  white-space:nowrap;
}

/* 姓名作为主要信息突出显示 */
.kyyw-home-resource-card:nth-child(1) .kyyw-home-resource-list li > a{
  display:block;
  width:100%;
  overflow:hidden;
  color:#173f6e;
  font-size:16px;
  font-weight:700;
  line-height:1.45;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.kyyw-home-resource-card:nth-child(1) .kyyw-home-resource-list li > a:hover{
  color:#155efb;
}

/* 空状态不能套用两列小卡片 */
.kyyw-home-resource-card:nth-child(1) .kyyw-home-resource-list .kyyw-home-resource-empty{
  grid-column:1 / -1;
  min-height:145px !important;
  align-items:center;
  background:#fafcff;
}

/* 窄屏下恢复单列，避免长类型名称挤压 */
@media(max-width:768px){
  .kyyw-home-resource-card:nth-child(1) .kyyw-home-resource-list{
    grid-template-columns:1fr;
    gap:8px;
    padding:10px 12px 12px;
  }

  .kyyw-home-resource-card:nth-child(1) .kyyw-home-resource-list li{
    min-height:62px;
    padding:9px 11px;
  }

  .kyyw-home-resource-card:nth-child(1) .kyyw-home-resource-list li > a{
    font-size:15px;
  }
}
/* =========================================================
   科仪有维主导航下拉菜单修复
   追加到 /skin/kyywgov/css/style.css 最末尾
   ========================================================= */

/* 主导航必须允许下拉菜单越出导航栏 */
.gov-main-nav{
  position:relative;
  z-index:900;
  overflow:visible;
}

.gov-main-nav > .container{
  overflow:visible;
}

.gov-main-nav-list{
  position:relative;
  overflow:visible;
}

.gov-main-nav-list > li{
  position:relative;
}

.gov-main-nav-list > li.has-sub > a{
  padding-right:42px;
}

/* PC端向下箭头 */
.gov-main-nav-list > li.has-sub > a::after{
  content:"";
  position:absolute;
  top:50%;
  right:24px;
  width:7px;
  height:7px;
  margin-top:-5px;
  border-right:2px solid rgba(255,255,255,.8);
  border-bottom:2px solid rgba(255,255,255,.8);
  transform:rotate(45deg);
  transition:transform .2s ease;
}

.gov-sub-toggle{
  display:none;
}

/* 二级菜单 */
.gov-sub-nav{
  display:block;
  position:absolute;
  top:62px;
  left:0;
  z-index:1000;
  min-width:220px;
  margin:0;
  padding:7px 0;
  visibility:hidden;
  opacity:0;
  border:1px solid #d3dfed;
  border-top:3px solid #c82027;
  background:#fff;
  box-shadow:0 14px 30px rgba(7,48,106,.18);
  list-style:none;
  pointer-events:none;
  transform:translateY(8px);
  transition:
    opacity .18s ease,
    visibility .18s ease,
    transform .18s ease;
}

.gov-sub-nav-right{
  right:0;
  left:auto;
}

.gov-sub-nav li{
  position:relative;
  margin:0;
  padding:0;
  border-bottom:1px solid #edf2f7;
}

.gov-sub-nav li:last-child{
  border-bottom:0;
}

.gov-sub-nav a{
  display:block;
  min-width:220px;
  height:auto !important;
  padding:11px 18px !important;
  background:#fff !important;
  color:#284765 !important;
  font-size:14px !important;
  font-weight:400 !important;
  line-height:1.55 !important;
  text-align:left !important;
  white-space:nowrap;
}

.gov-sub-nav a:hover{
  padding-left:22px !important;
  background:#f1f6fc !important;
  color:#07468f !important;
}

/* 鼠标悬停和键盘访问均可打开 */
.gov-main-nav-list > li.has-sub:hover > .gov-sub-nav,
.gov-main-nav-list > li.has-sub:focus-within > .gov-sub-nav{
  visibility:visible;
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}

.gov-main-nav-list > li.has-sub:hover > a::after,
.gov-main-nav-list > li.has-sub:focus-within > a::after{
  margin-top:-1px;
  transform:rotate(225deg);
}

/* =========================================================
   手机端
   ========================================================= */

@media(max-width:960px){

  .gov-main-nav{
    display:none;
    width:100%;
    max-height:calc(100vh - 78px);
    overflow-y:auto;
    background:#073d84;
    box-shadow:0 12px 24px rgba(7,48,106,.22);
  }

  .gov-main-nav.is-open{
    display:block;
  }

  .gov-main-nav > .container{
    width:100%;
    max-width:100%;
    margin:0;
    padding:0;
  }

  .gov-main-nav-list{
    display:block;
    width:100%;
    height:auto;
  }

  .gov-main-nav-list > li{
    display:block;
    width:100%;
    border-bottom:1px solid rgba(255,255,255,.12);
  }

  .gov-main-nav-list > li > a{
    display:block;
    width:100%;
    height:48px;
    padding:0 18px !important;
    color:#fff;
    font-size:15px;
    line-height:48px;
    text-align:left;
  }

  .gov-main-nav-list > li.has-sub > a{
    width:calc(100% - 50px);
    padding-right:12px !important;
  }

  /* 手机端不用PC伪箭头 */
  .gov-main-nav-list > li.has-sub > a::after{
    display:none;
  }

  /* 独立展开按钮，不影响一级栏目点击进入 */
  .gov-sub-toggle{
    display:flex;
    position:absolute;
    top:0;
    right:0;
    z-index:3;
    width:50px;
    height:48px;
    padding:0;
    align-items:center;
    justify-content:center;
    border:0;
    border-left:1px solid rgba(255,255,255,.12);
    background:transparent;
    cursor:pointer;
  }

  .gov-sub-toggle::before{
    content:"";
    width:8px;
    height:8px;
    margin-top:-4px;
    border-right:2px solid rgba(255,255,255,.88);
    border-bottom:2px solid rgba(255,255,255,.88);
    transform:rotate(45deg);
    transition:transform .2s ease;
  }

  .gov-main-nav-list > li.sub-open > .gov-sub-toggle::before{
    margin-top:4px;
    transform:rotate(225deg);
  }

  /* 覆盖PC hover，默认关闭 */
  .gov-sub-nav,
  .gov-main-nav-list > li.has-sub:hover > .gov-sub-nav,
  .gov-main-nav-list > li.has-sub:focus-within > .gov-sub-nav{
    display:none;
    position:static;
    min-width:0;
    margin:0;
    padding:0;
    visibility:visible;
    opacity:1;
    border:0;
    border-top:1px solid rgba(255,255,255,.1);
    background:#062f68;
    box-shadow:none;
    pointer-events:auto;
    transform:none;
    transition:none;
  }

  .gov-main-nav-list > li.sub-open > .gov-sub-nav{
    display:block;
  }

  .gov-sub-nav li{
    border-bottom:1px solid rgba(255,255,255,.08);
  }

  .gov-sub-nav a{
    min-width:0;
    height:42px !important;
    padding:0 18px 0 36px !important;
    background:#062f68 !important;
    color:#dbe8f8 !important;
    font-size:14px !important;
    line-height:42px !important;
    white-space:normal;
  }

  .gov-sub-nav a:hover{
    padding-left:40px !important;
    background:#083a7b !important;
    color:#fff !important;
  }

  .gov-main-nav-list .nav-highlight > a{
    background:#0b4b99;
  }
}
/* =========================================================
   科仪有维首页：运行保障 + 检测服务 + 开放共享融合版
   追加到 /skin/kyywgov/css/style.css 最末尾
   ========================================================= */

/* ---------- 首屏业务说明 ---------- */
.focus-summary-v4{
  max-width:690px;
  margin:20px 0 18px;
  color:#455e79;
  font-size:16px;
  line-height:1.9;
}

.focus-business-v4{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 24px;
}

.focus-business-v4 span{
  display:inline-block;
  padding:6px 11px;
  border:1px solid #d8e5f4;
  border-radius:2px;
  background:#f2f7fd;
  color:#174f91;
  font-size:13px;
  line-height:1.4;
}

.focus-actions-v4{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

/* ---------- 服务事项 ---------- */
.service-hall-v3{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.service-hall-v3 .service-hall-item{
  min-height:154px;
}

.service-hall-v3 .service-hall-item-share{
  position:relative;
  overflow:hidden;
  border-top-color:#c82027;
  background:linear-gradient(180deg,#ffffff 0%,#fbfdff 100%);
}

.service-hall-v3 .service-hall-item-share::after{
  content:"开放共享";
  position:absolute;
  top:12px;
  right:-31px;
  width:110px;
  padding:3px 0;
  background:#c82027;
  color:#fff;
  font-size:11px;
  line-height:1.4;
  text-align:center;
  transform:rotate(38deg);
}

/* ---------- 检测服务与开放共享 ---------- */
.sharing-market-panel-v4{
  overflow:hidden;
  border:1px solid #d7e2ee;
  background:#fff;
  box-shadow:0 5px 18px rgba(10,60,125,.055);
}

.sharing-market-intro-v4{
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(420px,.9fr);
  gap:28px;
  align-items:stretch;
  padding:32px 34px;
  border-bottom:1px solid #e1e9f2;
  background:
    linear-gradient(90deg,rgba(240,246,253,.92) 0%,rgba(255,255,255,.98) 55%),
    #fff;
}

.sharing-market-copy-v4{
  min-width:0;
}

.sharing-market-label-v4{
  display:inline-block;
  margin-bottom:12px;
  padding:5px 10px;
  border-left:4px solid #c82027;
  background:#eef5fd;
  color:#144a88;
  font-size:13px;
  font-weight:700;
  line-height:1.5;
}

.sharing-market-copy-v4 h3{
  margin:0 0 14px;
  color:#0b3e7d;
  font-size:28px;
  font-weight:800;
  line-height:1.35;
}

.sharing-market-copy-v4 p{
  max-width:720px;
  margin:0;
  color:#50677f;
  font-size:15px;
  line-height:1.95;
}

.sharing-value-v4{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:9px;
  margin-top:20px;
  color:#234f7f;
  font-size:14px;
  font-weight:700;
}

.sharing-value-v4 i{
  display:block;
  width:18px;
  height:1px;
  background:#9eb5ce;
}

.sharing-entry-grid-v4{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.sharing-entry-v4{
  position:relative;
  display:flex;
  min-height:198px;
  padding:22px 20px;
  overflow:hidden;
  flex-direction:column;
  border:1px solid #d9e4f0;
  background:#fff;
  text-decoration:none;
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}

.sharing-entry-v4:hover{
  transform:translateY(-3px);
  border-color:#9fbcdf;
  box-shadow:0 9px 20px rgba(10,60,125,.1);
}

.sharing-entry-v4 small{
  display:block;
  margin-bottom:9px;
  color:#6a7f96;
  font-size:12px;
  line-height:1.4;
}

.sharing-entry-v4 strong{
  display:block;
  margin-bottom:11px;
  color:#0b427f;
  font-size:21px;
  line-height:1.35;
}

.sharing-entry-v4 span{
  color:#5c7086;
  font-size:13px;
  line-height:1.75;
}

.sharing-entry-v4 em{
  display:inline-block;
  align-self:flex-start;
  margin-top:auto;
  padding-top:16px;
  color:#155efb;
  font-size:13px;
  font-style:normal;
  font-weight:700;
}

.sharing-entry-v4::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:#155efb;
}

.sharing-entry-supply-v4::before{
  background:#c82027;
}

.sharing-entry-supply-v4 em{
  color:#b51c23;
}

.sharing-capability-grid-v4{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:0;
  padding:0 34px;
}

.sharing-capability-grid-v4 > a{
  position:relative;
  min-height:154px;
  padding:24px 24px 22px 66px;
  border-right:1px solid #e3eaf2;
  border-bottom:1px solid #e3eaf2;
  background:#fff;
  text-decoration:none;
  transition:background .2s ease;
}

.sharing-capability-grid-v4 > a:nth-child(3n){
  border-right:0;
}

.sharing-capability-grid-v4 > a:nth-last-child(-n+3){
  border-bottom:0;
}

.sharing-capability-grid-v4 > a:hover{
  background:#f5f9fe;
}

.sharing-capability-grid-v4 b{
  position:absolute;
  top:25px;
  left:22px;
  color:#c82027;
  font-size:18px;
  line-height:1.3;
}

.sharing-capability-grid-v4 strong{
  display:block;
  margin-bottom:9px;
  color:#174777;
  font-size:17px;
  line-height:1.45;
}

.sharing-capability-grid-v4 span{
  display:block;
  color:#657a91;
  font-size:13px;
  line-height:1.75;
}

.sharing-market-note-v4{
  padding:17px 34px;
  border-top:1px solid #dfe8f1;
  background:#f4f8fd;
  color:#31577f;
  font-size:14px;
  line-height:1.8;
  text-align:center;
}

/* ---------- 平板 ---------- */
@media(max-width:1024px){
  .sharing-market-intro-v4{
    grid-template-columns:1fr;
  }

  .sharing-entry-grid-v4{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .sharing-capability-grid-v4{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .sharing-capability-grid-v4 > a:nth-child(3n){
    border-right:1px solid #e3eaf2;
  }

  .sharing-capability-grid-v4 > a:nth-child(2n){
    border-right:0;
  }

  .sharing-capability-grid-v4 > a:nth-last-child(-n+3){
    border-bottom:1px solid #e3eaf2;
  }

  .sharing-capability-grid-v4 > a:nth-last-child(-n+2){
    border-bottom:0;
  }
}

/* ---------- 手机 ---------- */
@media(max-width:768px){
  .focus-summary-v4{
    margin:15px 0;
    font-size:14px;
    line-height:1.8;
  }

  .focus-business-v4{
    gap:6px;
    margin-bottom:18px;
  }

  .focus-business-v4 span{
    padding:5px 8px;
    font-size:12px;
  }

  .focus-actions-v4{
    display:grid;
    grid-template-columns:1fr 1fr;
    width:100%;
  }

  .focus-actions-v4 .btn{
    width:100%;
    min-width:0;
    margin:0;
    padding-left:8px;
    padding-right:8px;
    text-align:center;
  }

  .focus-actions-v4 .btn:first-child{
    grid-column:1 / -1;
  }

  .service-hall-v3{
    grid-template-columns:1fr;
    gap:12px;
  }

  .service-hall-v3 .service-hall-item{
    min-height:0;
  }

  .sharing-market-intro-v4{
    gap:22px;
    padding:22px 16px;
  }

  .sharing-market-copy-v4 h3{
    font-size:23px;
  }

  .sharing-market-copy-v4 p{
    font-size:14px;
    line-height:1.85;
  }

  .sharing-value-v4{
    gap:6px 8px;
    font-size:12px;
  }

  .sharing-value-v4 i{
    width:12px;
  }

  .sharing-entry-grid-v4{
    grid-template-columns:1fr;
  }

  .sharing-entry-v4{
    min-height:0;
    padding:18px;
  }

  .sharing-entry-v4 strong{
    font-size:19px;
  }

  .sharing-entry-v4 em{
    margin-top:14px;
    padding-top:0;
  }

  .sharing-capability-grid-v4{
    grid-template-columns:1fr;
    padding:0 16px;
  }

  .sharing-capability-grid-v4 > a,
  .sharing-capability-grid-v4 > a:nth-child(2n),
  .sharing-capability-grid-v4 > a:nth-child(3n),
  .sharing-capability-grid-v4 > a:nth-last-child(-n+2),
  .sharing-capability-grid-v4 > a:nth-last-child(-n+3){
    min-height:0;
    padding:18px 14px 18px 52px;
    border-right:0;
    border-bottom:1px solid #e3eaf2;
  }

  .sharing-capability-grid-v4 > a:last-child{
    border-bottom:0;
  }

  .sharing-capability-grid-v4 b{
    top:19px;
    left:14px;
    font-size:16px;
  }

  .sharing-capability-grid-v4 strong{
    font-size:16px;
  }

  .sharing-market-note-v4{
    padding:15px 16px;
    font-size:13px;
    text-align:left;
  }
}

@media(max-width:420px){
  .focus-actions-v4{
    grid-template-columns:1fr;
  }

  .focus-actions-v4 .btn:first-child{
    grid-column:auto;
  }

  .sharing-value-v4 i{
    display:none;
  }

  .sharing-value-v4 span{
    width:calc(50% - 4px);
    padding:6px 8px;
    background:#f2f7fd;
    text-align:center;
  }
}
/* 首页首屏说明文字：蓝色背景可读性修正 */
.focus-main-v4 .focus-summary-v4{
  color:rgba(255,255,255,.92) !important;
  text-shadow:0 1px 2px rgba(0,30,80,.28);
}

@media(max-width:768px){
  .focus-main-v4 .focus-summary-v4{
    color:rgba(255,255,255,.94) !important;
    text-shadow:0 1px 2px rgba(0,30,80,.32);
  }
}
/* 头部品牌信息精简优化 */

.gov-brand-text h1{
  margin:0;
  color:#063b82;
  font-size:36px;
  font-weight:800;
  line-height:1.2;
  letter-spacing:2px;
}

.gov-brand-text p{
  margin:9px 0 0;
  color:#315b8c;
  font-size:16px;
  font-weight:500;
  line-height:1.5;
  letter-spacing:.5px;
}

/* 平板 */
@media(max-width:1100px){
  .gov-brand-text h1{
    font-size:32px;
  }

  .gov-brand-text p{
    font-size:14px;
  }
}

/* 手机 */
@media(max-width:768px){
  .gov-brand-text h1{
    font-size:25px;
    letter-spacing:1px;
  }

  .gov-brand-text p{
    margin-top:5px;
    overflow:hidden;
    font-size:12px;
    text-overflow:ellipsis;
    white-space:nowrap;
  }
}
/* =========================================================
   科仪有维｜政务公共服务型头部
   建议追加到 /skin/kyywgov/css/style.css 最末尾
   ========================================================= */

.kyyw-gov-header{
  --gov-blue:#0a4697;
  --gov-blue-dark:#073878;
  --gov-blue-light:#eef5fd;
  --gov-red:#c91f27;
  --gov-border:#d9e3ee;
  --gov-text:#173e6b;
  position:relative;
  z-index:980;
  width:100%;
  background:#fff;
}

.kyyw-gov-header *,
.kyyw-gov-header *::before,
.kyyw-gov-header *::after{
  box-sizing:border-box;
}

.kyyw-gov-header a{
  text-decoration:none;
}

.kyyw-gov-header .container{
  width:1200px;
  max-width:calc(100% - 32px);
  margin:0 auto;
}

/* ---------- 顶部信息条 ---------- */
.kyyw-gov-topbar{
  height:39px;
  border-top:1px solid #e7d6c5;
  border-bottom:1px solid #dce5ef;
  background:#f4f6f8;
}

.kyyw-gov-topbar-inner{
  display:flex;
  height:100%;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.kyyw-gov-topbar-left{
  min-width:0;
  overflow:hidden;
  color:#47617e;
  font-size:13px;
  line-height:1.5;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.kyyw-gov-topbar-right{
  display:flex;
  flex:0 0 auto;
  align-items:center;
  gap:9px;
  font-size:13px;
}

.kyyw-gov-topbar-right a{
  color:#455f7d;
}

.kyyw-gov-topbar-right a:hover{
  color:var(--gov-blue);
}

.kyyw-gov-topbar-right span{
  color:#a8b4c1;
}

/* ---------- 顶部识别线 ---------- */
.kyyw-gov-topline{
  height:5px;
  background:var(--gov-blue-dark);
}

/* ---------- 品牌区 ---------- */
.kyyw-gov-brandbar{
  background:#fff;
}

.kyyw-gov-brandbar-inner{
  display:flex;
  min-height:158px;
  align-items:center;
  justify-content:space-between;
  gap:34px;
}

.kyyw-gov-brand{
  display:flex;
  min-width:0;
  align-items:center;
  gap:20px;
}

.kyyw-gov-logo{
  display:flex;
  width:104px;
  height:104px;
  flex:0 0 104px;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border:1px solid #d7e3f0;
  border-radius:14px;
  background:#fff;
}

.kyyw-gov-logo img{
  display:block;
  max-width:92px;
  max-height:92px;
}

.kyyw-gov-brand-copy{
  display:block;
  min-width:0;
}

.kyyw-gov-brand-copy strong{
  display:block;
  margin:0;
  color:#063d83;
  font-size:40px;
  font-weight:800;
  line-height:1.15;
  letter-spacing:3px;
}

.kyyw-gov-brand-copy em{
  display:block;
  margin-top:10px;
  color:#315b87;
  font-size:17px;
  font-style:normal;
  font-weight:500;
  line-height:1.5;
  letter-spacing:.5px;
  white-space:nowrap;
}

/* ---------- 右侧工具 ---------- */
.kyyw-gov-header-tools{
  display:flex;
  width:430px;
  flex:0 0 430px;
  flex-direction:column;
  align-items:flex-end;
  gap:14px;
}

.kyyw-gov-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.kyyw-gov-action{
  display:inline-flex;
  min-width:112px;
  height:40px;
  padding:0 18px;
  align-items:center;
  justify-content:center;
  border:1px solid #cbd8e8;
  background:#fff;
  color:#184c87;
  font-size:14px;
  font-weight:700;
  line-height:1;
}

.kyyw-gov-action:hover{
  border-color:var(--gov-blue);
  background:#f2f7fd;
}

.kyyw-gov-action-primary{
  border-color:var(--gov-blue);
  background:var(--gov-blue);
  color:#fff;
}

.kyyw-gov-action-primary:hover{
  background:var(--gov-blue-dark);
  color:#fff;
}

.kyyw-gov-search{
  display:grid;
  width:100%;
  grid-template-columns:72px minmax(0,1fr);
  align-items:center;
}

.kyyw-gov-search label{
  color:#244d7c;
  font-size:14px;
  font-weight:700;
}

.kyyw-gov-search-box{
  display:flex;
  height:43px;
  overflow:hidden;
  border:1px solid #cbd7e6;
  background:#fff;
}

.kyyw-gov-search-box input{
  min-width:0;
  flex:1;
  height:41px;
  padding:0 14px;
  border:0;
  outline:0;
  color:#304c69;
  font-size:14px;
}

.kyyw-gov-search-box input::placeholder{
  color:#9aa8b7;
}

.kyyw-gov-search-box button{
  width:78px;
  height:43px;
  margin:-1px -1px -1px 0;
  border:0;
  background:var(--gov-blue);
  color:#fff;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
}

.kyyw-gov-search-box button:hover{
  background:var(--gov-blue-dark);
}

.kyyw-gov-menu-toggle{
  display:none;
}

/* ---------- 主导航 ---------- */
.kyyw-gov-nav{
  position:relative;
  z-index:990;
  overflow:visible;
  border-bottom:4px solid #e9eef4;
  background:var(--gov-blue);
}

.kyyw-gov-nav > .container{
  overflow:visible;
}

.kyyw-gov-nav-list{
  display:flex;
  height:62px;
  margin:0;
  padding:0;
  overflow:visible;
  align-items:stretch;
  justify-content:center;
  list-style:none;
}

.kyyw-gov-nav-list > li{
  position:relative;
  display:flex;
  flex:1 1 auto;
  max-width:172px;
  margin:0;
  padding:0;
  align-items:stretch;
}

.kyyw-gov-nav-list > li > a{
  position:relative;
  display:flex;
  width:100%;
  padding:0 24px;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:17px;
  font-weight:700;
  line-height:1;
  white-space:nowrap;
}

.kyyw-gov-nav-list > li > a:hover,
.kyyw-gov-nav-list > li:focus-within > a{
  background:var(--gov-blue-dark);
}

.kyyw-gov-nav-list > li.has-sub > a{
  padding-right:40px;
}

.kyyw-gov-nav-list > li.has-sub > a::after{
  content:"";
  position:absolute;
  top:50%;
  right:22px;
  width:7px;
  height:7px;
  margin-top:-5px;
  border-right:2px solid rgba(255,255,255,.82);
  border-bottom:2px solid rgba(255,255,255,.82);
  transform:rotate(45deg);
}

.kyyw-gov-nav-highlight > a{
  background:var(--gov-red);
}

.kyyw-gov-nav-highlight > a:hover{
  background:#aa171e !important;
}

/* ---------- 二级菜单 ---------- */
.kyyw-gov-sub-toggle{
  display:none;
}

.kyyw-gov-subnav{
  position:absolute;
  top:62px;
  left:0;
  z-index:999;
  display:block;
  min-width:220px;
  margin:0;
  padding:7px 0;
  visibility:hidden;
  opacity:0;
  border:1px solid #d4dfeb;
  border-top:3px solid var(--gov-red);
  background:#fff;
  box-shadow:0 14px 30px rgba(7,48,106,.18);
  list-style:none;
  pointer-events:none;
  transform:translateY(8px);
  transition:
    opacity .18s ease,
    visibility .18s ease,
    transform .18s ease;
}

.kyyw-gov-subnav-right{
  right:0;
  left:auto;
}

.kyyw-gov-subnav li{
  margin:0;
  padding:0;
  border-bottom:1px solid #edf2f7;
}

.kyyw-gov-subnav li:last-child{
  border-bottom:0;
}

.kyyw-gov-subnav a{
  display:block;
  min-width:220px;
  padding:12px 19px;
  background:#fff;
  color:#284765;
  font-size:14px;
  font-weight:400;
  line-height:1.5;
  white-space:nowrap;
}

.kyyw-gov-subnav a:hover{
  padding-left:24px;
  background:#f1f6fc;
  color:var(--gov-blue);
}

.kyyw-gov-nav-list > li.has-sub:hover > .kyyw-gov-subnav,
.kyyw-gov-nav-list > li.has-sub:focus-within > .kyyw-gov-subnav{
  visibility:visible;
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}

/* ---------- 适配中等屏幕 ---------- */
@media(max-width:1180px){
  .kyyw-gov-brandbar-inner{
    min-height:142px;
  }

  .kyyw-gov-logo{
    width:92px;
    height:92px;
    flex-basis:92px;
  }

  .kyyw-gov-logo img{
    max-width:82px;
    max-height:82px;
  }

  .kyyw-gov-brand-copy strong{
    font-size:35px;
  }

  .kyyw-gov-brand-copy em{
    font-size:15px;
  }

  .kyyw-gov-header-tools{
    width:390px;
    flex-basis:390px;
  }

  .kyyw-gov-nav-list > li > a{
    padding-left:18px;
    padding-right:18px;
    font-size:16px;
  }

  .kyyw-gov-nav-list > li.has-sub > a{
    padding-right:34px;
  }

  .kyyw-gov-nav-list > li.has-sub > a::after{
    right:18px;
  }
}

/* ---------- 手机版 ---------- */
@media(max-width:900px){
  .kyyw-gov-header .container{
    max-width:calc(100% - 24px);
  }

  .kyyw-gov-topbar{
    height:34px;
  }

  .kyyw-gov-topbar-left{
    font-size:12px;
  }

  .kyyw-gov-topbar-right{
    display:none;
  }

  .kyyw-gov-brandbar-inner{
    min-height:88px;
    gap:12px;
  }

  .kyyw-gov-brand{
    gap:11px;
    max-width:calc(100% - 54px);
  }

  .kyyw-gov-logo{
    width:60px;
    height:60px;
    flex-basis:60px;
    border-radius:9px;
  }

  .kyyw-gov-logo img{
    max-width:54px;
    max-height:54px;
  }

  .kyyw-gov-brand-copy strong{
    font-size:25px;
    line-height:1.1;
    letter-spacing:1px;
  }

  .kyyw-gov-brand-copy em{
    max-width:100%;
    margin-top:5px;
    overflow:hidden;
    font-size:11px;
    text-overflow:ellipsis;
    white-space:nowrap;
  }

  .kyyw-gov-header-tools{
    display:none;
  }

  .kyyw-gov-menu-toggle{
    display:flex;
    width:42px;
    height:42px;
    padding:9px 8px;
    flex:0 0 42px;
    flex-direction:column;
    align-items:stretch;
    justify-content:space-around;
    border:1px solid #c9d8e8;
    background:#fff;
    cursor:pointer;
  }

  .kyyw-gov-menu-toggle span{
    display:block;
    width:100%;
    height:2px;
    background:var(--gov-blue);
    transition:transform .2s ease,opacity .2s ease;
  }

  .kyyw-gov-menu-toggle.is-active span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
  }

  .kyyw-gov-menu-toggle.is-active span:nth-child(2){
    opacity:0;
  }

  .kyyw-gov-menu-toggle.is-active span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
  }

  .kyyw-gov-nav{
    display:none;
    max-height:calc(100vh - 122px);
    overflow-y:auto;
    border-bottom:0;
    background:var(--gov-blue-dark);
  }

  .kyyw-gov-nav.is-open{
    display:block;
  }

  .kyyw-gov-nav .container{
    width:100%;
    max-width:100%;
    padding:0;
  }

  .kyyw-gov-nav-list{
    display:block;
    width:100%;
    height:auto;
  }

  .kyyw-gov-nav-list > li{
    display:block;
    width:100%;
    max-width:none;
    border-bottom:1px solid rgba(255,255,255,.12);
  }

  .kyyw-gov-nav-list > li > a{
    display:block;
    width:100%;
    height:49px;
    padding:0 18px;
    line-height:49px;
    text-align:left;
  }

  .kyyw-gov-nav-list > li.has-sub > a{
    width:calc(100% - 50px);
    padding-right:12px;
  }

  .kyyw-gov-nav-list > li.has-sub > a::after{
    display:none;
  }

  .kyyw-gov-sub-toggle{
    position:absolute;
    top:0;
    right:0;
    z-index:3;
    display:flex;
    width:50px;
    height:49px;
    padding:0;
    align-items:center;
    justify-content:center;
    border:0;
    border-left:1px solid rgba(255,255,255,.12);
    background:transparent;
    cursor:pointer;
  }

  .kyyw-gov-sub-toggle::before{
    content:"";
    width:8px;
    height:8px;
    margin-top:-4px;
    border-right:2px solid rgba(255,255,255,.85);
    border-bottom:2px solid rgba(255,255,255,.85);
    transform:rotate(45deg);
  }

  .kyyw-gov-nav-list > li.sub-open > .kyyw-gov-sub-toggle::before{
    margin-top:4px;
    transform:rotate(225deg);
  }

  .kyyw-gov-subnav,
  .kyyw-gov-nav-list > li.has-sub:hover > .kyyw-gov-subnav,
  .kyyw-gov-nav-list > li.has-sub:focus-within > .kyyw-gov-subnav{
    position:static;
    display:none;
    min-width:0;
    margin:0;
    padding:0;
    visibility:visible;
    opacity:1;
    border:0;
    border-top:1px solid rgba(255,255,255,.1);
    background:#062e66;
    box-shadow:none;
    pointer-events:auto;
    transform:none;
  }

  .kyyw-gov-nav-list > li.sub-open > .kyyw-gov-subnav{
    display:block;
  }

  .kyyw-gov-subnav li{
    border-bottom:1px solid rgba(255,255,255,.08);
  }

  .kyyw-gov-subnav a{
    min-width:0;
    height:43px;
    padding:0 18px 0 36px;
    background:#062e66;
    color:#dbe8f8;
    font-size:14px;
    line-height:43px;
    white-space:normal;
  }

  .kyyw-gov-subnav a:hover{
    padding-left:40px;
    background:#083a7b;
    color:#fff;
  }
}

@media(max-width:420px){
  .kyyw-gov-topbar-left{
    max-width:100%;
  }

  .kyyw-gov-brand-copy em{
    max-width:240px;
  }
}

/* =========================================================
   科仪有维首页手机版精准优化补丁
   基于用户当前 4177 行原版 style.css 制作
   仅在 <=768px 生效，电脑端样式不作任何修改
   版本：20260717-mobile-exact-v2
   ========================================================= */

@media (max-width:768px){

  /* 仅限定首页，避免影响栏目页、内容页和投稿页 */
  body.authority-home,
  body.authority-home-v3{
    background:#f3f6fa;
  }

  body.authority-home .platform-main,
  body.authority-home .platform-main-v3,
  body.authority-home-v3 .platform-main,
  body.authority-home-v3 .platform-main-v3{
    padding-top:4px;
    padding-bottom:16px;
  }

  body.authority-home .platform-section,
  body.authority-home-v3 .platform-section{
    margin-top:12px;
  }

  body.authority-home .section-head.official-head,
  body.authority-home .section-head-v3,
  body.authority-home-v3 .section-head.official-head,
  body.authority-home-v3 .section-head-v3{
    min-height:48px;
    padding:7px 12px;
    border-top-width:3px;
  }

  body.authority-home .section-head.official-head h2,
  body.authority-home .section-head-v3 h2,
  body.authority-home-v3 .section-head.official-head h2,
  body.authority-home-v3 .section-head-v3 h2{
    font-size:19px;
  }

  body.authority-home .section-head.official-head > a,
  body.authority-home .section-head-v3 > a,
  body.authority-home-v3 .section-head.official-head > a,
  body.authority-home-v3 .section-head-v3 > a{
    font-size:12px;
  }

  /* 一、服务事项：由手机单列改为两列三行 */
  body.authority-home .service-hall-v3,
  body.authority-home-v3 .service-hall-v3{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
    padding:9px;
    border:1px solid #dce5ef;
    background:#f4f7fb;
  }

  body.authority-home .service-hall-v3 .service-hall-item,
  body.authority-home-v3 .service-hall-v3 .service-hall-item{
    position:relative;
    display:block;
    min-width:0;
    min-height:78px;
    padding:14px 9px 12px 40px;
    overflow:hidden;
    border:1px solid #dce6f1;
    border-radius:2px;
    background:#fff;
    box-shadow:0 2px 7px rgba(15,55,105,.035);
  }

  body.authority-home .service-hall-v3 .service-hall-item b,
  body.authority-home-v3 .service-hall-v3 .service-hall-item b{
    position:absolute;
    top:17px;
    left:10px;
    display:block;
    width:auto;
    height:auto;
    margin:0;
    background:transparent;
    color:#8ca0b8;
    font-size:11px;
    line-height:1;
  }

  body.authority-home .service-hall-v3 .service-hall-item strong,
  body.authority-home-v3 .service-hall-v3 .service-hall-item strong{
    display:block;
    margin:0;
    color:#073c7c;
    font-size:15px;
    line-height:1.45;
    white-space:normal;
  }

  body.authority-home .service-hall-v3 .service-hall-item span,
  body.authority-home-v3 .service-hall-v3 .service-hall-item span{
    display:none;
  }

  body.authority-home .service-hall-v3 .service-hall-item-share::after,
  body.authority-home-v3 .service-hall-v3 .service-hall-item-share::after{
    top:7px;
    right:-32px;
    width:92px;
    padding:2px 0;
    font-size:9px;
    line-height:1.45;
  }

  /* 二、检测服务与开放共享：六项改为两列 */
  body.authority-home .sharing-market-intro-v4,
  body.authority-home-v3 .sharing-market-intro-v4{
    gap:16px;
    padding:18px 14px;
  }

  body.authority-home .sharing-market-copy-v4 h3,
  body.authority-home-v3 .sharing-market-copy-v4 h3{
    margin-bottom:10px;
    font-size:21px;
  }

  body.authority-home .sharing-market-copy-v4 p,
  body.authority-home-v3 .sharing-market-copy-v4 p{
    font-size:13px;
    line-height:1.75;
  }

  body.authority-home .sharing-capability-grid-v4,
  body.authority-home-v3 .sharing-capability-grid-v4{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    padding:0 10px;
  }

  body.authority-home .sharing-capability-grid-v4 > a,
  body.authority-home .sharing-capability-grid-v4 > a:nth-child(2n),
  body.authority-home .sharing-capability-grid-v4 > a:nth-child(3n),
  body.authority-home .sharing-capability-grid-v4 > a:nth-last-child(-n+2),
  body.authority-home .sharing-capability-grid-v4 > a:nth-last-child(-n+3),
  body.authority-home-v3 .sharing-capability-grid-v4 > a,
  body.authority-home-v3 .sharing-capability-grid-v4 > a:nth-child(2n),
  body.authority-home-v3 .sharing-capability-grid-v4 > a:nth-child(3n),
  body.authority-home-v3 .sharing-capability-grid-v4 > a:nth-last-child(-n+2),
  body.authority-home-v3 .sharing-capability-grid-v4 > a:nth-last-child(-n+3){
    min-width:0;
    min-height:104px;
    padding:14px 9px 12px 38px;
    border-right:1px solid #e3eaf2;
    border-bottom:1px solid #e3eaf2;
  }

  body.authority-home .sharing-capability-grid-v4 > a:nth-child(2n),
  body.authority-home-v3 .sharing-capability-grid-v4 > a:nth-child(2n){
    border-right:0;
  }

  body.authority-home .sharing-capability-grid-v4 > a:nth-last-child(-n+2),
  body.authority-home-v3 .sharing-capability-grid-v4 > a:nth-last-child(-n+2){
    border-bottom:0;
  }

  body.authority-home .sharing-capability-grid-v4 b,
  body.authority-home-v3 .sharing-capability-grid-v4 b{
    top:16px;
    left:9px;
    font-size:14px;
  }

  body.authority-home .sharing-capability-grid-v4 strong,
  body.authority-home-v3 .sharing-capability-grid-v4 strong{
    margin-bottom:5px;
    font-size:14px;
    line-height:1.4;
  }

  body.authority-home .sharing-capability-grid-v4 span,
  body.authority-home-v3 .sharing-capability-grid-v4 span{
    display:-webkit-box;
    overflow:hidden;
    font-size:11px;
    line-height:1.55;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
  }

  body.authority-home .sharing-market-note-v4,
  body.authority-home-v3 .sharing-market-note-v4{
    padding:13px 14px;
    font-size:12px;
    line-height:1.7;
  }

  /* 三、资源协作：工程师四条保持2×2 */
  body.authority-home .kyyw-home-resource-grid,
  body.authority-home-v3 .kyyw-home-resource-grid{
    display:block;
    padding:9px;
  }

  body.authority-home .kyyw-home-resource-card,
  body.authority-home-v3 .kyyw-home-resource-card{
    min-height:0;
    margin-bottom:10px;
    border-top-width:3px;
    box-shadow:none;
  }

  body.authority-home .kyyw-home-resource-card:last-child,
  body.authority-home-v3 .kyyw-home-resource-card:last-child{
    margin-bottom:0;
  }

  body.authority-home .kyyw-home-resource-card:nth-child(1) .kyyw-home-resource-list,
  body.authority-home-v3 .kyyw-home-resource-card:nth-child(1) .kyyw-home-resource-list{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:7px;
    padding:9px 11px 11px;
  }

  body.authority-home .kyyw-home-resource-card:nth-child(1) .kyyw-home-resource-list li,
  body.authority-home-v3 .kyyw-home-resource-card:nth-child(1) .kyyw-home-resource-list li{
    display:flex;
    min-width:0;
    min-height:68px;
    padding:8px 9px;
    gap:6px;
  }

  body.authority-home .kyyw-home-resource-card:nth-child(1) .kyyw-home-resource-list li:nth-child(n+3),
  body.authority-home-v3 .kyyw-home-resource-card:nth-child(1) .kyyw-home-resource-list li:nth-child(n+3){
    display:flex;
  }

  body.authority-home .kyyw-home-resource-card:nth-child(1) .kyyw-home-resource-tag,
  body.authority-home-v3 .kyyw-home-resource-card:nth-child(1) .kyyw-home-resource-tag{
    max-width:100%;
    padding:2px 6px;
    font-size:10px;
  }

  body.authority-home .kyyw-home-resource-card:nth-child(1) .kyyw-home-resource-list li > a,
  body.authority-home-v3 .kyyw-home-resource-card:nth-child(1) .kyyw-home-resource-list li > a{
    font-size:14px;
  }

  body.authority-home .kyyw-home-resource-card-head,
  body.authority-home-v3 .kyyw-home-resource-card-head{
    min-height:48px;
    padding:0 13px;
  }

  body.authority-home .kyyw-home-resource-card-head h3,
  body.authority-home-v3 .kyyw-home-resource-card-head h3{
    font-size:17px;
  }

  body.authority-home .kyyw-home-resource-card:not(:first-child) .kyyw-home-resource-list,
  body.authority-home-v3 .kyyw-home-resource-card:not(:first-child) .kyyw-home-resource-list{
    padding:7px 11px 9px;
  }

  /* 四、底部：手机保持两栏，避免所有内容排成超长单列 */
  body.authority-home .site-footer,
  body.authority-home-v3 .site-footer{
    margin-top:24px;
  }

  body.authority-home .footer-main,
  body.authority-home-v3 .footer-main{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:22px 17px;
    padding-top:26px;
    padding-bottom:25px;
  }

  body.authority-home .footer-platform,
  body.authority-home .footer-entry,
  body.authority-home-v3 .footer-platform,
  body.authority-home-v3 .footer-entry{
    grid-column:1 / -1;
  }

  body.authority-home .footer-description,
  body.authority-home-v3 .footer-description{
    display:none;
  }

  body.authority-home .footer-brand,
  body.authority-home-v3 .footer-brand{
    margin-bottom:8px;
  }

  body.authority-home .footer-brand strong,
  body.authority-home-v3 .footer-brand strong{
    font-size:21px;
  }

  body.authority-home .footer-brand span,
  body.authority-home-v3 .footer-brand span{
    margin-top:4px;
    font-size:13px;
  }

  body.authority-home .footer-slogan,
  body.authority-home-v3 .footer-slogan{
    margin-top:10px;
    font-size:13px;
  }

  body.authority-home .footer-column h3,
  body.authority-home-v3 .footer-column h3{
    margin-bottom:11px;
  }

  body.authority-home .footer-column li + li,
  body.authority-home-v3 .footer-column li + li{
    margin-top:7px;
  }

  body.authority-home .footer-entry,
  body.authority-home-v3 .footer-entry{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    align-items:center;
    gap:12px;
  }

  body.authority-home .footer-entry h3,
  body.authority-home-v3 .footer-entry h3{
    grid-column:1 / -1;
  }

  body.authority-home .footer-cert-link,
  body.authority-home-v3 .footer-cert-link{
    width:auto;
    max-width:none;
    margin:0;
  }

  body.authority-home .footer-qrcode,
  body.authority-home-v3 .footer-qrcode{
    display:flex;
    flex-direction:row;
    align-items:center;
    gap:9px;
  }

  body.authority-home .footer-qrcode img,
  body.authority-home-v3 .footer-qrcode img{
    width:72px;
    height:72px;
  }

  body.authority-home .footer-qrcode span,
  body.authority-home-v3 .footer-qrcode span{
    max-width:92px;
    margin:0;
    text-align:left;
  }
}

/* 原CSS在420px以下会把底部改回单列，这里只在首页恢复两栏 */
@media (max-width:420px){

  body.authority-home .container,
  body.authority-home-v3 .container{
    margin-right:10px;
    margin-left:10px;
  }

  body.authority-home .service-hall-v3,
  body.authority-home-v3 .service-hall-v3{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:7px;
    padding:8px;
  }

  body.authority-home .service-hall-v3 .service-hall-item,
  body.authority-home-v3 .service-hall-v3 .service-hall-item{
    min-height:74px;
    padding:13px 8px 11px 37px;
  }

  body.authority-home .service-hall-v3 .service-hall-item b,
  body.authority-home-v3 .service-hall-v3 .service-hall-item b{
    left:9px;
  }

  body.authority-home .service-hall-v3 .service-hall-item strong,
  body.authority-home-v3 .service-hall-v3 .service-hall-item strong{
    font-size:14px;
  }

  body.authority-home .sharing-capability-grid-v4,
  body.authority-home-v3 .sharing-capability-grid-v4{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  body.authority-home .kyyw-home-resource-card:nth-child(1) .kyyw-home-resource-list,
  body.authority-home-v3 .kyyw-home-resource-card:nth-child(1) .kyyw-home-resource-list{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  body.authority-home .footer-main,
  body.authority-home-v3 .footer-main{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:20px 14px;
  }

  body.authority-home .footer-platform,
  body.authority-home .footer-entry,
  body.authority-home-v3 .footer-platform,
  body.authority-home-v3 .footer-entry{
    grid-column:1 / -1;
  }

  body.authority-home .footer-entry,
  body.authority-home-v3 .footer-entry{
    grid-template-columns:minmax(0,1fr) auto;
  }

  body.authority-home .footer-entry h3,
  body.authority-home-v3 .footer-entry h3{
    grid-column:1 / -1;
  }
}
/* =========================================================
   新闻内容页底部区域
   ========================================================= */

/* 平台说明 */
.statement-box-v3 {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin: 42px 0 28px;
    padding: 22px 24px;
    border: 1px solid #d6e6f5;
    border-left: 4px solid #0166b6;
    border-radius: 6px;
    background: #f5f9fd;
    box-sizing: border-box;
}

.statement-box-v3 .statement-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #0166b6;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 28px;
    text-align: center;
}

.statement-box-v3 .statement-content {
    flex: 1;
    min-width: 0;
}

.statement-box-v3 h3 {
    margin: 1px 0 8px;
    padding: 0;
    color: #153b61;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
}

.statement-box-v3 p {
    margin: 0;
    color: #52677c;
    font-size: 15px;
    line-height: 1.9;
    text-align: justify;
}

/* 上一篇、下一篇 */
.article-prev-next-v3 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
    padding: 26px 0;
    border-top: 1px solid #e4ebf2;
    border-bottom: 1px solid #e4ebf2;
}

.article-nav-item {
    position: relative;
    min-width: 0;
    padding: 18px 20px;
    border: 1px solid #dde7f0;
    border-radius: 6px;
    background: #ffffff;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.article-nav-item:hover {
    border-color: #8ebde3;
    box-shadow: 0 7px 20px rgba(18, 74, 120, 0.08);
    transform: translateY(-2px);
}

.article-nav-label {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
    color: #7b8b9b;
    font-size: 13px;
    line-height: 1.5;
}

.article-nav-next {
    text-align: right;
}

.article-nav-next .article-nav-label {
    justify-content: flex-end;
}

.article-nav-arrow {
    color: #0166b6;
    font-family: Arial, sans-serif;
    font-size: 16px;
}

.article-nav-title {
    overflow: hidden;
    color: #24384b;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.7;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.article-nav-title a {
    color: #24384b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-nav-title a:hover {
    color: #0166b6;
}

/* 帝国CMS无上一篇、下一篇时可能输出普通文字 */
.article-nav-title:empty::before {
    content: "暂无相关内容";
    color: #9aa7b3;
    font-weight: 400;
}

/* 返回按钮 */
.article-return-v3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 26px;
}

.article-return-v3 .article-return-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 118px;
    height: 42px;
    padding: 0 20px;
    border: 1px solid #cfdce8;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.article-return-back {
    background: #ffffff;
    color: #40566c;
}

.article-return-back:hover {
    border-color: #0166b6;
    color: #0166b6;
    background: #f4f9fd;
}

.article-return-home {
    border-color: #0166b6 !important;
    background: #0166b6;
    color: #ffffff;
}

.article-return-home:hover {
    border-color: #005698 !important;
    background: #005698;
    color: #ffffff;
    box-shadow: 0 5px 14px rgba(1, 102, 182, 0.2);
}

/* 移动端 */
@media (max-width: 768px) {

    .statement-box-v3 {
        gap: 12px;
        margin: 30px 0 22px;
        padding: 18px 16px;
    }

    .statement-box-v3 .statement-icon {
        flex-basis: 24px;
        width: 24px;
        height: 24px;
        font-size: 14px;
        line-height: 24px;
    }

    .statement-box-v3 h3 {
        font-size: 16px;
    }

    .statement-box-v3 p {
        font-size: 14px;
        line-height: 1.85;
    }

    .article-prev-next-v3 {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 22px 0;
    }

    .article-nav-item {
        padding: 15px 16px;
    }

    .article-nav-next,
    .article-nav-next .article-nav-label {
        text-align: left;
        justify-content: flex-start;
    }

    .article-nav-title {
        white-space: normal;
    }

    .article-return-v3 {
        flex-direction: column;
        gap: 10px;
    }

    .article-return-v3 .article-return-btn {
        width: 100%;
    }
}
/* =========================================================
   首页：检测服务、资源协作、专题专区
   ========================================================= */

.kyyw-home-shell,
.kyyw-home-shell * {
    box-sizing: border-box;
}

.kyyw-home-shell {
    width: calc(100% - 32px);
    max-width: 1200px;
    margin: 26px auto 0;
}

.kyyw-home-panel {
    margin-bottom: 24px;
    border: 1px solid #d5e1ed;
    border-top: 4px solid #0b4b92;
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(21, 55, 88, 0.035);
}

/* =========================================================
   通用栏目标题
   ========================================================= */

.kyyw-home-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: 0 20px;
    border-bottom: 1px solid #0b4b92;
    background: #ffffff;
}

.kyyw-home-section-title {
    display: flex;
    align-items: center;
    min-width: 0;
}

.kyyw-home-section-title i {
    display: block;
    flex: 0 0 4px;
    width: 4px;
    height: 34px;
    margin-right: 12px;
    background: #d51f2b;
}

.kyyw-home-section-title h2 {
    margin: 0;
    color: #0a417d;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.35;
}

.kyyw-home-section-title span {
    margin-left: 14px;
    color: #7f98b4;
    font-family: Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 0.35px;
    line-height: 1.5;
}

.kyyw-home-more {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 5px;
    margin-left: 20px;
    color: #0b4b92;
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.kyyw-home-more b {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    transition: transform 0.2s ease;
}

.kyyw-home-more:hover {
    color: #d51f2b;
}

.kyyw-home-more:hover b {
    transform: translateX(3px);
}

/* =========================================================
   检测服务与开放共享：上半部分
   ========================================================= */

.kyyw-testing-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 440px;
    gap: 38px;
    padding: 32px 34px;
    background:
        linear-gradient(
            110deg,
            #f7fbff 0%,
            #ffffff 52%,
            #f8fbfe 100%
        );
}

.kyyw-testing-intro {
    min-width: 0;
}

.kyyw-testing-label {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 14px;
    padding: 5px 12px;
    border-left: 4px solid #d51f2b;
    background: #eef6fd;
    color: #0b4b92;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.kyyw-testing-intro h3 {
    margin: 0 0 14px;
    color: #073e77;
    font-size: 29px;
    font-weight: 700;
    line-height: 1.35;
}

.kyyw-testing-intro > p {
    max-width: 680px;
    margin: 0;
    color: #506b86;
    font-size: 15px;
    line-height: 2;
    text-align: justify;
}

.kyyw-testing-points {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px 0;
    margin-top: 20px;
}

.kyyw-testing-points span {
    display: inline-flex;
    align-items: center;
    color: #0a417d;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.kyyw-testing-points span:not(:last-child)::after {
    content: "";
    width: 18px;
    height: 1px;
    margin: 0 10px;
    background: #9bb3cb;
}

/* 双入口 */
.kyyw-testing-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    min-width: 0;
}

.kyyw-testing-action {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 194px;
    padding: 20px 20px 18px;
    border: 1px solid #d2dfec;
    border-top: 4px solid #155efb;
    background: #ffffff;
    color: inherit;
    text-decoration: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.kyyw-testing-action:hover {
    border-color: #8db5dc;
    box-shadow: 0 10px 24px rgba(12, 70, 124, 0.1);
    transform: translateY(-3px);
}

.kyyw-testing-ability {
    border-top-color: #d51f2b;
}

.kyyw-testing-action-type {
    margin-bottom: 9px;
    color: #71879e;
    font-size: 13px;
    line-height: 1.5;
}

.kyyw-testing-action h3 {
    margin: 0 0 10px;
    color: #073e77;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.4;
}

.kyyw-testing-action p {
    margin: 0 0 15px;
    color: #65798d;
    font-size: 13px;
    line-height: 1.8;
}

.kyyw-testing-action-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    color: #155efb;
    font-size: 14px;
    font-weight: 700;
}

.kyyw-testing-ability .kyyw-testing-action-link {
    color: #d51f2b;
}

.kyyw-testing-action-link b {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    transition: transform 0.2s ease;
}

.kyyw-testing-action:hover .kyyw-testing-action-link b {
    transform: translateX(4px);
}

/* =========================================================
   六类检测能力
   ========================================================= */

.kyyw-testing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 0 34px;
    border-top: 1px solid #d9e4ef;
    border-left: 1px solid #d9e4ef;
}

.kyyw-testing-category {
    position: relative;
    display: flex;
    align-items: flex-start;
    min-width: 0;
    min-height: 132px;
    padding: 24px 42px 22px 20px;
    border-right: 1px solid #d9e4ef;
    border-bottom: 1px solid #d9e4ef;
    background: #ffffff;
    color: inherit;
    text-decoration: none;
    transition:
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.kyyw-testing-category:hover {
    z-index: 2;
    background: #f7fbff;
    box-shadow: inset 0 3px 0 #155efb;
}

.kyyw-testing-number {
    flex: 0 0 38px;
    width: 38px;
    color: #d51f2b;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
}

.kyyw-testing-category > div {
    flex: 1;
    min-width: 0;
}

.kyyw-testing-category h3 {
    margin: 0 0 8px;
    color: #0a417d;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
}

.kyyw-testing-category p {
    margin: 0;
    color: #718397;
    font-size: 13px;
    line-height: 1.75;
}

.kyyw-category-arrow {
    position: absolute;
    right: 18px;
    bottom: 20px;
    color: #8aa8c6;
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.kyyw-testing-category:hover .kyyw-category-arrow {
    color: #155efb;
    transform: translateX(4px);
}

.kyyw-testing-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 62px;
    margin-top: 26px;
    padding: 14px 24px;
    border-top: 1px solid #d8e4ef;
    background: #f3f8fd;
    color: #486785;
    font-size: 14px;
    line-height: 1.8;
    text-align: center;
}

.kyyw-testing-bottom strong {
    color: #0a417d;
    font-weight: 700;
}

/* =========================================================
   资源协作
   ========================================================= */

.kyyw-resource-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 1fr)
        minmax(0, 1.05fr);
    gap: 18px;
    padding: 18px;
    background: #f7faff;
}

.kyyw-resource-card {
    min-width: 0;
    min-height: 270px;
    border: 1px solid #d4e0ec;
    border-top: 4px solid #0b4b92;
    background: #ffffff;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.kyyw-resource-card:hover {
    border-color: #a8c1d9;
    box-shadow: 0 8px 22px rgba(16, 65, 108, 0.08);
    transform: translateY(-2px);
}

.kyyw-resource-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 0 16px;
    border-bottom: 1px solid #dce6ef;
}

.kyyw-resource-card-head h3 {
    position: relative;
    margin: 0;
    padding-left: 13px;
    color: #083f78;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.5;
}

.kyyw-resource-card-head h3::before {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 0;
    width: 4px;
    background: #155efb;
}

.kyyw-resource-card-head > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #647d96;
    font-size: 13px;
    text-decoration: none;
}

.kyyw-resource-card-head > a b {
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    transition: transform 0.2s ease;
}

.kyyw-resource-card-head > a:hover {
    color: #155efb;
}

.kyyw-resource-card-head > a:hover b {
    transform: translateX(3px);
}

/* 工程师列表 */
.kyyw-engineer-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 14px;
}

.kyyw-engineer-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    min-height: 88px;
    padding: 12px;
    border: 1px solid #dbe5ee;
    background: #fbfdff;
    color: inherit;
    text-decoration: none;
    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.kyyw-engineer-item:hover {
    border-color: #91b8df;
    background: #f3f8fe;
}

.kyyw-engineer-item strong {
    overflow: hidden;
    margin-top: 8px;
    color: #123f6f;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kyyw-engineer-item i {
    position: absolute;
    right: 10px;
    bottom: 9px;
    color: #9aabba;
    font-size: 11px;
    font-style: normal;
    opacity: 0;
    transform: translateX(-4px);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.kyyw-engineer-item:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* 通用资源标签 */
.kyyw-resource-tag {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    max-width: 100%;
    min-height: 24px;
    padding: 3px 8px;
    border: 1px solid #cfe0f0;
    background: #f0f7fd;
    color: #0d579a;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
}

.kyyw-tag-org {
    border-color: #cee4d4;
    background: #f2faf4;
    color: #26733c;
}

.kyyw-tag-equipment {
    border-color: #ead7bd;
    background: #fff8ef;
    color: #9b5718;
}

/* 服务机构、设备配件列表 */
.kyyw-resource-line-list {
    padding: 11px 14px 14px;
}

.kyyw-resource-line {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    min-height: 48px;
    padding: 9px 2px;
    border-bottom: 1px dashed #dce5ed;
    color: inherit;
    text-decoration: none;
}

.kyyw-resource-line:last-child {
    border-bottom: 0;
}

.kyyw-resource-line:hover {
    background: #f8fbfe;
}

.kyyw-resource-line .kyyw-resource-tag {
    flex: 0 0 auto;
}

.kyyw-resource-line strong {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    color: #23435f;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kyyw-resource-line > b {
    flex: 0 0 auto;
    color: #9bb0c4;
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    opacity: 0;
    transition:
        color 0.2s ease,
        opacity 0.2s ease,
        transform 0.2s ease;
}

.kyyw-resource-line:hover > b {
    color: #155efb;
    opacity: 1;
    transform: translateX(3px);
}

/* =========================================================
   专题专区
   ========================================================= */

.kyyw-topic-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding: 18px;
    background: #f7faff;
}

.kyyw-topic-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 178px;
    padding: 22px 20px 18px;
    overflow: hidden;
    border: 1px solid #d4e0ec;
    border-top: 4px solid #0b4b92;
    background: #ffffff;
    color: inherit;
    text-decoration: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.kyyw-topic-card::after {
    content: "";
    position: absolute;
    right: -35px;
    bottom: -55px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(21, 94, 251, 0.04);
    transition: transform 0.25s ease;
}

.kyyw-topic-card:hover {
    border-color: #94b7d8;
    box-shadow: 0 9px 24px rgba(16, 65, 108, 0.09);
    transform: translateY(-3px);
}

.kyyw-topic-card:hover::after {
    transform: scale(1.18);
}

.kyyw-topic-index {
    margin-bottom: 12px;
    color: #d51f2b;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.kyyw-topic-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    color: #083f78;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
}

.kyyw-topic-card p {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    color: #657c92;
    font-size: 13px;
    line-height: 1.8;
}

.kyyw-topic-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    color: #7891aa;
    font-size: 12px;
    font-weight: 500;
}

.kyyw-topic-link b {
    color: #155efb;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    transition: transform 0.2s ease;
}

.kyyw-topic-card:hover .kyyw-topic-link {
    color: #155efb;
}

.kyyw-topic-card:hover .kyyw-topic-link b {
    transform: translateX(4px);
}

/* =========================================================
   平板端
   ========================================================= */

@media (max-width: 1024px) {

    .kyyw-testing-hero {
        grid-template-columns: minmax(0, 1fr) 370px;
        gap: 24px;
        padding: 28px 24px;
    }

    .kyyw-testing-intro h3 {
        font-size: 26px;
    }

    .kyyw-testing-grid {
        margin-right: 24px;
        margin-left: 24px;
    }

    .kyyw-resource-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kyyw-resource-card:last-child {
        grid-column: 1 / -1;
    }

    .kyyw-topic-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* =========================================================
   手机端
   ========================================================= */

@media (max-width: 768px) {

    .kyyw-home-shell {
        width: calc(100% - 20px);
        margin-top: 16px;
    }

    .kyyw-home-panel {
        margin-bottom: 16px;
        border-top-width: 3px;
    }

    .kyyw-home-section-head {
        min-height: 50px;
        padding: 0 14px;
    }

    .kyyw-home-section-title i {
        flex-basis: 3px;
        width: 3px;
        height: 28px;
        margin-right: 9px;
    }

    .kyyw-home-section-title h2 {
        font-size: 19px;
    }

    .kyyw-home-section-title span {
        display: none;
    }

    .kyyw-home-more {
        margin-left: 12px;
        font-size: 12px;
    }

    /* 检测服务 */
    .kyyw-testing-hero {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 22px 16px;
    }

    .kyyw-testing-label {
        margin-bottom: 12px;
        font-size: 12px;
    }

    .kyyw-testing-intro h3 {
        margin-bottom: 11px;
        font-size: 23px;
    }

    .kyyw-testing-intro > p {
        font-size: 14px;
        line-height: 1.85;
    }

    .kyyw-testing-points {
        margin-top: 16px;
    }

    .kyyw-testing-points span {
        font-size: 12px;
    }

    .kyyw-testing-points span:not(:last-child)::after {
        width: 11px;
        margin: 0 7px;
    }

    .kyyw-testing-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .kyyw-testing-action {
        min-height: 178px;
        padding: 16px 14px;
    }

    .kyyw-testing-action h3 {
        font-size: 18px;
    }

    .kyyw-testing-action p {
        font-size: 12px;
        line-height: 1.7;
    }

    .kyyw-testing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-right: 16px;
        margin-left: 16px;
    }

    .kyyw-testing-category {
        min-height: 142px;
        padding: 20px 34px 18px 15px;
    }

    .kyyw-testing-number {
        flex-basis: 30px;
        width: 30px;
        font-size: 15px;
    }

    .kyyw-testing-category h3 {
        font-size: 15px;
    }

    .kyyw-testing-category p {
        font-size: 12px;
        line-height: 1.65;
    }

    .kyyw-category-arrow {
        right: 12px;
        bottom: 16px;
    }

    .kyyw-testing-bottom {
        display: block;
        min-height: 0;
        margin-top: 18px;
        padding: 14px 16px;
        font-size: 12px;
        line-height: 1.75;
    }

    .kyyw-testing-bottom strong {
        display: block;
        margin-bottom: 3px;
    }

    /* 资源协作 */
    .kyyw-resource-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 14px;
    }

    .kyyw-resource-card,
    .kyyw-resource-card:last-child {
        grid-column: auto;
        min-height: 0;
    }

    .kyyw-resource-card-head {
        min-height: 54px;
        padding: 0 14px;
    }

    .kyyw-resource-card-head h3 {
        font-size: 17px;
    }

    .kyyw-engineer-list {
        gap: 8px;
        padding: 12px;
    }

    .kyyw-engineer-item {
        min-height: 82px;
        padding: 10px;
    }

    .kyyw-engineer-item strong {
        font-size: 16px;
    }

    .kyyw-resource-line-list {
        padding: 8px 12px 12px;
    }

    .kyyw-resource-line {
        min-height: 47px;
    }

    /* 专题 */
    .kyyw-topic-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding: 14px;
    }

    .kyyw-topic-card {
        min-height: 170px;
        padding: 18px 15px 15px;
    }

    .kyyw-topic-card h3 {
        font-size: 16px;
    }

    .kyyw-topic-card p {
        font-size: 12px;
        line-height: 1.7;
    }
}

/* =========================================================
   小屏手机
   ========================================================= */

@media (max-width: 520px) {

    .kyyw-home-section-title h2 {
        font-size: 18px;
    }

    .kyyw-home-more {
        font-size: 11px;
    }

    .kyyw-testing-actions {
        grid-template-columns: 1fr;
    }

    .kyyw-testing-action {
        min-height: 0;
    }

    .kyyw-testing-grid {
        grid-template-columns: 1fr;
        border-right: 1px solid #d9e4ef;
    }

    .kyyw-testing-category {
        min-height: 112px;
    }

    .kyyw-engineer-list {
        grid-template-columns: 1fr;
    }

    .kyyw-engineer-item {
        min-height: 74px;
    }

    .kyyw-topic-grid {
        grid-template-columns: 1fr;
    }

    .kyyw-topic-card {
        min-height: 0;
    }
}
.article-body-v3 img {
    display: block !important;
    float: none !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 24px auto !important;
}
/* =========================================================
   底部主办信息与相关链接
========================================================= */

.footer-info-inner {
  display: block;
}

/* 主办、运营、地址信息 */
.footer-info-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 32px;
}

.footer-info-main > div {
  line-height: 1.8;
}

/* 相关链接区域 */
.footer-related-links {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-related-title {
  flex: 0 0 auto;
  position: relative;
  padding-left: 12px;
  font-weight: 600;
  line-height: 28px;
  white-space: nowrap;
}

.footer-related-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 3px;
  height: 14px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.75;
}

.footer-related-list {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 0;
  min-width: 0;
}

.footer-related-list a {
  position: relative;
  display: inline-block;
  margin-right: 16px;
  padding-right: 16px;
  line-height: 28px;
  color: inherit;
  text-decoration: none;
  opacity: 0.82;
  transition:
    opacity 0.2s ease,
    color 0.2s ease;
}

.footer-related-list a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 12px;
  background: currentColor;
  opacity: 0.22;
  transform: translateY(-50%);
}

.footer-related-list a:last-child {
  margin-right: 0;
  padding-right: 0;
}

.footer-related-list a:last-child::after {
  display: none;
}

.footer-related-list a:hover {
  color: #ffffff;
  opacity: 1;
}

/* 手机端 */
@media (max-width: 768px) {
  .footer-info-main {
    display: block;
  }

  .footer-info-main > div {
    margin-bottom: 5px;
  }

  .footer-related-links {
    display: block;
    margin-top: 12px;
    padding-top: 12px;
  }

  .footer-related-title {
    margin-bottom: 6px;
    line-height: 26px;
  }

  .footer-related-list {
    display: flex;
    gap: 0;
  }

  .footer-related-list a {
    margin-right: 12px;
    padding-right: 12px;
    line-height: 26px;
  }
}
/* =========================================================
   科仪有维官网底部最终版
========================================================= */

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: #0e3157;
}

.footer-service-line {
  height: 3px;
  background: #1f73d2;
}

.site-footer .container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

/* 主要区域 */
.footer-main {
  display: grid;
  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(290px, 0.82fr)
    minmax(300px, 0.86fr);
  gap: 58px;
  align-items: start;
  padding-top: 44px;
  padding-bottom: 38px;
}

/* 平台介绍 */
.footer-platform {
  min-width: 0;
}

.footer-brand {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.5px;
}

.footer-description {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 2;
  text-align: justify;
}

.footer-slogan {
  position: relative;
  margin-top: 20px;
  padding-left: 14px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
}

.footer-slogan::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 0;
  width: 3px;
  border-radius: 2px;
  background: #3d96ff;
}

/* 中间导航 */
.footer-nav-area {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 34px;
}

.footer-column h3,
.footer-section-title {
  position: relative;
  margin: 0 0 18px;
  padding-bottom: 12px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.footer-column h3::after,
.footer-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: #3d96ff;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li {
  margin: 0 0 11px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.7;
  text-decoration: none;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

.footer-column a:hover {
  padding-left: 4px;
  color: #ffffff;
}

/* 微信入口区域 */
.footer-wechat {
  min-width: 0;
}

.footer-wechat-intro {
  margin-top: -6px;
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.7;
}

/* 两个二维码并排 */
.footer-code-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.footer-code-item {
  min-width: 0;
  text-align: center;
}

.footer-code-image {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  padding: 5px;
  overflow: hidden;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.12);
}

.footer-code-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-code-text {
  margin-top: 9px;
}

.footer-code-text strong {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.footer-code-text span {
  display: block;
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.6;
}

/* 工程师查询入口 */
.footer-cert-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 19px;
  padding: 11px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.footer-cert-link span {
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
}

.footer-cert-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

/* 主办运营区域 */
.footer-info {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(0, 0, 0, 0.05);
}

.footer-info-inner {
  padding-top: 17px;
  padding-bottom: 17px;
}

.footer-info-main {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 30px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.8;
}

.footer-info-label {
  color: #ffffff;
  font-weight: 500;
}

/* 相关链接 */
.footer-related-links {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-related-title {
  position: relative;
  flex: 0 0 auto;
  padding-left: 11px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  line-height: 26px;
  white-space: nowrap;
}

.footer-related-title::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 3px;
  height: 13px;
  background: #3d96ff;
}

.footer-related-list {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  min-width: 0;
}

.footer-related-list a {
  position: relative;
  margin-right: 14px;
  padding-right: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 26px;
  text-decoration: none;
}

.footer-related-list a::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 0;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.18);
}

.footer-related-list a:last-child {
  margin-right: 0;
  padding-right: 0;
}

.footer-related-list a:last-child::after {
  display: none;
}

.footer-related-list a:hover {
  color: #ffffff;
}

/* 版权区域 */
.footer-bottom {
  background: #092744;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 58px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.7;
}

.footer-copyright span {
  margin-left: 8px;
}

.footer-record {
  text-align: right;
}

.footer-record a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
}

.footer-record a:hover {
  color: #ffffff;
}

.footer-divider {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.25);
}

/* 平板适配 */
@media (max-width: 1100px) {
  .footer-main {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 42px;
  }

  .footer-wechat {
    grid-column: 1 / -1;
    padding-top: 4px;
  }

  .footer-code-list {
    display: flex;
    justify-content: flex-start;
    gap: 38px;
  }

  .footer-code-item {
    width: 130px;
  }

  .footer-cert-link {
    max-width: 360px;
  }
}

/* 手机端 */
@media (max-width: 768px) {
  .site-footer .container {
    width: min(100% - 30px, 1240px);
  }

  .footer-main {
    display: block;
    padding-top: 34px;
    padding-bottom: 28px;
  }

  .footer-platform,
  .footer-nav-area,
  .footer-wechat {
    margin-bottom: 32px;
  }

  .footer-wechat {
    margin-bottom: 0;
  }

  .footer-brand {
    font-size: 21px;
  }

  .footer-description {
    font-size: 13px;
    line-height: 1.9;
  }

  .footer-nav-area {
    gap: 25px;
  }

  .footer-code-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .footer-code-item {
    width: auto;
  }

  .footer-info-main {
    display: block;
  }

  .footer-info-main > div {
    margin-bottom: 4px;
  }

  .footer-related-links {
    display: block;
  }

  .footer-related-title {
    margin-bottom: 4px;
  }

  .footer-bottom-inner {
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .footer-record {
    margin-top: 6px;
    text-align: left;
  }

  .footer-copyright span {
    display: block;
    margin: 2px 0 0;
  }
}
