.servicenav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f7f7f7;
    padding: 0 2.6%;
}
.servicenav .left {
    display: flex;
}
.servicenav .left a {
    position: relative;
    font-size: 18px;
    color: #000000;
    margin-right: 50px;
    height: 80px;
    line-height: 80px;
}
.servicenav .left a.active {
    color: #23438c;
}
.servicenav .left a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 3px;
    left: 0;
    width: 100%;
    background-color: #23438c;
}
.servicenav .right {
    display: flex;
    align-items: center;
}
.servicenav .right a {
    font-size: 16px;
    color: #444444;
    height: 80px;
    line-height: 80px;

}
.servicenav .right a span {
    color: #23438c;
    font-size: 16px;
}
.servicenav .right a:not(:last-child):after {
    content: '>';
    padding: 0 15px;

}
.servicenav .right a:hover{
    color: #23438c;
}
.afterservicemain {
    padding-top: 80px;
    padding-bottom: 100px;
    display: flex;
    justify-content: space-between;
}
.afterservicemain .pic {
    width: 750px;
    height: 500px;
}
.afterservicemain .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.afterservicemain .cont {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0px 0px 20px 0px rgba(13, 13, 13, 0.06);
    padding: 0 60px;
    height: 500px;
    overflow: hidden;
}
.afterservicemain .cont span {
    font-size: 40px;
    color: #23438c;
}
.afterservicemain .cont h3 {
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 32px;
    color: #000;
}
.afterservicemain .cont p {
    font-size: 18px;
    line-height: 30px;
    color: #666666;
    height: 40%;
    overflow-y: scroll;
}
.afterservicemain .cont a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    width: 240px;
    background-color: #23438c;
    color: #fff;
    font-size: 20px;
    margin-top: 40px;
}
.afterservicemain .cont a span {
    font-size: 24px;
    color: #fff;
    margin-right: 10px;
}   

/* 服务网点 */
.servicebranchmain .w {
    padding-top: 80px;
    padding-bottom: 100px;
    display: flex;
    justify-content: space-between;
}

.servicebranchmain .mapcontainer {
    width: 960px;
    height: 600px;
}
.servicebranchmain .rightlist {
    flex: 1;
    height: 600px;
    border: 1px solid #e5e5e5;
    padding: 40px;
    overflow: hidden;
}
.servicebranchmain .rightlist .inputwrap form
{
    display: flex;
    flex-direction: row;
    justify-content: space-between; 
    width: 100%;
    height: 50px;
    border: 1px solid #e5e5e5;
}
.servicebranchmain .rightlist .inputwrap .submit {
    width: 120px;
    height: 100%;
    background-color: #23438c;
    color: #fff;
    font-size: 18px;
}
.servicebranchmain .rightlist .inputwrap .kwd {
    flex: 1;
    height: 100%;
    outline: none;
    padding: 0 8px;
}
.servicebranchmain .rightlist .addresslist  {
    height: calc(100% - 50px);
    overflow-y: auto;
}

.servicebranchmain .rightlist .addresslist .addressitem {
    margin-top: 40px;
    border-bottom: 1px solid #d6d6d6;
    padding-bottom: 40px;
}
.servicebranchmain .rightlist .addresslist .addressitem  h2 {
    display: flex;
    align-items: center;
    font-size: 24px;
    color: #000000;
    margin-bottom: 20px;
}
.servicebranchmain .rightlist .addresslist .addressitem  h2 span {
    font-size: 24px;
    color: #23438c;
}
.servicebranchmain .rightlist .addresslist .addressitem p {
    font-size: 16px;
    line-height: 30px;
    color: #666666;
}


@media only screen and (max-width: 600px) {
    .servicenav {
        padding: 0 15px;
        flex-direction: column-reverse;
        align-items: normal;
    }
    .servicenav .left a {
        height: 60px;
        line-height: 60px;
        font-size: 16px;
    }
    .servicenav .right a{
        height: 60px;
        line-height: 60px;
        font-size: 14px;
    }
    .afterservicemain {
        flex-direction: column;
        padding-top: 40px;
        padding-bottom: 50px;
    }
    .afterservicemain .pic {
        width: 100%;
    }
    .afterservicemain .cont {
        padding: 15px;
    }
    
    .servicebranchmain .w {
        padding-top: 40px;
        padding-bottom: 50px;
        flex-direction: column;
    }
    .servicebranchmain .mapcontainer {
        width: 100%;
        height: 300px;
    }
    .servicebranchmain .rightlist {
        padding: 20px;
        height: 300px;
    }

}

@media only screen and (min-width: 601px) and (max-width: 1199px) {

    .servicebranchmain .w {
        padding-top: 40px;
        padding-bottom: 50px;
        flex-direction: column;
    }
    .servicebranchmain .mapcontainer {
        width: 100%;
        height: 300px;
    }
    .servicebranchmain .rightlist {
        padding: 20px;
        height: 300px;
    }
}