

/*菜单*/
.justify-content-center.show {
    transform: translateX(0);
}
.justify-content-center {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    z-index: 9;
    overflow-y: auto;
    background: #fff;
	font-size: 1.05rem;
    box-shadow: 1px 0 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease 0s;
    transform: translateX(-200%);
}
.justify-content-center .mob {
    text-align: center;
    position: relative;
}
.justify-content-center-link {
    cursor: pointer;
}
.nav-link {
    display: block;
    padding: .5rem 1rem;
}
.justify-content-center .mob #close-menu {
    right: 0;
    top: 0;
    width: 50px;
    padding: .5rem 0;
    z-index: 1;
    cursor: pointer;
}
.justify-content-center .nav-item {
    border-bottom: 1px solid #ddd;
}

.pa {
    position: absolute;
}
.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*头部*/
.container {
    width: 95%;
	margin:0px auto;
	
	}
.header {
    align-items: center;
	padding: .8rem 0;
}
.align-items-center {  
    align-items: center!important;
}
.d-flex {  
    display: flex!important;
}
.navs {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 30px;
    text-align: center;
}
.nav-btns .nav-btn i {
    font-size: 21px;
}
.iconNEW_05-fenlei:before {
    content: "\e604";
}

.header .nav-logo {
    display: flex;
    align-items: center;
}
.header .nav-logo img {
    max-width: 100px;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.header .header-item {
    flex: 1;
}
.header .right-btn {
    justify-content: flex-end;
}

/*搜索*/
#search-form {
	display:none;
    position: fixed;
    left: 0;
    right: 0;
    top: 2.5rem;
    z-index: 4;
	width: 100%;
    margin: 0px auto;
}
.input-group i {
    color: #000;
    line-height: 2rem;
    left: .3rem;
    z-index: 9;
}

.form-control {
    display: block;
    width: 100%;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.input-group{
	width: 80%;
    position: absolute;
    margin: 0px auto;
    left: 0;
    right: 0;
}

.input-group input {
    padding: 0 3.6rem 0 1.3rem !important;
    border-radius: 4px !important;
    height: 2rem;
    font-size: 14px;
}
.input-group .input-group-append {
    right: 0;
    z-index: 9;
    width: 58px;
    font-size: 14px;
}
.input-group .input-group-append .btn {
    height: 2rem;
    padding: 0 .75rem;
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-theme {
    background-color: #FE926B;
    color: #fff;
}
.pa {
    position: absolute;
}


/*遮罩*/

.stylesheet,.content-center{
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 3;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease 0s;
	
}
.show {
    visibility: visible;
    opacity: 1;
}
#search-form.show {
    display: block;
}