/* 顶部导航栏 */
.top-wrapper {
    padding: 0 20px;
    background-color: #fff;
}

.top {
    max-width: 1920px;
    min-width: 1200px;
    margin: 0 auto;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 101px;
    height: 74px;
}

.top .nav{
    display: flex;
    list-style: none;
    padding-right: 20px;
}

.top .nav .nav_li {
    width: 174px;
    height: 95px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.top .nav .nav_li::after{
    content: '';
    width: 1px;
    height: 18px;
    border-right: 1px dashed #BBBBBB;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.top .nav .nav_li:last-child::after{
    border-right: none;
}

.top ul .nav_li a {
    text-decoration: none;
    color: #434343;
    font-size: 18px;
    transition: all 0.3s ease;
}
.top ul .nav_li .iconfont{
    font-size: 17px;
    color: #9F9D9D;
    margin-left: 4px;
    cursor: pointer;
}

.top .nav .nav_li:hover .iconfont{
    transform: rotate(180deg);
    transition: all 0.3s ease;
}

.top .nav .nav_li:hover .mouse-ul{
    display: block!important;
}
.mouse-ul{
    position: absolute;
    left: 0;
    top: 95px;
    z-index: 10;
}
.mouse-li{
    width: 174px;
    height: 40px;
    color: #fff;
    cursor: pointer;
    background-color: rgba(0, 0, 0, .7);
}
.mouse-li:hover{
    background-color: rgba(24, 71, 255, 0.9);
}

.login-register {
    display: flex;
    align-items: center;
}

.login-register a {
    text-decoration: none;
    color: #434343;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.haslogin{
    height: 95px;
    line-height: 95px;
    position: relative;
}

.haslogin:hover .haslogin-ul{
    display: block!important;
}

.haslogin_name{
    font-size: 16px;
}

.haslogin .iconfont{
    font-size: 17px;
}

.haslogin-ul{
    position: absolute;
    right: 0;
    top: 94px;
    z-index: 5;
}
.haslogin-li{
    width: 144px;
    height: 40px;
    color: #fff;
    cursor: pointer;
    overflow: hidden;
    background-color: rgba(0, 0, 0, .7);
}
.haslogin-li a{
    display: inline;
}

.haslogin-li:hover{
    background-color: rgba(24, 71, 255, 0.9);
}



.banner {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 底部 */
footer {
    background-color: #1C34A8;
    color: #fff;
}

.footer-content {
    width: 1320px;
    padding: 54px 20px 0;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}


.contact-info div {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
}
.contact-info .footer-phone{
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: bold;
}
.contact-info .footer-phone .iconfont{
    font-size: 36px;
    font-weight: 300;
    margin-right: 8px;
}
.contact-info .footer-print{
    display: flex;
}
.footer-print-div{
    margin-right: 20px;
    margin-bottom: 20px;
}
.footer-print-div .iconfont{
    font-size: 16px;
}

.qrcodes {
    display: flex;
    gap: 60px;
}

.qrcode-item {
    text-align: center;
}

.qrcode-item img {
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
}

.qrcode-item span {
    font-size: 14px;
    display: block;
    color: rgba(255,255,255,0.9);
}

.copyright {
    height: 70px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}
.copyright .copyright_com{
    margin-right: 10px;
}
.copyright a{
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}


/* 居中显示 */
.center{
    display: flex;
    justify-content: center;
    align-items: center;
}
/* 移入显示手指 */
.pointer{
    cursor: pointer;
}
/* 溢出显示省略号 */
.overflow { /*单行文本*/
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.overflow-two{/*二行文本*/
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.overflow-three{/*三行文本*/
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
