body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Microsoft YaHei", sans-serif;
    background-color: #f5f6fa;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
.crackcontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 10px;
    box-sizing: border-box;
}
.crackheader {
    background-color: #1a1a1a;
    border-bottom: 3px solid #388e3c;
    position: sticky;
    top: 0;
    z-index: 999;
}
.crackheader .crackinner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    height: 56px;
}
.cracklogo img {
    height: 24px;
    vertical-align: middle;
}
.cracknav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}
.cracknav li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}
.cracknav li a:hover, .cracknav li a.crackactive {
    color: #ffffff;
    border-bottom: 2px solid #388e3c;
    padding-bottom: 16px;
}
.cracknoticebar {
    background-color: #ffffff;
    border: 1px solid #e3e4e6;
    padding: 10px 15px;
    margin: 10px auto 20px;
    border-radius: 4px;
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
}
.cracknoticebar::before {
    content: "系统通知";
    background-color: #388e3c;
    color: #fff;
    padding: 2px 6px;
    font-size: 11px;
    border-radius: 2px;
    margin-right: 10px;
}
.cracksectitle {
    font-size: 15px;
    font-weight: bold;
    color: #111;
    margin: 25px 0 15px;
    border-left: 3px solid #388e3c;
    padding-left: 10px;
    text-transform: uppercase;
}
.cracksubcatbar {
    background: linear-gradient(135deg, #1aa2a8, #30b1b7);
    color: #fff;
    padding: 12px 15px;
    border-radius: 4px 4px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
}
.cracksubcatbar.crackpurple {
    background: linear-gradient(135deg, #9b51e0, #b57fe8);
}
.cracksubcatlinks {
    display: flex;
    gap: 12px;
    font-size: 11px;
    font-weight: normal;
    overflow-x: auto;
    white-space: nowrap;
}
.cracksubcatlinks span {
    border: 1px solid rgba(255,255,255,0.3);
    padding: 2px 6px;
    border-radius: 2px;
}
.crackgridone {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}
.crackcardone {
    background: #ffffff;
    border: 1px solid #e3e4e6;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    border-radius: 4px;
    transition: transform 0.2s;
    position: relative;
}
.crackcardone:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.crackcardone img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}
.crackinfoone {
    overflow: hidden;
}
.cracktitleone {
    font-size: 13px;
    color: #333;
    font-weight: bold;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.crackpriceone {
    color: #388e3c;
    font-weight: bold;
}
.cracktagrecommend {
    position: absolute;
    top: 0;
    left: 0;
    background: #388e3c;
    color: #fff;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 4px 0 4px 0;
    font-weight: bold;
}
.crackgridtwo {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e3e4e6;
    border-top: none;
    padding: 15px;
    border-radius: 0 0 4px 4px;
    margin-bottom: 25px;
}
.crackcardtwo {
    text-decoration: none;
    text-align: center;
    display: block;
}
.crackcardtwo img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 2px;
    margin-bottom: 6px;
}
.cracktitletwo {
    font-size: 11px;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.crackpricetwo {
    color: #388e3c;
    font-weight: bold;
    font-size: 11px;
    margin-top: 4px;
}
.crackgridthree {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}
.crackdetailwrap {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-top: 20px;
}
.crackcard {
    background: #ffffff;
    border: 1px solid #e3e4e6;
    border-radius: 4px;
    padding: 20px;
}
.crackprodtitle {
    font-size: 20px;
    font-weight: bold;
    color: #111;
    margin-bottom: 12px;
}
.crackmeta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #888;
    border-bottom: 1px dashed #e3e4e6;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.crackfield {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.crackfield label {
    width: 100px;
    font-size: 13px;
    color: #555;
}
.crackfield input, .crackfield select {
    flex: 1;
    height: 38px;
    border: 1px solid #e3e4e6;
    border-radius: 4px;
    padding: 0 10px;
    outline: none;
    box-sizing: border-box;
}
.crackfield input:focus {
    border-color: #388e3c;
}
.crackbuybtn {
    width: 100%;
    height: 44px;
    background: #388e3c;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.crackbuybtn:hover {
    background: #2e7d32;
}
.crackfooter {
    background: #1a1a1a;
    border-top: 3px solid #388e3c;
    padding: 30px 0;
    text-align: center;
    margin-top: 40px;
}
.crackfooterlinks {
    margin-bottom: 12px;
}
.crackfooterlinks a {
    color: #bbb;
    text-decoration: none;
    font-size: 13px;
    margin: 0 10px;
}
.crackfooterlinks a:hover {
    color: #ffffff;
}
.crackcopyright {
    color: #777;
    font-size: 11px;
}
.crackorderbox {
    background: #ffffff;
    border: 1px solid #e3e4e6;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 12px;
}
.crackkami {
    color: #2fba2f;
    font-weight: bold;
}
@media (max-width: 768px) {
    .crackgridone { grid-template-columns: repeat(2, 1fr); }
    .crackgridtwo { grid-template-columns: repeat(3, 1fr); }
    .crackgridthree { grid-template-columns: repeat(2, 1fr); }
    .crackdetailwrap { grid-template-columns: 1fr; }
}