/** 通用样式 **/
dl,
dd,
ul,
li {
    border: medium none;
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

li {
    list-style-type: none;
    text-align: center;
}

/* 导航 */
.navWrap {
    /* width: 100%; */
    /* padding: 0 12px; */
    /** 导航背景色 */
    height: 50px;
    line-height: 50px;
    margin: 0 auto;
    position: relative;
    z-index: 9999;
}

.head_nav_logo_box {
    width: 1366px;
    margin: auto;
}

.head_nav_logo {
    width: auto;
    height: 40px;
    display: block;
    float: left;
    margin-top: 5px;
}

.head_nav_box li {
   min-width: 80px;
    /** 修改时需对应修改三级浮动宽 */
    float: left;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    position: relative;
}

.mainmenu:hover {
    background-color: #0c3191;
    /** #3780A8  二级栏目悬停时一级栏目颜色 */
}

.two:hover {
    background-color: #0c3191;
    /** #3780A8  三级栏目悬停时二级栏目颜色 */
}
.head_nav_box {
    float: right;
}
.head_nav_box li a {
    color: #FFF;
    display: block;
    /* padding: 0 18px; */
}

.head_nav_box ul li a:hover {
    display: block;
    color: #fff;
    background: #0c3191;
    /** 一级悬停颜色 */
}

.head_nav_box dl {
    font-size: 16px;
    background: #061949;
    /** #73A6C2 子菜单显示颜色 */
    position: absolute;
    top: 50px;
    left: 0px;
    z-index: 9999;
    width: 100%;
}

.head_nav_box dl dd {
    position: relative;
}

.head_nav_box dl dd a {
    color: #fff;
    padding: 8px 0;
    line-height: 22px;
    display: block;
    text-align: center;
}

.head_nav_box dl dd a:hover {
    color: #fff;
    background: #0c3191;
    /** #3780A8 当前a标签悬停 */
}

.threeMenu_box {
    position: absolute;
    left: 100px;
    background: #061949;
    /** #73A6C2 子菜单显示颜色 */
    top: 0;
}

.navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #061949;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.5);
    z-index: 999999;
    animation: fadenum 1s 1;
}

@keyframes fadenum {
    0% {
        opacity: 0
    }

    20% {
        opacity: 0.2
    }

    40% {
        opacity: 0.4
    }

    60% {
        opacity: 0.6
    }

    80% {
        opacity: 0.8
    }

    100% {
        opacity: 1
    }
}

/* viewMore */
.viewMore  {text-align: center;margin-top: 40px;}
.viewMore > a{display: inline-block;margin:0 10px;position: relative;overflow: hidden;border:1px solid #e9e6df;}
.viewMore > a > span{display: inline-block;padding:10px 40px;background: #FFFFFF;transition: all 0.4s;}
.viewMore > a:before{position: absolute;top: 0;left: 0;z-index: -1;padding: 10px 20px;	width: 100%;	height: 100%;	background: #0c3191;	color: #fff;	content: attr(data-hover);	transform: translateX(-100%);transition: all 0.4s;box-sizing: border-box; opacity: 0;text-align: center;}
.viewMore > a:hover > span{transform: translateX(100%);color: #666;}
.viewMore > a:hover:before{transform: translateX(0);opacity: 1;z-index: 0;}
.viewMore02 > a{border:1px solid #e9e6df;}
.viewMore02 > a > span{color:#0d1331}
.viewMore02 > a:before{background: #0c3191;color:#FFFFFF;}
.viewMore02 > a:hover > span{color: #fff;}

/* 阴影 */
.boxShadow:hover{
    transform: translate(0, -8px);
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
}

.boxShadow{
    transform: translate(0, 0px);
    transition: all 0.3s ease-in-out;
}

/* 导航头部阴影 */
.headerShadow{transition: all 0.35s ease-in-out;background-image: linear-gradient(to top, rgba(0,0,0,0), rgba(0,0,0,0.8));padding-bottom: 60px; position: absolute;left: 0px;top: 0px;z-index: 9;width: 100%;}


/* 图文列表 */
.img-list{
    width: 100%;
    height: auto;
    margin-top: 20px;
}
.item-image{
    height: 200px;
    width: 100%;
}
.image-text li {
    width: calc(50% - 10px);
    position: relative;
    line-height: 40px;
    margin-right: 2%;
    margin-bottom: 15px;
    background: rgb(245, 244, 240);
}
.image-text ul li:nth-child(2n+0){
    margin-right: 0;
}
.image-text li .item-image{
    line-height: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.image-text li .item-image img{
    width: calc(100% - 300px);
    height: 200px;
    object-fit: cover;
}
.image-text li .item{
    width: 300px;
    text-align: left
}
.text2 { /** 溢出隐藏 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}