/* ========================================
   六零导航页前台 - 现代设计系统
   全局视觉升级 + 暗色模式
   ======================================== */

/* ---- CSS Custom Properties ---- */
:root {
  --bg-primary: #f0f4f8;
  --bg-card: rgba(255,255,255,0.82);
  --bg-card-hover: #f8fafc;
  --bg-input: #ffffff;
  --bg-input-hover: #f8fafc;
  --bg-glass: rgba(255,255,255,0.92);
  --border: #e5e9f0;
  --border-light: #e8ecf2;
  --border-hover: #cbd5e1;
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-soft: rgba(37,99,235,0.08);
  --accent-gradient: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  --shadow-sm: 0 2px 8px rgba(15,23,42,0.04);
  --shadow: 0 6px 20px rgba(15,23,42,0.06);
  --shadow-md: 0 8px 24px rgba(15,23,42,0.08);
  --shadow-lg: 0 12px 48px rgba(15,23,42,0.08);
  --overlay-start: rgba(15,23,42,0.18);
  --overlay-mid: rgba(240,244,248,0.42);
  --overlay-end: #f0f4f8;
  --title-color: #ffffff;
  --title-shadow: 0 8px 28px rgba(15,23,42,0.28);
  --tag-bg: rgba(255,255,255,0.12);
  --tag-border: rgba(255,255,255,0.2);
  --tag-color: rgba(255,255,255,0.92);
  --time-color: #ffffff;
  --time-shadow: 0 2px 12px rgba(0,0,0,0.3);
  --nav-glass: rgba(255,255,255,0.92);
  --nav-border: rgba(226,232,240,0.95);
  --nav-shadow: 0 12px 40px rgba(15,23,42,0.12);
  --nav-link-color: #334155;
  --type-left-glass: rgba(255,255,255,0.94);
  --type-left-border: rgba(226,232,240,0.95);
  --type-right-bg: rgba(255,255,255,0.14);
  --type-right-border: rgba(255,255,255,0.2);
  --back-top-color: #1572ef;
  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 20px;
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  --transition: 0.2s ease;
}

/* ---- Dark Mode ---- */
[data-theme="dark"],
.dark-mode {
  --bg-primary: #0f172a;
  --bg-card: rgba(30,41,59,0.88);
  --bg-card-hover: rgba(51,65,85,0.6);
  --bg-input: #1e293b;
  --bg-input-hover: #334155;
  --bg-glass: rgba(30,41,59,0.92);
  --border: #334155;
  --border-light: #1e293b;
  --border-hover: #475569;
  --text-primary: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --accent: #60a5fa;
  --accent-hover: #3b82f6;
  --accent-soft: rgba(96,165,250,0.12);
  --accent-gradient: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --shadow: 0 6px 20px rgba(0,0,0,0.25);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.3);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.3);
  --overlay-start: rgba(0,0,0,0.3);
  --overlay-mid: rgba(15,23,42,0.7);
  --overlay-end: #0f172a;
  --title-color: #f1f5f9;
  --title-shadow: 0 8px 28px rgba(0,0,0,0.4);
  --tag-bg: rgba(255,255,255,0.08);
  --tag-border: rgba(255,255,255,0.12);
  --tag-color: rgba(255,255,255,0.85);
  --time-color: #f1f5f9;
  --time-shadow: 0 2px 12px rgba(0,0,0,0.5);
  --nav-glass: rgba(30,41,59,0.94);
  --nav-border: rgba(51,65,85,0.9);
  --nav-shadow: 0 12px 40px rgba(0,0,0,0.3);
  --nav-link-color: #cbd5e1;
  --type-left-glass: rgba(30,41,59,0.94);
  --type-left-border: rgba(51,65,85,0.9);
  --type-right-bg: rgba(255,255,255,0.08);
  --type-right-border: rgba(255,255,255,0.12);
  --back-top-color: #60a5fa;
}

/* ---- Theme Toggle Button ---- */
.theme-toggle {
  position: fixed;
  bottom: 30px;
  left: 28px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10003;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.theme-toggle:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow);
}
.theme-toggle svg {
  width: 20px;
  height: 20px;
  fill: var(--text-secondary);
  transition: all var(--transition);
}
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun,
.dark-mode .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon,
.dark-mode .theme-toggle .icon-moon { display: none; }

/* ---- Base overrides ---- */
a:hover{text-decoration:none;font-weight:bold}
a.icp{font-size:12px;color:#888;text-align:center;margin:0 5px}
.navbar .navbar-expand-lg .navbar-light .fixed-top{position:absolute;z-index:10000}
.navbar-light .navbar-toggler{color:#fff}

/* ---- General (kept for non-v2 compatibility) ---- */
p.content{text-align:center;padding:5px 30px;border-radius:10px;font-size:12px;color:#fff;font-weight:500}
::-webkit-scrollbar{display:none}
.back-to{bottom:55px;overflow:hidden;position:fixed;right:10px;width:110px;z-index:999}
.back-to .back-top{background:url("./images/top.png") no-repeat scroll 0 0 transparent;display:block;float:right;height:50px;margin-left:10px;outline:0 none;text-indent:-9999em;width:50px}
.back-to .back-top:hover{background-position:-50px 0}
.mylist li.col-3 img{display:block;width:45px;height:45px;padding:8px;background:#fff;border:1px solid #eee;border-radius:10px;margin:0 auto}
h2.title{text-align:center;color:#fff;font-size:36px;font-weight:600;text-shadow:1px 1px 8px #504b4b}
body{font-size:14px;overflow-x:hidden}
a{text-decoration:none}
a:hover{text-decoration:none}
svg.icon{width:14px;height:14px;margin:0 5px 0 8px;vertical-align:-0.15em;fill:currentColor;overflow:hidden}
.navbar-light .navbar-nav .nav-link{color:#fff !important;font-size:16px;font-weight:bold;text-shadow:0px 1px 0px #000}
#search{width:100%;margin:0;padding:0 0 10px;position:relative;z-index:2000;border-radius:5px}
#search form{position:relative;margin-top:15px}
#search-text{width:100%;height:50px;line-height:50px;text-indent:10px;font-size:16px;border-radius:10px;background-color:#fff;border:1px solid #fff;transition:0.3s all linear;padding-left:20px}
#search-text:focus{border:1px solid #4e6ef2}
#search-text:hover{border:1px solid #a7aab5}
#search button{position:absolute;top:0;right:0;background:none;border:0;border-radius:20px;width:auto;height:50px;border-radius:0 10px 10px 0;outline:none;background-color:#4e6ef2}
#search button:hover{cursor:pointer;background-color:#4662d9}
#search button i{color:#ddd;font-size:18px}
.search-group{text-align:center}
.s-current .search-type{padding-left:0;display:block}
.s-current{display:block}
#search-list{position:relative;overflow-x:auto}
#search-list::-webkit-scrollbar{display:none}
.s-type{position:absolute;top:0;left:0;z-index:13;width:75px}
.s-type:hover{height:auto}
.s-type>span{display:block;height:31px;width:75px}
.s-type-list{display:none;position:absolute;top:31px;padding:9pt 0;width:70px;background:#fff;border-radius:5px;box-shadow:0 9px 20px rgba(0,0,0,.16)}
.s-type-list:before{position:absolute;top:-1pc;left:20px;content:'';display:block;width:0;height:0;border:10px solid transparent;border-bottom-color:#fff}
.s-type-list label{display:block;font-size:15px;text-align:center;font-weight:normal;margin-bottom:0;padding:2px 0;cursor:pointer;transition:.3s}
.s-type-list label:hover{background:rgba(136,136,136,.1)}
.s-type-list .tile-lg{color:#fff;width:3pc;height:3pc;font-size:1.25rem;line-height:3rem;border-radius:.3rem;display:block;margin:auto}
.s-type:hover .s-type-list{display:block}
.type-text{position:absolute;left:0;width:75px;padding-left:9pt;font-size:1pc;line-height:31px}
.search-type{white-space:nowrap;margin:0}
.search-type label{margin:0}
.search-type img{width:14px;height:14px;margin:0 5px 0 8px;vertical-align:-0.15em;fill:currentColor;overflow:hidden}
.search-type li{margin-bottom:10px;display:inline-block;background:#ffffffAD;background:rgba(255,255,255,70%);border-radius:10px}
.search-type li label{display:inline-block;padding:0 11px;font-size:14px;border-radius:3px 3px 0 0;cursor:pointer}
.search-type input:checked+label,.search-type input:hover+label{background-color:#fff;height:50px;border-radius:10px}
#search-text::-webkit-input-placeholder{color:#bbb}
#word{position:absolute;list-style:none;top:55px;left:0px;width:100%;background:rgba(259,259,259,0.9);border-radius:5px;z-index:20000;padding:15px 10px;box-shadow:0 0 10px #aaa}
#word li{height:35px;padding:0 5px;text-indent:30px;background-size:20px;line-height:35px;cursor:pointer;font-size:16px;border-radius:5px}
#word li:hover{background-color:#ddd}
.set-check{margin-top:3px;font-size:9pt}
.set-check label{margin-left:3px}
.set-check input,.set-check label{opacity:0;transition:all .3s ease}
.search-type li{height:50px;line-height:50px;list-style:none;display:inline-block;border-radius:10px}
.mylist{list-style:none;padding:10px 20px;position:relative;z-index:1000;margin:20px 0;border-radius:15px;background:#ffffffe6;box-shadow:0 0.5rem 0.625rem #d4d4d44d}
.mylist li.col-3{width:100px;transition:0.3s all linear;font-size:14px;overflow:hidden;padding:10px 0;border-radius:10px}
.mylist li.col-3 svg{display:block;width:45px;height:45px;padding:8px;background:#fff;border:1px solid #eee;border-radius:10px;margin:0 auto}
.mylist li.col-3:hover{background:#eee}
.mylist li.col-3 span{width:100%;height:26px;line-height:26px;text-align:center;font-size:13px;word-break:break-all;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden}
.mylist li a{color:#555;display:block}
.mylist li.title{width:100%;min-width:auto;margin:0;height:35px;font-size:16px;line-height:33px;padding:0 20px 0 10px;margin-bottom:10px}
.banner-video{position:absolute;width:100%;overflow:hidden;left:0;top:0;height:100vh}
.banner-video video{width:2048px;float:left}
.banner-video img{object-fit:cover;width:100%;height:100vh}
@media screen and (min-width:1200px){.mylist li.col-3{min-width:132px}}
@media screen and (min-width:992px) and (max-width:1200px){.mylist li.col-3{min-width:110px}}
@media screen and (max-width:992px){
  #he-plugin-simple{display:none}
  .banner-video video{width:1200px}
  .banner-video img{object-fit:cover;width:100%;height:100vh}
  .search-group{padding-left:0px}
  div#navbarsExample05{background:rgba(0,0,0,0.8);padding:10px 30px;border-radius:20px}
}
@media screen and (max-width:767px){
  .banner-video video{width:960px}
  .banner-video img{object-fit:cover;width:100%;height:100vh}
  .s-type-list label{padding:5px 0}
  .search-list{height:30px;overflow-y:hidden;white-space:nowrap}
  .search-group{padding-left:0px}
  .mylist{border-radius:8px}
  .mylist li.col-3{margin:5px 0 5px}
  .mylist li.col-3 svg{width:30px;height:30px;padding:5px;border-radius:5px}
  .mylist li.col-3 span{font-size:12px}
  .mylist li.col-3 img{display:block;width:30px;height:30px;padding:5px;background:#fff;border:1px solid #eee;border-radius:10px;margin:0 auto}
}
.navbar-toggler svg{width:24px;height:24px}
.navbar-toggler .bi-list-nested{display:none}
.navbar-toggler.collapsed .bi-list-nested{display:block}
.navbar-toggler.collapsed .bi-x{display:none}
.navbar-toggler .bi-x{display:block}
#he-plugin-simple{z-index:1000}
::-webkit-scrollbar{width:8px;height:8px;border-radius:4px}
::-webkit-scrollbar-track{background:#eee;border-radius:0px}
::-webkit-scrollbar-thumb{background:#ddd;border-radius:0px}
::-webkit-scrollbar-thumb:hover{background:#ccc}
::-webkit-scrollbar-corner{background:#ddd}
::-webkit-scrollbar-corner{background:#ddd}
li.selected{background:#f1f1f1}
#word li:hover{background-color:#f1f1f1}
@font-face{font-family:"Micro";src:url('MicroExtendFLF.ttf')}
#show_time{font-family:"Micro";text-align:center;font-weight:bold;font-size:30px;color:#fff;text-shadow:1px 1px 2px #000}
#show_date{text-align:center;font-size:16px;color:#fff;font-weight:bold;margin:10px}

/* ---- Side Navigation (type-left) ---- */
.box{margin:40px 0;position:fixed;z-index:1000}
.change-type{min-width:40px;min-height:160px;position:absolute;z-index:99;left:0;top:0;display:flex}
.change-type .type-left{width:0;background:#fff;height:100%;box-shadow:0 2px 12px 0 rgb(0 0 0 / 50%);border-bottom-right-radius:5px;border-top-right-radius:5px;margin-left:-40px;overflow:hidden;transition:width 0.4s;-moz-transition:width 0.4s;-webkit-transition:width 0.4s;-o-transition:width 0.4s}
.change-type .showListType{width:150px;transition:width 0.4s;-moz-transition:width 0.4s;-webkit-transition:width 0.4s;-o-transition:width 0.4s}
.change-type .type-left ul{margin-bottom:0px}
.change-type .type-left ul li{line-height:40px;height:40px;text-align:left;width:100%;position:relative;cursor:pointer;list-style:none}
.change-type .type-left ul li a{display:block;height:100%;position:absolute;left:0;top:0;z-index:9;padding-left:15px;overflow:hidden;width:calc(100% - 17px);color:#333;font-size:14px;border-left:2px solid #26778d}
.change-type .type-left ul li span{display:block;position:absolute;width:0;height:100%;left:0;top:0;z-index:8;overflow:hidden;transition:width 0.5s;-moz-transition:width 0.5s;-webkit-transition:width 0.5s;-o-transition:width 0.5s}
.change-type .type-left ul li:hover span{transition:width 0.5s;-moz-transition:width 0.5s;-webkit-transition:width 0.5s;-o-transition:width 0.5s}
.type-left ul li:nth-child(1):hover span,.type-left ul li:nth-child(1).active span,.type-left ul li:nth-child(8):hover span,.type-left ul li:nth-child(8).active span{background:#2C73D2;width:100%;box-shadow:0px 2px 5px 0 rgba(0,0,0,0.5)}
.type-left ul li:nth-child(1):hover a,.type-left ul li:nth-child(1).active a,.type-left ul li:nth-child(8):hover a,.type-left ul li:nth-child(8).active a{border-left:2px solid #2C73D2;color:#fff}
.type-left ul li:nth-child(2):hover span,.type-left ul li:nth-child(2).active span,.type-left ul li:nth-child(9):hover span,.type-left ul li:nth-child(9).active span{background:#D65DB1;width:100%;box-shadow:0px 2px 5px 0 rgba(0,0,0,0.5)}
.type-left ul li:nth-child(2):hover a,.type-left ul li:nth-child(2).active a,.type-left ul li:nth-child(9):hover a,.type-left ul li:nth-child(9).active a{border-left:2px solid #D65DB1;color:#fff}
.type-left ul li:nth-child(3):hover span,.type-left ul li:nth-child(3).active span,.type-left ul li:nth-child(10):hover span,.type-left ul li:nth-child(10).active span{background:#00C9A7;width:100%;box-shadow:0px 2px 5px 0 rgba(0,0,0,0.5)}
.type-left ul li:nth-child(3):hover a,.type-left ul li:nth-child(3).active a,.type-left ul li:nth-child(10):hover a,.type-left ul li:nth-child(10).active a{border-left:2px solid #00C9A7;color:#fff}
.type-left ul li:nth-child(4):hover span,.type-left ul li:nth-child(4).active span,.type-left ul li:nth-child(11):hover span,.type-left ul li:nth-child(11).active span{background:#009EFA;width:100%;box-shadow:0px 2px 5px 0 rgba(0,0,0,0.5)}
.type-left ul li:nth-child(4):hover a,.type-left ul li:nth-child(4).active a,.type-left ul li:nth-child(11):hover a,.type-left ul li:nth-child(11).active a{border-left:2px solid #009EFA;color:#fff}
.type-left ul li:nth-child(5):hover span,.type-left ul li:nth-child(5).active span,.type-left ul li:nth-child(12):hover span,.type-left ul li:nth-child(12).active span{background:#FF8066;width:100%;box-shadow:0px 2px 5px 0 rgba(0,0,0,0.5)}
.type-left ul li:nth-child(5):hover a,.type-left ul li:nth-child(5).active a,.type-left ul li:nth-child(12):hover a,.type-left ul li:nth-child(12).active a{border-left:2px solid #FF8066;color:#fff}
.type-left ul li:nth-child(6):hover span,.type-left ul li:nth-child(6).active span,.type-left ul li:nth-child(13):hover span,.type-left ul li:nth-child(13).active span{background:#64b5f6;width:100%;box-shadow:0px 2px 5px 0 rgba(0,0,0,0.5)}
.type-left ul li:nth-child(6):hover a,.type-left ul li:nth-child(6).active a,.type-left ul li:nth-child(13):hover a,.type-left ul li:nth-child(13).active a{border-left:2px solid #64b5f6;color:#fff}
.type-left ul li:nth-child(7):hover span,.type-left ul li:nth-child(7).active span,.type-left ul li:nth-child(14):hover span,.type-left ul li:nth-child(14).active span{background:#388e3c;width:100%;box-shadow:0px 2px 5px 0 rgba(0,0,0,0.5)}
.type-left ul li:nth-child(7):hover a,.type-left ul li:nth-child(7).active a,.type-left ul li:nth-child(14):hover a,.type-left ul li:nth-child(14).active a{border-left:2px solid #388e3c;color:#fff}
ul.navbar-nav.mr-auto{margin-left:60px}
.type-right{position:fixed;top:38px}
.type-right svg{width:28px;height:28px}
@media screen and (max-width:992px){.type-right{position:fixed;top:10px;right:10px}}

/* ====================================
   Refined Homepage v2 With CSS Variables
   全局视觉升级
   ==================================== */
.default-theme-v2{
  min-height:100vh;
  background:var(--bg-primary);
  color:var(--text-primary);
  font-family:var(--font-family);
}
.default-theme-v2 .banner-video:after{
  content:"";
  position:absolute;
  inset:0;
  z-index:9;
  background:linear-gradient(180deg, var(--overlay-start) 0%, var(--overlay-mid) 52%, var(--overlay-end) 100%);
}
.default-theme-v2 .bottom-cover{display:none}
.default-theme-v2 .navbar{
  padding:20px 32px;
  position:fixed!important;
  top:50%;
  left:20px;
  right:auto;
  transform:translateY(-50%);
  width:auto;
  background:transparent!important;
  flex-direction:column!important;
  align-items:flex-start!important;
}
.default-theme-v2 .navbar .navbar-toggler{display:none!important}
.default-theme-v2 .navbar .navbar-collapse{
  display:flex!important;
  flex-direction:column!important;
  background:var(--nav-glass);
  backdrop-filter:blur(22px);
  -webkit-backdrop-filter:blur(22px);
  border:1px solid var(--nav-border);
  border-radius:20px;
  padding:12px 8px;
  box-shadow:var(--nav-shadow);
}
.default-theme-v2 .navbar-nav{
  flex-direction:column!important;
  gap:6px;
  margin:0!important;
}
.default-theme-v2 .navbar-light .navbar-nav .nav-link{
  color:var(--nav-link-color)!important;
  font-size:14px;
  font-weight:600;
  text-shadow:none;
  padding:10px 16px;
  border-radius:var(--radius-sm);
  transition:all var(--transition);
  white-space:nowrap;
}
.default-theme-v2 .navbar-light .navbar-nav .nav-link:hover{
  background:var(--accent-gradient);
  color:#fff!important;
  transform:translateX(4px);
}
.default-theme-v2 #main{
  position:fixed;
  top:20px;
  right:20px;
  z-index:10002;
  text-align:right;
}
.default-theme-v2 #show_date{
  font-size:14px;
  color:var(--time-color);
  font-weight:600;
  margin:0 0 4px;
  text-shadow:var(--time-shadow);
}
.default-theme-v2 #show_time{
  font-family:"Micro",monospace;
  font-size:28px;
  color:var(--time-color);
  font-weight:700;
  text-shadow:var(--time-shadow);
}
.default-theme-v2 .type-right{
  top:26px;
  left:28px;
  width:auto;
  height:44px;
  padding:0 14px;
  gap:7px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:var(--type-right-bg);
  border:1px solid var(--type-right-border);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  cursor:pointer;
  transition:all var(--transition);
}
.default-theme-v2 .type-right:hover{
  background:rgba(255,255,255,0.22);
  transform:scale(1.05);
}
.default-theme-v2 .type-right svg{width:22px;height:22px;fill:#fff}
.default-theme-v2 .type-right span{color:#fff;font-size:13px;font-weight:700;letter-spacing:.02em;line-height:1}
.default-theme-v2 ul.navbar-nav.mr-auto{margin-left:0!important}
.default-theme-v2 .home-shell{
  position:relative;
  z-index:100;
  max-width:1220px;
  margin-top:6vh!important;
  padding-bottom:34px;
}
.default-theme-v2 h2.title{
  margin:0 auto 16px;
  color:var(--title-color);
  font-size:46px;
  line-height:1.2;
  font-weight:700;
  letter-spacing:-0.02em;
  text-shadow:var(--title-shadow);
}
.default-theme-v2 p.content{
  width:fit-content;
  max-width:720px;
  margin:0 auto 20px;
  padding:10px 20px;
  color:var(--tag-color);
  background:var(--tag-bg);
  border:1px solid var(--tag-border);
  border-radius:999px;
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  font-size:14px;
  font-weight:500;
}
.default-theme-v2 #search{
  max-width:920px;
  margin:0 auto 22px;
  padding:20px 24px 18px;
  border-radius:24px;
  background:transparent;
  border:0;
  box-shadow:none;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}
.default-theme-v2 #search form{margin-top:16px}
.default-theme-v2 #search-text{
  height:56px;
  line-height:56px;
  padding:0 72px 0 24px;
  text-indent:0;
  border-radius:var(--radius);
  background:var(--bg-input);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  font-size:15px;
  color:var(--text-primary);
  transition:all var(--transition);
}
.default-theme-v2 #search-text:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 4px var(--accent-soft);
}
.default-theme-v2 #search-text::placeholder{color:var(--text-muted)}
.default-theme-v2 #search button{
  width:56px;
  height:56px;
  border-radius:0 var(--radius) var(--radius) 0;
  background:var(--accent-gradient);
  transition:all var(--transition);
}
.default-theme-v2 #search button:hover{
  background:linear-gradient(135deg, var(--accent-hover) 0%, var(--accent-hover) 100%);
  transform:scale(1.02);
}
.default-theme-v2 .search-type{
  display:flex;
  gap:10px;
  padding:0;
  overflow-x:auto;
  scrollbar-width:none;
}
.default-theme-v2 .search-type::-webkit-scrollbar{display:none}
.default-theme-v2 .search-type li{
  height:40px;
  line-height:40px;
  margin:0;
  background:var(--bg-input-hover);
  border:1px solid var(--border-light);
  border-radius:var(--radius-sm);
  flex:0 0 auto;
  transition:all var(--transition);
}
.default-theme-v2 .search-type li:hover{
  border-color:var(--border-hover);
  transform:translateY(-1px);
}
.default-theme-v2 .search-type li label{
  height:40px;
  padding:0 16px;
  border-radius:var(--radius-sm);
  font-size:13px;
  color:var(--text-muted);
  font-weight:500;
  cursor:pointer;
  transition:all var(--transition);
}
.default-theme-v2 .search-type input:checked+label{
  background:var(--bg-input);
  color:var(--accent);
  height:40px;
  border-radius:var(--radius-sm);
  border:1px solid var(--accent);
  box-shadow:0 0 0 3px var(--accent-soft);
}
.default-theme-v2 .search-type input:hover+label{
  background:var(--bg-input-hover);
  color:var(--text-secondary);
}
.default-theme-v2 #word{
  top:68px;
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:var(--bg-input);
  box-shadow:var(--shadow-lg);
}
.default-theme-v2 #word li{
  color:var(--text-secondary);
}
.default-theme-v2 #word li:hover{
  background:var(--bg-card-hover);
  color:var(--accent);
}
.default-theme-v2 .mylist{
  margin:18px 0;
  padding:20px 18px;
  border-radius:var(--radius-lg);
  background:var(--bg-card);
  border:1px solid var(--border);
  box-shadow:var(--shadow-lg);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
}
.default-theme-v2 .mylist li.title{
  display:flex;
  align-items:center;
  gap:10px;
  height:auto;
  min-height:42px;
  margin:0 0 14px;
  padding:0 4px 10px;
  border-bottom:2px solid var(--border-light);
  color:var(--text-primary);
  font-size:17px;
  font-weight:700;
}
.default-theme-v2 .mylist li.title svg,.default-theme-v2 .mylist li.title img{
  width:22px;
  height:22px;
  padding:0;
  background:transparent;
  border:0;
  margin:0;
}
.default-theme-v2 .mylist li.col-3{
  width:auto;
  min-width:0!important;
  padding:7px 6px;
  border-radius:14px;
  transition:all var(--transition);
}
.default-theme-v2 .mylist li.col-3:hover{
  background:var(--bg-card-hover);
  transform:translateY(-3px);
  box-shadow:var(--shadow-md);
}
.default-theme-v2 .mylist li a{
  color:var(--text-secondary);
  padding:8px 4px;
  border-radius:var(--radius-sm);
  display:block;
}
.default-theme-v2 .mylist li.col-3 svg,.default-theme-v2 .mylist li.col-3 img{
  width:48px;
  height:48px;
  padding:10px;
  background:var(--bg-card-hover);
  border:1px solid var(--border-light);
  border-radius:14px;
  box-shadow:var(--shadow-sm);
  transition:all var(--transition);
}
.default-theme-v2 .mylist li.col-3:hover svg,.default-theme-v2 .mylist li.col-3:hover img{
  border-color:var(--border-hover);
  box-shadow:var(--shadow);
}
.default-theme-v2 .mylist li.col-3 span{
  height:28px;
  line-height:28px;
  color:var(--text-secondary);
  font-size:13px;
  font-weight:600;
  margin-top:2px;
}
.default-theme-v2 .change-type{top:0;margin:0;z-index:10001}
.default-theme-v2 .change-type .type-left{
  min-height:auto;
  height:auto;
  max-height:72vh;
  margin-left:-188px;
  padding:12px 0;
  background:var(--type-left-glass);
  border:1px solid var(--type-left-border);
  border-radius:0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow:0 20px 60px rgba(15,23,42,.16);
  backdrop-filter:blur(22px);
  -webkit-backdrop-filter:blur(22px);
}
.default-theme-v2 .change-type .showListType{width:188px}
.default-theme-v2 .change-type .type-left ul li a{
  border-left:0;
  color:var(--text-secondary);
  font-weight:600;
  font-size:14px;
  padding-left:22px;
  transition:all var(--transition);
}
.default-theme-v2 .type-left ul li:hover a,.default-theme-v2 .type-left ul li.active a{
  color:#fff;
  padding-left:26px;
}
.default-theme-v2 .footer{position:relative;z-index:100;color:var(--text-muted)!important;font-size:13px}

/* ---- Responsive ---- */
@media screen and (max-width:992px){
  .default-theme-v2 .navbar{
    position:fixed!important;
    top:auto!important;
    bottom:20px!important;
    left:50%!important;
    right:auto!important;
    transform:translateX(-50%)!important;
    padding:0;
  }
  .default-theme-v2 .navbar .navbar-collapse{
    flex-direction:row!important;
    padding:8px 12px;
    border-radius:999px;
    gap:4px;
  }
  .default-theme-v2 .navbar-nav{
    flex-direction:row!important;
    gap:4px;
  }
  .default-theme-v2 .navbar-light .navbar-nav .nav-link{
    font-size:13px;
    padding:8px 14px;
    border-radius:999px;
  }
  .default-theme-v2 .navbar-light .navbar-nav .nav-link:hover{
    transform:translateY(-2px);
  }
  .default-theme-v2 .home-shell{margin-top:8vh!important;padding-left:18px;padding-right:18px;padding-bottom:80px}
  .default-theme-v2 h2.title{font-size:36px;margin-bottom:14px}
  .default-theme-v2 p.content{font-size:13px;padding:9px 18px;margin-bottom:24px}
  .default-theme-v2 #search{padding:20px;border-radius:20px;margin-bottom:28px}
  .default-theme-v2 #search form{margin-top:14px}
  .default-theme-v2 #search-text{
    height:52px;
    line-height:52px;
    padding:0 68px 0 20px;
    font-size:14px;
    border-radius:14px;
  }
  .default-theme-v2 #search button{width:52px;height:52px;border-radius:0 14px 14px 0}
  .default-theme-v2 .search-type{gap:8px;padding:0}
  .default-theme-v2 .search-type li{height:38px;line-height:38px;border-radius:11px}
  .default-theme-v2 .search-type li label{height:38px;padding:0 14px;font-size:12px;border-radius:11px}
  .default-theme-v2 .search-type input:checked+label{height:38px;border-radius:11px}
  .default-theme-v2 #word{top:64px;border-radius:14px}
  .default-theme-v2 .mylist{margin:20px 0;padding:20px;border-radius:20px}
  .default-theme-v2 .mylist li.title{margin:0 0 16px;padding:0 4px 12px;font-size:16px;gap:8px}
  .default-theme-v2 .mylist li.title svg,.default-theme-v2 .mylist li.title img{width:20px;height:20px}
  .default-theme-v2 .mylist li.col-3{padding:8px;border-radius:14px}
  .default-theme-v2 .mylist li a{padding:8px 4px}
  .default-theme-v2 .mylist li.col-3 svg,.default-theme-v2 .mylist li.col-3 img{
    width:48px;
    height:48px;
    padding:10px;
    border-radius:14px;
  }
  .default-theme-v2 .mylist li.col-3 span{font-size:12px;height:28px;line-height:28px}
  .default-theme-v2 .change-type .type-left{
    margin-left:-180px;
    padding:10px 0;
    border-radius:0 18px 18px 0;
  }
  .default-theme-v2 .change-type .showListType{width:180px}
  .default-theme-v2 .change-type .type-left ul li a{font-size:13px;padding-left:20px}
  .default-theme-v2 .type-left ul li:hover a,.default-theme-v2 .type-left ul li.active a{padding-left:24px}
  .default-theme-v2 .type-right{width:auto;height:40px;top:16px;left:16px;border-radius:12px;padding:0 12px}
  .default-theme-v2 .type-right svg{width:20px;height:20px}
  .theme-toggle{bottom:inherit;top:100px;left:28px;}
}
@media screen and (max-width:576px){
  .default-theme-v2 .navbar .navbar-collapse{
    padding:6px 10px;
  }
  .default-theme-v2 .navbar-light .navbar-nav .nav-link{
    font-size:12px;
    padding:7px 12px;
  }
  .default-theme-v2 .home-shell{margin-top:7vh!important;padding-left:14px;padding-right:14px}
  .default-theme-v2 h2.title{font-size:30px}
  .default-theme-v2 p.content{font-size:12px;padding:8px 16px}
  .default-theme-v2 #search{padding:18px;border-radius:18px}
  .default-theme-v2 .mylist{padding:16px;margin:18px 0;border-radius:18px}
  .default-theme-v2 .mylist li.title{padding:0 2px 10px;margin:0 0 14px;font-size:15px}
  .default-theme-v2 .mylist li.col-3{padding:7px 3px}
  .default-theme-v2 .mylist li.col-3 svg,.default-theme-v2 .mylist li.col-3 img{
    width:44px;
    height:44px;
    padding:9px;
    border-radius:13px;
  }
  .default-theme-v2 .mylist li.col-3 span{font-size:12px}
  .theme-toggle{left:20px;width:40px;height:40px;border-radius:12px}
}
@media screen and (max-width:767px){
  .default-theme-v2 .home-shell{margin-top:8vh!important}
  .default-theme-v2 .mylist{padding:14px;border-radius:22px}
  .default-theme-v2 .mylist li.col-3{padding:6px 2px}
  .default-theme-v2 .mylist li.col-3 svg,.default-theme-v2 .mylist li.col-3 img{width:38px;height:38px;padding:7px;border-radius:13px}
  .default-theme-v2 #search-text,.default-theme-v2 #search button{height:54px;line-height:54px}
}

/* default v3 premium density refresh */
:root{
  --home-ink:#0b1220;
  --home-muted:#5f6f86;
  --home-blue:#2563eb;
  --home-blue-2:#06b6d4;
  --home-card:rgba(255,255,255,.72);
  --home-line:rgba(255,255,255,.55);
  --home-shadow:0 26px 80px rgba(15,23,42,.14);
}
.default-theme-v2{
  background:radial-gradient(circle at 20% 12%,rgba(37,99,235,.16),transparent 28%),radial-gradient(circle at 82% 10%,rgba(6,182,212,.16),transparent 26%),linear-gradient(180deg,#eef6ff 0%,#f7fafc 52%,#edf2f7 100%);
}
.default-theme-v2 .banner-video:after{
  background:linear-gradient(180deg,rgba(7,13,25,.14) 0%,rgba(238,246,255,.42) 38%,rgba(247,250,252,.96) 74%,#edf2f7 100%);
}
.default-theme-v2 .home-shell{
  max-width:1280px;
  margin-top:4.2vh!important;
}
.default-theme-v2 h2.title{
  font-size:clamp(34px,4vw,58px);
  letter-spacing:-.055em;
  text-shadow:0 12px 38px rgba(15,23,42,.28);
}
.default-theme-v2 p.content{
  margin-bottom:14px;
  background:rgba(15,23,42,.18);
  border-color:rgba(255,255,255,.28);
  box-shadow:0 10px 36px rgba(15,23,42,.08);
}
.default-theme-v2 #search{
  max-width:980px;
  margin-bottom:14px;
  padding:16px 18px 14px;
}
.default-theme-v2 #search form{
  margin-top:12px;
}
.default-theme-v2 #search-text{
  height:62px;
  line-height:62px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.72);
  background:rgba(255,255,255,.86);
  box-shadow:0 22px 56px rgba(15,23,42,.16),inset 0 1px 0 rgba(255,255,255,.86);
  backdrop-filter:blur(24px);
}
.default-theme-v2 #search-text:hover{
  border-color:rgba(37,99,235,.28);
}
.default-theme-v2 #search-text:focus{
  background:#fff;
  border-color:rgba(37,99,235,.72);
  box-shadow:0 28px 70px rgba(37,99,235,.18),0 0 0 5px rgba(37,99,235,.1);
}
.default-theme-v2 #search button{
  width:62px;
  height:62px;
  border-radius:0 20px 20px 0;
  background:linear-gradient(135deg,var(--home-blue) 0%,var(--home-blue-2) 100%);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.26);
}
.default-theme-v2 #search button svg{
  margin:0!important;
}
.default-theme-v2 .search-type{
  gap:8px;
}
.default-theme-v2 .search-type li{
  height:36px;
  line-height:36px;
  background:rgba(255,255,255,.58);
  border-color:rgba(255,255,255,.64);
  box-shadow:0 8px 22px rgba(15,23,42,.06);
  backdrop-filter:blur(16px);
  cursor:pointer;
  -webkit-user-select:none;
  user-select:none;
}
.default-theme-v2 .search-type li label{
  height:36px;
  line-height:36px;
  padding:0 14px;
  cursor:pointer;
  -webkit-user-select:none;
  user-select:none;
}
.default-theme-v2 .search-type li label *{
  cursor:pointer;
  -webkit-user-select:none;
  user-select:none;
}
.default-theme-v2 .search-type input:checked+label{
  height:36px;
  color:#fff;
  border-color:transparent;
  background:linear-gradient(135deg,var(--home-blue),var(--home-blue-2));
  box-shadow:0 12px 28px rgba(37,99,235,.24);
}
.default-theme-v2 #word{
  top:72px;
  border-radius:18px;
  background:rgba(255,255,255,.94);
  border:1px solid rgba(226,232,240,.9);
  box-shadow:var(--home-shadow);
  backdrop-filter:blur(22px);
}
.default-theme-v2 #word li{
  border-radius:12px;
  color:var(--home-ink);
}
.default-theme-v2 #word li:hover{
  background:rgba(37,99,235,.08);
}
.default-theme-v2 .mylist{
  margin:14px 0;
  padding:16px;
  border-radius:26px;
  background:var(--home-card);
  border:1px solid var(--home-line);
  box-shadow:var(--home-shadow);
  backdrop-filter:blur(26px) saturate(1.18);
}
.default-theme-v2 .mylist li.title{
  min-height:34px;
  margin-bottom:10px;
  padding:0 4px 8px;
  border-bottom:1px solid rgba(148,163,184,.18);
  color:var(--home-ink);
  font-size:16px;
  letter-spacing:-.02em;
}
.default-theme-v2 .mylist li.title:after{
  content:"";
  width:32px;
  height:4px;
  margin-left:auto;
  border-radius:999px;
  background:linear-gradient(90deg,var(--home-blue),var(--home-blue-2));
  opacity:.72;
}
.default-theme-v2 .mylist li.col-3{
  padding:5px 4px;
}
.default-theme-v2 .mylist li a{
  padding:9px 5px 7px;
  color:var(--home-ink);
}
.default-theme-v2 .mylist li.col-3:hover{
  background:rgba(255,255,255,.7);
  transform:translateY(-5px) scale(1.02);
  box-shadow:0 18px 36px rgba(15,23,42,.12);
}
.default-theme-v2 .mylist li.col-3 svg,.default-theme-v2 .mylist li.col-3 img{
  width:46px;
  height:46px;
  padding:9px;
  border-radius:16px;
  background:linear-gradient(180deg,#fff 0%,#f8fafc 100%);
  border:1px solid rgba(226,232,240,.88);
  box-shadow:0 8px 22px rgba(15,23,42,.08);
}
.default-theme-v2 .mylist li.col-3 span{
  height:25px;
  line-height:25px;
  color:#26364f;
  font-size:12px;
  letter-spacing:-.01em;
}
.default-theme-v2 .navbar .navbar-collapse{
  background:rgba(255,255,255,.74);
  border-color:rgba(255,255,255,.72);
  box-shadow:0 20px 58px rgba(15,23,42,.12);
}
.default-theme-v2 .navbar-light .navbar-nav .nav-link:hover{
  background:linear-gradient(135deg,var(--home-blue),var(--home-blue-2));
}
.default-theme-v2 #main{
  padding:10px 14px;
  border-radius:18px;
  background:rgba(15,23,42,.12);
  border:1px solid rgba(255,255,255,.2);
  backdrop-filter:blur(18px);
}
.default-theme-v2 #show_time{
  font-size:24px;
}
.default-theme-v2 #show_date{
  font-size:12px;
}
.default-theme-v2 .type-right{
  background:rgba(15,23,42,.16);
  border-color:rgba(255,255,255,.26);
  box-shadow:0 14px 36px rgba(15,23,42,.12);
}
.default-theme-v2 .change-type .type-left{
  background:rgba(255,255,255,.82);
  border-color:rgba(255,255,255,.72);
}
.default-theme-v2 .footer a,.default-theme-v2 .footer{
  color:var(--home-muted)!important;
}
@media screen and (min-width:1200px){
  .default-theme-v2 .mylist li.col-3{flex:0 0 10%;max-width:10%}
}
@media screen and (max-width:992px){
  .default-theme-v2 .home-shell{margin-top:6vh!important}
  .default-theme-v2 #main{top:14px;right:14px;padding:8px 12px}
  .default-theme-v2 #show_time{font-size:20px}
  .default-theme-v2 #search{padding:12px 0;margin-bottom:14px}
  .default-theme-v2 .mylist{padding:14px;margin:14px 0}
}
@media screen and (max-width:576px){
  .default-theme-v2 h2.title{font-size:28px}
  .default-theme-v2 #search-text,.default-theme-v2 #search button{height:56px;line-height:56px}
  .default-theme-v2 #search button{width:56px}
  .default-theme-v2 .mylist li.col-3 svg,.default-theme-v2 .mylist li.col-3 img{width:40px;height:40px;padding:8px}
}
