:root {
    --hz-brand: #4F63FF;
    --hz-brand-2: #7C5CFC;
    --hz-brand-soft: #EEF1FF;
    --hz-ink: #1A1D29;
    --hz-muted: #6B7280;
    --hz-bg: #F7F8FB;
    --hz-surface: #FFFFFF;
    --hz-border: #ECEEF3;
}
body {
    background-color: var(--hz-bg);
}
/* 顶部工具条 */
#topbar {
    color: var(--hz-muted);
    height: 34px;
    line-height: 34px;
    background-color: var(--hz-surface);
    border-bottom: 1px solid var(--hz-border);
}
#topbar .links>li>a {
    color: var(--hz-muted);
}
#topbar .links>li>a:hover,
#topbar .links>li>a.user-static {
    color: var(--hz-brand);
}
#topbar .left-name {
    font-size: 12px;
}

/* 头部 */
#header {
    background-color: var(--hz-surface);
    border-bottom: 1px solid var(--hz-border);
}
.hz-bar {
    display: flex;
    align-items: center;
    height: 72px;
}
.hz-logo a {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, var(--hz-brand), var(--hz-brand-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}
.hz-nav {
    flex: auto;
    margin: 0 40px;
}
.hz-nav a {
    font-size: 14px;
    font-weight: 500;
    padding: 0 18px;
    color: var(--hz-ink);
    line-height: 72px;
}
.hz-nav a:hover,
.hz-nav a.active {
    color: var(--hz-brand);
}
.hz-search {
    width: 240px;
}
.hz-search .input-group {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--hz-bg);
    border: 1px solid var(--hz-border);
}
.hz-search input {
    height: 38px;
    line-height: 38px;
    border: none;
    background: transparent;
    padding-left: 16px;
    width: 100%;
}
.hz-search input::placeholder {
    color: #a7acbd;
}
.hz-search .input-group-btn {
    background-color: var(--hz-brand);
}
.hz-search button {
    height: 38px;
    width: 44px;
    color: #fff;
    border: none;
    background-color: var(--hz-brand);
}
button:focus, button:active {
    outline: none !important;
}

/* 首页 - Hero */
.hz-hero {
    position: relative;
    background: linear-gradient(135deg, var(--hz-brand) 0%, var(--hz-brand-2) 100%);
    padding: 76px 0 120px;
    text-align: center;
    overflow: hidden;
}
.hz-hero:before,
.hz-hero:after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}
.hz-hero:before {
    width: 320px;
    height: 320px;
    top: -160px;
    right: -60px;
}
.hz-hero:after {
    width: 220px;
    height: 220px;
    bottom: -120px;
    left: 10%;
}
.hz-hero-inner {
    position: relative;
    z-index: 1;
}
.hz-hero-kicker {
    display: inline-block;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.hz-hero-title {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}
.hz-hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0;
}

/* 悬浮搜索框 */
.hz-search-float {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: -34px auto 0;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(79, 99, 255, 0.2);
    padding: 10px;
    display: flex;
}
.hz-search-float input {
    flex: 1;
    border: none;
    padding: 0 20px;
    height: 52px;
    font-size: 14px;
    color: var(--hz-ink);
}
.hz-search-float button {
    border: none;
    padding: 0 32px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--hz-brand), var(--hz-brand-2));
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

/* 分类快捷入口 */
.hz-chips {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 40px 0 8px;
}
.hz-chip {
    padding: 8px 20px;
    border-radius: 20px;
    background-color: var(--hz-brand-soft);
    color: var(--hz-brand);
    font-size: 13px;
    font-weight: 600;
}
.hz-chip:hover {
    background-color: var(--hz-brand);
    color: #fff;
}

/* 首页 - 广告条 */
.hz-ads-strip {
    margin: 32px 0;
    text-align: center;
}
.hz-ads-strip img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(26, 29, 41, 0.08);
}

/* 首页 - 分区标题 */
.hz-section {
    margin-bottom: 56px;
}
.hz-section-head {
    text-align: center;
    margin-bottom: 32px;
}
.hz-section-kicker {
    display: inline-block;
    font-size: 12px;
    color: var(--hz-brand);
    background-color: var(--hz-brand-soft);
    padding: 4px 14px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.hz-section-head h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--hz-ink);
}

/* 首页 - 卡片网格 */
.hz-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.hz-card {
    display: block;
    background-color: var(--hz-surface);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(26, 29, 41, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hz-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 36px rgba(79, 99, 255, 0.18);
}
.hz-card-thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: var(--hz-bg);
}
.hz-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.hz-card:hover .hz-card-thumb img {
    transform: scale(1.06);
}
.hz-card-body {
    padding: 16px;
}
.hz-card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--hz-ink);
    margin-bottom: 12px;
}
.hz-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--hz-muted);
}
.hz-card-column {
    color: var(--hz-brand);
    background-color: var(--hz-brand-soft);
    padding: 3px 10px;
    border-radius: 10px;
    font-weight: 600;
}


/* info */
.info-box {
    margin-bottom: 40px;
}
.info-box .info-title {
    padding: 16px 0;
    text-align: center;
}
.info-box .info-title h3 {
    color: #118c3c;
    font-size: 30px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.info-box .info-title h3:before {
    content: '';
    width: 60px;
    height: 2px;
    background-color: #999;
    margin-right: 20px;
}
.info-box .info-title h3:after {
    content: '';
    width: 60px;
    height: 2px;
    background-color: #999;
    margin-left: 20px;
}
.info-box .info-title p {
    color: #666;
    font-size: 36px;
}
.info-box .info-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 40px;
}
.info-content .info-list {
    width: 23.5%;
    background-color: #f6f6f6;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.05); 
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}
.info-content .info-list .list-img {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
.info-content .info-list .list-img img {
    width: 100%;
    height: 190px;
}
.info-content .info-list .list-title {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
.info-content .info-list .list-name {
    font-size: 18px;
    color: #333;
}
.info-content .info-list .list-price {
    font-size: 18px;
    font-weight: bold;
    color: #ff5959;
    width: 140px;
    text-align: right;
}
.info-content .info-list .list-other {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 14px;
}
.info-content .info-list .list-other>span {
    width: 1px;
    height: 15px;
    background-color: #ccc;
}
.info-content .info-list .list-other .list-cloumn {
    color: #999;
    font-size: 13px;
}
.info-content .info-list .list-other .list-time {
    color: #999;
    font-size: 13px;
}
.info-content .info-list .list-more:before {
    background-color: #118c3c;
    padding: 2px 40px;
    border-radius: 20px;
    content: "\21C0";
    display: inline-block;
    color: #fff;
}
.info-content .info-list .list-unit {
    font-size: 13px;
    color: #333;
    padding: 4px 10px;
    border: 1px solid #e4e4e4;
}
.info-content .info-list .list-detail {
    display: flex;
}
.info-content .info-list .list-detail>a {
    background-color: #118c3c;
    color: #fff;
    border-radius: 20px;
    padding: 4px 16px;
}

.info-box .info-more {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.info-box .info-more>a {
    background-color: #118c3c;
    color: #fff;
    border-radius: 20px;
    padding: 6px 24px
}

.info-2 .info-content .info-list {
    width: 33.33%;
    border: none;
}
.info-2 .info-content .info-list>a {
    display: flex;
    justify-content: space-between;
}
.info-2 .info-content .info-list .list-img img {
    width: 100px;
    height: 80px;
    border-radius: 10px;
    border: 1px solid #e4e4e4;
}
.info-2 .info-content .info-list .list-right {
    width: 240px;
    height: 80px;
}
.info-2 .info-content .info-list .list-title {
    margin-bottom: 16px;
}
.info-2 .info-content .info-list .list-name {
    font-size: 16px;
}

#index_view .detail p {
    font-size: 18px;
    line-height: 36px;
    letter-spacing: 1px;
}
#index_view .detail .title {
    font-size: 16px;
    color: #000;
}

#main .panel {
    background: transparent;
    box-shadow: none;
}
#main .panel .filter {
    background-color: #fff;
    padding: 15px;
}
#main .panel .filter dl {
    border-bottom: none;
}
#main .panel .filter dl dd a {
    color: #333;
}
#main .panel .filter dl dd a.active {
    color: #fff;
}
#content .panel .list-1 {
    padding: 15px;
}
#content .panel .list-1 .row.title {
    font-size: 18px;
    font-weight: bold;
    border: none;
    background-color: #fff;
    margin-bottom: 20px;
}
#content .panel .list-1 .item {
    border: none;
    background-color: #fff;
    margin-bottom: 20px;
    min-height: 150px;
}
#content .panel .list-1 .item .thumb img {
    width: 160px;
    height: 120px;
}
#content .panel .list-1 .item h2 a {
    font-size: 18px;
    color: #333;
}
#main .panel-heading {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #118c3c;
}
#main .panel-heading h3 {
    font-size: 36px;
    color: #118c3c;
    font-weight: bold;
}
.panel-heading h3 a {
    color: #333;
}
#main .panel-body {
    background-color: #fff;
    padding: 20px;
}
#index_view .others .media.col-2 {
    box-shadow: none;
}
#index_view .others .media-body {
    border-bottom: 1px solid #118c3c;
}
#index_view .others .media-body h5 {
    font-size: 16px;
}
.alert-warning {
    background-color: #fff;
    border: none;
    display: none;
}


.text-overflow {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* footer */
#footer {
    background-color: var(--hz-ink);
    color: rgba(255,255,255,0.6);
    padding-top: 48px;
    margin-top: 24px;
    border-radius: 24px 24px 0 0;
}
.hz-footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hz-footer-col {
    min-width: 180px;
}
.hz-footer-brand {
    max-width: 320px;
}
.hz-footer-logo {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(90deg, #8AA0FF, #C6B4FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
}
.hz-footer-desc {
    font-size: 13px;
    line-height: 22px;
    color: rgba(255,255,255,0.45);
}
.hz-footer-col h4 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 16px;
}
.hz-footer-col ul li {
    margin-bottom: 10px;
}
.hz-footer-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}
.hz-footer-col ul li a:hover {
    color: #fff;
}
.hz-footer-bottom {
    padding: 20px 0;
    text-align: center;
}
.hz-footer-bottom .copyright {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}
.hz-footer-bottom .copyright a {
    color: rgba(255,255,255,0.35);
}

#main {
    min-height: 500px;
}
#content.info-content {
    width: 100%;
}

/* 关于我们 */
.about .panel-header {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}
.about .panel-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.about .left-panel {
    width: 50%;
}
.about .left-panel img {
    width: 100%;
    height: auto;
}
.about .right-panel {
    width: 40%;
}
.about .right-panel h3 {
    margin-bottom: 20px;
}
.about .right-panel p {
    line-height: 30px;
}

/* 会员中心 */
#user_index #content {
    width: 830px;
}

/* toolbar */
#toolbar {
    display: none;
    width: auto;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
}
#toolbar>a {
   background-color: #118c3c;
}
#toolbar>a>i {
    color: #fff;
 }

.breadcrumb {
    background-color: #fff;
}

#header .action a.add {
    background: #118c3c;
}

#header .action a.add {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-top: 23px;
    border-radius: 4px;
}

/*登录注册*/
.wall {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url("../../img/user/login_bg.jpg");
    padding-top: 100px;
}
.login, .register, .forget {
    width: 600px;
    margin-top: 0;
}

.filter dl dd a:hover, .filter dl dd a.active {
    background-color: #118c3c;
}
.filter .search-filter button {
    background-color: #118c3c;
}
.btn-danger, .pagination li.active a, .pagination li.active a:hover, .pagination li a:hover {
    background-color: #118c3c;
    border-color: #118c3c;
}
.show-number {
    background: #118c3c;
    color: #fff;
}