* {
    margin: 0;
    padding: 0;
}
a {
    color: inherit;
    text-decoration: none;
}
input {
    border: none;
    background: none;
    margin: 0;
    padding: 0;
}
input:focus {
    outline: none;
}
body,html {
    background: #F6F6F7;
    width: 100%;
    height: 100%;
    font-family: "Microsoft YaHei", "Arial", "黑体", "宋体", sans-serif;
}
.container {
    width: 1200px;
    margin: 0 auto;
    margin-top: 50px;
}
/**  公共样式头部 **/
.header-image {
    width: 100%;
    max-width: 100%;
}s
.header {
    width: 100%;
    height: 108px;
    background-image: url('../image/图层1062拷贝.png');
    background-size: 100% 100%;
}
.header-content {
    width: 1200px;
    margin: 0 auto;
    height: 90px;
    display: flex;
    justify-content: left;
    align-items: center;
    position: relative;
    background-image: url('/image/list_bg.png');
}
.header-title {
    font-size: 24px;
    color: #2b66be;
    font-weight: bold;
}
.crumbs {
    font-size: 14px;
    color: #000000;
    margin-left:15px;
}
.crumbs span:nth-child(3) {
    color: #2b66be;
}
.crumbs span:nth-child(1):hover {
    color: #2b66be;
}
.search {
    position: absolute;
    display: flex;
    width: 280px;
	height: 40px;
	background-color: #ffffff;
	box-shadow: 0px 8px 10px 0px 
		rgba(44, 103, 189, 0.17);
	border-radius: 2px;
	border: solid 1px #3d7de1;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    box-sizing: border-box;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
}
.search .icon {
    font-size: 20px;
    color:#3d7de1;
}
.search input {
    flex: 1;
}
.pointer{
    cursor: pointer;
}
@media screen and (max-width: 550px) {
    .header-content {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }
    .container {
        width: 100%;
    }
    .search {
        width: calc(100% - 40px);
        left: 20px;
    }
}

.module-page{
    text-align: center;
}