body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Microsoft YaHei", sans-serif;
    background-color: #f7faf9;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
.trycontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 10px;
    box-sizing: border-box;
}
.tryheader {
    background-color: #ffffff;
    border-bottom: 2px solid #1abc9c;
    position: sticky;
    top: 0;
    z-index: 999;
}
.tryheader .tryinner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    height: 56px;
}
.trylogo img {
    height: 24px;
    vertical-align: middle;
}
.trynav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}
.trynav li a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: color 0.2s;
}
.trynav li a:hover, .trynav li a.tryactive {
    color: #1abc9c;
    border-bottom: 2px solid #1abc9c;
    padding-bottom: 16px;
}
.trynoticebar {
    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;
}
.trynoticebar::before {
    content: "公告";
    background-color: #1abc9c;
    color: #fff;
    padding: 2px 6px;
    font-size: 11px;
    border-radius: 2px;
    margin-right: 10px;
}
.trysectitle {
    font-size: 14px;
    font-weight: bold;
    color: #111;
    margin: 25px 0 12px;
    border-left: 3px solid #1abc9c;
    padding-left: 10px;
    text-transform: uppercase;
}
.trysubcatbar {
    background: linear-gradient(135deg, #1abc9c, #1abc9c);
    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;
}
.trysubcatlinks {
    display: flex;
    gap: 10px;
    font-size: 11px;
    font-weight: normal;
    overflow-x: auto;
    white-space: nowrap;
}
.trysubcatlinks span {
    border: 1px solid rgba(255,255,255,0.3);
    padding: 2px 6px;
    border-radius: 2px;
}
.trylistbox {
    background: #ffffff;
    border: 1px solid #e3e4e6;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 25px;
}
.trylistrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10px;
    border-bottom: 1px dashed #f0f0f0;
}
.trylistrow:last-child {
    border-bottom: none;
}
.trylistrow.trypinned {
    background: #fffcf9;
    border-bottom: 1px solid #ffe8cc;
}
.trylistleft {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}
.trylisttag {
    font-size: 10px;
    color: #ff922b;
    border: 1px solid #ff922b;
    padding: 1px 4px;
    border-radius: 2px;
    font-weight: bold;
    flex-shrink: 0;
}
.trylistnum {
    color: #1abc9c;
    font-size: 11px;
    font-weight: bold;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}
.trylistrow img {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}
.trylistname {
    font-size: 13px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.trylistname:hover {
    color: #1abc9c;
}
.trylistright {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}
.trylistprice {
    color: #1abc9c;
    font-weight: bold;
    font-size: 13px;
}
.trylistbtn {
    background: #1abc9c;
    color: #fff;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}
.trylistbtn:hover {
    background: #16a085;
}
.trygridbottom {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}
.trycardbottom {
    background: #ffffff;
    border: 1px solid #e3e4e6;
    padding: 10px;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
}
.trycardbottom img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 2px;
    margin-bottom: 6px;
}
.trytitlebottom {
    font-size: 11px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.trypricebottom {
    color: #1abc9c;
    font-weight: bold;
    font-size: 11px;
    margin-top: 4px;
}
.trydetailwrap {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-top: 20px;
}
.trycard {
    background: #ffffff;
    border: 1px solid #e3e4e6;
    border-radius: 4px;
    padding: 20px;
}
.tryprodtitle {
    font-size: 20px;
    font-weight: bold;
    color: #111;
    margin-bottom: 12px;
}
.trymeta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #888;
    border-bottom: 1px dashed #e3e4e6;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.tryfield {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.tryfield label {
    width: 100px;
    font-size: 13px;
    color: #555;
}
.tryfield input, .tryfield select {
    flex: 1;
    height: 38px;
    border: 1px solid #e3e4e6;
    border-radius: 4px;
    padding: 0 10px;
    outline: none;
    box-sizing: border-box;
}
.tryfield input:focus {
    border-color: #1abc9c;
}
.trybuybtn {
    width: 100%;
    height: 44px;
    background: #1abc9c;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.trybuybtn:hover {
    background: #16a085;
}
.tryfooter {
    background: #1a1a1a;
    border-top: 3px solid #1abc9c;
    padding: 30px 0;
    text-align: center;
    margin-top: 40px;
}
.tryfooterlinks {
    margin-bottom: 12px;
}
.tryfooterlinks a {
    color: #bbb;
    text-decoration: none;
    font-size: 13px;
    margin: 0 10px;
}
.tryfooterlinks a:hover {
    color: #ffffff;
}
.trycopyright {
    color: #777;
    font-size: 11px;
}
.tryorderbox {
    background: #ffffff;
    border: 1px solid #e3e4e6;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 12px;
}
.trykami {
    color: #2fba2f;
    font-weight: bold;
}
@media (max-width: 768px) {
    .trygridbottom { grid-template-columns: repeat(3, 1fr); }
    .trydetailwrap { grid-template-columns: 1fr; }
}