
.inquiryBox .nav {
    width: 280px;
	padding-right: 20px;
    min-height: 620px;
    border-right: 2px solid rgba(0, 0, 0, .1);
    position: relative;
}
.inquiryBox .nav::before{
	display: block;
	content: "";
    width: 0px;
    height: 135px;
    border: 2px solid #172865;
    position: absolute;
    top: 0px;
    right: -3px;
}
.inquiryBox .nav .item{margin-bottom: 10px;}
.inquiryBox .nav .item .nav-type{
	font-size: 20px;
	height: 46px;
	line-height: 46px;
	padding: 0 12px;
	cursor: pointer;
}
.inquiryBox .nav .item .nav-type.on,
.inquiryBox .nav .item .nav-type:hover{
	background: #172865;
	color: #fff;
	border-radius:8px;
}
.inquiryBox .nav .item .nav-type.on span{
	transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	transition: all .3s linear;
	-webkit-transition: all .3s linear;
}
.inquiryBox .nav .item .subnav-list{
	display: none;
}
.subnav-list a{
	display: block;
	font-size: 18px;
	height: 40px;
	line-height: 40px;
	padding: 0 12px;
}
.subnav-list a.active{
	color: #172865;
}
.newslist {
    flex: 1;
    margin-left: 30px;
}

.newslist .item {
    display: flex;
    font-size: 20px;
    color: #736E6A;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    cursor: pointer;
}
.newslist .item:last-child{
    border-bottom: none;
    padding-bottom: 0;
}
.newslist .item:nth-child(n + 2) {
    margin-top: 20px;
}

.newslist .item img {
    width: 300px;
    height: 200px;
    background: #FFFFFF;
    border: 1px solid #E9E9E9;
    margin-right: 15px;
    object-fit: cover;
}

.newslist .item .tst {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.newslist .item .tst h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #000000;
}

.newslist .item:hover h3 {

    color: #172865;
}
.newslist .item .tst .txt{
    height: 120px;
}
.newslist .item .tst .date {
    text-align: right;
}