* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background-color: #f8f9fa;
    color: #2d3436;
    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;
}
.latecontainer {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 15px;
}
.lateheader {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}
.latetopbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}
.latelogo img {
    max-height: 38px;
    max-width: 100%;
    object-fit: contain;
}
.latenav {
    display: flex;
    align-items: center;
    gap: 15px;
}
.latenavlink {
    font-size: 15px;
    font-weight: 600;
    color: #636e72;
    padding: 18px 10px;
    transition: color 0.2s;
}
.latenavlink:hover, .latenavlink.active {
    color: #ff7675;
}
.latenavlink.active {
    border-bottom: 2px solid #ff7675;
}
.latesearchinput {
    height: 34px;
    padding: 0 12px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #2d3436;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-size: 13px;
    width: 200px;
}
.latesearchbtn {
    height: 34px;
    padding: 0 16px;
    background: #ff7675;
    color: #ffffff;
    border: none;
    font-weight: 700;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}
.latenotice {
    background: #ffffff;
    border-left: 4px solid #ff7675;
    padding: 12px 18px;
    margin: 15px 0;
    border-radius: 4px;
    color: #636e72;
    font-size: 13px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}
.lateherogrid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}
.latebox {
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    padding: 15px;
}
.lateboxtitle {
    font-size: 15px;
    font-weight: 700;
    color: #2d3436;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 12px;
}
.lateheroimgbox {
    width: 100%;
    height: 220px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    overflow: hidden;
}
.lateheroimg {
    max-height: 200px;
    max-width: 95%;
    object-fit: contain;
}
.lateheroside {
    display: grid;
    grid-template-columns: repeat(2, 3fr);
    gap: 10px;
}
.lateherosidecard {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 8px;
    text-align: center;
}
.lateherosidethumb {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin: 0 auto 4px;
    display: block;
}
.lategrid5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}
.lategrid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}
.latecard {
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    padding: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.2s;
}
.latecard:hover {
    border-color: #ff7675;
    box-shadow: 0 4px 15px rgba(255,118,117,0.1);
}
.latecardimg {
    width: 100%;
    height: 120px;
    object-fit: cover;
    margin-bottom: 8px;
    display: block;
    border-radius: 4px;
}
.latecardtitle {
    font-size: 13px;
    font-weight: 600;
    color: #2d3436;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 6px;
}
.lateprice {
    color: #ff7675;
    font-weight: 700;
}
.latebadge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: #ff7675;
    color: #ffffff;
    font-size: 10px;
    padding: 1px 4px;
    border-radius: 2px;
}
.lateautotag {
    font-size: 10px;
    background: #fde8f0;
    color: #ff7675;
    padding: 2px 6px;
    border-radius: 3px;
    border: 1px solid #ff7675;
}
.latesectiontitle {
    font-size: 16px;
    font-weight: 700;
    color: #2d3436;
    margin: 25px 0 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
}
.latesectiontitle::before {
    content: "Index / ";
    color: #95a5a6;
    font-weight: 400;
}
.latefooter {
    background: #ffffff;
    color: #95a5a6;
    padding: 30px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    border-top: 1px solid #e2e8f0;
}
.latefooterlinks {
    margin-bottom: 10px;
}
.latefooterlinks a {
    color: #636e72;
}
.latecardbox {
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    padding: 25px;
    margin-bottom: 20px;
}
.lateformgroup {
    margin-bottom: 15px;
}
.latelabel {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #2d3436;
}
.lateinput {
    width: 100%;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #2d3436;
    border-radius: 4px;
    outline: none;
}
.latebtn {
    display: inline-block;
    width: 100%;
    height: 42px;
    line-height: 42px;
    text-align: center;
    background: #ff7675;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}
.latetabs {
    display: flex;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 20px;
}
.latetabitem {
    padding: 10px 20px;
    font-weight: 600;
    color: #95a5a6;
}
.latetabitem.active {
    color: #ff7675;
    border-bottom: 2px solid #ff7675;
    margin-bottom: -2px;
}
@media (max-width: 992px) {
    .lateherogrid {
        grid-template-columns: 1fr;
    }
    .lategrid5 {
        grid-template-columns: repeat(2, 1fr);
    }
}
