.header {
    width: 100%;
    position: relative;
}

.gywmbanner {
    width: 100%;
}

.index_nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 190px;
    position: absolute;
    top: 0;
    left: 0;
}

.gywmtitle {
    font-family: MicrosoftYaHei;
    font-size: 40px;
    letter-spacing: 2px;
    color: #ffffff;
}

.gywmtitle2 {
    font-family: MicrosoftYaHeiLight;
    font-size: 24px;
    letter-spacing: 2px;
    color: #ffffff;
    opacity: 0.6;
}

.gywmttitltlable {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-top: 58px;
}

.gywmlable {
    font-family: MicrosoftYaHei;
    font-size: 16px;
    letter-spacing: 1px;
    color: #ffffff;
    background: transparent;
    border: solid 1px #ffffff;
    border-radius: 21px;
    padding: 14px 23px;
    margin-right: 16px;
}

.gywmlablecheck {
    background-color: #2d328a;
    border: 1px solid #2d328a;
}

.anchormenu {
    width: 100%;
    height: 40px;
    padding: 0 190px;
    background-color: #ebebeb;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
}

.anchormenu>img {
    width: 14px;
    height: 14px;
    margin-right: 9px;
}

.anchormenu>a,
.anchormenu>p {
    font-family: MicrosoftYaHei;
    font-size: 14px;
    letter-spacing: 1px;
    color: #333333;
    margin-left: 9px;
}

.anchormenu>a:hover {
    color: #2d328a;
    text-decoration: underline;
}

.contentBox {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.content {
    width: 1200px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.alzslist {
    width: 370px;
    height: 360px;
    background-color: #ffffff;
    border-radius: 10px;
    margin-bottom: 20px;
    margin-left: 45px;
    position: relative;
    overflow: hidden;
}
.alzslist:nth-child(3n + 1){
    margin-left: 0;
}

.alzsimg {
    width: 100%;
    height: 260px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;

}

.alzsimg img {
    max-width: 370px;
    max-height: 260px;
    width: auto;
    height: auto;
    border-radius: 10px 10px 0px 0px;
    cursor: pointer;
}

.alzsjieshao {
    width: 100%;
    font-family: PingFang-SC-Bold;
    font-size: 16px;
    color: #333333;
    padding: 30px 10px;
    cursor: default;
}

.alzslist .bg{
    width: 100%;
    height: 260px;
    background: rgba(1,149,223,.6) repeat 0 0;
    position: absolute;
    top: 0;
    left: -100%;
    transition: all ease 300ms;
    cursor: pointer;
}

.alzslist:hover{
    background: #0195df;
    box-shadow: 0 2px 8px rgb(0 0 0 / 20%);
}

.alzslist:hover .bg{
    left: 0;
}

.alzslist:hover .alzsjieshao{
    color: #fff;
}

.bigimgbox {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 999;
}

.bigimg {
    max-width: 95%;
    max-height: 50%;
    width: auto;
    height: auto;
    aspect-ratio: 363/260;
    display: block;
    margin: auto;
    /*overflow: hidden;*/
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.closebox{
    width: 100%;
    height: 100%;
}
.close {
    width: 14px;
    height: 15px;
    position: absolute;
    top: 30px;
    right: 90px;
    cursor: pointer;
    z-index: 100;
}

/*分页*/
.paging{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    padding-bottom: 40px;
}
.pagination{
    display: flex;
}
.pagination li{
    width: 22px;
	height: 23px;
	background-color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	border: solid 1px #aaaaaa;
	margin-left: 5px;
}
.pagination li:nth-child(1){
    margin-left: 0;
}
.pagination li span{
    width: 22px;
	height: 22px;
	line-height: 22px;
	text-align: center;
	display: block;
}
.pagination li a{
    width: 22px;
	height: 22px;
	line-height: 22px;
	text-align: center;
	display: block;
}

.pagination .active{
    color: #fff;
    background-color: #2d328a;
    cursor: default;
}

@media screen and (max-width: 1024px) {
    .index_nav {
        padding: 10px;
    }

    .gywmtitle {
        font-size: 18px;
    }

    .gywmtitle2 {
        font-size: 11px;
    }

    .gywmttitltlable {
        flex-wrap: wrap;
        margin-top: 0;
    }

    .gywmlable {
        padding: 5px 10px;
        font-size: 8px;
        margin-right: 5px;
        margin-top: 5px;
    }

    .anchormenu {
        display: none;
    }
    
    .content{
        justify-content: center;
    }

    .alzslist{
        margin-left: 0;
    }
    
    .close {
        top: 40px;
        right: 40px;
    }

    .paging {
        margin-top: 45px;
    }

}