html {
    font-size: 192px;
}
/* Header 组件样式 */
header {
    padding-bottom: 550px;
    position: relative;
}

header .container {
    width: 1500px;
    margin: auto;
    padding-top: 19px;
}

header .headerbg {
    width: 100%;
    height: 860px;
    position: absolute;
    z-index: -1;
}

header .headerbg .logo {
    width: 613px;
    height: 322px;
    position: absolute;
    top: 25%;
    left: 260px;
    z-index: 2;
}

header .headerbg::after{
    content: "";
    position: absolute;
    top: 700px;
    left: 0;
    width: 100%;
    height: 200px;
    background-image: url('../image/zjflheaderbg2.png'), linear-gradient(to bottom, rgba(240, 241, 248, 0) 20%, #fffeff 80%);
    background-position: center bottom;
    background-repeat: no-repeat, no-repeat;
    background-size: contain;
    z-index: 1;
}

header .headerbg img {
    transform: scale(1.1, 1.1);
    max-height: 860px;
}

header .headerbg .swiper-slide-active img,
header .headerbg .swiper-slide-duplicate-active img {
    transition: 6s linear;
    transform: scale(1, 1);
}

header .container .links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .container .links>div {
    display: flex;
}

header .container .links span {
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    line-height: 22px;
    text-align: left;
    font-style: normal;
    margin-right: 15px;
}

header .container .links a {
    padding: 2px 10px;
    color: #fff;
}

header .container .links a:hover {
    background: #AD0204;
    border-radius: 6px;
}

header .container .links button {
    width: 64px;
    height: 24px;
    background: #3D7ED7;
    border-radius: 4px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 22px;
    text-align: center;
    font-style: normal;
}

header .container .flex {
    align-items: center;
    height: 80px;
    margin-top: 30px;
}

header .container .flex .logo {
    width: 440px;
    height: 100%;
    position: relative;
}

header .container .flex .logo img {
    position: absolute;
}

header .container .search {
    margin: auto;
    width: 560px;
    margin-top: 80px;
}

header .container .search .hotword {
    margin-bottom: 16px;
}

header .container .search .hotword span {
    font-family: MicrosoftYaHei;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 21px;
    text-align: left;
    font-style: normal;
    display: flex;
}

header .container .search .hotword a {
    padding: 0 5px;
}

header .container .search .box {
    display: flex;
}

header .container .search input {
    width: 440px;
    height: 60px;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 4px 0px 0px 4px;
    font-family: MicrosoftYaHei;
    font-size: 18px;
    color: #999999;
    line-height: 24px;
    text-align: left;
    font-style: normal;
}

header .container .search button {
    width: 120px;
    height: 60px;
    background: #3A4890;
    border-radius: 0px 4px 4px 0px;
    font-family: MicrosoftYaHei;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 31px;
    text-align: left;
    font-style: normal;
    display: flex;
    align-items: center;
    padding: 15px 20px;
}

header .container .search button img {
    width: 20px;
    margin-top: 4px;
    margin-left: 5px;
}

header .menus {
    height: 80px;
}

header .menus ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .menus ul li {
    padding: 0 20px;
    height: 80px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

header .menus ul li::before {
    display: none;
    content: "";
    position: absolute;
    top: 0;
    left: -8px;
    width: 8px;
    height: 100%;
    background: url(../picture/menuleft.png) no-repeat;
    background-size: contain;
}

header .menus ul li::after {
    display: none;
    content: "";
    position: absolute;
    right: -8px;
    top: 0;
    width: 8px;
    height: 100%;
    background: url(../picture/menuringht.png) no-repeat;
    background-size: contain;
}

header .menus ul li:hover {
    background: #AD0204;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5), 2px 0 5px rgba(0, 0, 0, 0.5);
}

header .menus ul li:hover::before {
    display: block;
}

header .menus ul li:hover::after {
    display: block;
}

header .menus ul li a {
    font-family: PingFang-SC, PingFang-SC;
    font-weight: 800;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 80px;
    text-shadow: 0px 2px 2px rgba(6, 44, 123, 0.8);
    text-align: left;
    font-style: normal;
}

header .menus ul li.has-child:hover>a::after {
    transform: rotate(180deg);
}

header .menus ul li ul {
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(32, 47, 122, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0 0 8px 8px;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

header .menus ul li:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

header .menus ul li ul li {
    width: 100%;
    height: auto;
    padding: 4px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
    box-shadow: none;
}

header .menus ul li ul li:last-child {
    border-bottom: none;
    border-radius: 0 0 8px 8px;
}

header .menus ul li ul li:hover {
    background: rgba(173, 2, 4, 0.8);
    box-shadow: none;
}

header .menus ul li ul li::before,
header .menus ul li ul li::after {
    display: none;
}

header .menus ul li ul li a {
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 48px;
    text-shadow: none;
    text-align: center;
}

/* Footer 组件样式 */
footer {
    height: 323px;
    background: #32408A;
    padding: 25px 0;
    margin-top: 60px;
}

footer .container {
    width: 1500px;
    margin: auto;
    position: relative;
}

footer .container .links ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
}

footer .container .links li {
    width: 284px;
    height: 60px;
    background: rgba(255, 255, 255, .1);
}

footer .container .links li a {
    width: 100%;
    font-family: MicrosoftYaHei;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 60px;
    text-align: center;
    font-style: normal;
}

footer .container .info {
    margin: auto;
}

footer .container .info>div {
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    width: 25%;
}

footer .container .info a,
footer .container .info p {
    font-family: MicrosoftYaHei;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 32px;
    text-align: center;
    font-style: normal;
}

footer .container .pic {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
}

footer .container .pic a:nth-child(1) img {
    width: 65px;
    height: 80px;
}

footer .container .pic a:nth-child(2) img {
    width: 45px;
    height: 76px;
    margin: 0 10px;
}

footer .container .pic a:nth-child(3) img {
    width: 110px;
    height: 55px;
}
