body{
    background-color: #fff;
}
.mainWrapper{
    width: 1220px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
}

/* 修改头部样式 */
.header {
    height: auto; /* 将固定高度改为自适应 */
    min-height: 120px; /* 设置最小高度 */
    position: relative;
    padding: 10px 0; /* 添加内边距 */
}
/* 新增：三个logo容器样式 - 自适应大小 */
.logo-container {
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 10;
    display: flex;
    gap: 10px; /* logo之间的间距 */
    align-items: flex-start; /* 顶部对齐 */
}

.logo1, .logo2, .logo3 {
    display: inline-block;
    vertical-align: top;
}

/* 每个logo设置最大高度，保持比例 */
.logo1 img, .logo2 img, .logo3 img {
    max-height: 60px; /* 统一最大高度 */
    width: auto; /* 宽度自适应，保持原始比例 */
    display: block;
    border: 1px solid transparent; /* 调试时可改为红色边框 */
}

/* 可选：添加替代内容 */
.header-banner {
    background: linear-gradient(135deg, #0f4275 0%, #b40040 100%);
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 10px; /* 增加上边距为logo留出空间 */
}

.header-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.header-banner p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* 调整主内容区域的上边距 */
.mainCons {
    background-image: url(../images/bg.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 100%;
    min-height: calc(100vh - 400px); /* 调整计算高度 */
    display: flex;
    margin-top: 0; /* 移除负边距 */
}

.mainCons .menus{
    padding-top:65px;
    width: 300px;
}

.mainCons .menus ul{
    margin: 0;
    padding: 0 0 0 10px;
    list-style: none;
}

.mainCons .menus ul li{
    margin-bottom: 15px;
}

.mainCons .menus ul li a{
    text-decoration: none;
    color: #161616;
}
.mainCons .menus ul li a:hover{
    text-decoration: underline;
}

.mainCons .menus ul li .curlink{
    color: #b40040;
    text-decoration: underline;
}

.mainCons .menus .btnAlert{
	width:165px;
	height:72px;
	background:url(../images/btn_alert.svg) no-repeat;
	background-size: cover;
	color: transparent;
}

.mainCons .menus .btnAlert:hover{
	background-image:url(../images/btn_alert_o.svg);
}

.mainCons .menus .btnAlert.curlink{
	background-image:url(../images/btn_alert_o.svg);
}

.mainCons .cons .conTitle{
    height: 120px;
    padding-right: 130px;
    display: flex;
    align-items: center;
    font-size: 2.5rem;
    color: #b40040;
    justify-content: end;
}

.mainCons .cons{
    width: 900px;
    padding-left: 20px;
    padding-top: 30px;
    padding-bottom: 60px;
}

.mainCons .cons a{
    text-decoration: underline;
    color: #b40040;
}

.mainCons .cons h1{
    font-size: 1.2rem;
    color: #0f4275;
}

.mainCons .cons .txt{
    margin-bottom: 50px;
}

.mainCons .cons .txt:last-of-type{
    margin-bottom: 0px;
}

.mainCons .cons .lastupdate{
    font-size: 0.8rem;
    color: #4d4d4d;
}
.bgEnd{
    width: 100%;
    line-height: 0;
}

.footer{
    height: auto;
    display: flex;
    flex-wrap: wrap;
    background-image: url(../images/footer_bg.png);
    background-repeat: repeat-y;
    background-size: contain;
    width: 100%;
    align-self: flex-end;
    font-size: 0.8rem;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 8px;
}

.footer .copyright{
    width: 50%;
    padding-left: 40px;
    color: #fff;
}

.footer .prviate{
    width: 50%;
    color: #fff;
}

.footer .prviate ul{
    margin: 0;
    padding: 0;
    display: flex;
}

.footer .prviate ul li{
    margin: 0 0 0 30px;
    padding: 0;
}

.footer .prviate ul li:first-of-type{
    margin: 0 0 0 0px;
    padding: 0;
}

.footer .prviate ul li a{
    color:#fff;
}

@media (min-width: 1px) and (max-width: 767px) {

}