
.view_container {
	width:980px;
	margin: 30px auto;
	border:1px solid #d9d9d9;
	overflow:hidden;
	background-color:#fff;
	border-radius: 10px;
	min-height:600px;
}
.view_contents {padding:20px;}
.view_contents .view_title {
	font-size:20px;
	display:flex;
	gap:10px;
    justify-content: space-between;
	align-items: center;
	font-weight:600;
	padding:20px 0 10px 4px;
	border-bottom:1px solid #ccc;

}

.view_contents .view_title h2 {
	display:flex;
	gap:10px;
}
.view_contents .view_title p {
	font-size:15px;
	font-weight:500;
}
.view_contents .view_title h2:before {
    content: "";
    width: 3px;
    height: 24px;
    background-color: #e62429;
}
.view_contents_section {
	padding:20px 0 20px 0 ;
	text-align:center;
}
.view_contents_section img {
	height:100%;
	width:auto;
}
a.btn-del {
    display: inline-block;
    border: 1px solid red;
    border-radius: 5px;
    font-size: 13px;
    padding: 4px 10px;
    background-color: #fbfbfb;
    box-shadow: 3px 0 3px -3px #333;
    margin-right: 20px;
    color: red;
    font-weight: 600;
}