html,body,p {
    padding: 0;
    margin: 0;
    background-color: #f8f8f8;
}
#app {
    width: 1300px;
    min-height: 100vh;
    overflow: hidden;
	margin: 0 auto;
	padding-bottom: 60px;
}
.monthday {
    padding: 10px;
    background: #fff;
    font-size: 12px;
}
.search_main {
    overflow: hidden;
    text-align: center;
    position: relative;
    height: 300px;
}
.search_content {
    position: absolute;
    top: 50%;
    left: 20%;
    right: 20%;
    margin-top: -60px;
}
.search_input {
    padding: 20px;
    overflow: hidden;
    position: relative;
}
.keywords_input {
    border: 1px solid #eee;
    border-radius: 30px;
    height: 44px;
    line-height: 44px;
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0 80px 0 20px;
    outline: none;
}
.search_btn {
    width: 36px;
    height: 36px;
    display: block;
    position: absolute;
    top: 24px;
    right: 40px;
    cursor: pointer;
}
.search_type {
    display: flex;
    align-items: center;
    justify-content: center;
}
.type_list {
    margin-right: 10px;
    padding: 10px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}
.type_list:last-of-type {
    margin-right: 0;
}
.type_list_hover {
    color: #fff;
    font-weight: bold;
}

.lei_title {
    color: #333;
    font-size: 16px;
    margin: 10px;
}
.main {
    width: 100%;
    overflow: hidden;
    display: flex;
}
.main_item {
    flex: 1;
    display: flex;
    padding: 10px;
	background-color: #fff;
	border-radius: 4px;
	box-shadow: 5px 10px 10px 0 #ecf0f3;
	color: #333;
	text-decoration: none;
	font-size: 14px;
	color: #333;
	margin: 0 20px 20px 0;
	max-width: calc((1300px - 140px) / 4);
}
.main_item:last-of-type {
    margin-right: 0;
}
.item_img_main {
    width: 40px;
    height: 40px;
    overflow: hidden;
    margin-right: 10px;
    text-align: center;
}
.item_img {
    display: block;
    width: 35px;
    height: 35px;
    margin: 2px auto;
}
.main_item:hover .item_img {
    width: 40px;
    height: 40px;
    margin: 0 auto;
}
.item_info {
    flex: 1;
}
.item_title {
    background-color: #fff;
    line-height: 20px;
    height: 20px;
    overflow: hidden;
}
.item_label {
    background-color: #ffff;
    line-height: 20px;
    color: #999;
    font-size: 12px;
    height: 20px;
    overflow: hidden;
}

.page_bottom {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    color: #999;
    text-align: center;
}
.page_bottom a {
    color: #999;
}