body {
    margin: 0;
    padding: 0;
    background: #1a1a1a;
    color: #e5e6eb;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 13px;
    line-height: 1.6;
}
* {
    box-sizing: border-box;
}
a {
    color: #e5e6eb;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover {
    color: #ff334b;
}
.cretop-bar {
    background: #131313;
    border-bottom: 1px solid #2b2b2b;
}
.cretop-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.crelogo img {
    height: 38px;
    display: block;
}
.cresearch-box {
    display: flex;
    border: 2px solid #8a1f41;
    height: 38px;
    width: 480px;
    border-radius: 4px;
    overflow: hidden;
}
.cresearch-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 15px;
    font-size: 13px;
    background: #1a1a1a;
    color: #ffffff;
}
.cresearch-btn {
    background: #8a1f41;
    color: #ffffff;
    border: none;
    padding: 0 25px;
    font-weight: bold;
    cursor: pointer;
}
.cresub-bar {
    background: #131313;
    border-bottom: 1px solid #2b2b2b;
}
.cresub-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.crenav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.crenav-links a {
    color: #ffffff;
    padding: 12px 22px;
    display: block;
    font-size: 13px;
    font-weight: bold;
    opacity: 0.9;
}
.crenav-links a:hover, .crenav-links .clx-active {
    opacity: 1;
    background: #8a1f41;
}
.crenotice {
    max-width: 1200px;
    margin: 15px auto 0;
    background: #2b1322;
    border: 1px solid #8a1f41;
    color: #ff9cc2;
    padding: 10px 20px;
    border-radius: 3px;
    font-size: 12px;
}
.cremain {
    max-width: 1200px;
    margin: 20px auto 40px;
    padding: 0 20px;
}
.cresec-title {
    font-size: 14px;
    font-weight: bold;
    color: #ff334b;
    border-bottom: 2px solid #8a1f41;
    padding-bottom: 8px;
    margin: 30px 0 15px 0;
}
.crebox {
    background: #1c1c1c;
    border: 1px solid #2d2d2d;
    border-radius: 3px;
    margin-bottom: 20px;
    overflow: hidden;
}
.crebox-hd {
    background: #161616;
    border-bottom: 1px solid #2d2d2d;
    padding: 10px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.crebox-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    border-left: 3px solid #8a1f41;
    padding-left: 8px;
    margin: 0;
}
.crebox-bd {
    padding: 15px;
}
.cregrid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.creitem-card {
    border: 1px solid #2d2d2d;
    border-radius: 4px;
    padding: 10px;
    text-align: center;
    background: #1c1c1c;
    transition: transform 0.2s;
}
.creitem-card:hover {
    transform: translateY(-2px);
    border-color: #8a1f41;
}
.crelogo-box {
    width: 24px;
    height: 24px;
    border: 1px solid #2d2d2d;
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.crelogo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.crelogo-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #2d2d2d;
    display: flex;
    align-items: center;
    justify-content: center;
}
.crelogo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.creitem-name {
    font-size: 12px;
    font-weight: bold;
    margin: 0 0 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.creitem-price {
    font-size: 10px;
    color: #ff334b;
    margin: 0;
    font-weight: bold;
}
.cregrid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}
.crecard-grid {
    background: #1c1c1c;
    border: 1px solid #2d2d2d;
    border-radius: 4px;
    padding: 15px;
    text-align: center;
    position: relative;
}
.crerank-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;
}
.crecard-img-box {
    width: 100%;
    aspect-ratio: 1.5;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid #2d2d2d;
    display: flex;
    align-items: center;
    justify-content: center;
}
.crecard-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.crecard-name {
    font-size: 12px;
    font-weight: bold;
    margin: 0 0 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.crerank-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.crerank-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #2d2d2d;
}
.crerank-row:last-child {
    border-bottom: none;
}
.crebadge-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;
}
.crelogo-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #2d2d2d;
}
.crelogo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.crerank-name {
    flex: 1;
    min-width: 0;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.crerank-price {
    color: #ff334b;
    font-weight: bold;
}
.crerow-main {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.crecol-feed {
    flex: 1;
    min-width: 0;
    background: #1c1c1c;
    border: 1px solid #2d2d2d;
    border-radius: 4px;
}
.crefeed-item {
    display: flex;
    padding: 20px;
    border-bottom: 1px solid #2d2d2d;
    gap: 20px;
}
.crefeed-item:last-child {
    border-bottom: none;
}
.crefeed-img {
    width: 140px;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #2d2d2d;
    flex-shrink: 0;
}
.crefeed-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.crefeed-title {
    font-size: 15px;
    font-weight: bold;
    margin: 0 0 6px 0;
}
.crefeed-title-link:hover {
    color: #ff334b;
}
.crebadge-blue {
    background: #2b1322;
    color: #ff9cc2;
    border: 1px solid #8a1f41;
    font-size: 10px;
    padding: 1px 4px;
    border-radius: 2px;
    margin-right: 8px;
    vertical-align: middle;
}
.crefeed-desc {
    color: #999999;
    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;
}
.crefeed-meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.creprice-red {
    color: #ff334b;
    font-weight: bold;
    font-size: 15px;
}
.crebtn-submit-red {
    background: #8a1f41;
    color: #ffffff;
    border: none;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
    cursor: pointer;
}
.crebtn-submit-red:hover {
    background: #ff334b;
}
.crebottom-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.crebottom-card {
    border: 1px solid #2d2d2d;
    border-radius: 4px;
    padding: 12px;
    text-align: center;
    background: #1c1c1c;
}
.crebottom-logo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2d2d2d;
}
.crebottom-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.crebottom-name {
    font-size: 12px;
    font-weight: bold;
    margin: 0 0 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.crefooter {
    background: #131313;
    border-top: 1px solid #2d2d2d;
    padding: 30px 0;
    text-align: center;
    color: #888888;
    font-size: 12px;
}
.crefooter-links {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.crefooter-links a {
    color: #ffffff;
}
.crefooter-links a:hover {
    color: #ff334b;
}
.credetail-grid {
    display: flex;
    gap: 20px;
}
.credetail-l {
    flex: 1;
    min-width: 0;
}
.credetail-r {
    width: 300px;
    flex-shrink: 0;
}
.credetail-box {
    background: #1c1c1c;
    border: 1px solid #2d2d2d;
    border-radius: 4px;
    padding: 30px;
    margin-bottom: 20px;
}
.credetail-top {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    border-bottom: 1px dashed #2d2d2d;
    padding-bottom: 30px;
}
.credetail-media {
    width: 140px;
    height: 140px;
    border: 1px solid #2d2d2d;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.credetail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.credetail-form {
    flex: 1;
}
.cred-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 15px 0;
}
.cred-price-row {
    background: #131313;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 3px;
    border: 1px solid #2d2d2d;
}
.cred-price {
    font-size: 22px;
    font-weight: bold;
    color: #ff334b;
}
.creform-group {
    margin-bottom: 15px;
}
.creform-group label {
    display: block;
    font-size: 12px;
    margin-bottom: 8px;
    font-weight: bold;
}
.creinput {
    width: 100%;
    height: 38px;
    border: 1px solid #2d2d2d;
    padding: 0 12px;
    box-sizing: border-box;
    outline: none;
    border-radius: 3px;
    background: #1a1a1a;
    color: #ffffff;
}
.creinput:focus {
    border-color: #8a1f41;
}
.crebtn-orange {
    width: 100%;
    height: 44px;
    background: #8a1f41;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 3px;
}
.crebtn-orange:hover {
    background: #ff334b;
}
.crebtn-orange:disabled {
    background: #333333;
    cursor: not-allowed;
}
.credesc-box {
    line-height: 1.8;
    color: #999999;
}
.creauth-wrap {
    background: #1c1c1c;
    border: 1px solid #2d2d2d;
    max-width: 440px;
    margin: 40px auto;
}
.creauth-tabs {
    display: flex;
    background: #131313;
    border-bottom: 1px solid #2d2d2d;
}
.creauth-tab {
    flex: 1;
    text-align: center;
    line-height: 48px;
    font-size: 12px;
    color: #888888;
}
.creauth-tabs .clx-active {
    color: #ff334b;
    font-weight: bold;
    border-bottom: 2px solid #8a1f41;
}
.creauth-body {
    padding: 30px;
}
.cremini-table {
    border: 1px solid #2d2d2d;
    margin-top: 20px;
}
.cremini-tr {
    display: flex;
    padding: 10px 12px;
    border-bottom: 1px solid #2d2d2d;
    align-items: center;
}
.cremini-tr:last-child {
    border-bottom: none;
}
.cremini-th {
    background: #131313;
    font-weight: bold;
}
.cremini-td {
    flex: 1;
    min-width: 0;
}
.cresimple-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px dashed #2d2d2d;
    margin-bottom: 10px;
}
.cresimple-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.cresimple-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}
.cresimple-img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #2d2d2d;
}
.crebottom-row {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}
.crebot-col-l {
    width: 320px;
    flex-shrink: 0;
}
.crebot-col-m {
    flex: 1;
    min-width: 0;
}
.crebot-col-r {
    width: 320px;
    flex-shrink: 0;
}
.creapp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.creapp-card {
    background: #1c1c1c;
    border: 1px solid #2d2d2d;
    padding: 12px;
    text-align: center;
    border-radius: 3px;
}
.creapp-img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: cover;
    margin: 0 auto 8px;
    border: 1px solid #2d2d2d;
}
.creapp-name {
    font-size: 11px;
    font-weight: bold;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.creprice-red {
    color: #ff4d4f;
    font-weight: bold;
    font-size: 11px;
}
.crerank-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.crerank-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #2d2d2d;
}
.crerank-row:last-child {
    border-bottom: none;
}
.crebadge-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;
}
.crebox-a {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}
.crea-left {
    flex: 2;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #2d2d2d;
}
.crea-left img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}
.crea-left-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.6);
    color: #ffffff;
    padding: 15px;
    box-sizing: border-box;
}
.crea-left-text h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
}
.crea-right-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.crea-small-card {
    background: #1c1c1c;
    border: 1px solid #2d2d2d;
    border-radius: 4px;
    padding: 10px;
    display: flex;
    gap: 12px;
}
.crea-small-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
    border: 1px solid #2d2d2d;
}
.crea-small-info {
    flex: 1;
    min-width: 0;
}
.crea-small-name {
    font-size: 12px;
    font-weight: bold;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.crebox-b-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.creb-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
@media (max-width: 900px) {
    .cretop-inner {
        flex-direction: column;
        gap: 15px;
    }
    .cresearch-box {
        width: 100%;
    }
    .cregrid-6, .cregrid-5, .crebox-b-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .crelayout-top, .crerow-main, .credetail-grid, .cregrid-3, .crebox-a {
        flex-direction: column;
    }
    .crecol-left, .crecol-right, .credetail-r {
        width: 100%;
    }
    .crebottom-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}