@charset "utf-8";

/* 헤더 */
header{
    position: fixed;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #fff;
    border-bottom: 1px solid #ddd;
    z-index: 10;
}
header .h_left{
    display: flex;
    align-items: center;
    padding-left: 10px;
}
header .h_left .all_btn{
    position: relative;
    display: inline-block;
    width: 35px;
    height: 35px;
    font-size: 0;
}
header .h_left .all_btn:after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 14px;
    background: url(/design/img/top_btn1.png);
    background-size: 100%;
}
header .h_left .all_btn_link{
    position: relative;
    display: inline-block;
    width: 35px;
    height: 35px;
    font-size: 0;
}
header .h_left .all_btn_link:after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 14px;
    background: url(/design/img/top_btn1.png);
    background-size: 100%;
}
header .h_left h1{
	position: relative;
    display: inline-block;
    margin-left: 5px;
    width: 100px;
    height: 35px;
}
header .h_left h1 .logo{
    display: flex;
    align-items: center;
    width: 100px;
    height: 100%;
}		
header .h_left h1 .logo img{
	position: relative;
    top: -1px;
}
header .search{
    position: relative;
    padding: 0 16px;
    width: calc(100% - 150px);
    height: 35px;
}
header .search form{
    height: 100%;
}
header .search input{
    padding: 0 45px 0 10px;
    width: 100%;
    height: 100%;
	line-height: 33px;
    background: #f5f5f5;
    border: 1px solid transparent;
}
header .search .s_icon{
    position: absolute;
    top: 0;
    right: 16px;
    width: 40px;
    height: 100%;
    font-size: 0;
    background: url(/design/img/search.png) no-repeat center;
    background-size: 40%;
    border-radius: 3px;
}

/* 상세 컨텐츠 버튼 */
.wrap .bot_gnb .detail_btn{
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
    border-top: 1px solid #DAE1E6;
}
.wrap .bot_gnb .detail_btn li{
    width: 49%;
}
.wrap .bot_gnb .detail_btn .view{}
.wrap .bot_gnb .detail_btn .down{}
.wrap .bot_gnb .detail_btn li a{
    display: block;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
}
.wrap .bot_gnb .detail_btn .view a{
    background: #5135A4;
    color: #fff;
    border-radius: 3px;
}
.wrap .bot_gnb .detail_btn .down a{
    line-height: 38px;
    background: #FAFBFC;
    border: 1px solid #DAE1E6;
    border-radius: 3px;
}