* {
	margin: 0;
	padding: 0;
}
ul,
li {
	list-style: none;
}
a {
	text-decoration: none;
}
h1 {
    font-size: 16px;
    font-weight: 700;
}
body {
    font-size: 14px;
    background-color: #FAFAFA;
    font-family: "Graphik", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.header {
    background-color: #E7EDEA;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
}
.header-w {
	display: flex;
	align-items: center;
	height: 70px;
}
.header-search {
	display: none;
}
.header-left {
    width: 283px;
    background: #E7EDEA;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.header-msg {
    margin-left: 20px;
    font-size: 16px;
    color: #4B4B4B;
}
.tenpan {
    background-color: #fff;
    padding: 10px;
}
    .tenpan .panname {
        padding-left: 10px;
        padding-right: 10px;
    }

   
    .main {
        min-height: 100vh;
        padding-top: 70px;
    }
    .main .sidenav {
        background-color: #E7EDEA;
        padding: 15px 10px;
        width: 180px;
        position: fixed;
        left: 0;
        top: 70px;
        bottom: 0;
        z-index: 2;
        margin-top: 10px;
    }
.main .container {
	margin-left: 210px;
	padding-bottom: 10px;
}
.main .content {
	padding: 10px;
	max-width: 1800px;
	min-width: 1200px;
	margin: 0 auto;
}
.sidenav .sidenav__li {
	display: flex;
	align-items: center;
	border-bottom: 1px rgb(129 129 129 / 10%) solid;
	padding-bottom: 15px;
	margin-bottom: 15px;
}
.sidenav .sidenav__item {
    color: #0066CC;
    font-size: 16px;
    margin-left: 10px;
}

    .sidenav .sidenav__item:hover,
    .sidenav .sidenav__item:active {
        color: #ff0000;
    }
.main .footer {
    color: #333;
    text-align: center;
    padding: 20px;
    line-height: 24px;
    margin-top: 20px;
    background-color: #E7EDEA;
    font-size: 15px;
}

.x-block {
    padding: 10px;
    background-color: #fff;
    display: flex;
    border-radius: 4px;
    height: 70px;
    overflow: hidden;
    border: 1px solid #98c071;
}
    .x-block:hover,
    .x-block:active {
        background-color: #FFFFCC;
    }
.x-block__icon {
	border-radius: 20px;
	padding: 2px;
	align-self: flex-start;
	height: 24px;
	width: 24px;
}
.x-block__info {
	margin-left: 5px;
	flex: 1;
}
.x-block__name {
    font-size: 16px;
    color: #0066CC;
    font-weight: 500;
}
.x-block__desc {
	color: #999;
	line-height: 22px;
	max-height: 44px;
	overflow: hidden;
}

.grid-column-5 {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	column-gap: 15px;
	row-gap: 15px;
	margin-top: 20px;
}
    .grid-column-5 .typename {
        grid-column: span 5;
        font-size: 15px;
        color: #333;
        font-weight: 700;
        background-color: #F1F5F4;
        padding: 5px;
        display:flex;
        align-items:center;
    }

.search {
	background-color: #eee;
	width: 700px;
	display: flex;
	align-items: center;
	border-radius: 4px;
	padding: 0 5px;
}

.search__input {
	height: 48px;
	line-height: 48px;
	border: 0;
	flex: 1;
	outline: none;
	padding: 0 5px;
	font-size: 16px;
	background-color: inherit;
}
.search__button {
	border: 0;
	cursor: pointer;
	background-color: #32a9d8;
	height: 38px;
	width: 80px;
	border-radius: 5px;
	color: #fff;
	font-weight: 700;
	line-height: 38px;
	font-size: 15px;
}
.search__select {
	align-self: stretch;
	border: 0;
	outline: none;
	padding: 0 5px;
	font-size: 16px;
	background-color: inherit;
}

.search__select option {
	line-height: 32px;
}
.search--pc {
	background-color: #fff;
	margin: 50px auto;
	box-shadow: 2px 2px 4px #eee;
}
