* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background-color: #faf7f8;
    color: #333333;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}
a {
    color: inherit;
    text-decoration: none;
}
.wronglycontainer {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 15px;
}
.wronglyheader {
    background: #ffffff;
    border-bottom: 2px solid #e84393;
}
.wronglytopbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
}
.wronglylogo img {
    max-height: 42px;
    max-width: 100%;
    object-fit: contain;
}
.wronglynavbar {
    background: #e84393;
}
.wronglynav {
    display: flex;
    align-items: center;
    gap: 15px;
}
.wronglynavlink {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    padding: 14px 18px;
    transition: background 0.2s;
}
.wronglynavlink:hover, .wronglynavlink.active {
    background: #d6306c;
}
.wronglysearchinput {
    height: 34px;
    padding: 0 12px;
    border: 1px solid #e84393;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-size: 13px;
    width: 220px;
}
.wronglysearchbtn {
    height: 34px;
    padding: 0 16px;
    background: #e84393;
    color: #ffffff;
    border: none;
    font-weight: 700;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}
.wronglynotice {
    background: #ffffff;
    border-left: 4px solid #e84393;
    padding: 12px 18px;
    margin: 15px 0;
    border-radius: 4px;
    color: #555555;
    font-size: 13px;
    box-shadow: 0 2px 5px rgba(232,67,147,0.08);
}
.wronglyherogrid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}
.wronglybox {
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #f2e3e5;
    padding: 15px;
}
.wronglyboxtitle {
    font-size: 15px;
    font-weight: 700;
    color: #e84393;
    padding-bottom: 8px;
    border-bottom: 2px solid #e84393;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wronglyheroimgbox {
    width: 100%;
    height: 220px;
    background: #fff0f3;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    overflow: hidden;
}
.wronglyheroimg {
    max-height: 180px;
    max-width: 85%;
    object-fit: contain;
}
.wronglylayout2col {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
}
.wronglygrid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.wronglygrid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}
.wronglygrid6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}
.wronglycard {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #f2e3e5;
    padding: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.2s;
}
.wronglycard:hover {
    border-color: #e84393;
    box-shadow: 0 4px 15px rgba(232,67,147,0.12);
}
.wronglycardimg {
    width: 100%;
    height: 85px;
    object-fit: contain;
    margin-bottom: 8px;
    display: block;
}
.wronglycardtitle {
    font-size: 13px;
    font-weight: 600;
    color: #2d3436;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 6px;
}
.wronglyprice {
    color: #d6306c;
    font-weight: 700;
}
.wronglybadge {
    position: absolute;
    top: 6px;
    left: 6px;
    background: #e84393;
    color: #ffffff;
    font-size: 10px;
    padding: 1px 4px;
    border-radius: 2px;
}
.wronglyautotag {
    font-size: 10px;
    background: #ffeef0;
    color: #e84393;
    padding: 2px 6px;
    border-radius: 3px;
}
.wronglyrankitem {
    display: flex;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px dashed #f2e3e5;
    font-size: 13px;
}
.wronglyranknum {
    width: 20px;
    height: 20px;
    background: #74b9ff;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    margin-right: 10px;
}
.wronglyranknum.top3 {
    background: #e84393;
}
.wronglyfooter {
    background: #2d3436;
    color: #b2bec3;
    padding: 30px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
}
.wronglyfooterlinks {
    margin-bottom: 10px;
}
.wronglyfooterlinks a {
    color: #ffffff;
}
.wronglycardbox {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #f2e3e5;
    padding: 25px;
    margin-bottom: 20px;
}
.wronglyformgroup {
    margin-bottom: 15px;
}
.wronglylabel {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #2d3436;
}
.wronglyinput {
    width: 100%;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    outline: none;
}
.wronglybtn {
    display: inline-block;
    width: 100%;
    height: 42px;
    line-height: 42px;
    text-align: center;
    background: #e84393;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}
.wronglytabs {
    display: flex;
    border-bottom: 2px solid #eeeeee;
    margin-bottom: 20px;
}
.wronglytabitem {
    padding: 10px 20px;
    font-weight: 600;
    color: #636e72;
}
.wronglytabitem.active {
    color: #e84393;
    border-bottom: 2px solid #e84393;
    margin-bottom: -2px;
}
@media (max-width: 992px) {
    .wronglyherogrid {
        grid-template-columns: 1fr;
    }
    .wronglylayout2col {
        grid-template-columns: 1fr;
    }
    .wronglygrid3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .wronglygrid4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .wronglygrid6 {
        grid-template-columns: repeat(2, 1fr);
    }
}
