.top {
    width: 100%;
    background-color: var(--light);
}

.top-wrap {
    width: 1200px;
    margin: 0 auto;
}

.top-left {
    flex: 1;
}

.top-title {
    margin-top: 125px;
}

.top-desc {
    width: 94%;
    margin-top: 40px;
    font-size: 24px;
    line-height: 36px;
}

.top-image {
    margin: 100px 17px 0 0;
}

.example {
    width: 100%;
}

.example-wrap {
    width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 88px 0;
}

.example-title {
    margin-bottom: 72px;
}

.examples {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.example-list {
    width: 540px;
}

.example-item {
    width: 100%;
    box-sizing: border-box;
    padding: 24px 32px;
    margin: 4px 0;
}

.example-name {
    font-size: 30px;
}

.example-desc {
    color: var(--black75);
    margin-top: 16px;
    line-height: 30px;
}

/* .example-active {
    background-color: var(--white);
    box-shadow: 0px 4px 16px 0px rgba(0,0,0,0.16);
} */

/* .example-active .example-name {
    color: var(--main);
} */

/* .example-item:hover {
    cursor: pointer;
    background-color: var(--white);
    box-shadow: 0px 4px 16px 0px rgba(0,0,0,0.16);
} */

/* .example-item:hover .example-name {
    color: var(--main);
} */

@media all and (max-width: 750px) {
    .top-wrap {
        width: 96%;
        flex-direction: column;
    }

    .top-image {
        width: 100%;
    }

    .top-desc {
        width: 100%;
    }

    .example-wrap {
        width: 96%;
    }

    .examples {
        flex-direction: column;
    }

    .example-list {
        width: 100%;
    }

    .example-image {
        max-width: 100%;
        margin-top: 20px;
    }
}