* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background-color: #f4f7f6;
    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;
}
.displaycontainer {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 15px;
}
.displayheader {
    background: #ffffff;
    border-bottom: 2px solid #10ac84;
}
.displaytopbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
}
.displaylogo img {
    max-height: 42px;
    max-width: 100%;
    object-fit: contain;
}
.displaynav {
    display: flex;
    align-items: center;
    gap: 15px;
}
.displaynavlink {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    padding: 18px 12px;
    transition: background 0.2s;
}
.displaynavlink:hover, .displaynavlink.active {
    color: #10ac84;
}
.displaysearchinput {
    height: 36px;
    width: 240px;
    padding: 0 12px;
    border: 2px solid #10ac84;
    border-radius: 18px 0 0 18px;
    outline: none;
    font-size: 13px;
}
.displaysearchbtn {
    height: 36px;
    padding: 0 18px;
    background: #10ac84;
    color: #ffffff;
    border: none;
    font-weight: 700;
    border-radius: 0 18px 18px 0;
    cursor: pointer;
}
.displaynotice {
    background: #ffffff;
    border-left: 4px solid #10ac84;
    padding: 12px 18px;
    margin: 15px 0;
    border-radius: 4px;
    color: #555555;
    font-size: 13px;
    box-shadow: 0 2px 5px rgba(16,172,132,0.08);
}
.displayherogrid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}
.displayheromain {
    background: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.displayheroimgbox {
    width: 100%;
    height: 200px;
    background: #e8f8f5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.displayheroimg {
    max-height: 160px;
    max-width: 85%;
    object-fit: contain;
}
.displaybox {
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #e1e8ed;
    padding: 15px;
    margin-bottom: 20px;
}
.displayboxtitle {
    font-size: 16px;
    font-weight: 700;
    color: #10ac84;
    padding-bottom: 8px;
    border-bottom: 2px solid #10ac84;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.displaygrid7 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}
.displaygrid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}
.displaycard {
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #e1e8ed;
    padding: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.2s;
}
.displaycard:hover {
    border-color: #10ac84;
    box-shadow: 0 4px 12px rgba(16,172,132,0.12);
}
.displaycardimg {
    width: 100%;
    height: 60px;
    object-fit: contain;
    margin-bottom: 8px;
    display: block;
    border-radius: 10px;
}
.displaycardtitle {
    font-size: 12px;
    font-weight: 600;
    color: #2c3e50;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 6px;
}
.displayprice {
    color: #e74c3c;
    font-weight: 700;
}
.displayautotag {
    font-size: 10px;
    background: #e8f8f5;
    color: #10ac84;
    padding: 1px 5px;
    border-radius: 3px;
}
.displayrankgrid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}
.displayrankbox {
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #e1e8ed;
    padding: 15px;
}
.displayranktitle {
    font-size: 14px;
    font-weight: 700;
    color: #10ac84;
    padding-bottom: 8px;
    border-bottom: 1px solid #e1e8ed;
    margin-bottom: 10px;
}
.displayrankitem {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #edf2f7;
    font-size: 12px;
}
.displayrankitem:last-child {
    border-bottom: none;
}
.displayranknum {
    width: 20px;
    height: 20px;
    background: #bdc3c7;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    margin-right: 8px;
}
.displayranknum.top3 {
    background: #10ac84;
}
.displayfooter {
    background: #1f2a38;
    color: #888888;
    padding: 30px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
}
.displayfooterlinks {
    margin-bottom: 10px;
}
.displayfooterlinks a {
    color: #cccccc;
}
.displaycardbox {
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #e1e8ed;
    padding: 25px;
    margin-bottom: 20px;
}
.displayformgroup {
    margin-bottom: 15px;
}
.displaylabel {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333333;
}
.displayinput {
    width: 100%;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    outline: none;
}
.displaybtn {
    display: inline-block;
    width: 100%;
    height: 42px;
    line-height: 42px;
    text-align: center;
    background: #10ac84;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}
.displaytabs {
    display: flex;
    border-bottom: 2px solid #eeeeee;
    margin-bottom: 20px;
}
.displaytabitem {
    padding: 10px 20px;
    font-weight: 600;
    color: #666666;
}
.displaytabitem.active {
    color: #10ac84;
    border-bottom: 2px solid #10ac84;
    margin-bottom: -2px;
}
@media (max-width: 992px) {
    .displayherogrid {
        grid-template-columns: 1fr;
    }
    .displaygrid7 {
        grid-template-columns: repeat(4, 1fr);
    }
    .displayrankgrid3 {
        grid-template-columns: 1fr;
    }
    .displaygrid4 {
        grid-template-columns: repeat(2, 1fr);
    }
}
