body {
    background: #f3f6fb;
}

.td-home {
    background: #f3f6fb;
    padding-bottom: 10px;
}

/* ===== Top Bar (inside header) ===== */
.td-topbar {
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.15);
    padding: 0;
    font-size: 13px;
}

.td-topbar__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 36px;
    padding: 0 10px;
}

.td-topbar__phone {
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
}

.td-topbar__right {
    display: flex;
    gap: 6px;
}

/* ===== User Dropdown Menu (topbar, logged in) ===== */
.td-user-dropdown {
    position: relative;
    display: inline-block;
}

.td-user-dropdown__trigger {
    display: flex;
    align-items: center;
    gap: 2px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    padding: 2px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}

.td-user-dropdown__trigger:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.td-user-dropdown__arrow {
    font-size: 10px;
    transition: transform 0.2s;
}

.td-user-dropdown:hover .td-user-dropdown__arrow {
    transform: rotate(180deg);
}

.td-user-dropdown__menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 150px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    padding: 6px 0;
    margin-top: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.td-user-dropdown:hover .td-user-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.td-user-dropdown__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    color: #333;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.15s;
}

.td-user-dropdown__item:hover {
    background: #f5f7fa;
    color: #005496;
}

.td-user-dropdown__item .layui-icon {
    font-size: 14px;
    color: #999;
}

.td-user-dropdown__item:hover .layui-icon {
    color: #005496;
}

.td-user-dropdown__item--danger {
    color: #e74c3c;
}

.td-user-dropdown__item--danger:hover {
    background: #fff5f5;
    color: #c0392b;
}

.td-user-dropdown__item--danger .layui-icon {
    color: #e74c3c;
}

.td-user-dropdown__item--danger:hover .layui-icon {
    color: #c0392b;
}

.td-user-dropdown__divider {
    height: 1px;
    background: #f0f0f0;
    margin: 4px 0;
}

/* ===== Header Banner (Power/Electric theme) ===== */
.td-header {
    position: relative;
    background: linear-gradient(135deg, #003d7a 0%, #005496 30%, #0072c6 60%, #008ae1 100%);
    overflow: visible;
    min-height: 120px;
}

.td-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 214, 102, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(0, 180, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.td-header__pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.td-header__inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
    gap: 20px;
}

.td-header__brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.td-header__logo {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.td-header__sitename {
    color: #fff;
    font-size: 25px;
    font-weight: bold;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.td-header__slogan {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    margin: 3px 0 0;
    letter-spacing: 1px;
}

.td-header__contact {
    text-align: right;
}

.td-header__hotline {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.td-header__hotline-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.td-header__hotline-num {
    color: #ffd666;
    font-size: 22px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    letter-spacing: 1px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.td-header__hours {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    margin-top: 2px;
}

/* ===== Search bar (inside header) ===== */
.td-search {
    position: relative;
    z-index: 3;
    padding: 12px 0 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.td-search__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.td-search__form {
    display: flex;
    align-items: center;
    gap: 0;
}

.td-search__keyword {
    width: 420px !important;
}

.td-search .layui-input {
    border-radius: 2px;
}

/* Search select dropdown — dark header theme */
.td-search .layui-form-select .layui-input {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
    border-radius: 2px 0 0 2px;
    height: 38px;
    line-height: 38px;
}

.td-search .layui-form-select .layui-input:focus {
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.td-search .layui-form-select .layui-edge {
    border-top-color: rgba(255, 255, 255, 0.8);
}

.td-search .layui-form-select .layui-anim-upbit {
    border-radius: 2px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    margin-top: 4px;
}

.td-search .layui-form-select dl dd {
    line-height: 36px;
    font-size: 14px;
}

.td-search .layui-form-select dl dd.layui-this {
    background: #005496;
    color: #fff;
}

.td-search .layui-form-select dl dd:hover {
    background: #f0f5ff;
    color: #005496;
}

.td-search .layui-form-select dl dd.layui-this:hover {
    background: #005496;
    color: #fff;
}

.td-search .layui-input-inline:first-child {
    width: 120px;
    margin-right: 0;
}

.td-search .layui-input-inline:first-child+.layui-input-inline .layui-input {
    border-radius: 0;
    border-left: none;
}

.td-btn--search {
    background: #e03c3c !important;
    border-color: #e03c3c !important;
    color: #fff !important;
}

.td-btn--search:hover {
    background: #c42b2b !important;
}

.td-btn--search2 {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    color: #fff !important;
}

.td-btn--search2:hover {
    background: rgba(255, 255, 255, 0.25) !important;
}

/* ===== Nav bar (inside header) ===== */
.td-nav {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.2);
}

.td-nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    padding: 0 10px;
}

.td-nav__item {
    flex: 1;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: bold;
    line-height: 44px;
    height: 44px;
    transition: background .2s;
}

.td-nav__item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.td-nav__item--active {
    background: rgba(255, 255, 255, 0.15);
    color: #ffd666;
    box-shadow: inset 0 -3px 0 #ffd666;
}

/* Keep old classes for gonggao/list page compatibility */
.search {
    background: #008ae1;
    min-height: 7rem;
}

.search-left {
    max-width: 1000px;
    margin: 0 auto;
}

.search1 {
    min-height: 7rem;
    background: url(/static/images/cloud.gif) no-repeat left bottom;
    line-height: 7rem;
    background-position: right center;
}

.layui-btn+.layui-btn {
    margin-left: 0px !important;
}

.title {
    background-color: #005496;
}

.title-row {
    max-width: 1000px;
    margin: 0 auto;
}

.grid-x-4 {
    background-color: #005496;
    color: #fff;
    line-height: 3rem;
    text-align: center;
}

.grid-x-4 a {
    color: #fff;
    font-weight: bold;
}

.gird-this {
    background-color: #3d87d1 !important;
}

.carousel-div {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 20px;
    background: #fff;
    min-height: 500px;
}

.layui-carousel {
    position: relative;
    left: 0;
    top: 0;
    background-color: #ffffff;
    aspect-ratio: 1200 / 380;
    overflow: hidden;
}

.carousel-img {
    width: 100%;
    aspect-ratio: 1200 / 380;
}

.topic-news {
    text-align: center;
    font-size: 20px;
    word-wrap: break-word;
    margin: 20px 20px 10px 20px;
}

.topic-news p a {
    font-size: 23px;
    font-weight: bolder;
    text-align: center;
    text-decoration: none;
    color: #02396F;
}

.news-contianer {
    display: flex;
    text-align: center;
    padding: 0 5% 10px 5%;
    max-width: 90%;
    margin: 0 auto;
}

.news-list {
    width: 50%;
}

.news-list-left {
    text-align: left;
}

.news-list li {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
    line-height: 30px;
    height: 30px;
    background: url(/static/images/topicarrow.gif) no-repeat top left;
    background-position: 0 12px;
    padding-left: 7px;
}

.news-list li a:hover,
.topic-news p a:hover {
    text-decoration: underline;
    color: #ba2636
}

.foot_nav {
    text-align: center;
    padding-top: 10px;
    color: #777;
}

.foot_nav a {
    color: #777;
}

.foot_nav a:hover {
    color: #1389fd !important;
    text-decoration: underline;
}

.foot_beian {
    text-align: center;
    padding-top: 20px;
}

.foot_info {
    width: 100%;
    margin-top: 10px;
    border-top: 2px solid #005496;
}

.layui-border-bule {
    border-width: 1px;
    border-style: solid;
    border-color: #005496 !important;
    color: #fff !important;
}

.m {
    margin: auto;
    width: 1200px;
    background: #FFFFFF;
    clear: both;
    border-radius: 12px;
}

.nav {
    padding: 10px 10px 10px 32px;
    height: 20px;
    line-height: 20px;
    background: url('./images/ico-nav.png') no-repeat 10px 11px;
    font-size: 14px;
}

.nav i {
    font-style: normal;
    font-weight: bold;
    color: #444444;
    padding: 0 6px;
    font-family: simsun;
}

.seachbox {
    padding: 5px;
    border: 1px solid #e5e5e5;
    border-top: 2px solid #e5e5e5;
    background: #fafafa;
}

.m1l-8 {
    width: 876px;
    float: left;
}

.m1r-3 {
    width: 302px;
    float: right;
}

ul,
form {
    margin: 0px;
    padding: 0px;
}

.dlfl {
    padding: 5px;
}

.dlfl h5 {
    margin: 0;
    display: inline-block;
    font-size: 14px;
    height: 30px;
    line-height: 30px;
}

.dlfl ul {
    width: 770px;
}

.dlfl ul,
.dlfl li,
.dlfl li a {
    display: inline-block;
}

.dlfl li a {
    padding: 3px 5px;
    font-size: 12px;
    margin: 5px 3px;
}

.dlfl li a:hover,
.dlfl .on a {
    background: #4d90ff;
    color: #fff;
}

.dlfl li input {
    height: 10px;
    line-height: 10px;
}

.searchb {
    border-bottom: 1px dashed #e5e5e5;
}

.searchbox2 {
    padding: 20px 20px 20px 80px;
}

.searchbox2 select {
    margin-right: 30px;
}

.searchbox2 .searchbtn {
    border: none;
    border-radius: 2px;
    width: 100px;
    height: 32px;
    margin-left: 10px;
    background: #4d90ff;
    color: #fff;
}

form,
input,
select,
textarea,
td,
th {
    font-size: 12px;
}

input,
textarea,
select {
    padding: 6px;
}

input,
textarea,
select {
    padding: 6px;
}

.listtitle {
    height: 46px;
    line-height: 46px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    background-color: #f7f7f7;
}

.listtitle h2 {
    background: #2e77ff;
    color: #fff;
    float: left;
    margin: 0;
    padding: 0 10px;
    font-size: 15px;
    border-right: 1px solid #2e77ff;
}

.listtitle span {
    float: right;
    margin-right: 20px;
    color: #9a9a9a;
    font-weight: bold;
}

.listtitle span .num {
    color: #ff7577;
    margin: 0 3px;
    font-style: normal
}

p,
h2 {
    padding: 0;
    margin: 0;
}

.itembox {
    border-bottom: 1px solid #e5e5e5;
    margin-top: 25px;
    margin-right: 15px;
    margin-left: 15px;
}

.itembox .items {
    font-size: 16px;
    height: 26px;
    line-height: 26px;
    overflow: hidden;
}

.items .mod {
    float: left;
    margin-right: 10px;
    color: #FFF;
    padding: 0 10px;
    font-size: 12px;
    line-height: 26px;
    height: 26px;
}

.items .mod a {
    color: #fff;
}

.items i {
    font-size: 10px;
    margin-left: 15px;
    font-style: normal;
}

.mod-24,
.mod-29 {
    background: #9bbfff;
}

.mod-25 {
    background: #72d2a4;
}

.mod-26,
.mod-30 {
    background: #a5e5f4;
}

.mod-27 {
    background: #ff8474;
}

.mod-28 {
    background: #ffba82;
}


.items .date {
    margin-left: 10px;
    font-size: 12px;
    color: #999;
}

.items-tip {
    padding: 20px 0;
}

.items-tip .wd-5 {
    width: 50%;
    float: left;
    font-size: 14px;
    line-height: 26px;
}

.rborder {
    border: 1px solid #e5e5e5;
}

.rborder .head-sub {
    padding: 10px 6px 10px 6px;
}

.head-sub {
    padding: 0 6px 10px 6px;
    line-height: 28px;
    border-bottom: #DDDDDD 1px solid;
    margin-bottom: 10px;
    clear: both;
}

.head-sub strong {
    font-size: 16px;
}

.head-sub span {
    float: right;
    font-size: 14px;
    color: #999999;
}

.head-sub i {
    font-style: normal;
    font-weight: bold;
    padding: 0 2px;
    font-family: simsun;
}

.list-cate2 {
    padding: 0 0 20px 0;
}

.list-cate2:after {
    content: "";
    display: block;
    clear: both;
}

.list-cate2 li {
    width: 116px;
    padding: 0 16px;
    float: left;
    height: 32px;
    line-height: 32px;
    font-size: 14px;
    overflow: hidden;
}

.list-cate2 li:hover {
    background: #EEEEEE;
}

.list-cate2 i {
    font-size: 12px;
    font-style: normal;
    color: #666666;
    padding-left: 6px;
}

.list-area4 {
    padding: 0 0 20px 0;
}

.list-area4:after {
    content: "";
    display: block;
    clear: both;
}

.list-area4 li {
    width: 25%;
    float: left;
    height: 32px;
    line-height: 32px;
    font-size: 14px;
    overflow: hidden;
    text-align: center;
}

.list-area4 li:hover {
    background: #EEEEEE;
}

/* basic */
.f_l {
    float: left;
}

.f_r {
    float: right;
}

.t_l {
    text-align: left;
}

.t_r {
    text-align: right;
}

.t_c {
    text-align: center;
}

.f_b {
    font-weight: bold;
}

.f_n {
    font-weight: normal;
}

.f_white {
    color: white;
}

.f_gray {
    color: #999999;
}

.f_orange {
    color: #FF6600;
}

.f_red {
    color: red;
}

.f_green {
    color: green;
}

.f_blue {
    color: blue;
}

.f_dblue {
    color: #007AFF;
}

.f_price {
    font-weight: bold;
    font-family: Arial;
    color: #FF0000;
}

.px12 {
    font-size: 12px;
}

.px14 {
    font-size: 14px;
}

.px16 {
    font-size: 16px;
}

.px18 {
    font-size: 18px;
}

.bd-t {
    border-top: #DDDDDD 1px solid;
}

.bd-b {
    border-bottom: #DDDDDD 1px solid;
}

.b10 {
    height: 10px;
}

.b16 {
    height: 16px;
}

.b20 {
    height: 20px;
}

.b24 {
    height: 24px;
}

.b32 {
    height: 32px;
}

.pd3 {
    padding: 3px;
}

.pd5 {
    padding: 5px;
}

.pd10 {
    padding: 10px;
}

.pd15 {
    padding: 15px;
}

.pd20 {
    padding: 20px;
}

.lh18 {
    line-height: 180%;
}

.ls1 {
    letter-spacing: 1px;
}

.c_p {
    cursor: pointer;
}

.c_b {
    clear: both;
}

.o_h {
    overflow: hidden;
}

.dsn {
    display: none;
}

.absm {
    vertical-align: middle;
}

/* ===== Homepage Blocks (td- prefix) ===== */

/* Banner + Notice side-by-side */
.td-banner-row {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.td-banner-left {
    flex: 1;
    min-width: 0;
}

.td-banner-right {
    width: 302px;
    flex-shrink: 0;
    border: 1px solid #e5e5e5;
    background: #fff;
}

.td-banner-right .td-notice-hd {
    height: 42px;
    line-height: 42px;
    padding: 0 12px;
    background: #f7f7f7;
    border-bottom: 1px solid #e5e5e5;
    font-size: 15px;
    font-weight: bold;
    color: #005496;
}

.td-banner-right .td-notice-hd span {
    float: right;
    font-size: 12px;
    font-weight: normal;
    color: #999;
}

.td-banner-right .td-notice-hd span a {
    color: #999;
}

.td-banner-right .td-notice-hd span a:hover {
    color: #4d90ff;
}

.td-notice-list {
    padding: 8px 12px;
    list-style: none;
    margin: 0;
}

.td-notice-list li {
    line-height: 28px;
    height: 28px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 13px;
    border-bottom: 1px dashed #f0f0f0;
}

.td-notice-list li:last-child {
    border-bottom: none;
}

.td-notice-list li a {
    color: #333;
}

.td-notice-list li a:hover {
    color: #ba2636;
}

.td-notice-list li .td-date {
    float: right;
    color: #999;
    font-size: 12px;
    margin-left: 8px;
}

/* Content area */
.td-content {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.td-main {
    flex: 1;
    min-width: 0;
}

.td-side {
    width: 302px;
    flex-shrink: 0;
}

/* Block section with header */
.td-block {
    border: 1px solid #e5e5e5;
    background: #fff;
    margin-bottom: 16px;
}

.td-block__header {
    height: 44px;
    line-height: 44px;
    background: #f7f7f7;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    padding: 0 14px;
}

.td-block__title {
    font-size: 16px;
    font-weight: bold;
    color: #005496;
    padding-right: 20px;
    position: relative;
}

.td-block__more {
    margin-left: auto;
    font-size: 12px;
    color: #999;
}

.td-block__more a {
    color: #999;
}

.td-block__more a:hover {
    color: #4d90ff;
}

/* Tabs within block header */
.td-tabs {
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.td-tabs li {
    padding: 0 14px;
    height: 44px;
    line-height: 44px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: color .2s;
}

.td-tabs li:hover {
    color: #005496;
}

.td-tabs li.td-tabs--active {
    color: #005496;
    font-weight: bold;
    border-bottom-color: #005496;
}

/* Tab content panels */
.td-tab-panel {
    display: none;
}

.td-tab-panel.td-tab-panel--active {
    display: block;
}

/* List item in block */
.td-list {
    padding: 6px 14px;
}

.td-list-item {
    display: flex;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px dashed #f0f0f0;
    font-size: 14px;
}

.td-list-item:last-child {
    border-bottom: none;
}

.td-list-item__tag {
    display: inline-block;
    padding: 1px 8px;
    font-size: 12px;
    color: #fff;
    margin-right: 10px;
    flex-shrink: 0;
    border-radius: 2px;
    line-height: 22px;
}

.td-tag--gc,
.td-tag--1 {
    background: #ff8474;
}

/* 工程 */
.td-tag--hw,
.td-tag--3 {
    background: #72d2a4;
}

/* 货物 */
.td-tag--fw,
.td-tag--2 {
    background: #9bbfff;
}

/* 服务 */
.td-tag--zx {
    background: #ffba82;
}

/* 咨询 */
.td-tag--qt {
    background: #a5e5f4;
}

/* 其他 */
.td-tag--winner {
    background: #005496;
}

/* 中标 */

.td-list-item__link {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #333;
}

.td-list-item__link:hover {
    color: #ba2636;
}

.td-list-item__date {
    flex-shrink: 0;
    margin-left: 12px;
    font-size: 12px;
    color: #999;
}

/* Sidebar blocks */
.td-side-block {
    border: 1px solid #e5e5e5;
    background: #fff;
    margin-bottom: 16px;
}

.td-side-block__hd {
    height: 40px;
    line-height: 40px;
    padding: 0 12px;
    background: #005496;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
}

.td-side-block__bd {
    padding: 10px;
}

/* Area grid (4 cols) */
.td-area-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.td-area-grid li {
    width: 25%;
    text-align: center;
    height: 32px;
    line-height: 32px;
    font-size: 13px;
    box-sizing: border-box;
}

.td-area-grid li a {
    color: #333;
}

.td-area-grid li:hover {
    background: #f0f5ff;
}

.td-area-grid li a:hover {
    color: #005496;
}

/* Industry list (2 cols) */
.td-industry-grid {
    text-align: center;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.td-industry-grid li {
    width: 50%;
    height: 30px;
    line-height: 30px;
    font-size: 13px;
    box-sizing: border-box;
    padding-left: 8px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.td-industry-grid li a {
    color: #333;
}

.td-industry-grid li:hover {
    background: #f0f5ff;
}

.td-industry-grid li a:hover {
    color: #005496;
}

/* Company recommend list */
.td-company-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.td-company-list li {
    height: 30px;
    line-height: 30px;
    font-size: 13px;
    padding: 0 8px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    border-bottom: 1px dashed #f0f0f0;
}

.td-company-list li:last-child {
    border-bottom: none;
}

.td-company-list li a {
    color: #333;
}

.td-company-list li:hover {
    background: #f0f5ff;
}

.td-company-list li a:hover {
    color: #005496;
}

/* Quick stats bar */
.td-stats {
    display: flex;
    justify-content: space-around;
    background: #f7f9fc;
    border: 1px solid #e5e5e5;
    padding: 16px 0;
    margin-top: 16px;
    text-align: center;
}

.td-stats__item {
    flex: 1;
}

.td-stats__num {
    font-size: 24px;
    font-weight: bold;
    color: #005496;
    font-family: Arial, sans-serif;
}

.td-stats__label {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

/* ===== Homepage portal layout (scoped) ===== */
.td-home .m {
    background: transparent;
}

.td-header__inner--compact {
    padding-top: 12px;
    padding-bottom: 10px;
}

.td-header__inner--compact .td-header__logo {
    width: 50px;
    height: 50px;
}

.td-header__inner--compact .td-header__sitename {
    font-size: 23px;
}

.td-header__inner--compact .td-header__slogan {
    margin-top: 2px;
}

.td-home__stats {
    margin-top: 18px;
    border-radius: 12px;
    border: 1px solid #dbe7f5;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: 0 10px 30px rgba(0, 64, 128, 0.06);
    overflow: hidden;
}

.td-home__stats .td-stats__item {
    position: relative;
    padding: 4px 0;
}

.td-home__stats .td-stats__item+.td-stats__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 1px;
    background: #e8eef6;
}

.td-home__stats .td-stats__num {
    font-size: 28px;
    color: #00467f;
}

.td-home__stats .td-stats__label {
    color: #6c7a89;
    letter-spacing: 1px;
}

.td-home__hero {
    display: flex;
    gap: 16px;
    margin-top: 18px;
    align-items: stretch;
}

.td-home__hero-main {
    flex: 1;
    min-width: 0;
}

.td-home__hero-side {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.td-home__focus-card,
.td-home__policy-card,
.td-home__entry-card,
.td-home__block,
.td-home__side-block {
    border: 1px solid #dfe8f2;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 64, 128, 0.05);
    overflow: hidden;
}

.td-home__focus-card {
    padding: 20px 22px 18px;
}

.td-home__focus-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.td-home__eyebrow {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0, 84, 150, 0.08);
    color: #005496;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.td-home__focus-title {
    font-size: 30px;
    line-height: 1.35;
    color: #083b6f;
    margin: 0;
}

.td-home__focus-desc {
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 1.9;
    color: #5f6f82;
    max-width: 680px;
}

.td-home__focus-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    padding-top: 34px;
}

.td-home__ghost-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 16px;
    border-radius: 8px;
    border: 1px solid #cfe0f1;
    background: #f7fbff;
    color: #005496;
    font-size: 13px;
    font-weight: bold;
    transition: all .2s;
}

.td-home__ghost-link:hover {
    color: #fff;
    background: #005496;
    border-color: #005496;
}

.td-home__focus-body {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

.td-home__focus-banner-wrap {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.td-home__focus-banner {
    flex: none;
    min-width: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #eef5fb;
}

.td-home__focus-news {
    border: 1px solid #e1ecf7;
    border-radius: 10px;
    background: linear-gradient(180deg, #fbfdff 0%, #f4f9ff 100%);
    padding: 14px 16px 16px;
}

.td-home__focus-news-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.td-home__focus-news-head span {
    font-size: 16px;
    font-weight: bold;
    color: #0b4177;
}

.td-home__focus-news-head span i {
    margin-right: 6px;
    color: #ff7a45;
    font-size: 15px;
}

.td-home__focus-news-head a {
    font-size: 12px;
    color: #8a98a8;
}

.td-home__focus-news-main {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.td-home__focus-news-feature {
    width: 42%;
    min-height: 112px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #dbe7f5;
    padding: 14px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.td-home__focus-news-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.td-home__focus-news-hot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff7a45 0%, #ff4d4f 100%);
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: .5px;
}

.td-home__focus-news-feature strong {
    display: block;
    font-size: 16px;
    line-height: 1.7;
    color: #17395c;
    font-weight: bold;
}

.td-home__focus-news-feature em {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-size: 12px;
    color: #8a98a8;
}

.td-home__focus-news-tag {
    display: inline-block;
    width: fit-content;
    margin-bottom: 10px;
    border-radius: 999px;
    padding: 3px 10px;
    line-height: 20px;
}

.td-home__focus-news-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.td-home__focus-news-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 30px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #dbe7f5;
    color: #3f556b;
}

.td-home__focus-news-list a:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.td-home__focus-news-item-title {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.td-home__focus-news-item-title i {
    margin-right: 6px;
    color: #3d87d1;
    font-size: 12px;
}

.td-home__focus-news-list a em {
    flex-shrink: 0;
    font-style: normal;
    font-size: 12px;
    color: #8a98a8;
}

.td-home__focus-news-feature:hover strong,
.td-home__focus-news-list a:hover .td-home__focus-news-item-title,
.td-home__focus-news-head a:hover {
    color: #005496;
}

.td-home__focus-side {
    width: 260px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.td-home__mini-panel {
    flex: 1;
    padding: 16px;
    border-radius: 10px;
    background: linear-gradient(180deg, #f8fbff 0%, #f1f7fd 100%);
    border: 1px solid #e1ecf7;
}

.td-home__mini-title,
.td-home__entry-title {
    font-size: 16px;
    font-weight: bold;
    color: #0b4177;
    margin-bottom: 14px;
}

.td-home__quick-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-evenly;
}

.td-home__quick-tags a {
    min-width: 52px;
    padding: 6px 10px;
    line-height: 20px;
    text-align: center;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #dbe7f5;
    color: #4d6278;
    font-size: 13px;
    transition: all .2s;
}

.td-home__quick-tags a:hover,
.td-home__entry-grid a:hover {
    color: #005496;
    border-color: #bcd4ee;
    background: #eef6ff;
}

.td-home__quick-tags--industry a {
    min-width: 84px;
}

.td-home__policy-card {
    padding-bottom: 6px;
}

.td-home__policy-card .td-notice-hd {
    height: 46px;
    line-height: 46px;
    padding: 0 16px;
    background: linear-gradient(90deg, #005496 0%, #0b70bd 100%);
    color: #fff;
}

.td-home__policy-card .td-notice-hd span,
.td-home__policy-card .td-notice-hd span a {
    color: rgba(255, 255, 255, 0.8);
}

.td-home__policy-card .td-notice-list {
    padding: 8px 16px 10px;
}

.td-home__policy-card .td-notice-list li {
    height: 36px;
    line-height: 36px;
    font-size: 13px;
}

.td-home__policy-card .td-notice-list li .td-date {
    color: #8a98a8;
}

.td-home__entry-card {
    padding: 16px;
}

.td-home__entry-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.td-home__entry-grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    border-radius: 8px;
    border: 1px solid #dbe7f5;
    background: #f8fbff;
    color: #36516d;
    font-size: 13px;
    font-weight: bold;
    transition: all .2s;
}

.td-home__content {
    margin-top: 18px;
    align-items: flex-start;
}

.td-home__block .td-block__header {
    height: 48px;
    line-height: 48px;
    padding: 0 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
    border-bottom: 1px solid #e7edf4;
}

.td-home__block .td-block__title {
    color: #0b4177;
}

.td-home__block .td-block__title::after {
    height: 3px;
    border-radius: 3px 3px 0 0;
}

.td-home__block .td-block__more,
.td-home__block .td-block__more a {
    color: #90a0b1;
}

.td-home__block .td-tabs li {
    height: 48px;
    line-height: 48px;
    padding: 0 12px;
}

.td-home__block .td-tabs li.td-tabs--active {
    color: #005496;
}

.td-home__block .td-list {
    padding: 8px 16px;
}

.td-home__block .td-list-item {
    min-height: 42px;
    padding: 10px 0;
}

.td-home__block .td-list-item__tag {
    min-width: 44px;
    text-align: center;
}

.td-home__block .td-list-item__date {
    margin-left: 14px;
}

.td-home__side-block .td-side-block__hd {
    height: 44px;
    line-height: 44px;
    padding: 0 14px;
    background: linear-gradient(90deg, #005496 0%, #0b70bd 100%);
}

.td-home__side-block .td-side-block__bd {
    padding: 12px;
}

.td-home__side-block .td-area-grid li,
.td-home__side-block .td-industry-grid li,
.td-home__side-block .td-company-list li {
    border-radius: 6px;
}

.td-home__side-block .td-company-list li {
    height: 34px;
    line-height: 34px;
    padding: 0 10px;
}

/* ===== Bidding List Page (td-list-page) ===== */
.td-list-page {
    background: #f3f6fb;
    padding-bottom: 10px;
    min-height: 600px;
}

.td-list-page .m {
    background: transparent;
}

/* Breadcrumb */
.td-breadcrumb {
    padding: 14px 0 6px;
    font-size: 13px;
    color: #8a98a8;
}

.td-breadcrumb a {
    color: #8a98a8;
}

.td-breadcrumb a:hover {
    color: #005496;
}

.td-breadcrumb__sep {
    margin: 0 8px;
    color: #c0ccda;
}

.td-breadcrumb__current {
    color: #4d6278;
    font-weight: bold;
}

/* Filter Card */
.td-filter-card {
    background: #fff;
    border: 1px solid #dfe8f2;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 64, 128, 0.05);
    padding: 6px 20px 10px;
    margin-top: 6px;
}

.td-filter__row {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px dashed #eef3f8;
}

.td-filter__row--last {
    border-bottom: none;
}

.td-filter__label {
    width: 90px;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: bold;
    color: #4d6278;
    line-height: 30px;
    padding-top: 2px;
}

.td-filter__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.td-filter__tags--wrap {
    gap: 6px;
}

.td-filter__tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    height: 30px;
    line-height: 22px;
    font-size: 13px;
    color: #4d6278;
    border: 1px solid #e1ecf7;
    border-radius: 6px;
    background: #f9fcff;
    transition: all .2s;
    white-space: nowrap;
}

.td-filter__tag:hover {
    color: #005496;
    border-color: #bcd4ee;
    background: #eef6ff;
}

.td-filter__tag--active {
    color: #fff;
    background: #005496;
    border-color: #005496;
}

.td-filter__tag--active:hover {
    color: #fff;
    background: #00467f;
    border-color: #00467f;
}

.td-filter__keyword {
    margin-left: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.td-filter__input {
    width: 200px;
    height: 34px;
    padding: 0 12px;
    border: 1px solid #dbe7f5;
    border-radius: 6px;
    font-size: 13px;
    color: #333;
    outline: none;
    transition: border-color .2s;
    box-sizing: border-box;
}

.td-filter__input:focus {
    border-color: #005496;
    box-shadow: 0 0 0 3px rgba(0, 84, 150, 0.08);
}

.td-filter__input::placeholder {
    color: #b0becd;
}

.td-filter__btn {
    height: 34px;
    padding: 0 18px;
    border: none;
    border-radius: 6px;
    background: #e03c3c;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: background .2s;
}

.td-filter__btn:hover {
    background: #c42b2b;
}

/* Result bar */
.td-result-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    margin-top: 14px;
    background: #fff;
    border: 1px solid #dfe8f2;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 64, 128, 0.04);
}

.td-result-bar__info {
    font-size: 14px;
    color: #4d6278;
}

.td-result-bar__num {
    color: #e03c3c;
    font-size: 18px;
    font-family: Arial, sans-serif;
    margin: 0 3px;
}

.td-result-bar__sort {
    display: flex;
    align-items: center;
    gap: 4px;
}

.td-result-bar__sort-label {
    font-size: 13px;
    color: #8a98a8;
    margin-right: 6px;
}

.td-result-bar__sort-item {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    height: 28px;
    line-height: 20px;
    font-size: 13px;
    color: #4d6278;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all .2s;
}

.td-result-bar__sort-item:hover {
    color: #005496;
    border-color: #dbe7f5;
    background: #f7fbff;
}

.td-result-bar__sort-item--active {
    color: #005496;
    font-weight: bold;
    border-color: #bcd4ee;
    background: #eef6ff;
}

/* List content area */
.td-list-content {
    margin-top: 14px;
    align-items: flex-start;
}

/* List block with items */
.td-list-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.td-list-block__item {
    background: #fff;
    border: 1px solid #dfe8f2;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 64, 128, 0.03);
    padding: 16px 20px;
    transition: all .25s;
}

.td-list-block__item:hover {
    border-color: #bcd4ee;
    box-shadow: 0 8px 28px rgba(0, 64, 128, 0.08);
    transform: translateY(-1px);
}

.td-list-block__head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.td-list-block__type-tag {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    height: 24px;
    line-height: 20px;
    font-size: 12px;
    border-radius: 4px;
    font-weight: bold;
    flex-shrink: 0;
}

.td-list-block__type-tag--zhaobiao {
    background: rgba(224, 60, 60, 0.1);
    color: #c42b2b;
}

.td-list-block__type-tag--zhongbiao {
    background: rgba(0, 180, 80, 0.1);
    color: #008a3c;
}

.td-list-block__type-tag--caigou {
    background: rgba(0, 130, 230, 0.1);
    color: #0068b3;
}

.td-list-block__type-tag--nijian {
    background: rgba(255, 130, 0, 0.1);
    color: #cc6a00;
}

.td-list-block__type-tag--default {
    background: rgba(100, 120, 140, 0.1);
    color: #5f6f82;
}

.td-list-block__title {
    flex: 1;
    font-size: 15px;
    font-weight: bold;
    color: #17395c;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    min-width: 0;
}

.td-list-block__title:hover {
    color: #005496;
}

.td-list-block__date {
    flex-shrink: 0;
    font-size: 13px;
    color: #8a98a8;
    margin-left: 6px;
}

.td-list-block__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #eef3f8;
}

.td-list-block__meta-item {
    font-size: 12px;
    color: #8a98a8;
    display: flex;
    align-items: center;
    gap: 3px;
}

.td-list-block__meta-item i {
    font-size: 13px;
}

.td-list-block__meta-item a {
    color: #8a98a8;
}

.td-list-block__meta-item a:hover {
    color: #005496;
}

/* Pagination */
.td-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px 10px;
    gap: 16px;
    flex-wrap: wrap;
}

.pagination {
    display: flex;
    padding: 10px;
}

.pagination>li {
    margin: 0 5px;
}

.active>a,
.active>span {
    color: #fff !important;
    background: #005496 !important;
    border-color: #005496 !important;
    font-weight: bold !important;
}

.disabled>a,
.disabled>span {
    color: #c0ccda !important;
    border-color: #eef3f8 !important;
    background: #fafcfe !important;
    cursor: not-allowed !important;
}

.pagination>li>a,
.pagination>li>span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 34px;
    padding: 0 10px;
    font-size: 13px;
    color: #4d6278;
    border: 1px solid #dfe8f2;
    border-radius: 6px;
    background: #fff;
    transition: all .2s;
    box-sizing: border-box;
    cursor: pointer;
}


/* Side block for list page */
.td-list__side-block {
    border: 1px solid #dfe8f2;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 64, 128, 0.05);
    overflow: hidden;
}

.td-list__side-block .td-side-block__hd {
    background: linear-gradient(90deg, #005496 0%, #0b70bd 100%);
    height: 44px;
    line-height: 44px;
    padding: 0 14px;
}

.td-list__side-block .td-side-block__bd {
    padding: 12px;
}

.td-list__side-block .td-area-grid li,
.td-list__side-block .td-industry-grid li,
.td-list__side-block .td-company-list li {
    border-radius: 6px;
}

.td-list__side-block .td-company-list li {
    height: 34px;
    line-height: 34px;
    padding: 0 10px;
}

/* ==================== 企业招投标页面 ==================== */
.td-company-page {
    background: #f3f6fb;
    min-height: 600px;
    padding-bottom: 30px;
}

/* 企业信息卡片 */
.td-company__profile-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    padding: 30px;
    margin-top: 20px;
}

.td-company__profile-top {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.td-company__avatar {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #005496, #0077c8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
}

.td-company__info {
    flex: 1;
    min-width: 0;
}

.td-company__name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.td-company__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin-bottom: 6px;
}

.td-company__meta span {
    font-size: 13px;
    color: #666;
    line-height: 28px;
}

.td-company__meta span i {
    margin-right: 4px;
    font-size: 14px;
    color: #005496;
}

.td-company__contact {
    flex-shrink: 0;
    padding-left: 20px;
    border-left: 1px solid #eee;
    min-width: 200px;
}

.td-company__contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}

.td-company__contact-item i {
    font-size: 18px;
    color: #005496;
}

.td-company__profile-desc {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.td-company__desc-label {
    display: inline-block;
    font-size: 13px;
    color: #005496;
    font-weight: 600;
    margin-bottom: 8px;
    padding: 2px 10px;
    background: #e8f4fd;
    border-radius: 4px;
}

.td-company__profile-desc p {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* 企业统计条 */
.td-company__stats {
    margin-top: 20px;
}

.td-company__stats .td-stats__item {
    background: #fff;
    border-radius: 10px;
    padding: 20px 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s;
}

.td-company__stats .td-stats__item:hover {
    transform: translateY(-2px);
}

.td-company__stats .td-stats__num {
    font-size: 28px;
    font-weight: 700;
    color: #005496;
    line-height: 1.2;
}

.td-company__stats .td-stats__label {
    font-size: 13px;
    color: #999;
    margin-top: 6px;
}

/* 企业筛选区 */
.td-company__filter {
    margin-top: 20px;
}

/* 企业侧栏信息 */
.td-company__side-info {
    padding: 5px 0;
}

.td-company__side-row {
    display: flex;
    padding: 6px 0;
    border-bottom: 1px dashed #f0f0f0;
    font-size: 13px;
    line-height: 1.6;
}

.td-company__side-row:last-child {
    border-bottom: none;
}

.td-company__side-label {
    flex-shrink: 0;
    color: #999;
    width: 70px;
}

.td-company__side-value {
    flex: 1;
    color: #333;
    word-break: break-all;
}

/* ==================== 4个差异化页面主题 ==================== */

/* ---- 页面通用背景（供各页面共享） ---- */
.td-about-page,
.td-contact-page,
.td-error-page {
    background: #f3f6fb;
    min-height: 600px;
    padding-bottom: 40px;
}

.td-about-page .m,
.td-contact-page .m,
.td-error-page .m {
    background: transparent;
}

/* ---- 页面通用英雄区 ---- */
.td-page {
    background: #f3f6fb;
    min-height: 600px;
    padding-bottom: 30px;
}

.td-page__hero {
    padding: 40px 0 30px;
    margin-bottom: 0;
    position: relative;
}

.td-page__hero-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.td-page__hero-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: 2px;
}

.td-page__hero-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 28px;
}

.td-page__hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.td-hero-stat {
    text-align: center;
}

.td-hero-stat__num {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.td-hero-stat__label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
}

/* 统一蓝色主题英雄区 */
.td-page__hero {
    background: linear-gradient(135deg, #003d6b 0%, #005496 40%, #0077c8 100%);
}

.td-page__hero .m {
    background: transparent;
}

.td-page__hero-icon {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 10px;
    line-height: 1;
}

.td-page__hero-icon .layui-icon {
    font-size: 30px;
    color: rgba(255, 214, 102, 0.9);
}

.td-filter__tag--active {
    background: #005496 !important;
    color: #fff !important;
    border-color: #005496 !important;
}

/* ---- 招标公告特有样式 ---- */
.td-zhaobiao__budget {
    flex-shrink: 0;
    font-size: 15px;
    font-weight: 700;
    color: #005496;
    margin-left: auto;
    padding: 2px 10px;
    background: #e8f4fd;
    border-radius: 4px;
    white-space: nowrap;
}

.td-zhaobiao__deadline em {
    font-style: normal;
    color: #e65100;
    font-weight: 600;
}

/* ---- 中标公告特有样式 ---- */
.td-list-block__item--winner {
    border-left: 3px solid #005496;
}

/* 中标排行榜 */
.td-ranking-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.td-ranking-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

.td-ranking-item:last-child {
    border-bottom: none;
}

.td-ranking__num {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f0f0f0;
    text-align: center;
    line-height: 22px;
    font-size: 12px;
    color: #999;
    font-weight: 600;
}

.td-ranking__num--top {
    background: #ffd54f;
    color: #e65100;
}

.td-ranking__info {
    flex: 1;
    min-width: 0;
}

.td-ranking__name {
    display: block;
    font-size: 13px;
    color: #333;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.td-ranking__meta {
    display: block;
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}

/* ---- 采购信息特有样式（表格布局） ---- */
.td-table-list {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.td-table-list__header {
    display: flex;
    background: #fafafa;
    border-bottom: 2px solid #e8e8e8;
    padding: 0;
    font-weight: 600;
    font-size: 13px;
    color: #666;
}

.td-table-list__header .td-table-list__col {
    padding: 12px 10px;
}

.td-table-list__row {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
    font-size: 13px;
}

.td-table-list__row:last-child {
    border-bottom: none;
}

.td-table-list__row:hover {
    background: #fafbff;
}

.td-table-list__col {
    padding: 14px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.td-table-list__col--name {
    flex: 3;
    min-width: 0;
}

.td-table-list__col--name a {
    color: #1a1a2e;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

.td-table-list__col--name a:hover {
    color: #e65100;
}

.td-table-list__tags {
    flex-shrink: 0;
    display: flex;
    gap: 4px;
}

.td-table-list__col--method {
    flex: 1;
    justify-content: center;
    color: #999;
}

.td-table-list__col--budget {
    flex: 1;
    justify-content: flex-end;
    font-weight: 600;
}

.td-table-list__col--buyer {
    flex: 1.5;
    justify-content: center;
    color: #666;
}

.td-table-list__col--deadline {
    flex: 1;
    justify-content: center;
    color: #e65100;
    font-size: 12px;
}

.td-table-list__col--date {
    flex: 0.8;
    justify-content: center;
    color: #999;
    font-size: 12px;
}

.td-caigou__budget-val {
    color: #e65100;
}

.td-tag--caigou-method {
    display: inline-block;
    padding: 1px 6px;
    font-size: 11px;
    border-radius: 3px;
    background: #fff3e0;
    color: #e65100;
    border: 1px solid #ffe0b2;
}

/* 采购方式说明 */
.td-caigou-methods {
    list-style: none;
    padding: 0;
    margin: 0;
}

.td-caigou-methods li {
    padding: 8px 0;
    border-bottom: 1px dashed #f0f0f0;
    font-size: 13px;
    line-height: 1.5;
}

.td-caigou-methods li:last-child {
    border-bottom: none;
}

.td-caigou-methods li strong {
    display: block;
    color: #005496;
    margin-bottom: 2px;
}

.td-caigou-methods li span {
    display: block;
    color: #999;
    font-size: 12px;
}

/* ---- 拟建项目特有样式（卡片布局） ---- */
.td-nijian-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.td-nijian-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #f0f0f0;
}

.td-nijian-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 84, 150, 0.1);
    border-color: #8bbdef;
}

.td-nijian-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.td-nijian-card__stage {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.td-nijian-card__date {
    font-size: 12px;
    color: #999;
}

.td-nijian-card__title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.5;
    margin-bottom: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.td-nijian-card__title:hover {
    color: #005496;
}

.td-nijian-card__info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: #fafafa;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
}

.td-nijian-card__info-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.td-nijian-card__label {
    font-size: 11px;
    color: #999;
}

.td-nijian-card__value {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.td-nijian-card__value--invest {
    color: #005496;
    font-weight: 700;
}

.td-nijian-card__footer {
    display: flex;
    align-items: center;
}

.td-nijian-card__industry {
    font-size: 12px;
    padding: 2px 8px;
    background: #e8f4fd;
    border-radius: 4px;
    color: #005496;
}

/* 拟建项目阶段说明 */
.td-nijian-stages {
    list-style: none;
    padding: 0;
    margin: 0;
}

.td-nijian-stages li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed #f0f0f0;
    font-size: 13px;
    line-height: 1.5;
}

.td-nijian-stages li:last-child {
    border-bottom: none;
}

.td-nijian-stages__dot {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 4px;
}

.td-nijian-stages li strong {
    display: block;
    color: #333;
    margin-bottom: 1px;
}

.td-nijian-stages li span:last-child {
    display: block;
    color: #999;
    font-size: 12px;
}

/* ---- 采购方式标签样式 ---- */
.td-tag--公开招标,
.td-tag--竞争性谈判,
.td-tag--询价采购,
.td-tag--单一来源,
.td-tag--竞争性磋商 {
    display: inline-block;
    padding: 1px 8px;
    font-size: 11px;
    border-radius: 3px;
    border: 1px solid;
}

.td-tag--公开招标 {
    background: #e8f4fd;
    color: #005496;
    border-color: #b8d8f0;
}

.td-tag--竞争性谈判 {
    background: #fff3e0;
    color: #e65100;
    border-color: #ffe0b2;
}

.td-tag--询价采购 {
    background: #e8f5e9;
    color: #2e7d32;
    border-color: #c8e6c9;
}

.td-tag--单一来源 {
    background: #fce4ec;
    color: #c62828;
    border-color: #f8bbd0;
}

.td-tag--竞争性磋商 {
    background: #f3e5f5;
    color: #6a1b9a;
    border-color: #e1bee7;
}

/* 高亮数值（预算/中标金额） */
.td-highlight-val {
    flex-shrink: 0;
    font-size: 15px;
    font-weight: 700;
    color: #005496;
    margin-left: auto;
    padding: 2px 10px;
    background: #e8f4fd;
    border-radius: 4px;
    white-space: nowrap;
}

/* 中标方高亮 */
.td-meta--winner em {
    font-style: normal;
    color: #005496;
    font-weight: 600;
}

/* 截止日期高亮 */
.td-meta--deadline em {
    font-style: normal;
    color: #e65100;
    font-weight: 600;
}

/* 采购列表项左边框 */
.td-list-block__item--procure {
    border-left: 3px solid #ff8a65;
}

/* 侧边栏热门专题列表 */
.td-topic-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.td-topic-list li {
    padding: 6px 0;
    border-bottom: 1px dashed #f0f0f0;
    font-size: 13px;
}

.td-topic-list li:last-child {
    border-bottom: none;
}

.td-topic-list li a {
    color: #444;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.td-topic-list li a:hover {
    color: #005496;
}

/* 紧急截止标签 */
.td-urgent-tag {
    display: inline-block;
    padding: 0 6px;
    font-size: 11px;
    border-radius: 3px;
    background: #fff3e0;
    color: #e65100;
    font-weight: 600;
    margin-right: 4px;
}

/* 采购方式彩色圆点 */
.td-method-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
    flex-shrink: 0;
}

.td-method-dot--gkzb {
    background: #005496;
}

.td-method-dot--jzxj {
    background: #e65100;
}

.td-method-dot--xjcg {
    background: #2e7d32;
}

.td-method-dot--dyly {
    background: #c62828;
}

.td-method-dot--jzcs {
    background: #6a1b9a;
}

/* 采购方式说明中的圆点 */
.td-caigou-methods li .td-method-dot {
    float: left;
    margin-top: 5px;
}


/* 拟建项目阶段色标（卡片标签背景色） */
.td-stage-label--项目规划 {
    background: #ff9800;
}

.td-stage-label--立项审批 {
    background: #2196f3;
}

.td-stage-label--方案设计 {
    background: #9c27b0;
}

.td-stage-label--施工准备 {
    background: #4caf50;
}

.td-stage-label--在建工程 {
    background: #f44336;
}

/* 项目阶段说明中的圆点颜色 */
.td-nijian-stages .td-stage-dot--gh {
    background: #ff9800;
}

.td-nijian-stages .td-stage-dot--lx {
    background: #2196f3;
}

.td-nijian-stages .td-stage-dot--fa {
    background: #9c27b0;
}

.td-nijian-stages .td-stage-dot--sg {
    background: #4caf50;
}

.td-nijian-stages .td-stage-dot--zj {
    background: #f44336;
}

/* 侧栏标题带图标 */
.td-side-block__hd-icon {
    margin-right: 4px;
}

/* ==================== 登录/注册页面 ==================== */
.td-user-page {
    background: #f3f6fb;
    padding: 40px 0 40px;
}

.td-user-page .m {
    background: transparent;
}

/* 卡片容器 */
.td-user-card {
    max-width: 920px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 64, 128, 0.10);
    overflow: hidden;
    border: 1px solid #dfe8f2;
}

.td-user-card__inner {
    display: flex;
    min-height: 520px;
}

/* 左侧品牌区 */
.td-user-card__side {
    width: 360px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #003d7a 0%, #005496 30%, #0072c6 60%, #008ae1 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    overflow: hidden;
}

.td-user-card__side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 214, 102, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(0, 180, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.td-user-card__side-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.td-user-card__side-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.td-user-card__side-icon .layui-icon {
    font-size: 36px;
    color: #ffd666;
}

.td-user-card__side-title {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.td-user-card__side-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0 0 28px;
}

.td-user-card__side-features {
    text-align: left;
    display: inline-block;
}

.td-user-card__side-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.td-user-card__side-feature .layui-icon {
    font-size: 16px;
    color: #52c41a;
    flex-shrink: 0;
}

/* 右侧表单区 */
.td-user-card__form {
    flex: 1;
    padding: 50px 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.td-user-card__form-header {
    margin-bottom: 28px;
}

.td-user-card__form-title {
    font-size: 26px;
    font-weight: bold;
    color: #1a1a2e;
    margin: 0 0 8px;
}

.td-user-card__form-desc {
    font-size: 14px;
    color: #8a98a8;
    margin: 0;
}

.td-user-card__link {
    color: #005496;
    font-weight: bold;
}

.td-user-card__link:hover {
    color: #0077c8;
    text-decoration: underline;
}

/* 表单样式 */
.td-user-form {
    max-width: 380px;
}

.td-user-form__item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    border: 1px solid #dbe7f5;
    border-radius: 8px;
    background: #f9fcff;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.td-user-form__item:focus-within {
    border-color: #005496;
    box-shadow: 0 0 0 3px rgba(0, 84, 150, 0.08);
    background: #fff;
}

.td-user-form__label {
    flex-shrink: 0;
    width: 44px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #eef3f8;
}

.td-user-form__label .layui-icon {
    font-size: 18px;
    color: #8a98a8;
    transition: color 0.25s;
}

.td-user-form__item:focus-within .td-user-form__label .layui-icon {
    color: #005496;
}

.td-user-form__input {
    flex: 1;
    height: 48px;
    padding: 0 14px;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #333;
    outline: none;
    box-sizing: border-box;
}

.td-user-form__input::placeholder {
    color: #b0becd;
}

/* 额外操作行 */
.td-user-form__extra {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    font-size: 13px;
}

.td-user-form__extra--agreement {
    justify-content: flex-start;
}

.td-user-form__remember {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #8a98a8;
    cursor: pointer;
}

.td-user-form__remember input[type="checkbox"] {
    margin: 0;
}

.td-user-form__forgot {
    color: #8a98a8;
}

.td-user-form__forgot:hover {
    color: #005496;
}

/* 提交按钮 */
.td-user-form__btn {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 4px;
    cursor: pointer;
    transition: all 0.25s;
}

.td-user-form__btn--primary {
    background: linear-gradient(135deg, #005496 0%, #0077c8 100%);
    color: #fff;
}

.td-user-form__btn--primary:hover {
    background: linear-gradient(135deg, #00467f 0%, #0068b3 100%);
    box-shadow: 0 6px 20px rgba(0, 84, 150, 0.3);
    transform: translateY(-1px);
}

.td-user-form__btn--primary:active {
    transform: translateY(0);
}

/* 第三方登录 */
.td-user-card__oauth {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #eef3f8;
    text-align: center;
}

.td-user-card__oauth-label {
    font-size: 13px;
    color: #b0becd;
    margin: 0 0 14px;
    position: relative;
}

.td-user-card__oauth-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.td-user-card__oauth-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #eef3f8;
    transition: all 0.25s;
}

.td-user-card__oauth-icon:hover {
    border-color: #dbe7f5;
    box-shadow: 0 4px 12px rgba(0, 64, 128, 0.08);
    transform: translateY(-2px);
}

.td-user-card__oauth-icon .layui-icon {
    font-size: 22px;
}

/* 注册卡片 - 稍微宽一点以容纳更多字段 */
.td-user-card--register .td-user-card__form {
    padding: 36px 50px 30px;
}

.td-user-card--register .td-user-form {
    max-width: 400px;
}

.td-user-card--register .td-user-form__item {
    margin-bottom: 14px;
}

/* 注册页协议文本换行 */
.td-user-form__extra--agreement .td-user-form__remember span {
    font-size: 12px;
    line-height: 1.5;
    color: #8a98a8;
}

/* ===== 验证码样式 ===== */
.td-user-form__item--captcha {
    padding-right: 4px;
}

.td-user-form__captcha-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.td-user-form__input--captcha {
    flex: 1;
    min-width: 0;
}

.td-user-form__captcha-img {
    flex-shrink: 0;
    height: 40px;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid #dbe7f5;
    transition: opacity 0.2s;
    vertical-align: middle;
}

.td-user-form__captcha-img:hover {
    opacity: 0.85;
}

/* ===== 邮箱验证码按钮样式 ===== */
.td-user-form__email-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.td-user-form__input--email {
    flex: 1;
    min-width: 0;
}

.td-user-form__code-btn {
    flex-shrink: 0;
    height: 36px;
    padding: 0 14px;
    border: none;
    border-radius: 6px;
    background: linear-gradient(135deg, #005496 0%, #0077c8 100%);
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
    line-height: 36px;
}

.td-user-form__code-btn:hover {
    background: linear-gradient(135deg, #00467f 0%, #0068b3 100%);
    box-shadow: 0 4px 12px rgba(0, 84, 150, 0.3);
    transform: translateY(-1px);
}

.td-user-form__code-btn:active {
    transform: translateY(0);
}

.td-user-form__code-btn.is-disabled,
.td-user-form__code-btn:disabled {
    background: #b0becd;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.money-tips {
    color: #e03c3c;
    font-weight: bold;
}