/* 公共样式组合 */
*{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
    display: block;
}
ul li {
	list-style: none;
}

img {
	display: block;
}
html,
body {
	font-size: 62.5%;
	 width: 100%; 
	overflow: auto;
	min-width: 1000px;
	
}

body {
    font-size:100%
  }

input{
	display: block;
	outline:none;
}
/*公共全局样式结束*/

/* header公共样式 */
nav{
    display: flex;
    width: 80%;
    /* height: 3.5rem;2021/9/18改 */
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    /* margin-top: 1.3rem; */
}
.nav-box ul{
    display: flex;
    align-items: center;
}
.nav-box ul li{
    position: relative;
    height: 4.8rem;
    /* height: 3.5rem; */
    line-height: 4.8rem;
    display: block;
    text-align: center;
}
.nav-box ul li:hover{
    /* background: #4c91e3; */
    /* #d0021b */
    /* #1B2F75 */
    color: #1B2F75;
}
.nav-box ul li a{
    font-size: 0.9rem;
    color: #333333;
    width: 7.1rem;    
}
.nav-box ul li a:hover{
    color: #1B2F75;    
}

/* header公共样式完 */


/* 底部footer样式 */
.footer-content{
    height: 6rem;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: #6b6b6b;
}
/* .footer-content p{ */
/* margin: 0 5.5rem 0; */
/* } */
.footer-flex{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 5.5rem;
}

.a-target{
    color: #6b6b6b!important;
}
.a-target:hover{
    color: #1B2F75!important;
}
/* 底部footer样式完 */

/* 返回顶部 */
.backTop{
    position: fixed;
    bottom: 5.5rem;
    right: 6.9rem;
}
.erweima{
    z-index: 9999;
    width: 8rem;
    position: fixed;
    bottom: 7rem;
    right: 4rem;
}
.erweima img{
    width: 100%;
}
/* 切换选项卡 */
.p-active{
    background: #1B2F75!important;
    color: #ffffff!important;
}
/* 全局字体样式统一设置为宋体，2022-7-27需求 */
div,p,span,ul,li,a{
    font-family: '宋体'!important; /* SimSun */
}
/* 标题加粗 */
.title-weight{
    font-weight: bold!important;
}
