<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
.one{
width: 400px;
height: 400px;
background: green;
}
.list{
width: 100px;
height: 100px;
background: #00B7FF;
}
</style>
</head>
<body>
<div class="one">
<div class="list"></div>
</div>
<script>
let list =document.getElementsByClassName('list')[0];
setTimeout(()=>list.parentElement.style.background="red",2000)
</script>
</body>
</html>