body {
    margin: 0;
    padding: 0;
    background: #f4f5f6;
    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: #e02020;
}
.eas-top-bar {
    background: #ffffff;
    border-bottom: 1px solid #e5e6eb;
}
.eas-top-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.eas-logo img {
    height: 40px;
    display: block;
}
.eas-search-box {
    display: flex;
    border: 2px solid #e02020;
    height: 38px;
    width: 480px;
    border-radius: 4px;
    overflow: hidden;
}
.eas-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 15px;
    font-size: 13px;
}
.eas-search-btn {
    background: #e02020;
    color: #ffffff;
    border: none;
    padding: 0 25px;
    font-weight: bold;
    cursor: pointer;
}
.eas-sub-bar {
    background: #e02020;
}
.eas-sub-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.eas-nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.eas-nav-links a {
    color: #ffffff;
    padding: 12px 22px;
    display: block;
    font-size: 13px;
    font-weight: bold;
    opacity: 0.9;
}
.eas-nav-links a:hover, .eas-nav-links .clx-active {
    opacity: 1;
    background: #b81c25;
}
.eas-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;
}
.eas-main {
    max-width: 1200px;
    margin: 20px auto 40px;
    padding: 0 20px;
}
.eas-layout-top {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.eas-col-left {
    width: 200px;
    flex-shrink: 0;
}
.eas-col-mid {
    flex: 1;
    min-width: 0;
}
.eas-col-right {
    width: 320px;
    flex-shrink: 0;
}
.eas-box {
    background: #ffffff;
    border: 1px solid #e5e6eb;
    border-radius: 4px;
    overflow: hidden;
}
.eas-box-hd {
    background: #fafafa;
    border-bottom: 1px solid #e5e6eb;
    padding: 10px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.eas-box-title {
    font-size: 14px;
    font-weight: 700;
    color: #333333;
    border-left: 3px solid #e02020;
    padding-left: 10px;
    margin: 0;
}
.eas-box-bd {
    padding: 15px;
}
.eas-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.eas-side-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px dashed #e5e6eb;
}
.eas-side-row:last-child {
    border-bottom: none;
}
.eas-side-row-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    flex: 1;
    min-width: 0;
}
.eas-side-row-img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #e5e6eb;
}
.eas-side-row-title {
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.eas-dot-red {
    width: 4px;
    height: 4px;
    background: #e02020;
    border-radius: 50%;
    flex-shrink: 0;
}
.eas-grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.eas-item-card {
    border: 1px solid #e5e6eb;
    border-radius: 4px;
    padding: 10px;
    text-align: center;
    background: #ffffff;
    transition: transform 0.2s;
}
.eas-item-card:hover {
    transform: translateY(-2px);
    border-color: #e02020;
}
.eas-logo-box {
    width: 44px;
    height: 44px;
    border: 1px solid #e5e6eb;
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.eas-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eas-item-name {
    font-size: 12px;
    font-weight: bold;
    margin: 0 0 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.eas-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}
.eas-card-grid {
    background: #ffffff;
    border: 1px solid #e5e6eb;
    border-radius: 4px;
    padding: 15px;
    text-align: center;
    position: relative;
}
.eas-rank-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 10px;
    font-weight: bold;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
}
.eas-card-img-box {
    width: 100%;
    aspect-ratio: 1.5;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid #e5e6eb;
}
.eas-card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eas-card-name {
    font-size: 12px;
    font-weight: bold;
    margin: 0 0 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.eas-rank-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #e5e6eb;
}
.eas-rank-row:last-child {
    border-bottom: none;
}
.eas-badge-rank {
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    font-size: 10px;
    font-weight: bold;
    color: #ffffff;
    border-radius: 50%;
    flex-shrink: 0;
}
.eas-logo-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #e5e6eb;
}
.eas-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eas-rank-name {
    flex: 1;
    min-width: 0;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.eas-rank-price {
    color: #e02020;
    font-weight: bold;
}
.eas-row-main {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.eas-col-feed {
    flex: 1;
    min-width: 0;
    background: #ffffff;
    border: 1px solid #e5e6eb;
    border-radius: 4px;
}
.eas-feed-item {
    display: flex;
    padding: 20px;
    border-bottom: 1px solid #e5e6eb;
    gap: 20px;
}
.eas-feed-item:last-child {
    border-bottom: none;
}
.eas-feed-img {
    width: 140px;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #e5e6eb;
    flex-shrink: 0;
}
.eas-feed-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.eas-feed-title {
    font-size: 15px;
    font-weight: bold;
    margin: 0 0 6px 0;
}
.eas-feed-title-link:hover {
    color: #e02020;
}
.eas-badge-blue {
    background: #e6f7ff;
    color: #1890ff;
    border: 1px solid #91d5ff;
    font-size: 10px;
    padding: 1px 4px;
    border-radius: 2px;
    margin-right: 8px;
    vertical-align: middle;
}
.eas-feed-desc {
    color: #888888;
    font-size: 12px;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}
.eas-feed-meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.eas-price-red {
    color: #e02020;
    font-weight: bold;
    font-size: 15px;
}
.eas-btn-submit-red {
    background: #e02020;
    color: #ffffff;
    border: none;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
    cursor: pointer;
}
.eas-btn-submit-red:hover {
    background: #b81c25;
}
.eas-bottom-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}
.eas-bottom-card {
    border: 1px solid #e5e6eb;
    border-radius: 4px;
    padding: 12px;
    text-align: center;
    background: #ffffff;
}
.eas-bottom-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e6eb;
}
.eas-bottom-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eas-bottom-name {
    font-size: 12px;
    font-weight: bold;
    margin: 0 0 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.eas-footer {
    background: #ffffff;
    border-top: 1px solid #e5e6eb;
    padding: 30px 0;
    text-align: center;
    color: #86909c;
    font-size: 12px;
}
.eas-footer-links {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.eas-footer-links a {
    color: #4e5969;
}
.eas-footer-links a:hover {
    color: #e02020;
}
.eas-detail-grid {
    display: flex;
    gap: 20px;
}
.eas-detail-l {
    flex: 1;
    min-width: 0;
}
.eas-detail-r {
    width: 300px;
    flex-shrink: 0;
}
.eas-detail-box {
    background: #ffffff;
    border: 1px solid #e5e6eb;
    border-radius: 4px;
    padding: 30px;
    margin-bottom: 20px;
}
.eas-detail-top {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    border-bottom: 1px dashed #e5e6eb;
    padding-bottom: 30px;
}
.eas-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;
}
.eas-detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eas-detail-form {
    flex: 1;
}
.eas-d-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 15px 0;
}
.eas-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;
}
.eas-d-price {
    font-size: 22px;
    font-weight: bold;
    color: #e02020;
}
.eas-form-group {
    margin-bottom: 15px;
}
.eas-form-group label {
    display: block;
    font-size: 12px;
    margin-bottom: 8px;
    font-weight: bold;
}
.eas-input {
    width: 100%;
    height: 38px;
    border: 1px solid #e5e6eb;
    padding: 0 12px;
    box-sizing: border-box;
    outline: none;
    border-radius: 3px;
}
.eas-input:focus {
    border-color: #e02020;
}
.eas-btn-orange {
    width: 100%;
    height: 44px;
    background: #e02020;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 3px;
}
.eas-btn-orange:hover {
    background: #b81c25;
}
.eas-btn-orange:disabled {
    background: #cccccc;
    cursor: not-allowed;
}
.eas-desc-box {
    line-height: 1.8;
    color: #555555;
}
.eas-auth-wrap {
    background: #ffffff;
    border: 1px solid #e5e6eb;
    max-width: 440px;
    margin: 40px auto;
}
.eas-auth-tabs {
    display: flex;
    background: #fdfdfd;
    border-bottom: 1px solid #e5e6eb;
}
.eas-auth-tab {
    flex: 1;
    text-align: center;
    line-height: 48px;
    font-size: 12px;
    color: #666666;
}
.eas-auth-tabs .clx-active {
    color: #e02020;
    font-weight: bold;
    border-bottom: 2px solid #e02020;
}
.eas-auth-body {
    padding: 30px;
}
.eas-mini-table {
    border: 1px solid #e5e6eb;
    margin-top: 20px;
}
.eas-mini-tr {
    display: flex;
    padding: 10px 12px;
    border-bottom: 1px solid #e5e6eb;
    align-items: center;
}
.eas-mini-tr:last-child {
    border-bottom: none;
}
.eas-mini-th {
    background: #fafafa;
    font-weight: bold;
}
.eas-mini-td {
    flex: 1;
    min-width: 0;
}
.eas-simple-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e5e6eb;
    margin-bottom: 10px;
}
.eas-simple-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.eas-simple-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}
.eas-simple-img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #e5e6eb;
}
@media (max-width: 900px) {
    .eas-top-inner {
        flex-direction: column;
        gap: 15px;
    }
    .eas-search-box {
        width: 100%;
    }
    .eas-grid-6, .eas-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
    .eas-layout-top, .eas-row-main, .eas-detail-grid {
        flex-direction: column;
    }
    .eas-col-left, .eas-col-right, .eas-detail-r {
        width: 100%;
    }
    .eas-bottom-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}