<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.top_banner {
    padding-top: 20px;
}

.top_banner&gt;div div {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: white;
}

.top_banner&gt;div div h1 {
    width: 50%;
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top_banner&gt;div div p {
    width: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}




.xl {
    margin-top: 50px;
}

.xl&gt;div h1 {
    margin-bottom: 20px;
}

.xl&gt;div&gt;ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.xl&gt;div&gt;ul li {
    width: 100%;
    height: 100px;
    border-radius: 10px;
    padding: 10px;
    background-color: #ffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.xl&gt;div&gt;ul li:hover {
    color: white;
    background-color: #000000;
}




.zx {
    margin-top: 50px;
}

.zx div ul {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.zx div ul li {
    width: 100%;
    height: 260px;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffff;
}</pre></body></html>