body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Microsoft YaHei", sans-serif;
    background-color: #f9fafb;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
.weaklycontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 10px;
    box-sizing: border-box;
}
.weaklyheader {
    background-color: #ffffff;
    border-bottom: 2px solid #e85136;
    position: sticky;
    top: 0;
    z-index: 999;
}
.weaklyheader .weaklyinner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    height: 56px;
}
.weaklylogo img {
    height: 24px;
    vertical-align: middle;
}
.weaklynav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}
.weaklynav li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}
.weaklynav li a:hover, .weaklynav li a.weaklyactive {
    color: #e85136;
    border-bottom: 2px solid #e85136;
    padding-bottom: 16px;
}
.weaklynoticebar {
    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;
}
.weaklynoticebar::before {
    content: "公告";
    background-color: #e85136;
    color: #fff;
    padding: 2px 6px;
    font-size: 11px;
    border-radius: 2px;
    margin-right: 10px;
}
.weaklysectitle {
    font-size: 15px;
    font-weight: bold;
    color: #111;
    margin: 25px 0 15px;
    border-left: 3px solid #e85136;
    padding-left: 10px;
    text-transform: uppercase;
}
.weaklygridone {
    display: grid;
    grid-template-columns: 2fr 1.2fr;
    gap: 20px;
    margin-bottom: 25px;
}
.weaklyoneleft, .weaklyoneright {
    background: #ffffff;
    border: 1px solid #e3e4e6;
    border-radius: 4px;
    padding: 15px;
}
.weaklyonegrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.weaklycardone {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    border-radius: 4px;
    transition: transform 0.2s;
}
.weaklycardone:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.weaklycardone img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}
.weaklyinfoone {
    overflow: hidden;
}
.weaklytitleone {
    font-size: 13px;
    color: #333;
    font-weight: bold;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.weaklypriceone {
    color: #e85136;
    font-weight: bold;
}
.weaklyrankitem {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 8px 0;
}
.weaklyranknum {
    background: #e85136;
    color: #fff;
    font-size: 11px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}
.weaklyranktext {
    font-size: 12px;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.weaklygridtwo {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}
.weaklycardtwo {
    background: #ffffff;
    border: 1px solid #e3e4e6;
    padding: 10px;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    display: block;
}
.weaklycardtwo img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 2px;
    margin-bottom: 8px;
}
.weaklytitletwo {
    font-size: 12px;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.weaklypricetwo {
    color: #e85136;
    font-weight: bold;
    margin-top: 6px;
}
.weaklygridthree {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}
.weaklythreecol {
    background: #ffffff;
    border: 1px solid #e3e4e6;
    border-radius: 4px;
    padding: 15px;
}
.weaklythreerow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #f0f0f0;
}
.weaklythreerow:last-child {
    border-bottom: none;
}
.weaklythreerow img {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 2px;
    margin-right: 10px;
}
.weaklythreename {
    font-size: 12px;
    color: #555;
    text-decoration: none;
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.weaklygridfour {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}
.weaklygridfive {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}
.weaklycardfive {
    background: #ffffff;
    border: 1px solid #e3e4e6;
    padding: 10px;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
}
.weaklycardfive img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 2px;
    margin-bottom: 8px;
}
.weaklytitlefive {
    font-size: 11px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.weaklypricefive {
    color: #e85136;
    font-weight: bold;
    font-size: 11px;
    margin-top: 4px;
}
.weaklygridsix {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}
.weaklydetailwrap {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-top: 20px;
}
.weaklycard {
    background: #ffffff;
    border: 1px solid #e3e4e6;
    border-radius: 4px;
    padding: 20px;
}
.weaklyprodtitle {
    font-size: 20px;
    font-weight: bold;
    color: #111;
    margin-bottom: 12px;
}
.weaklymeta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #888;
    border-bottom: 1px dashed #e3e4e6;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.weaklyfield {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.weaklyfield label {
    width: 100px;
    font-size: 13px;
    color: #555;
}
.weaklyfield input, .weaklyfield select {
    flex: 1;
    height: 38px;
    border: 1px solid #e3e4e6;
    border-radius: 4px;
    padding: 0 10px;
    outline: none;
    box-sizing: border-box;
}
.weaklyfield input:focus {
    border-color: #e85136;
}
.weaklybuybtn {
    width: 100%;
    height: 44px;
    background: #e85136;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.weaklybuybtn:hover {
    background: #bf341b;
}
.weaklyfooter {
    background: #1a1a1a;
    border-top: 3px solid #e85136;
    padding: 30px 0;
    text-align: center;
    margin-top: 40px;
}
.weaklyfooterlinks {
    margin-bottom: 12px;
}
.weaklyfooterlinks a {
    color: #bbb;
    text-decoration: none;
    font-size: 13px;
    margin: 0 10px;
}
.weaklyfooterlinks a:hover {
    color: #ffffff;
}
.weaklycopyright {
    color: #777;
    font-size: 11px;
}
.weaklyorderbox {
    background: #ffffff;
    border: 1px solid #e3e4e6;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 12px;
}
.weaklykami {
    color: #2fba2f;
    font-weight: bold;
}
@media (max-width: 768px) {
    .weaklygridone { grid-template-columns: 1fr; }
    .weaklygridtwo { grid-template-columns: repeat(3, 1fr); }
    .weaklygridthree { grid-template-columns: 1fr; }
    .weaklygridfour { grid-template-columns: repeat(2, 1fr); }
    .weaklygridfive { grid-template-columns: repeat(3, 1fr); }
    .weaklygridsix { grid-template-columns: repeat(2, 1fr); }
    .weaklydetailwrap { grid-template-columns: 1fr; }
}