article {
  margin: 0 auto;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.left {
  width: 270px;
  min-height: 870px;
  box-sizing: border-box;

  border-top: 4px solid #314c9f;
  background-color: #fff;
  padding: 20px;
}
.left h2 {
  font-family: "Arial Negreta", "Arial Normal", "Arial", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 26px;
}
.left ul {
  margin-top: 20px;
}
.left ul li {
  width: 230px;
  height: 66px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  background-color: #f3f3f3;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;

  font-family: "Arial Negreta", "Arial Normal", "Arial", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
}
.left ul li:nth-child(5) {
background-color: rgba(49, 76, 159, 1);
color: #314c9f;
}
.left p {
  font-family: "Arial Normal", "Arial", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 22px;
  margin-bottom: 10px;
}

.right {
  width: 1147px;
  min-height: 870px;
  border-top: 4px solid #314c9f;
  background-color: #fff;
  box-sizing: border-box;

  padding: 20px 10px;
  overflow: auto;
}

.right-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-right: 20px;
  margin-left: 20px;
}
.right-title div:nth-child(1) {
  font-family: "Arial Normal", "Arial", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  letter-spacing: 8px;
  color: #314c9f;

  display: flex;
  flex-direction: row;
  align-items: center;
}

.right-content {
   padding: 20px 50px;
    width: 100%;
    box-sizing: border-box;
}
.right-content ul{
  list-style-type: square;
}
.right-content li{
  font-family: "Arial Normal", "Arial", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  border-bottom: 1px dashed #333;

}
.right-content li a{
  font-family: "Arial Normal", "Arial", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
  color: #666;

  display: inline-block;
  width: 500px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
} 
.right-content li span{
  color: #666;
}