/*滚动条轨道*/
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background: white;
}

/*滚动条滑块*/
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #1f75d5CC;
}

/*移入滑块*/
::-webkit-scrollbar-thumb:hover {
    background: #1f75d5;
}

/*拐角处*/
::-webkit-scrollbar-corner {
    background: none;
}

/* 百度收录缩略图---------------------------------------- */
.baidu-thumb {
    position: fixed;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

/* ---------------------------------------- */
/*限制浏览器宽度----------------------------------------*/
@media screen and (max-width: 700px) {
    html {
        overflow: hidden;
    }

    html:after {
        content: "← 亲！请保持网页宽度>700像素 →";
        position: fixed;
        top: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 2rem;
        color: white;
        background: #3873FF;
        z-index: 999999999;
    }
}

body,
html {
    position: relative;
    width: 100%;
    height: 100%;
    min-width: 1200px;
    overflow: hidden;
}

/* ---------------------------------------- */

html {
    overflow-x: auto;
}

body {
    overflow-y: auto;
}

.w1160 {
    width: 1160px;
}

.w1200 {
    width: 1200px;
}

@media screen and (max-width: 800px) {
    .w1160 {
        width: 100%;
    }

    .w1200 {
        width: 100%;
    }
}

.sg-sectioin-title {
    text-align: center;
    margin: 0 auto;
    margin-top: 60px;
}

.sg-sectioin-title .short-line {
    width: 60px;
    height: 2px;
    background-color: #00000088;
    margin: 0 auto;
    margin-bottom: 20px;
}

.sg-sectioin-title .short-line[blue] {
    background-color: #1f75d5;
}

.sg-sectioin-title h1 {
    font-size: 38px;
    font-weight: 100;
    margin-bottom: 20px;
    color: #272f42;
}

.sg-sectioin-title h1[blue] {
    color: #1f75d5;
}

.sg-sectioin-title p {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 10px;
    color: #808080;
}

/*顶部 ---------------------------------------- */
.sg-top {
    width: 100%;
    /* width: calc(100% - 10px); */
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
    /* background-color: white; */
    position: sticky;
    top: 0;
    z-index: 999;
    overflow: hidden;
    background-color: #ffffff;
    /* backdrop-filter: blur(10px); */
}

.sg-top .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sg-top .sg-left {
    position: relative;
}

/* logo */
.sg-top .sg-left .sg-logo {
    /*背景图片*/
    width: 130px;
    height: 40px;
    background: transparent url(../img/logo.png) no-repeat center / contain;
    cursor: pointer;
    transition: .382s ease;

}

.sg-top .sg-left .sg-logo-tip {
    position: absolute;
    white-space: nowrap;
    left: 100%;
    margin-left: 10px;
    top: 5px;
    z-index: 1;
    min-width: max-content;
    pointer-events: none;
    opacity: 0;
    transition: .382s ease;
}

.sg-top .sg-left .sg-logo:hover+.sg-logo-tip {
    opacity: 1;

}

.sg-top .sg-left .sg-logo:hover {
    opacity: 0.618;
}

.sg-top .sg-left .sg-logo:active {
    transform: translate(1px, 1px);
}

.sg-top .nav-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sg-top .nav-body li {
    transition: .382s ease;
    margin: 0 15px;
    font-size: 14px;
    cursor: pointer;
    position: relative;

}

@media screen and (max-width: 1200px) {
    .sg-top .nav-body li {
        margin: 0 10px;
    }
}

@media screen and (max-width: 1000px) {
    .sg-top .nav-body li {
        margin: 0 8px;
    }
}

@media screen and (max-width: 800px) {
    .sg-top .nav-body li {
        margin: 0 2px;
    }

    .sg-top .sg-right {
        display: none;
    }
}

.sg-top .nav-body li[active] {
    color: #1f75d5;
}

.sg-top .nav-body li::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #1f75d500;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: -25px;
    transition: .382s ease;
}

.sg-top .nav-body li[active]::after {
    background-color: #1f75d5;

}

.sg-top .nav-body li[data]::before {
    transition: .382s ease;
    content: attr(data);
    border-radius: 6px 6px 6px 0;
    box-sizing: border-box;
    padding: 2px 6px;
    background-color: #f13941;
    color: white;
    position: absolute;
    left: calc(100% - 22px);
    top: -20px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;

}

.sg-top .nav-body li:hover {
    color: #1f75d5;
}

.sg-top .nav-body li:hover:before {
    animation: sg-animate-nav-tag .5s ease-in-out infinite alternate;
}

@keyframes sg-animate-nav-tag {
    0% {
        /* opacity: 1; */

    }

    50% {
        /* opacity: .8; */
        background-color: #E6A23C;
        transform: translateY(-20%);
    }

    100% {
        /* opacity: 1; */
    }
}

.sg-top .sg-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;

}

.sg-top .sg-right .tel {
    margin-left: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #1f75d5;

}

/* banner---------------------------------------- */
.sg-banner,
.sg-banner-v2 {
    /* margin-top: 70px; */
    position: relative;
    transition: .382s ease;
    /*背景图片*/
    width: 100%;
    height: 700px;
}

.sg-banner-v2>img {
    width: 100%;
    height: 700px;
    object-position: center;
    object-fit: cover;
}

.sg-banner .banners {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sg-banner .banners>div {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .382s ease;
}

.sg-banner .banners>div[active] {
    opacity: 1;
    z-index: 1;

}

/* ---------------------------------------- */
.sg-banner .video-btn,
.sg-banner .contact-us-btn {
    border-radius: 4px;
    background-color: #1f75d5;
    color: white;
    font-size: 16px;
    font-family: 'Microsoft YaHei';
    font-weight: 300;
    width: 150px;
    height: 50px;
    line-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    margin: auto;
    top: 327px;
    left: -950px;
    right: 0;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
    /* pointer-events: auto; */
    transition: .382s ease;
}

/* 按钮显示区域 ----------------------------------------*/
.sg-banner .btns,
.sg-banner-v2 .btns {
    width: 1200px;
    height: 100%;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.sg-banner .btn,
.sg-banner-v2 .btn {
    border-radius: 4px;
    background-color: #1f75d5;
    color: white;
    font-size: 16px;
    font-family: 'Microsoft YaHei';
    font-weight: 300;
    width: 150px;
    height: 50px;
    line-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
    /* pointer-events: auto; */
    transition: .382s ease;
}

.sg-banner .btn:hover,
.sg-banner-v2 .btn:hover {
    opacity: 0.9;
    transform: scale(1.1);
}

.sg-banner .btn[red],
.sg-banner-v2 .btn[red] {
    background-color: #F56C6C;
}

.sg-banner .btn[orange],
.sg-banner-v2 .btn[orange] {
    background-color: #E6A23C;
}

/* ---------------------------------------- */
.sg-banner .video-btn {
    top: 450px;

}

.sg-banner .banners .banner0 .video-btn {
    top: 540px;
    left: -1005px;
}

.sg-banner .banners .banner2 .video-btn {
    top: 450px;
    left: 460px;
}

.sg-banner .banners .banner3 .video-btn {
    left: -1020px;
}



.sg-banner .video-btn img {
    width: 20px;
    margin-right: 10px;
}

.sg-banner .video-btn:hover,
.sg-banner .contact-us-btn:hover {
    background-color: #409EFF;
}

/* ---------------------------------------- */
.sg-banner .banners .banner0 {
    background: transparent url(../img/banner/0.jpg) no-repeat center / cover;
}

.sg-banner .banners .banner1 {
    background: transparent url(../img/banner/1.jpg) no-repeat center / cover;
}

.sg-banner .banners .banner2 {
    background: transparent url(../img/banner/2.jpg) no-repeat center / cover;
}

.sg-banner .banners .banner3 {
    background: transparent url(../img/banner/3.jpg) no-repeat center / cover;
}

.sg-banner .banners .banner4 {
    background: transparent url(../img/banner/4.jpg) no-repeat center / cover;
}

/* 箭头---------------------------------------- */
.arrows {
    pointer-events: none;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 0 50px;
    position: absolute;
    z-index: 1;
}

.arrows>div {
    pointer-events: auto;
    transition: .382s ease;
    cursor: pointer;
    /*背景图片*/
    width: 59px;
    height: 57px;
    background: transparent url(../img/arrows/left.png) no-repeat center / contain;

}

.arrows>div:hover {
    opacity: 0.618;
    transform: scale(1.1);
}


.arrows>div:active {
    transform: translate(1px, 1px);

}

.arrows .arrow-right {
    background-image: url(../img/arrows/right.png);
}

/* data---------------------------------------- */
.sg-data {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
}

.sg-data ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sg-data ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #333;
    box-sizing: border-box;
    width: 25%;
    border-right: 1px solid #bbb;
    cursor: pointer;
    transition: .382s ease;
}

.sg-data ul li:hover {
    color: #1f75d5;
}

.sg-data ul li:hover h1 {
    font-weight: bold;
}

.sg-data ul li:last-of-type {
    border: none;
}

.sg-data ul li h1 {
    transition: .382s ease;
    font-size: 32px;
    font-weight: 100;
    position: relative;
    margin-bottom: 20px;
    line-height: 1;
}

.sg-data ul li h1:after {
    content: attr(tag);
    font-size: 14px;
    position: absolute;
    top: 5px;
    left: calc(100% + 10px);
    white-space: nowrap;
    font-weight: bold;


}

.sg-data ul li p {
    font-size: 16px;
    font-weight: bold;
}

/* 经验---------------------------------------- */
.yyjy {
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
}

.yyjy-collapse {

    margin: 0 auto;
    margin-top: 80px;
    margin-bottom: 40px;
    height: 530px;
    display: flex;
    justify-content: space-between;
    background-color: #f3f8fc;
    overflow: hidden;
}

.yyjy-collapse .collapse-left {
    transition: .382s ease;
    width: 940px;
    box-sizing: border-box;
    border-right: 1px solid white;
    flex-shrink: 0;
}

.yyjy-collapse .collapse-right {
    width: 260px;
    /* overflow-y: auto; */
}

.yyjy-collapse .collapse-left ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.yyjy-collapse .collapse-left ul li {
    width: 50%;
    height: calc(530px / 2);
    flex-shrink: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    transition: .382s ease;
    box-sizing: border-box;
    padding: 20px;
}

.yyjy-collapse .collapse-left ul li:hover {
    background-color: #1f75d522;

}

.yyjy-collapse .collapse-left ul li * {
    transition: .382s ease;
}

.yyjy-collapse .collapse-left ul li:hover * {
    transform: scale(1.1);
    color: #1f75d5;

}

.yyjy-collapse .collapse-left ul li:hover img {
    transform: scaleX(-1);
}

.yyjy-collapse .collapse-left ul li:nth-of-type(1),
.yyjy-collapse .collapse-left ul li:nth-of-type(2) {
    box-sizing: border-box;
    border-bottom: 1px solid #cdd2d6;
}

.yyjy-collapse .collapse-left ul li:nth-of-type(2n+1):after {
    content: "";
    width: 1px;
    height: 160px;
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #cdd2d6;
}

.yyjy-collapse .collapse-left ul li:nth-of-type(3):after {
    top: 0;
    bottom: initial;
}

.yyjy-collapse .collapse-left ul img {
    margin-bottom: 10px;
}

.yyjy-collapse .collapse-left ul li h1 {
    font-size: 20px;
    color: #303133;
    font-weight: normal;
    margin-bottom: 10px;
}

/* .yyjy-collapse .collapse-left ul li h1:before {
    content: "【";
}

.yyjy-collapse .collapse-left ul li h1:after {
    content: "】";
}
 */
.yyjy-btn {
    margin: 0 auto;
    margin-bottom: 60px;
    width: 185px;
    height: 60px;
    border-radius: 88px;
    box-sizing: border-box;
    border: 1px solid #1f75d5;
    color: #1f75d5;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
    transition: .382s ease;
    /*禁止选中文本*/
    user-select: none;

}

.yyjy-btn:hover {
    background-color: #1f75d5;
    color: white;

}

.yyjy-btn:active {
    transform: translate(1px, 1px);

}

/* ---------------------------------------- */
.yyjy-collapse .collapse-right ul li {
    box-sizing: border-box;
    padding: 25px;
    height: 55px;
    overflow: hidden;
    box-sizing: border-box;
    border-bottom: 1px solid #e4e9ed;
    transition: .382s ease;
    position: relative;
}

.yyjy-collapse .collapse-right ul li * {
    /* transition: .382s ease; */
}


.yyjy-collapse .collapse-right ul li[active] .seek-btn {}

.yyjy-collapse .collapse-right ul li h1 {
    font-weight: normal;
    font-size: 18px;
    /* text-align: center; */
    margin-top: -8px;
    margin-left: 65px;
    transition: none;

}

.yyjy-collapse .collapse-right ul li p {
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: none;
}

.yyjy-collapse .collapse-right ul li .seek-btn {
    transition: .382s ease;
    /*禁止选中文本*/
    user-select: none;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    opacity: 0;
    pointer-events: none;
    color: #1f75d5;
    background-color: white;
    width: 106px;
    height: 36px;
    margin-top: 10px;
    cursor: pointer;
    line-height: 36px;
}

.yyjy-collapse .collapse-right ul li .seek-btn:hover {
    transform: scale(1.1);
}

.yyjy-collapse .collapse-right ul li[active] {
    height: 200px;
    background-color: #1f75d5;
    color: white;
}

.yyjy-collapse .collapse-right ul li[active]::after {
    /* 向右的直角三角形箭头 */
    content: "";
    position: absolute;
    top: 22px;
    left: 0px;
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-left-color: white;
}

.yyjy-collapse .collapse-right ul li[active] h1 {
    /* text-align: left; */
    margin-bottom: 10px;
    margin-left: 0px;
    font-weight: bold;
}

.yyjy-collapse .collapse-right ul li[active] h1:after {
    content: '>>';

}

.yyjy-collapse .collapse-right ul li[active] * {
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* 精湛团队---------------------------------------- */
.jztd {
    overflow: hidden;
    width: 100%;
    height: 800px;
    background-color: #f3f8fc;
}

.jztd-swiper {
    position: relative;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 70px;
    transition: .382s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 510px;
    background: transparent url(../img/jztd/1.png) no-repeat center / contain;
}

.jztd-swiper .arrows {
    padding: 0;
    width: calc(100% + 200px);
    flex-shrink: 0;
}

/*  买卖难题---------------------------------------- */
.mmlt .tabs {
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
    /* padding: 10px 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    background-color: #f5f6fa;
    width: min-content;
    border-radius: 88px;
    position: relative;
}

.mmlt .tabs ul {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    z-index: 1;
    margin-right: -4px;
}

.mmlt .tabs li {
    white-space: nowrap;
    flex-shrink: 0;
    color: #7f7f7f;
    font-size: 16px;
    padding: 10px 20px;
    cursor: pointer;
    transition: .382s ease;
}

.mmlt .tabs li:hover,
.mmlt .tabs li[active] {
    color: #1f75d5;
}

.mmlt .tabs .active {
    transition: .382s ease;
    position: absolute;
    left: 0;
    transition: .382s ease;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
    border-radius: 88px;
    background-color: white;
    z-index: 0;
    min-width: 100px;
    height: 41px;
}

/* ---------------------------------------- */


.mmlt .tab-content {
    margin: 0 auto;
    position: relative;
}

.mmlt .tab-content ul {
    transition: opacity .382s ease;
    justify-content: space-between;
    flex-wrap: wrap;
    pointer-events: none;
    opacity: 0;
    display: none;
}

.mmlt .tab-content ul[active] {
    opacity: 1;
    display: flex;
    pointer-events: auto;
}

.mmlt .tab-content ul li {
    padding: 0px;
    box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 30px;
    width: calc(50% - 25px);
    margin-bottom: 50px;
    position: relative;
}


/*css自动序号________________________*/
.mmlt .tab-content ul {
    counter-reset: NO;
    /*初始化变量NO*/
}

.mmlt .tab-content ul li {
    cursor: pointer;
    transition: .382s ease;
}


.mmlt .tab-content ul li:before {
    position: absolute;
    left: 30px;
    top: 30px;
    border-radius: 100%;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: bold;
    width: 30px;
    height: 30px;
    background-color: #1f75d5;
    box-shadow: 0 5px 12px 0 #1f75d566;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mmlt .tab-content ul li:before {
    counter-increment: NO;
    content: counter(NO);
}

/*解决超过9的序号数字还有0打头*/
.mmlt .tab-content ul li:nth-of-type(n + 9):before {
    content: counter(NO);
}

.mmlt .tab-content ul li h1 {
    font-weight: normal;
    color: #2a2a2a;
    font-size: 20px;
    margin-bottom: 10px;
    margin-left: 40px;
}

.mmlt .tab-content ul li p {
    font-weight: normal;
    color: #555555;
    font-size: 16px;
    margin-left: 40px;
}

.mmlt .tab-content ul li:hover {
    background-color: #1f75d511;
    border-color: #1f75d566;
    box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.1);
}

.mmlt .tab-content ul li:hover h1,
.mmlt .tab-content ul li:hover p {
    color: #1f75d5;
}

/* ppxh---------------------------------------- */
.ppxh .ppxh-content {
    width: 100%;
    height: 600px;
    position: relative;
    margin-top: 60px;
    margin-bottom: 140px;
}

.ppxh .ppxh-content:after {
    content: "";
    position: absolute;
    left: 0;
    top: 110px;
    width: 100%;
    height: 280px;
    background-color: #48465b;
    z-index: -1;
}

.ppxh .ppxh-content .logos {
    margin: 0 auto;
    height: 100%;
    background-color: #f3f8fc;
    box-shadow: 0 12px 33px 0 rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-sizing: border-box;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.ppxh .ppxh-content .logos li {
    margin-bottom: 30px;
}

.ppxh .ppxh-content .logos li img {
    margin: 0 6px;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    border: 2px solid white;
    cursor: pointer;
    transition: .382s ease;
}

.ppxh .ppxh-content .logos li:first-of-type img {
    width: 220px;
    margin: 0 25px;

}

.ppxh .ppxh-content .logos li img:hover {
    border-color: #99d2ff;
    box-shadow: 0 11px 33px 0 rgba(0, 0, 0, 0.15);
}

/* slybz---------------------------------------- */
.slybz {
    width: 100%;
    height: 800px;
    background-color: #f5f8fd;
    overflow: hidden;
    position: relative;
}

.slybz .tabs {
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
    /* padding: 10px 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    /* background-color: #f5f6fa; */
    width: min-content;
    position: relative;
    box-sizing: border-box;
    padding-bottom: 15px;
    border-bottom: 1px solid #b5b9bc;
}

.slybz .tabs ul {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    z-index: 1;
}

.slybz .tabs li {
    white-space: nowrap;
    flex-shrink: 0;
    color: #243040;
    font-size: 20px;

    box-sizing: border-box;
    margin: 0 90px;
    cursor: pointer;
    transition: .382s ease;

}

.slybz .tabs li:hover,
.slybz .tabs li[active] {
    color: #1f75d5;
}

.slybz .tabs .active {
    transition: .382s ease;
    position: absolute;
    left: 0;
    transition: .382s ease;
    z-index: 0;
    min-width: 100px;
    height: 2px;
    background-color: #1f75d5;
    bottom: -1px;
}


.slybz .arrows {
    padding: 0;
    width: calc(100% + 200px);
    z-index: 1;
    position: absolute;
    margin: auto;
    top: 180px;
    left: -100px;
    pointer-events: none;
}

.slybz .tab-content {
    position: relative;
    margin: 0 auto;
}

.slybz .tab-content>li {
    transition: .382s ease;
    /* display: none; */
    justify-content: space-between;
    margin-bottom: 30px;
    opacity: 0;
    pointer-events: none;
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 1100px;
    margin: auto;
}

.slybz .tab-content>li[active] {
    opacity: 1;
    display: flex;
    pointer-events: auto;
}

.slybz .tab-content>li .sg-txt {
    width: 500px;
}

.slybz .tab-content>li .sg-txt h1 {
    font-weight: bold;
    font-size: 26px;
    color: black;
    margin-bottom: 30px;

}

.slybz .tab-content>li .sg-txt h2 {
    font-weight: normal;
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;

}

.slybz .tab-content>li .sg-txt h3 {
    font-size: 16px;
    color: #F56C6C;
    margin-bottom: 40px;
}

.slybz .tab-content>li .sg-txt ul li::marker {
    content: '● ';
}


.slybz .tab-content>li .sg-txt ul {
    margin-left: 15px;
}


.slybz .tab-content>li .sg-txt ul li {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}

.slybz .tab-content>li .sg-txt p {
    transition: .382s ease;
    margin-top: 20px;
    font-size: 16px;
    color: #016bc1;
    cursor: pointer;

}

.slybz .tab-content>li .sg-txt p:hover {
    opacity: 0.618;
}

.slybz .tab-content>li .sg-img img {
    width: 600px;
    height: 400px;
    object-fit: contain;
    object-position: center;
}

/* sjaq---------------------------------------- */
.sjaq .sjaq-content {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sjaq .sjaq-content>* {
    flex-shrink: 0;
}

.sjaq .sjaq-content>div {
    width: 270px;
}

.sjaq .sjaq-content h2 {
    color: #1f75d5;
    font-size: 28px;
    font-weight: normal;
    margin-bottom: 20px;
}

.sjaq .sjaq-content li {
    margin-bottom: 15px;
    text-align: left;
    font-size: 16px;
    color: gray;
}

.sjaq .sjaq-content li::marker {
    content: '💡';
}

/* lxj---------------------------------------- */
.lxj {
    margin: 0 auto;
}

.lxj .price-list {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

.lxj .price-list .soft-price {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.lxj .price-list .soft-price>li {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.lxj .price-list .soft-price .old-price {
    font-weight: normal;
    text-decoration: line-through;
    font-style: italic;
    margin-bottom: 20px;
}

.lxj .price-list .soft-price label {
    margin-right: 5px;
}

.lxj .price-list ul li:nth-of-type(2) .soft-price .new-price {
    color: #F56C6C;
}

.lxj .price-list ul {
    display: flex;
}

.lxj .price-list ul li {
    width: 205px;
    transition: .382s ease;
}

.lxj .price-list ul li * {
    transition: .382s ease;
}

.lxj .price-list ul li div {
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    text-align: center;
    margin-top: -1px;
    margin-right: -1px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;

}

.lxj .price-list ul li:first-of-type div {
    flex-direction: column;
}

.lxj .price-list ul li div:first-of-type {
    font-weight: bold;
    font-size: 22px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lxj .price-list ul li div:last-of-type {
    font-weight: bold;
    font-size: 18px;
    /* height: 70px; */
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.lxj .price-list ul li div h1 {
    font-size: 18px;
    font-weight: normal;
    display: block;
    margin-bottom: -30px;

}

.lxj .price-list ul li div p {
    font-size: 14px;
}

.lxj .price-list ul li div b {
    font-size: 28px;
    margin-top: -8px;
}

.lxj .price-list ul li div[y]::before {
    /* content: '✔'; */
    content: url(../img/price/brown-right.png);
}

.lxj .price-list ul li:nth-of-type(3) div[y]::before {
    content: url(../img/price/blue-right.png);
}

.lxj .price-list ul li:nth-of-type(4) div[y]::before {
    content: url(../img/price/black-right.png);
}

.lxj .price-list ul li div[n]::before {
    /* content: '－'; */
    content: '';
    width: 15px;
    height: 5px;
    border-radius: 4px;
    background-color: #dccec3;
    display: inline-block;
}

.lxj .price-list ul li:nth-of-type(3) div[n]::before {
    background-color: #c3c3cf;
}

.lxj .price-list ul li:first-of-type div:first-of-type {
    border-top-left-radius: 12px;
}

.lxj .price-list ul li:last-of-type div:first-of-type {
    border-top-right-radius: 12px;
}

.lxj .price-list ul li:first-of-type div:last-of-type {
    border-bottom-left-radius: 12px;
}

.lxj .price-list ul li:last-of-type div:last-of-type {
    border-bottom-right-radius: 12px;
}

.lxj .price-list ul li:nth-of-type(2) div:not(:first-of-type) {
    color: #695346;
    background-color: #fef4e8;
}

.lxj .price-list ul li:nth-of-type(3) div:not(:first-of-type) {
    color: #1b2bbf;
    background-color: #eeedfd;
}

.lxj .price-list ul li:nth-of-type(4) div:not(:first-of-type) {
    color: #3e3e3e;
    background-color: #f6f6f6;
}

.lxj .price-list ul li:nth-of-type(1) div:first-of-type {
    background-color: #f6f6f6;
}


.lxj .price-list ul li:nth-of-type(2) div:first-of-type {
    /*旋转角度线性渐变背景*/
    background: linear-gradient(-45deg, #f6caaf, #fdf4cd);
    color: #111111;
}

.lxj .price-list ul li:nth-of-type(3) div:first-of-type {
    /*旋转角度线性渐变背景*/
    background: linear-gradient(-45deg, #1d2cc3, #7293f4);
    color: white;
}

.lxj .price-list ul li:nth-of-type(4) div:first-of-type {
    /*旋转角度线性渐变背景*/
    background: linear-gradient(-45deg, #b1b1b1, #edebec);
    color: #101010;
}

.lxj .price-list ul li:not(:first-of-type):hover div:first-of-type {
    height: 100px;
    margin-top: -11px;
    border-radius: 12px 12px 0 0;
}

.lxj .price-list ul li:nth-of-type(2):hover div {
    background-color: #fdf4cd;
}

.lxj .price-list ul li:nth-of-type(3):hover div {
    background-color: #7293f444;
}

.lxj .price-list ul li:nth-of-type(4):hover div {
    background-color: #3e3e3e15;
}

.lxj .price-list ul li:not(:first-of-type):hover div:last-of-type {
    /* height: 90px; */
    height: 140px;
    border-radius: 0 0 12px 12px;
    margin-bottom: -20px;
}

/* aboutUs---------------------------------------- */

.aboutUs {
    width: 100%;
    position: relative;
}

.aboutUs .tabs {
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: min-content;
    position: relative;
    box-sizing: border-box;
    padding-bottom: 15px;
    border-bottom: 1px solid #b5b9bc;
    width: 100%;
}

.aboutUs .tabs ul {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    z-index: 1;
}

.aboutUs .tabs li {
    white-space: nowrap;
    flex-shrink: 0;
    color: #243040;
    font-size: 20px;

    box-sizing: border-box;
    margin: 0 25px;
    cursor: pointer;
    transition: .382s ease;

}

.aboutUs .tabs li:hover,
.aboutUs .tabs li[active] {
    color: #1f75d5;
}

.aboutUs .tabs .active {
    transition: .382s ease;
    position: absolute;
    left: 0;
    transition: .382s ease;
    z-index: 0;
    min-width: 100px;
    height: 2px;
    background-color: #1f75d5;
    bottom: -1px;
}


/* 我们为您提供---------------------------------------- */
.aboutUs .tab-content {
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    box-sizing: border-box;
    padding: 60px 20px;

    background-repeat: no-repeat;

    background-image: url(../img/about/card-lt.jpg),
        url(../img/about/card-rb.jpg);

    background-position:
        left top,
        right bottom;

    background-size:
        136px 138px,
        117px 11ppx;
}

.aboutUs .tab-content>.list {
    display: none;
}

.aboutUs .tab-content>.list[active] {
    display: block;
}

.aboutUs .tab-content ul {
    display: flex;
    justify-content: space-between;
    text-align: center;
    padding-left: 20px;
    /* margin-bottom: 80px; */
}

/*关于维度云 ---------------------------------------- */

.aboutUs .tab-content>.list.gywdy {
    margin-bottom: 50px;
}

.aboutUs .tab-content>.list.gywdy ul {
    flex-direction: column;
    box-sizing: border-box;
    padding: 0 50px;
}

.aboutUs .tab-content>.list.gywdy ul li {
    text-align: left;
    margin-bottom: 30px;
}

.aboutUs .tab-content>.list.gywdy ul li:last-of-type {
    margin-right: 0;
    margin-bottom: 0;
}

.aboutUs .tab-content>.list.gywdy ul li h3 {
    color: #1f75d5;
    margin-bottom: 10px;
}

/*我们的优势 ---------------------------------------- */
.aboutUs .tab-content>.list.wmdys {
    margin-bottom: 100px;
}

.aboutUs .tab-content>.list.wmdys .wmdys-title {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #333;
    margin-bottom: 70px;
}

.aboutUs .tab-content>.list.wmdys .wmdys-title h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.aboutUs .tab-content>.list.wmdys .wmdys-title p {
    font-size: 16px;
}

.aboutUs .tab-content>.list.wmdys .wmdys-title p:before {
    content: "————";
    margin-right: 5px;

}

.aboutUs .tab-content>.list.wmdys .wmdys-title p:after {
    content: "————";
    margin-left: 5px;

}

.aboutUs .tab-content>.list.wmdys ul {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.aboutUs .tab-content>.list.wmdys ul:after {
    content: "";
    height: 3px;
    background-color: #1f75d5;
    position: absolute;
    top: 50%;
    width: calc(100% - 100px);
    left: 50px;

}

.aboutUs .tab-content>.list.wmdys ul li {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 20px;
}

.aboutUs .tab-content>.list.wmdys ul li h3 {
    position: relative;
    color: white;
    font-weight: normal;
    transform: translateY(-25px);
}

.aboutUs .tab-content>.list.wmdys ul li p {
    transform: translateY(40px);
    white-space: nowrap;
}

.aboutUs .tab-content>.list.wmdys ul li h3::after {
    content: '';
    width: 128px;
    height: 87px;
    /*背景图片*/
    background: transparent url(../img/tip.png) no-repeat center / contain;
    position: absolute;
    bottom: -50px;
    left: -28px;
    z-index: -1;

}

/*我们能做什么 ---------------------------------------- */
.aboutUs .tab-content>.list.wmnzsm ul li {
    width: 33.3%;
    box-sizing: border-box;
    padding: 20px 40px;

}

.aboutUs .tab-content>.list.wmnzsm ul li img {
    margin-bottom: 20px;
}

.aboutUs .tab-content>.list.wmnzsm ul li h3 {
    font-size: 22px;
    font-weight: bold;
    color: black;
    margin-bottom: 20px;
}

.aboutUs .tab-content>.list.wmnzsm ul li p {
    line-height: 1.8;
    color: #666;
    font-size: 16px;
}

/* lxwm---------------------------------------- */
.lxwm {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 100px;
    width: 100%;
    height: 800px;
    background: transparent url(../img/map.jpg) no-repeat center / cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.lxwm .sg-sectioin-title .short-line {
    margin-bottom: 10px;
}

.lxwm .sg-sectioin-title {
    margin-top: 0;
}

.lxwm .contact-pop {
    width: 700px;
    height: 600px;
    background-color: white;
    box-sizing: border-box;
    padding: 40px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.lxwm .contact-pop hr {
    box-sizing: border-box;
    border: none;
    border-bottom: 1px solid #eee;
    margin-top: 20px;
    margin-bottom: 20px;
}

.lxwm .contact-pop .contact-list ul li {
    display: flex;
    margin-bottom: 5px;
}

.lxwm .contact-pop .contact-list ul li div {
    font-size: 14px;
    margin-right: 30px;
    color: gray;
}

.lxwm .contact-pop .contact-list ul li div label {
    font-weight: bold;
}

.lxwm .contact-pop .form ul li {
    margin-bottom: 20px;
}

.lxwm .contact-pop .form ul li:nth-of-type(2) {
    align-items: center;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.lxwm .contact-pop .form ul li:nth-of-type(2)>div {
    width: 100%;
    display: inline-block;
}

.lxwm .contact-pop .form ul li:nth-of-type(2)>div:first-of-type {
    width: calc(40%);
    margin-right: 20px;
}

.lxwm .contact-pop .form ul li p {
    font-size: 14px;
    color: #1f75d5;
    margin-bottom: 5px;

}

.lxwm .contact-pop .submit button {
    width: 70px;
    margin: 0 auto;
    margin-top: 10px;
}

/* 底部信息---------------------------------------- */
.sg-foot {
    width: 100%;
    /* height: 100px; */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
    padding: 20px 0;
}

.sg-foot .text {
    color: #666;
    font-size: 14px;
}

.sg-foot .qrcode {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.sg-foot .qrcode li {
    display: flex;
    flex-direction: column;
    text-align: center;
    box-sizing: border-box;
    padding: 0 20px;
}

.sg-foot .qrcode li img {
    width: 150px;
}

.sg-foot .qrcode li p {
    color: #666;
    font-size: 14px;
    margin-top: 10px;
}

/* ---------------------------------------- */
.icp {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
    margin-top: 10px;

}

.icp li {
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.icp li img {
    margin-right: 5px;
}

.icp li a {
    color: #1f75d5;
    text-decoration: none;
    box-sizing: border-box;
    border-bottom: 1px solid #1f75d500;
    transition: .382s ease;
}

.icp li a:hover {
    color: #409EFF;
    border-bottom-color: #409EFF;
}