body {
    margin: 0;
    padding: 0;
    background: #f7f8f9;
    color: #1d2129;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 13px;
    line-height: 1.6;
}
a {
    color: #1d2129;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover {
    color: #ff4e6a;
}
.ang-top-utility {
    background: #fcfcfc;
    border-bottom: 1px solid #e5e6eb;
    height: 32px;
}
.ang-top-utility-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    font-size: 11px;
    color: #86909c;
}
.ang-top-bar {
    background: #ffffff;
    border-bottom: 1px solid #e5e6eb;
}
.ang-top-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ang-logo img {
    height: 40px;
    display: block;
}
.ang-search-box {
    display: flex;
    border: 2px solid #ff4e6a;
    height: 38px;
    width: 320px;
    border-radius: 4px;
    overflow: hidden;
}
.ang-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 15px;
    font-size: 13px;
}
.ang-search-btn {
    background: #ff4e6a;
    color: #ffffff;
    border: none;
    padding: 0 20px;
    font-weight: bold;
    cursor: pointer;
}
.ang-sub-bar {
    background: #ffffff;
    border-bottom: 1px solid #e5e6eb;
}
.ang-sub-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.ang-nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.ang-nav-links a {
    color: #555555;
    padding: 12px 22px;
    display: block;
    font-size: 13px;
    font-weight: bold;
    opacity: 0.9;
}
.ang-nav-links a:hover, .ang-nav-links .clx-active {
    opacity: 1;
    color: #ff4e6a;
    border-bottom: 2px solid #ff4e6a;
}
.ang-notice {
    max-width: 1200px;
    margin: 15px auto 0;
    background: #fff5f5;
    border: 1px solid #ffccc7;
    color: #a31515;
    padding: 10px 20px;
    border-radius: 3px;
    font-size: 12px;
}
.ang-main {
    max-width: 1200px;
    margin: 20px auto 40px;
    padding: 0 20px;
}
.ang-layout-top {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}
.ang-col-left {
    width: 180px;
    flex-shrink: 0;
}
.ang-col-mid {
    flex: 1;
    min-width: 0;
}
.ang-col-right {
    width: 320px;
    flex-shrink: 0;
}
.ang-box {
    background: #ffffff;
    border: 1px solid #e5e6eb;
    border-radius: 4px;
    overflow: hidden;
}
.ang-box-hd {
    background: #fafafa;
    border-bottom: 1px solid #e5e6eb;
    padding: 10px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ang-box-title {
    font-size: 14px;
    font-weight: 700;
    color: #333333;
    border-left: 3px solid #ff4e6a;
    padding-left: 10px;
    margin: 0;
}
.ang-box-bd {
    padding: 15px;
}
.ang-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ang-side-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px dashed #e5e6eb;
}
.ang-side-row:last-child {
    border-bottom: none;
}
.ang-side-row-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    flex: 1;
    min-width: 0;
}
.ang-side-row-img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #e5e6eb;
}
.ang-side-row-title {
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ang-dot-red {
    width: 4px;
    height: 4px;
    background: #ff4e6a;
    border-radius: 50%;
    flex-shrink: 0;
}
.ang-a-hero {
    border-bottom: 1px dashed #e5e6eb;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.ang-a-hero-card {
    display: flex;
    gap: 15px;
}
.ang-a-hero-img {
    width: 140px;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #e5e6eb;
}
.ang-a-hero-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.ang-a-hero-title {
    font-size: 15px;
    font-weight: bold;
    margin: 0 0 5px 0;
}
.ang-a-hero-desc {
    font-size: 12px;
    color: #666666;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}
.ang-btn-red {
    background: #ff4e6a;
    color: #ffffff;
    border: none;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 3px;
    cursor: pointer;
}
.ang-btn-red:hover {
    background: #f54854;
}
.ang-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}
.ang-card-grid {
    border: 1px solid #e5e6eb;
    background: #ffffff;
    padding: 12px;
    text-align: center;
    border-radius: 3px;
    transition: transform 0.2s;
}
.ang-card-grid:hover {
    transform: translateY(-2px);
    border-color: #ff4e6a;
}
.ang-card-img-box {
    width: 100%;
    aspect-ratio: 1;
    border: 1px solid #e5e6eb;
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto 10px;
}
.ang-card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ang-card-name {
    font-size: 12px;
    font-weight: bold;
    margin: 0 0 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ang-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}
.ang-f-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #ffffff;
    border: 1px solid #e5e6eb;
    padding: 15px;
    border-radius: 4px;
}
.ang-f-big img {
    width: 100%;
    aspect-ratio: 1.6;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 4px;
}
.ang-f-small {
    display: flex;
    gap: 10px;
}
.ang-f-small-img {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid #e5e6eb;
}
.ang-f-title {
    font-size: 12px;
    font-weight: bold;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ang-bottom-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.ang-bottom-card {
    border: 1px solid #e5e6eb;
    border-radius: 4px;
    padding: 12px;
    text-align: center;
    background: #ffffff;
}
.ang-bottom-logo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e6eb;
}
.ang-bottom-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ang-bottom-name {
    font-size: 11px;
    font-weight: bold;
    margin: 0 0 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ang-footer {
    background: #252830;
    color: #a2a6b0;
    padding: 30px 0;
    text-align: center;
    font-size: 12px;
}
.ang-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.ang-footer-links {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.ang-footer-links a {
    color: #ffffff;
    opacity: 0.8;
}
.ang-footer-links a:hover {
    color: #ff4e6a;
    opacity: 1;
}
.ang-detail-grid {
    display: flex;
    gap: 20px;
}
.ang-detail-l {
    flex: 1;
    min-width: 0;
}
.ang-detail-r {
    width: 300px;
    flex-shrink: 0;
}
.ang-detail-box {
    background: #ffffff;
    border: 1px solid #e5e6eb;
    border-radius: 4px;
    padding: 30px;
    margin-bottom: 20px;
}
.ang-detail-top {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    border-bottom: 1px dashed #e5e6eb;
    padding-bottom: 30px;
}
.ang-detail-media {
    width: 140px;
    height: 140px;
    border: 1px solid #e5e6eb;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ang-detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ang-detail-form {
    flex: 1;
}
.ang-d-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 15px 0;
}
.ang-d-price-row {
    background: #fafafa;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 3px;
    border: 1px solid #e5e6eb;
}
.ang-d-price {
    font-size: 22px;
    font-weight: bold;
    color: #e02020;
}
.ang-form-group {
    margin-bottom: 15px;
}
.ang-form-group label {
    display: block;
    font-size: 12px;
    margin-bottom: 8px;
    font-weight: bold;
}
.ang-input {
    width: 100%;
    height: 38px;
    border: 1px solid #e5e6eb;
    padding: 0 12px;
    box-sizing: border-box;
    outline: none;
    border-radius: 3px;
}
.ang-input:focus {
    border-color: #ff4e6a;
}
.ang-btn-orange {
    width: 100%;
    height: 44px;
    background: #ff4e6a;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 3px;
}
.ang-btn-orange:hover {
    background: #f54854;
}
.ang-btn-orange:disabled {
    background: #cccccc;
    cursor: not-allowed;
}
.ang-desc-box {
    line-height: 1.8;
    color: #555555;
}
.ang-auth-wrap {
    background: #ffffff;
    border: 1px solid #e5e6eb;
    max-width: 440px;
    margin: 40px auto;
}
.ang-auth-tabs {
    display: flex;
    background: #fdfdfd;
    border-bottom: 1px solid #e5e6eb;
}
.ang-auth-tab {
    flex: 1;
    text-align: center;
    line-height: 48px;
    font-size: 12px;
    color: #666666;
}
.ang-auth-tabs .clx-active {
    color: #ff4e6a;
    font-weight: bold;
    border-bottom: 2px solid #ff4e6a;
}
.ang-auth-body {
    padding: 30px;
}
.ang-mini-table {
    border: 1px solid #e5e6eb;
    margin-top: 20px;
}
.ang-mini-tr {
    display: flex;
    padding: 10px 12px;
    border-bottom: 1px solid #e5e6eb;
    align-items: center;
}
.ang-mini-tr:last-child {
    border-bottom: none;
}
.ang-mini-th {
    background: #fafafa;
    font-weight: bold;
}
.ang-mini-td {
    flex: 1;
    min-width: 0;
}
.ang-simple-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e5e6eb;
    margin-bottom: 10px;
}
.ang-simple-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.ang-simple-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}
.ang-simple-img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #e5e6eb;
}
@media (max-width: 900px) {
    .ang-top-inner {
        flex-direction: column;
        gap: 15px;
    }
    .ang-search-box {
        width: 100%;
    }
    .ang-grid-4, .ang-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .ang-layout-top, .ang-detail-grid {
        flex-direction: column;
    }
    .ang-col-left, .ang-col-right, .ang-detail-r {
        width: 100%;
    }
    .ang-bottom-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}