body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #f8fafc;
    color: #334155;
}
.henge-header {
    position: relative;
    z-index: 10001;
    height: 60px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}
.henge-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}
.henge-logo {
    float: left;
    padding: 10px 0;
}
.henge-logo img {
    height: 40px;
    display: block;
}
.henge-nav {
    float: right;
    list-style: none;
    margin: 0;
    padding: 0;
}
.henge-nav-item {
    float: left;
    line-height: 60px;
    margin-left: 25px;
}
.henge-nav-item a {
    color: #334155;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}
.henge-nav-item a:hover {
    color: #0284c7;
}
.henge-main {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    min-height: calc(100vh - 240px);
}
.henge-tips {
    background: #fffbeb;
    border: 1px solid #fde68a;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 13px;
    color: #b45309;
    line-height: 1.5;
}
.henge-breadcrumb-row {
    background: #f1f5f9;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 13px;
    color: #64748b;
}
.henge-breadcrumb-row a {
    color: #475569;
    text-decoration: none;
}
.henge-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
@media (min-width: 992px) {
    .henge-grid-layout {
        grid-template-columns: 7.2fr 2.8fr;
    }
}
.henge-content-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.henge-sidebar-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.henge-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.01);
}
.henge-box-title {
    background: #f1f5f9;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 600;
    color: #0284c7;
    border-bottom: 1px solid #cbd5e1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.henge-box-body {
    padding: 20px;
}
.henge-box1-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.henge-b1-item {
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #e2e8f0;
}
.henge-b1-item:last-child {
    border-bottom: none;
}
@media (max-width: 600px) {
    .henge-b1-item {
        flex-direction: column;
    }
}
.henge-b1-img {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}
@media (max-width: 600px) {
    .henge-b1-img {
        width: 100%;
        height: 150px;
    }
}
.henge-b1-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.henge-b1-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    line-height: 1.4;
}
.henge-b1-title:hover {
    color: #0284c7;
}
.henge-b1-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}
.henge-price {
    font-size: 18px;
    color: #0284c7;
    font-weight: 700;
}
.henge-badge {
    font-size: 10px;
    background: #f0f9ff;
    color: #0284c7;
    padding: 2px 6px;
    border-radius: 4px;
}
.henge-btn {
    background: #0284c7;
    color: #ffffff;
    border: none;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
    text-align: center;
}
.henge-btn:hover {
    background: #0369a1;
}
.henge-btn-disabled {
    background: #cbd5e1;
    color: #94a3b8;
    cursor: not-allowed;
    text-align: center;
}
.henge-b2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
@media (max-width: 768px) {
    .henge-b2-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.henge-b2-pill {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 10px 4px;
    border-radius: 4px;
    text-decoration: none;
    color: #475569;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.henge-b2-pill:hover {
    border-color: #0284c7;
    color: #0284c7;
}
.henge-b3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
@media (max-width: 600px) {
    .henge-b3-grid {
        grid-template-columns: 1fr;
    }
}
.henge-b3-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}
.henge-b3-card:hover {
    transform: translateY(-2px);
    border-color: #0284c7;
}
.henge-b3-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-bottom: 1px solid #e2e8f0;
}
.henge-b3-body {
    padding: 12px;
}
.henge-b3-title {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.henge-b3-title:hover {
    color: #0284c7;
}
.henge-b4-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 768px) {
    .henge-b4-box {
        grid-template-columns: 3.5fr 6.5fr;
    }
}
.henge-b4-featured {
    border-right: none;
    padding-right: 0;
}
@media (min-width: 768px) {
    .henge-b4-featured {
        border-right: 1px solid #f1f5f9;
        padding-right: 20px;
    }
}
.henge-b4-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.henge-b4-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #f1f5f9;
}
.henge-b4-item:last-child {
    border-bottom: none;
}
.henge-b4-name {
    font-size: 14px;
    color: #334155;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 400px;
}
.henge-b4-name:hover {
    color: #0284c7;
}
.henge-b5-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.henge-b5-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}
.henge-b5-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.henge-b5-num {
    width: 20px;
    height: 20px;
    background: #cbd5e1;
    color: #475569;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}
.henge-b5-item:nth-child(1) .henge-b5-num { background: #0284c7; color: #ffffff; }
.henge-b5-item:nth-child(2) .henge-b5-num { background: #0284c7; color: #ffffff; }
.henge-b5-item:nth-child(3) .henge-b5-num { background: #0284c7; color: #ffffff; }
.henge-b5-name {
    color: #334155;
    text-decoration: none;
    font-weight: 500;
}
.henge-b5-name:hover {
    color: #0284c7;
}
.henge-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
@media (min-width: 992px) {
    .henge-detail-grid {
        grid-template-columns: 7fr 3fr;
    }
}
.henge-detail-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.henge-detail-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.henge-panel {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    padding: 24px;
}
.henge-panel-title {
    font-size: 15px;
    font-weight: 600;
    color: #0284c7;
    margin: 0 0 20px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 8px;
}
.henge-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}
.henge-table td {
    border: 1px solid #cbd5e1;
    padding: 10px 14px;
    font-size: 13px;
}
.henge-table tr td:first-child {
    background: #f8fafc;
    color: #64748b;
    width: 120px;
    font-weight: 500;
}
.henge-table tr td:last-child {
    color: #1e293b;
    font-weight: 600;
}
.henge-form-group {
    margin-bottom: 16px;
}
.henge-form-label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
}
.henge-form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}
.henge-form-input:focus {
    border-color: #0284c7;
}
.henge-footer {
    background: #1e293b;
    color: #94a3b8;
    padding: 40px 0;
    text-align: center;
    font-size: 13px;
    margin-top: 80px;
}
.henge-footer p {
    margin: 0;
}
.henge-footer-links {
    margin-bottom: 15px;
}
.henge-footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    margin: 0 12px;
    transition: color 0.3s;
}
.henge-footer-links a:hover {
    color: #0284c7;
}
.henge-query-box {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    padding: 24px;
}
.henge-query-tabs {
    display: flex;
    border-bottom: 2px solid #cbd5e1;
    margin-bottom: 25px;
}
.henge-query-tab {
    flex: 1;
    text-align: center;
    padding: 12px;
    font-weight: 500;
    font-size: 13px;
    color: #64748b;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s;
}
.henge-query-tab.active {
    border-color: #0284c7;
    color: #0284c7;
    font-weight: 600;
}
