/* CSS Document */

.content {
	width: 100%;
    max-width: 1366px;
    min-width: 1024px;
    margin: 0 auto 10vh auto;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	justify-content: center;
	align-items: flex-start;
}

.content_search_form {
	margin-top: 3rem;
	width:70%;
	height: 10rem;
	display: flex;
	justify-content: center;
	align-items: center;
}
.content_search_form>input:first-of-type{
	width: 85%;
	height: 80%;
	cursor: pointer;
	font-size: 2.3rem;
	transition:box-shadow 0.6s;
}
.content_search_form>input:nth-of-type(2){
	width: 15%;
	height: calc(80% + 2px);
	background-color: white;
	cursor: pointer;
	font-size:3rem;
	color: dodgerblue;
	transition:box-shadow 0.6s;
}
.content_search_form>input:hover{
	box-shadow: 0px 0px 2rem 0.1rem #444;
}

.content_search_result {
	width: 70%;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: white;
	min-height: 25rem;
	padding: 5rem 0;
}

.content_search_statusbar {
	width: 70%;
	background-color: whitesmoke;
	height: 5rem;
	display: flex;
}
.content_search_statusbar>span{
	font-size: 2.2rem;
	color: dimgray;
	transition: color 0.6;
	cursor: pointer;
	height: 100%;
	width: 25%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.content_search_statusbar>span:hover{
	color: black;
}

.content_search_result_null {
	width: 100%;
    max-width: 1366px;
    min-width: 1024px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 25rem;
	font-size: 4rem;
	color: dimgray;
}

.content_search_result_sup {
    box-sizing: border-box;
    padding: 2rem 4rem;
	width: 98%;
	display: flex;
	flex-direction: column;
	margin-top: 3rem;
    background-color:#BEBEBE;
    border-radius: 10px;
}
.content_search_result_sup>a{
    color: dodgerblue;
    font-size: 3.5rem;
    transition: color 0.6s;
    text-decoration: underline;
	cursor: pointer;
}
.content_search_result_sup>a:hover{
	color: blue;
}
.content_search_result_intro{
    color: dimgray;
    font-size: 2rem;
    text-indent: 5rem;
	margin-top: 2rem;
}
.content_search_result_time{
	color:#1984C8;
	font-size:1.8rem;
	margin-top: 2rem;
}
