/* 设置滚动条的样式 */
::-webkit-scrollbar {
    width: 0;
    height: 0;
}

/* 滚动槽 */
::-webkit-scrollbar-track {
    /*inset后 第一个0表示：阴影水平偏移值（可取正负值）；第二个0：阴影垂直偏移值（可取正负值）；1px：阴影模糊值（越小表示越清晰）；rgba(0,0,0,0.3)：阴影颜色；*/
    border-radius: 100px;
    opacity: 0;
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background: transparent;
}

::-webkit-scrollbar-thumb:window-inactive {
    background: transparent;
}

.clearfix:after {
    content: '';
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
    font-size: 0;
}

body {
    color: #333;
}

.clearfix {
    *zoom: 1;
}

.single {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mulit {
    display: -webkit-box;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mulit3 {
    display: -webkit-box;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.flex {
    display: flex;
}

.flex-row-between {
    display: flex;
    justify-content: space-between;
}

.flex-row-evenly {
    display: flex;
    justify-content: space-evenly;
}

.flex-row-around {
    display: flex;
    justify-content: space-around;
}

.flex-row-align-center {
    display: flex;
    align-items: center;
}

.flex-columns {
    display: flex;
    flex-direction: column;
}

.flex-columns-all-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flex-row-center {
    display: flex;
    justify-content: center;
}

.flex-all-center {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.margin-tb-50 {
    margin: 50px 0 !important;
}

#app {
    width: 100%;
}

.container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-top: 77px;
}

.header {
    width: 100%;
    position: fixed;
    height: 80px;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
    z-index: 1000;
    flex-shrink: 0;
    background-color: #fff;
    box-shadow: 0 0 10px 0 #ccc;
}

.float-header {
    background-color: #FFF;
}

.header .menu-icon {
    display: none;
}

.float-header .header-content .nav .nav-item {
    color: #000;
}

.header .header-content {
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    width: 260px;
    /* height: 129px; */
}

.navs_products {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 1100px;
    padding: 20px 20px 5px;
}

.navs_products-item {
    width: 200px;
    height: 45px !important;
    line-height: 45px !important;
    margin-bottom: 15px;
    border-radius: 3px;
    background-color: #f8f8f8 !important;
}

.navs_products-item img {
    width: 20px;
    margin-right: 10px;
}

.navs-active {
    background-color: #0a68c743 !important;
}

.navs_products-item:hover {
    background-color: #0a68c743 !important;
}

.fullSlide {
    min-width: 1180px;
    height: calc(100vh - 77px);
    padding: 0;
    margin: 0;
    position: relative;
}

.fullSlide .video {
    width: 100%;
    height: 100%;
}

.fullSlide .video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.num {
    width: 1200px;
    position: absolute;
    bottom: -75px;
    left: calc(50% - 600px);
    font-family: 'SourceHanSansCN' !important;
}

.num .flex {
    display: flex !important;
    align-items: center;
}

.num_left,
.num_right {
    display: flex;
    align-items: center;
    height: 151px;
    position: relative;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0 0 5px 0 #ccc;
    color: #0b51b2;
}

.num_left {
    width: 686px;
    margin-right: 20px;
}

.num_right {
    width: 494px;
}

.num .tit {
    position: absolute;
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    left: 0;
    top: 0;
    font-size: 14px;
    border-radius: 6px;
    color: #fff;
    background: linear-gradient(to right, #57f2ea, #3c5efe);
}

.num_left .num-item {
    width: 33.33%;
    text-align: center;
}

.num_right .num-item {
    width: 50%;
    text-align: center;
}

.num-item .flex-row-align-center {
    justify-content: center;
    font-size: 14px;
}

.num-item img {
    margin: 0 8px;
}

.num_right .amount,
.num_left .amount {
    font-size: 40px;
    font-family: 'Georgia' !important;
}

.num_right .amount .text,
.num_left .amount .text {
    font-size: 20px;
    font-family: 'SourceHanSansCN' !important;
}

.num .amount .spc {
    font-size: 14px;
    font-family: 'SourceHanSansCN' !important;
}

.full-width {
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 100%;
    padding: 30px 0;
}

.full-width1 {
    padding-top: 80px;
    background-image: url("../images/pc/index_bg1.png");
}

.full-width3 {
    background-image: url("../images/pc/index_bg3.png");
}

.full-width4 {
    background-image: url("../images/pc/index_bg4.png");
}

.full-width5 {
    background-image: url("../images/pc/index_bg5.png");
}

.width-1200 {
    width: 1200px;
    margin: 0 auto;
}

.nav-title {
    width: 100%;
    margin: 15px auto 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nav-title h1 {
    font-size: 42px;
    background: linear-gradient(180deg, #3a7acc, #1548a4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-title p {
    font-size: 18px;
    color: #76769e;
}

.full-width1 .description {
    margin-top: 15px;
}

.full-width1 .description p {
    line-height: 2;
    text-indent: 2em;
    margin-bottom: 15px;
}

.full-width2 {
    position: relative;
    padding: 0 !important;
}

.full-width2 .width-1200 {
    position: absolute;
    width: 1200px;
    height: 100%;
    top: 0;
    left: calc(50% - 600px);
    padding: 30px 0 65px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.full-width2 .flex-row-between .cont {
    padding: 0 45px;
    text-align: center;
}

.full-width2 .tit {
    font-size: 26px;
    color: #fff;
}

.full-width2 .line {
    width: 81px;
    height: 3px;
    margin: 10px auto 15px;
    background-color: #fff;
}

.full-width2 .flex-row-between .desc {
    font-size: 16px;
    line-height: 1.8;
    color: #d8e9ff;
}

.full-width2 .cont3 {
    text-align: center;
}

.full-width2 .cont3 .flex-row-between {
    margin-top: 20px;
    font-size: 16px;
    color: #d8e9ff;
}

.full-width2 .cont3 .flex-row-between img {
    width: 60px;
    margin-right: 10px;
}

.full-width2 .nav-title h1,
.full-width2 .nav-title P {
    color: #FFF !important;
    background: none;
    -webkit-text-fill-color: #fff;
}

.full-width3 .desc {
    padding: 15px 0;
    line-height: 1.8;
    text-indent: 2em;
}

.product-list {
    width: 1100px;
    margin: 25px auto 0;
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
}

.product-list .product-item {
    width: 16.6%;
    margin-bottom: 30px;
}

.product-list .product-item:nth-child(n + 7) {
    margin-bottom: 0;
}

@keyframes breathe {
    0% {
        box-shadow: 0 0 5px #1293e9c2;
    }

    50% {
        box-shadow: 0 0 12px #1293e9;
    }

    100% {
        box-shadow: 0 0 5px #1293e9c2;
    }
}

.full-width3 .product-list .product-item .icon {
    margin-bottom: 15px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    animation: breathe 2s ease-in-out infinite;
}

.full-width3 .product-list .product-item:hover .icon {
    transform: scale(1.05);
}

.full-width4 .desc {
    padding: 15px 0;
    font-size: 16px;
    text-align: center;
    color: #333;
}

#partners_swiper {
    width: calc(100% - 60px);
    margin: auto;
}

/* .partners_list-item {
    filter: grayscale(95%);
    -webkit-filter: grayscale(95%);
} */

.partners_list-item:hover {
    transform: scale(1.15);
}

.news_list {
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.news_list-item1 {
    width: 590px;
    height: 356px;
    margin-right: 30px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.news_list-item1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_list-item1 .tit {
    position: absolute;
    width: 100%;
    height: 45px;
    line-height: 45px;
    left: 0;
    bottom: 0;
    padding: 0 10px;
    font-size: 16px;
    cursor: pointer;
    color: #fff;
    background-color: rgba(51, 51, 51, 0.6);
}

.news_list-item2 {
    flex: 1;
    height: 356px;
    padding: 5px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news_list-item2 .news_list-item {
    padding: 16px 0;
    cursor: pointer;
    border-bottom: 1px solid #dfdfdf;
}

.news_list-item2 .news_list-item:first-child {
    padding-top: 0;
}

.news_list-item2 .news_list-item:last-child {
    border-bottom: none;
}

.news_list-item .tit {
    font-size: 16px;
    line-height: 1;
    color: #333;
}

.news_list-item .desc {
    font-size: 14px;
    color: #aeb1bd;
}

.news_list-item .desc span {
    margin-right: 20px;
}

/* 底部、侧边悬浮 */
#footer {
    width: 100%;
    padding: 30px 0 20px 0;
    background-image: url('../images/pc/footer_bg.png');
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: left center;
    flex-shrink: 0;
}

#footer iframe {
    width: 100%;
    height: 192px;
    border: none;
}

.footer .footer-content {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 10px 0 0;
    color: #fff;
}

.footer .flex {
    display: flex;
    align-items: center;
}

.footer .left .flex {
    margin-top: 15px;
}

.footer .left {
    width: 30%;
}

.footer .left p {
    margin-top: 15px;
}

.footer .left img {
    width: 180px;
}

.footer .phone {
    font-size: 28px;
    font-weight: bold;
}

.footer .flex img {
    width: 40px;
}

.footer .phone img {
    margin-left: 3px;
    margin-right: 15px;
    width: 30px;
}

.footer .center {
    flex: 1;
    display: flex;
    align-content: center;
}

.footer .center .column {
    width: 25%;
}

.footer .center .column1 {
    width: 50% !important;
    margin-right: 20px;
}

.flex-2 {
    flex: 2 !important;
}

.footer .center .column .title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer .center .column .list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.footer .center .column .list-item {
    width: 33.33%;
    margin-bottom: 15px;
}

.footer .center .column .list-item1 {
    width: 100%;
}

.footer .center .qrcode {
    width: 80px;
    display: block;
    margin: 20px auto 0;
}

.float {
    position: fixed;
    right: 30px;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.float .contact {
    width: 80px;
    box-shadow: 0 0 10px 0 #ccc;
}

.float .contact span {
    font-size: 50px;
    color: red;
}

.float .contact img {
    width: 32px;
    margin-bottom: 5px;
}

.float .contact .wx,
.float .contact .phone {
    cursor: pointer;
    height: 80px;
    width: 80px;
    background-color: #FFF;
    border-bottom: 1px dashed #e5e5e5;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: relative;
    font-size: 14px;
}

.float .contact .wx:hover .qrcode {
    display: flex;
}

.float .contact .phone:hover .call {
    display: flex;
}

.float .contact .qrcode {
    width: 220px;
    background-color: #FFF;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    left: -220px;
    top: 0;
    display: none;
}

.float .contact .qrcode p {
    margin-bottom: 10px;
}

.float .contact .call {
    width: 160px;
    height: 130px;
    background-color: #FFF;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    left: -160px;
    top: 0;
    display: none;
    padding: 30px 0;
}

.float .contact .qrcode img {
    width: 148px;
    height: 148px;
    margin-bottom: 10px;
}

.ai-person {
    position: relative;
    width: 130px;
    margin-bottom: 10px;
    font-size: 11px;
    color: #FFF;
    cursor: pointer;
}

.ai-text {
    position: absolute;
    width: 100%;
    bottom: 8px;
    left: 0;
    text-align: center;
}

.ai-person0 {
    position: relative;
    width: 130px;
    height: auto;
    margin-bottom: 10px;
}

.ai-person p:first-child {
    font-size: 13px;
    font-weight: bold;
}

.float .close {
    width: 30px;
    height: 30px;
    margin-top: 10px;
    cursor: pointer;
}

.news_content {
    min-height: 370px;
}

.news_content .news_list {
    width: 1200px;
    display: block;
    padding: 30px;
    margin: 30px auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 8px 0 #ccc;
}

.news_content .news_list .news_list-item {
    color: #333;
    padding: 10px 0;
    cursor: pointer;
    border-bottom: 1px dashed #eeeeee;
}

.news_content .news_list .news_list-item .show_pc {
    margin-right: 5px;
}

.support_content .product-full-width5 {
    margin-top: -3px;
}

.about-full3 {
    background-image: url(../images/products/zw_bg1.jpg);
    background-size: 100% 100%;
    padding: 45px 0;
}

.about-full3 .content {
    width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    padding: 30px;
    background-color: #fff;
}

.about-full3 .content .map {
    width: 50%;
    height: 350px;
    margin-right: 30px;
    border-radius: 3px;
    overflow: hidden;
}

.about-full3 .content .infos {
    flex: 1;
    font-size: 16px;
}

.about-full3 .content .infos h3 {
    max-width: 502px;
    font-size: 30px;
    font-weight: bold;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
}

.about-full3 .content .infos .addr {
    display: flex;
}

.about-full3 .content .infos p {
    margin-top: 10px;
}

.about-full3 .content .infos .flex {
    padding: 0;
    margin-top: 10px;
    align-items: flex-end;
    justify-content: space-between;
}

.about-full3 .content .infos .flex .kfwx {
    width: 117px;
}

.about-full3 .content .infos .flex .tel {
    width: calc(100% - 137px);
    max-width: 490px;
}

@media screen and (min-width: 751px) {
    .show_m {
        display: none !important;
    }

    .white {
        color: #fff !important;
    }

    .nav-title .white {
        color: #fff;
        -webkit-text-fill-color: #fff;
    }
}

@media screen and (max-width: 750px) {
    .show_pc {
        display: none !important;
    }

    .show_m {
        display: block;
    }

    .fullSlide {
        min-width: auto;
        height: auto;
    }

    .width-1200 {
        width: calc(100% - 0.3rem);
        margin: auto;
    }

    .container {
        margin-top: 0.6rem;
    }

    .header {
        height: 0.6rem;
        padding: 0.1rem 0.15rem;
        z-index: 10;
    }

    .header-content .logo {
        height: 0.3rem;
        width: auto;
    }

    .header-content .menu_btn {
        width: 0.2rem;
    }

    .menu_m {
        position: fixed;
        width: 100%;
        top: 0.6rem;
        bottom: 0;
        left: 0;
        z-index: 999;
        padding: 0.15rem;
        background-color: #fff;
    }

    .el-collapse-item__header {
        height: 0.4rem !important;
        line-height: 0.4rem !important;
        font-size: 0.135rem !important;
        background: none !important;
        color: #007aff !important;
        border: none;
    }

    .el-collapse {
        border: none !important;
    }

    .el-collapse-item__wrap {
        border: none !important;
        background: none !important;
    }

    .el-collapse-item__content {
        padding-bottom: 0 !important;
    }

    .menu_tit {
        height: 0.4rem;
        line-height: 0.4rem;
        font-size: 0.135rem !important;
        color: #002d6f;
        border-bottom: 1px solid #f1f1f1;
    }

    .product_menus {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        border-bottom: 1px solid #f1f1f1;
    }

    .product_menus .menu_tit {
        width: 1.65rem;
        margin-bottom: 0.1rem;
        padding: 0 0.1rem;
        border-radius: 0.05rem;
        background-color: #f8f8f8;
        border: none;
    }

    .product_menus .active {
        background-color: #0a68c743;
    }

    .product_menus .menu_tit img {
        width: 0.15rem;
        margin-right: 0.05rem;
        transform: translateY(0.03rem);
    }

    .fullSlide .video {
        width: 100%;
        height: auto;
    }

    .fullSlide .video video {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .fullSlide .num_m {
        width: calc(100% - 0.2rem);
        margin: -0.3rem auto 0;
        box-shadow: 0 0 0.12rem 0 #f1f1f1;
    }

    .full-width {
        padding: 0.15rem 0;
    }

    .num_m .tit {
        position: absolute;
        height: 0.2rem;
        line-height: 0.2rem;
        padding: 0 0.07rem;
        left: 0;
        top: 0;
        font-size: 0.1rem;
        border-radius: 0.03rem;
        color: #fff;
        background: linear-gradient(to right, #57f2ea, #3c5efe);
    }

    .num_left,
    .num_right {
        width: 100%;
        height: 0.9rem;
        padding-top: 0.1rem;
    }

    .num-item img {
        margin: 0 0.1rem;
    }

    .num_right .amount,
    .num_left .amount {
        font-size: 0.22rem;
        font-family: 'Georgia' !important;
    }

    .num_right .amount .text,
    .num_left .amount .text {
        font-size: 0.135rem;
        font-family: 'SourceHanSansCN' !important;
    }

    .num_m .amount .spc {
        font-size: 0.11rem;
        font-family: 'SourceHanSansCN' !important;
    }

    .num_m .num-item {
        width: auto;
        flex: 1;
    }

    .num-item .flex-row-align-center {
        font-size: 0.13rem;
        color: #eab067;
    }

    .nav-title h1 {
        font-size: 0.22rem;
    }

    .nav-title {
        margin: 0.1rem 0;
    }

    .nav-title p {
        font-size: 0.1rem;
    }

    .navs_m {
        width: 100%;
        padding: 0.15rem;
        padding-top: 0.85rem;
        margin-top: -0.7rem;
        display: flex;
        font-size: 0.11rem;
        text-align: center;
        justify-content: space-between;
        /* background-image: url("../images/m/index_bg3.png"); */
        /* background-size: 100% 100%; */
        /* background-position: bottom; */
    }

    .navs_m .navs_tit {
        width: 20%;
    }

    .navs_m img {
        width: 0.37rem;
    }

    .full-width1 {
        background-image: url("../images/m/index_bg1.png");
    }

    .full-width1 .description p {
        font-size: 0.135rem;
        line-height: 1.7;
        margin-bottom: 0.1rem;
    }

    .full-width2 .width-1200 {
        width: calc(100% - 0.3rem);
        height: auto;
        left: 0.15rem;
        padding: 0.15rem 0;
    }

    .full-width2 .show_m .tit {
        margin-top: 0.15rem;
        text-align: center;
        font-size: 0.17rem;
    }

    .full-width2 .show_m .line {
        width: 0.6rem;
        height: 0.01rem;
        margin: 0.08rem auto 0.15rem !important;
    }

    .full-width2 .show_m {
        color: #d8e9ff;
    }

    .full-width2 .guihua-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .full-width2 .show_m img {
        width: 0.37rem;
        margin-bottom: 0.05rem;
    }

    .full-width2 .guihua-item1,
    .full-width2 .guihua-item2 {
        height: 0.8rem;
        display: flex;
        font-size: 0.13rem;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: rgba(2, 29, 106, 0.5);
        border-radius: 0.05rem;
    }

    .full-width2 .guihua-item1 {
        width: 100%;
    }

    .full-width2 .guihua-item2 {
        width: calc(50% - 0.05rem);
        margin-bottom: 0.1rem;
    }

    .full-width2 .guihua-item2:nth-child(3),
    .full-width2 .guihua-item2:nth-child(4) {
        margin-bottom: 0;
    }

    .full-width3 {
        background-image: url("../images/m/index_bg3.png");
    }

    .full-width3 .desc {
        font-size: 0.135rem;
        padding: 0;
        line-height: 1.7;
    }

    .full-width3 .product-list {
        width: 100%;
        font-size: 0.135rem;
    }

    .product-list .product-item {
        width: 25%;
        margin-bottom: 0.15rem;
    }

    .full-width3 .product-list .product-item .icon {
        width: 0.37rem;
        height: auto;
        margin-bottom: 0.1rem;
    }

    .full-width4 {
        background-image: url("../images/pc/index_bg4.png");
    }

    .full-width4 .desc {
        padding: 0 0 0.05rem;
        font-size: 0.135rem;
    }

    .partners_list-item {
        filter: grayscale(0);
        -webkit-filter: grayscale(0);
    }

    .full-width5 {
        background-image: url("../images/pc/index_bg5.png");
    }

    .full-width5 .news_list {
        display: block;
        margin-top: 0;
    }

    .full-width5 .show_m .news_list-item {
        display: flex;
        align-self: center;
        padding: 0.07rem 0;
        border-bottom: 1px solid #f1f1f1;
    }

    .full-width5 .show_m .news_list-item img {
        width: 1.1rem;
        height: 0.75rem;
        margin-right: 0.1rem;
        border-radius: 0.05rem;
    }

    /* .full-width5 .show_m .news_list-item img{
        width: 100%;
        height: 100%;
    } */

    .full-width5 .show_m .news_list-item .info {
        width: calc(100% - 1.2rem);
        padding: 0.05rem 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .full-width5 .show_m .news_list-item .tit {
        font-size: 0.135rem;
    }

    .full-width5 .show_m .news_list-item .desc {
        font-size: 0.125rem;
    }

    .news_content .news_list {
        width: 100%;
        display: block;
        padding: 0.15rem;
        margin: 0.1rem auto;
        border-radius: 0;
        box-shadow: none;
    }

    .news_content .news_list .news_list-item {
        display: flex;
        padding: 10px 0;
        color: #333;
        border-bottom: 1px dashed #eeeeee;
    }

    .news_content .news_list .news_list-item img {
        width: 1.1rem;
        height: 0.75rem;
        margin-right: 0.1rem;
    }

    .news_content .news_list .news_list-item .info {
        flex: 1;
        display: -webkit-box;
        word-break: break-all;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    .news_content .news_list .news_list-item .show_pc {
        margin-right: 5px;
    }

    .support_content {
        min-height: calc(100vh - 2.13rem);
        background-color: #f7f7f7;
    }

    .about-full3 {
        padding: 0.15rem;
    }

    .about-full3 .content {
        width: 100%;
        display: block;
        padding: 0.15rem;
    }

    .about-full3 .content .map {
        width: 100%;
        height: 1.5rem;
        margin-right: 0;
        border-radius: 3px;
    }

    .about-full3 .content .infos {
        flex: 1;
        width: 100%;
        font-size: 0.135rem;
    }

    .about-full3 .content .infos h3 {
        max-width: max-content;
        font-size: 0.15rem;
        padding-bottom: 0.1rem;
        margin: 0.1rem 0;
    }

    .about-full3 .content .infos p {
        margin-top: 10px;
    }

    .about-full3 .content .infos .flex {
        padding: 0;
        margin-top: 10px;
        align-items: flex-end;
        justify-content: space-between;
    }

    .about-full3 .content .infos .flex .kfwx {
        width: 0.7rem;
    }

    .about-full3 .content .infos .flex .tel {
        width: calc(100% - 0.8rem);
    }

    #footer {
        width: 100%;
        padding: 0.2rem 0 0.1rem 0;
        background-image: url('../images/pc/footer_bg.png');
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: left center;
        flex-shrink: 0;
    }

    #footer iframe {
        width: 100%;
        height: 1.2rem;
        border: none;
    }

    .footer .footer-content_m {
        width: calc(100% - 0.3rem);
        margin: auto;
        display: flex;
        align-items: flex-end;
    }

    .footer .footer-content_m .infos {
        flex: 1;
        font-size: 0.15rem;
        color: #fff;
    }

    .footer .footer-content_m .infos p {
        font-size: 0.135rem;
        margin-top: 0.07rem;
    }

    .footer .footer-content_m .qrcode {
        width: 0.65rem;
        margin-left: 0.2rem;
    }

    .footer .footer-content_m .infos .line {
        width: 100%;
        height: 1px;
        margin: 0.1rem 0;
        background-color: #fff;
    }

    .ai-person {
        width: 1rem;
    }

    .ai-person img {
        opacity: 0.8;
    }

    .ai-person p {
        font-size: 0.08rem;
    }

    .ai-person p:first-child {
        font-size: 0.1rem;
    }

    .ai-text {
        bottom: 0.04rem;
    }

    .float {
        top: 50%;
        right: 0.05rem;
    }

    .float .contact {
        width: 0.7rem;
        height: 0.6rem;
    }

    .float .contact .wx,
    .float .contact .phone {
        width: 100%;
        height: 0.6rem;
        font-size: 0.11rem;
    }

    .float .contact img {
        width: 0.25rem;
    }

    .float .contact .phone:hover .call {
        display: none;
    }

    .float .close {
        width: 0.25rem;
        height: 0.25rem;
        margin-top: 0.65rem;
    }
}