@charset "utf-8";
/* CSS Document */
.header {
    position: fixed;
	background: #fff;
    z-index: 999;
    width: 100%;
    height: 100px;
    line-height: 100px;
   box-shadow: 0 0 20px rgb(0 0 0 / 20%);
}
.header .com-width {
    width: 94.5%;
	margin:0 auto;
}
.header .logo {
	display:inline-block;
	margin-right: 150px;
	height:100px;
}
.header .nav-list {
    height: 100px;
}
.header .nav-list>li {
    float: left;
    margin: 0 20px;
}
.header .nav-list>li>a {
    display: inline-block;
    padding: 0 10px;
    color: #444;
    font-size: 18px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    vertical-align: middle;
    border-top: 6px dashed;
    border-top: 6px solid\9;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
}
.header-right .mall {
    display: inline-block;
    margin-left: 30px;
    height: 38px;
    line-height: 38px;
    font-size: 16px;
    text-align: center;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.header-right .mall .icon-mall {
	display:inline-block;
    margin-right: 5px;
    width: 16px;
    height: 100%;
    background: url(../images/icon-mall.png) no-repeat center;
    vertical-align: top;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

/*二级导航*/
.menu1-sub {
    position: fixed;
    width: 100%;
    top: 0px;
    left: 0;
    background: #ffffff;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
	-webkit-transform: translateY(-100%);
    transform: translateY(-100%);
	z-index: -1;
    opacity: 0;
}
.menu1-sub ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 960px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 40px 0;
}
.menu1-sub ul li {
    width: 24%;
}
.menu1-sub li:not(:last-child) {
    float: none;
    margin-right: 0;
}
.menu1-sub ul li a {
	position: relative;
    display: block;
    text-align: center;
    font-size: 1em;
    line-height: 1.5;
    color: #646464;
}
.menu1-sub ul li .thumbnails{
    overflow: hidden;
	 position: relative;
}
.menu1-sub ul li .thumbnails .image {
   
    width: 100%;
    height:auto;
}
.arrow {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 33px;
    height: 33px;
    background: #004098 url(../images/icon_arrow.png) 0% 0% repeat;
    background-size: 100%;
    -webkit-transition: background-position 500ms cubic-bezier(0.77, 0, 0.175, 1);
    transition: background-position 500ms cubic-bezier(0.77, 0, 0.175, 1);
}
.menu1-sub ul li .textbox {
	padding-top:15px;
	font-size:16px;
}

/*悬停*/
.nav-list>.me:hover>.menu1-sub{
	opacity:1;
	-webkit-transform: translateY(0%);
    transform: translateY(0%);
	top:100px;
}
.menu1-sub-in li:hover .arrow {
    background-color: #024aac;
    background-position: 33px 0;
}
.menu1-sub-in li:hover .textbox p{
	color:#024aac
}

.placeholder{
	width:100%;
	height:100px;
}










