.container {
  	width: 1400px;
  	margin: 0 auto;
  }

  .wrapper-title {
  	margin: 50px 0 50px;
  	padding-bottom: 10px;
  	border-bottom: 1px solid #BF0008;
  	font-size: 0;
	display: flex;
    justify-content:space-between;
  }

  .wrapper-title .l {
  	position: relative;
  	font-size: 40px;
  	color: #1D2088;
  	font-weight: 700;
  	display: inline-block;
  	width: auto;
  }

  .wrapper-title .l .line {
  	position: absolute;
  	left: 0;
  	bottom: -12px;
  	width: 160px;
  	height: 3px;
  	background-color: #1D2088!important;
  }

  .wrapper-title .r {
  	display: inline-block;
  	width: 50%;
  	text-align: right;
  }

  .wrapper-title .r p {
  	position: relative;
  }

  .wrapper-title .r .search-icon {
  	position: absolute;
  	width: 20px;
  	height: 20px;
  	margin: 10px;
  }

  .wrapper-title .r input {
  	width: 298px;
  	outline: none;
  	padding-left: 40px;
  	border: 0.5px solid rgba(191, 0, 8, 1);
  	height: 40px;
  	box-sizing: border-box;
  	font-size: 14px;
  	color: #9197A3;
  	line-height: 18px;
  	font-weight: 400;
  }

  .wrapper-title .r button {
  	background-color: #BF0008;
  	outline: none;
  	border: none;
  	color: #FFFFFF;
  	text-align: center;
  	font-weight: 400;
  	width: 80px;
  	height: 40px;
  	cursor: pointer;
  	vertical-align: bottom;
  }

  .wrapper-content {
  	display: flex;
  	flex-wrap: wrap;
  	margin-top: 42px;
  }

  .etf-box {
  	position: relative;
  	width: 25%;
  	height: 85px;
  	display: flex;
  	flex-direction: column;
  	justify-content: center;
  	cursor: pointer;
  }
.etf-box:hover  {
	background: rgba(191, 0, 8, 0.03);
}

  .etf-box::before {
  	position: absolute;
  	content: '';
  	width: 6px;
  	height: 6px;
  	left: 16px;
  	top: 25px;
  	background-color: rgba(141, 145, 152, 0.50);
  	transform: rotate(-45deg);
  }

  .etf-box:hover {
  	transform: translateY(-8px);
  	box-shadow: 0 0 20px 0 rgba(51, 51, 51, 0.1);
  	transition: all ease-in-out 0.5s;
  }

  .etf-box:hover::before {
  	background-color: #BF0008;
  }

  .etf-box:hover .etf-name {
  	color: #BF0008;
  }

  .etf-name {
  	font-size: 20px;
  	color: #333333;
  	font-weight: 400;
  	padding-left: 33px;
  }

  .etf-code {
  	margin-top: 6px;
  	font-size: 16px;
  	color: #8D9198;
  	line-height: 22px;
  	font-weight: 400;
  	padding-left: 33px;
  }
  
  .p-b-50{
	  padding-bottom: 50px;
  }
