.hScroll {
    height: calc(100vh - 115px);
    height: 100vh;
}
.content {
    max-width: 1100px;
    margin: 0 auto;
}
.content .f-dc-jcc-alc {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* 主体颜色 */
:root {
    --background-color: #536dfe;
    --background-deep-color: #4461ff;
    --red-color: #e43a20;
    --white-color: #ffffff;
    --bgColor: #F4F4F4;
    --text-deepAll: #1b1b1b;
    --text-deep: #494949;
    --text-shallow: #727272;
    --text-color-grey: #999999;
    --deep-background: #f9f9f9;
    --table-border-color: #e8e8e8;
    --table-background: #fafafa;
    --table-hover-background: #f2f2f2;
}

body::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background: #e4e4e4;
}

body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: var(--background-color);
    background-image: -webkit-linear-gradient(45deg, hsla(0, 0%, 100%, .2) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, .2) 0, hsla(0, 0%, 100%, .2) 75%, transparent 0, transparent);
}

body {
    background-color: var(--bgColor);
}

a:hover {
    color: var(--background-color);
}

.btn {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    color: #fff;
    background: var(--background-color);
}
.btn:hover {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    color: #fff;
    background: var(--red-color);
}
/* 背景颜色 */
.bgColorWhite {
    background-color: white;
}

.bgColorDefault {
    /* background-color: var(--bgColor); */
    background-color: var(--deep-background);
}

.bgColorPrimary {
    background-color: var(--white-color);
    background-image: -webkit-linear-gradient(30deg, var(--background-color) 25%, var(--background-deep-color) 75%);
    position: relative;
    overflow: hidden;
}

.bgColorPrimary::after {
    position: absolute;
    z-index: -1;
    top: -80px;
    left: -58px;
    content: '';
    width: 0;
    height: 0;
    /* transform: rotateX(30deg); */
    border: 1020px solid transparent;
    border-right: 630px solid var(--white-color);
    background-color: var(--background-color);
}

.bgColorPrimary .hd h1 {
    color: #fff;
}
.bgColorPrimary .hd h1 span {
    color: #fff;
}

#loading {
    background-color: var(--background-color);
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 999999;
    margin-top: 0px;
    top: 0px;
}

#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
}

#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 60px;
    width: 60px;
    margin-top: -30px;
    margin-left: -30px;
    animation: loading-center-absolute 1s infinite;

}

.object {
    width: 20px;
    height: 20px;
    background-color: #FFF;
    float: left;
    border-radius: 50% 50% 50% 50%;
    margin-right: 20px;
    margin-bottom: 20px;
}

.object:nth-child(2n+0) {
    margin-right: 0px;

}

#object_one {
    animation: object_one 1s infinite;
}

#object_two {
    animation: object_two 1s infinite;
}

#object_three {
    animation: object_three 1s infinite;
}

#object_four {
    animation: object_four 1s infinite;
}

@keyframes loading-center-absolute {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes object_one {
    50% {
        transform: translate(20px, 20px);
    }
}

@keyframes object_two {
    50% {
        transform: translate(-20px, 20px);
    }
}

@keyframes object_three {
    50% {
        transform: translate(20px, -20px);
    }
}

@keyframes object_four {
    50% {
        transform: translate(-20px, -20px);
    }
}

/* 头 */
header {
    position: sticky;
    top: 0;
    z-index: 99999;
    transition: all .3s;
    box-shadow: 1px 1px 3px -1px var(--text-color-grey);
}
/* 标题文字 */
.textTop {
    height: 35px;
    background-color: #333;
    color: #FFF;
    line-height: 35px;
    font-size: 16px;
    cursor: pointer;
}

/* 导航栏 */
nav {
    width: 100%;
    height: 80px;
    line-height: 80px;
    background-color: #FFF;
}

nav .content {
    display: flex;
    justify-content: space-between;
}

nav .content .nav {
    position: relative;
    display: flex;
}

nav .content .logo {
    font-size: 30px;
    display: flex;
    align-items: center;
}
nav .content .logo img {
    display: block;
    height: 40px;
}

nav .content ul {
    display: flex;
    font-size: 18px;
}

nav .content ul li {
    overflow: hidden;
    position: relative;
    margin: 0 15px;
    cursor: pointer;
    transition: all .2s;
}

nav .content ul li:hover {
    color: var(--background-color);
}

nav .content ul li::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    border-radius: 6px;
    background-color: var(--background-color);
    transform: translateX(-100%);
    transition: all .3s;
}

nav .content ul li:hover::after {
    transform: translateX(0);
}
/* 当前页面菜单状态 */
nav .content ul li.on a {
    color: var(--background-color)!important;
}
nav .content ul li.on::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    border-radius: 6px;
    background-color: var(--background-color);
    transform: translateX(0);
    transition: all .3s;
}
nav .content ul li.on:hover::after {
    transform: translateX(0);
}
/* 轮播图 */
.banner .swiper-slide {
    position: relative;
    width: 100vw;
    height: calc(100vh - 115px);
}

.banner .swiper-slide::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    /* background: rgba(0,0,0,.09); */
}

.banner .swiper-slide a img {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    transition: all .5s;
}

.banner .swiper-slide img:hover {
    transform: scale(1.1);
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper {
    margin-left: auto;
    margin-right: auto;
}

/* 轮播图文字部分 */
.swiper-wrapper {
    position: relative;
}

.swiper-slide .bannerText {
    position: absolute;
    z-index: 10;
}

.swiper-slide .bannerText>* {
    /* color: #FFF; */
    color: #494949;
    text-align: left;
}

.swiper-slide .bannerText h1 {
    width: 70vw;
    margin-bottom: 30px;
    font-size: 50px;
}

/* 打字机 */
.swiper-slide .bannerText .typewriter {
    width: 66vw;
}
.swiper-slide .bannerText .typewriter span.mark {
    border-right: 2px solid white;
    animation: blink 0.6s step-end infinite;
}

@keyframes blink {
    from {
        border-color: transparent;
    }
    50% {
        border-color: white;
    }
    to {
        border-color: transparent;
    }
}

.swiper-slide .bannerText p:nth-child(1) {
    font-size: 20px;
}

.swiper-slide .bannerText p:last-child {
    display: flex;
    align-items: center;
    margin-top: 30px;
}
.swiper-slide .bannerText p:last-child > .invoice-input {
    height: 45px;
    width: 250px;
    padding: 0 10px;
    font-size: 18px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.swiper-slide .bannerText p:last-child > a {
    color: #fff;
    display: inline-block;
    box-sizing: border-box;
    width: 160px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    background-color: var(--background-color);
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    cursor: pointer;
    transition: all .1s;
    overflow: hidden;
    position: relative;
}
.swiper-slide .bannerText p:last-child > a:hover {
    padding-top: 45px;
    transition: all .5s;
}
.swiper-slide .bannerText p:last-child > a::after {
    opacity: 0;
    position: absolute;
    content: '立即免费红冲';
    color: var(--background-color);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .5s;
}
.swiper-slide .bannerText p:last-child > a:hover::after {
    background: var(--red-color);
    opacity: 1;
    color: #fff;
}
/* 关于我们 */
.aboutus {
    display: flex;
    flex-wrap: wrap;
    background-color: #FFF;
}

.aboutus .hd {
    display: none;
}

.aboutus .abHd {
    flex: 1;

    display: flex;
    justify-content: center;
    align-items: center;
}

.aboutus .abHd h1 {
    position: relative;
    text-align: center;
    font-size: 50px;
    color: var(--background-color);
    line-height: 340px;
}

.aboutus .abHd h1 span {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: #000;
    opacity: .1;
}

.aboutus .adBd {
    flex: 1;
    padding: 60px 50px 60px 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aboutus .adBd h1 {
    font-size: 22px;
    margin-top: 10px;
}

.aboutus .adBd h1::after {
    content: '';
    display: block;
    user-select: none;
    width: 50px;
    height: 2px;
    margin: 10px 0;
    background-color: var(--background-color);
    border-radius: 5px;
    box-shadow: 1px 1px 3px -1px var(--background-color);
}

.aboutus .adBd p {
    font-size: 16px;
}

.aboutus .adBd p + h1 {
    margin-top: 38px;
}

/* 通用hd */
.hd {
    margin: 0 auto;
    text-align: center;
}

.hd h1 {
    font-size: 32px;
    position: relative;
    padding: 35px 0 60px;
    color: var(--background-color);
}

.hd h1::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    margin: 10px auto;
    background-color: var(--background-color);
    border-radius: 5px;
    box-shadow: 1px 1px 3px -1px var(--background-color);
}

.hd h1 span {
    font-size: 38px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 15px;
    color: #000;
    opacity: .1;
    user-select: none;
}

/* 服务流程 */
.service {
    padding-top: 30px;
    padding-bottom: 60px;
}

.service .seBd {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    position: relative;
}

/* .service .seBd::after {
    position: absolute;
    content: '>';
    width: 50%;
    height: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 10px solid var(--background-color);
    border-radius: 10px;
    z-index: 0;
    font-size: 5em;

} */

/* 蓝色配色 */
.service .seBd::after {
    border: 10px solid var(--text-color-grey);
}

.service .seBd .seBdBox {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    width: 330px;
    height: 180px;
    background-color: #FFF;
    padding: 20px;
    border-bottom: 5px solid var(--background-color);
    box-shadow: 0px 0px 8px rgb(0 0 0 / 6%);
    border-radius: 6px;
    /* overflow: hidden; */
}
.service .seBd .seBdBox:nth-child(1)  {
    order: 1;
}
.service .seBd .seBdBox:nth-child(2)  {
    order: 2;
}
.service .seBd .seBdBox:nth-child(3)  {
    order: 3;
}
.service .seBd .seBdBox:nth-child(4)  {
    order: 4;
}
.service .seBd .seBdBox:nth-child(5)  {
    order: 5;
}
.service .seBd .seBdBox:nth-child(6)  {
    order: 6;
}
/* 蓝色卡片样式 */
.service .seBd .seBdBox {
    width: 280px;
    background-color: var(--background-color);
    border: none;
    border-bottom: none;
}
/* 流程箭头 */
.service .seBd .seBdBox.arrow::after {
    position: absolute;
    z-index: 999;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 3px;
    border-right: 4px solid var(--background-color);
    border-bottom: 4px solid var(--text-color-grey);
}
/* 向下箭头 */
.service .seBd .seBdBox.arrow.b::after {
    transform: rotate(45deg) translateX(-50%);
    bottom: -25px;
    left: 50%;
}
/* 向下箭头 */
.service .seBd .seBdBox.arrow.t::after {
    transform: rotate(-135deg) translateX(calc(-50% + 25px));
    top: -7px;
    left: 50%;
}
/* 向左箭头 */
.service .seBd .seBdBox.arrow.l::after {
    transform: rotate(135deg) translateY(calc(-50% + 12.5px));
    left: -17px;
    top: 50%;
}
/* 向右箭头 */
.service .seBd .seBdBox.arrow.r::after {
    transform: rotate(-45deg) translateY(calc(-50% + 12.5px));
    right: -17px;
    top: 50%;
}

/* .service .seBd .seBdBox.b::after {
    position: absolute;
    z-index: 999;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 5px;
    border-right: 10px solid var(--text-color-grey);
    border-bottom: 10px solid var(--text-color-grey);
    transform: rotate(45deg) translateX(-50%);
    bottom: -25px;
    left: 50%;
} */
.service .seBd .seBdBox .seBdBoxIcon span {
    display: block;
    /* width: 70px;
    height: 70px; */
    width: 100%;
    height: 100%;
    /* background-color: var(--background-color); */
    border-radius: 50%;
    opacity: .2;
}

.service .seBd .seBdBox .seBdBoxIcon {
    /* position: relative; */
    position: absolute;
    width: 100px;
    height: 100px;
    left: -20px;
    top: -60px;
}

.service .seBd .seBdBox .seBdBoxIcon i {
    /* position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    font-size: 36px;
    line-height: 70px;
    font-weight: 500;
    color: var(--background-color); */
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    font-size: 117px;
    font-weight: 500;
    opacity: .08;
}
/* 蓝色版本 */
.service .seBd .seBdBox .seBdBoxIcon i {
    opacity: 0.09;
    color: var(--white-color);
}

.service .seBd .seBdBox .seBdBoxText {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
}
/* 蓝色版本 */
.service .seBd .seBdBox .seBdBoxText {
    color: var(--white-color);
}
.service .seBd .seBdBox .seBdBoxText h1 {
    margin: 5px 0;
    font-size: 22px;
}

.service .seBd .seBdBox .seBdBoxText p {
    font-size: 16px;
    font-weight: 200;
}

/* 案例赏析 */
.case {
    padding-top: 25px;
    padding-bottom: 55px;
}

.case .caseBd {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-around; */
    justify-content: space-evenly;
    gap: 20px;
}

.case .caseBd .caseBdBig {
    position: relative;
    overflow: hidden;
    width: 510px;
    height: 240px;
    border-radius: 4px;
    overflow: hidden;
}

.case .caseBd .caseBdBig img {
    width: 100%;
    height: 100%;
    transition: all .5s;
}

/* 方案遮罩 */
.case .caseBd .caseBdBigMask {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, .4); */
    background: var(--white-color);
    opacity: 0.8;
}

.case .caseBd .caseBdBigMask .caseBdBigMaskText {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateX(0);
    width: 75%;
    /* height: 58%; */
    /* background-color: rgba(0, 0, 0, .6); */
    margin: auto;
    padding: 20px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 1;
}

.case .caseBd .caseBdBigMask .caseBdBigMaskText h1 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-deepAll);
    /* font-weight: 400; */
}

.case .caseBd .caseBdBigMask .caseBdBigMaskText p {
    width: 80%;
    /* color: rgba(255, 255, 255, .6); */
    color: var(--text-deepAll);
    font-size: 16px;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* 这里是超出几行省略 */
    overflow: hidden;
    font-weight: 200;
}

.case .caseBd .caseBdBigMask .caseBdBigMaskText a {
    position: absolute;
    /* top: 52px; */
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    font-size: 20px;
    color: var(--text-deepAll);
}

/* 案例赏析鼠标悬停状态 */
@keyframes move {
    0% {
        /* transform: translateX(0); */
        opacity: 1;
    }

    100% {
        /* transform: translateX(-99px); */
        opacity: 0;
    }
}

.case .caseBd .caseBdBig:hover img {
    transform: scale(1.1);
}
.case .caseBd .caseBdBig:hover .caseBdBigMask .caseBdBigMaskText {
    animation: move .3s ease-out forwards;
}
.case .caseBd .caseBdBig:hover .caseBdBigMask {
    /* display: block; */
    /* background: transparent; */
    opacity: 0;
    animation: move .3s ease-out forwards;
}

/* 核心成员 */
.member {
    padding-top: 35px;
    padding-bottom: 35px;
}

.member .memberBd {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    cursor: pointer;
}

.member .memberBd .memberBdBox {
    overflow: hidden;
    position: relative;
    width: 310px;
    height: 450px;
    background-color: #FFF;
    /* box-shadow: 0px 0px 24px rgb(0 0 0 / 20%); */
    box-shadow: 0px 0px 8px rgb(0 0 0 / 6%);
    border-radius: 6px;
    margin-bottom: 30px;
    transition: all .5s;
}

/* 遮罩 */
.member .memberBd .memberBdBoxMask {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .4);
    width: 310px;
    height: 310px;
    padding: 25px;
    transform: rotate(160deg);
    /* 设置中心点为左下角 */
    transform-origin: bottom right;
    /* 变换效果 */
    transition: all .5s;
}

.member .memberBd .memberBdBoxMask h2:nth-child(1) {
    margin: 30px 5px 15px;
}

.member .memberBd .memberBdBoxMask h2 {
    font-size: 18px;
    color: #FFF;
    margin: 0 5px 15px;
}

.member .memberBd .memberBdBoxMask>h2>span {
    font-size: 18px;
    color: #FFF;
    margin-right: 10px;
}

.member .memberBd .memberBdBoxMask span {
    font-size: 16px;
    color: #FFF;
    opacity: .9;
}

/* 主体内容 */
.member .memberBd .memberBdBox img {
    /* width: 100%;
    height: auto; */
    width: 70%;
    height: auto;
    border-radius: 50%;
    margin: 15%;
}

.member .memberBd .memberBdBox h1 {
    font-size: 34px;
    text-align: center;
    margin: 10px auto;
    color: var(--text-deep);
}

.member .memberBd .memberBdBox p {
    font-size: 20px;
    text-align: center;
    color: var(--text-shallow);
}

.member .memberBd .memberBdBox i {
    position: absolute;
    right: 20px;
    bottom: 10px;
    font-size: 88px;
    font-weight: bold;
    font-style: italic;
    opacity: .1;
    user-select: none;
}

.member .memberBd .memberBdBox:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0px 0px 36px rgb(0 0 0 / 10%);
}

.member .memberBd .memberBdBox:hover .memberBdBoxMask {
    transform: rotate(0deg);

}

.member .memberBd .memberBdBox:hover i {
    color: var(--background-color);
}

/* 公司新闻 */
.navlist {
    padding-top: 30px;
    padding-bottom: 30px;
}

.navlist .navlistBd {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.navlist .navlistBd .navlistBdBox {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    width: 500px;
    height: 150px;
    background-color: var(--deep-background);
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 4px;
}

.navlist .navlistBd .navlistBdBox::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 3px;
    background-color: var(--background-color);
    transform: translateX(-100%);
    transition: all .3s;
}

.navlist .navlistBd .navlistBdBoxTime {
    flex: 1;
}

.navlist .navlistBd .navlistBdBoxTitle {
    flex: 2;
    transition: all .3s;
}

.navlist .navlistBd .navlistBdBoxTime h1 {
    position: relative;
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-color-grey);
}

.navlist .navlistBd .navlistBdBoxTime h1::after {
    content: '';
    position: absolute;
    left: 99px;
    /* top: 22px; */
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 1px;
    background-color: var(--text-color-grey);
    transition: all .3s;
}

.navlist .navlistBd .navlistBdBoxTime span {
    font-size: 30px;
    color: var(--text-color-grey);
    transition: all .3s;
    cursor: pointer;
}

.navlist .navlistBd .navlistBdBoxTitle {
    overflow: hidden;
    text-overflow: ellipsis;
}

.navlist .navlistBd .navlistBdBoxTitle h1 {
    font-size: 24px;
    color: #333;
    font-weight: 400;
    margin-bottom: 10px;
}

.navlist .navlistBd .navlistBdBoxTitle p {
    font-size: 16px;
    font-weight: 200;
}

/* 公司新闻悬停动画 */
.navlist .navlistBd .navlistBdBox:hover::after {
    transform: translateX(0);
}

.navlist .navlistBd .navlistBdBox:hover .navlistBdBoxTime h1 {
    color: var(--background-color);
    opacity: 0.7;
}

.navlist .navlistBd .navlistBdBox:hover .navlistBdBoxTime span {
    padding: 6px 8px;
    color: #FFF;
    border-radius: 3px;
    background-color: var(--background-color);
}

.navlist .navlistBd .navlistBdBox:hover .navlistBdBoxTime h1::after {
    width: 50px;
}

.navlist .navlistBd .navlistBdBox:hover .navlistBdBoxTitle {
    transform: translateX(16px);
}

/* 查看更多 */
.Seemore {
    display: block;
    width: 180px;
    height: 50px;
    line-height: 50px;
    margin: auto;
    text-align: center;
    background-color: var(--deep-background);
    border-radius: 6px;
    color: var(--text-deep);
    font-size: 18px;
}

/* 客户 */
.cooperatinglist {
    padding-top: 30px;
    padding-bottom: 30px;
}

.cooperatinglist .cooperatinglistBd {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.cooperatinglist .cooperatinglistBd .cooperatinglistBdBox {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* width: 150px;
    height: 100px; */
    width: 120px;
    height: 85px;
    background-color: var(--deep-background);
    background-color: var(--white-color);
    /* margin-bottom: 20px;
    padding: 20px; */
    border-radius: 4px;
}

.cooperatinglist .cooperatinglistBd .cooperatinglistBdBox::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 3px;
    background-color: var(--background-color);
    transform: translateX(-100%);
    transition: all .3s;
}

.cooperatinglist .cooperatinglistBd .cooperatinglistBdBoxTime {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cooperatinglist .cooperatinglistBd .cooperatinglistBdBoxTime img {
    width: 100%;
    height: auto;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cooperatinglist .cooperatinglistBd .cooperatinglistBdBoxTitle {
    flex: 2;
    transition: all .3s;
}

.cooperatinglist .cooperatinglistBd .cooperatinglistBdBoxTime h1 {
    display: none;
    position: relative;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-color-grey);
}

.cooperatinglist .cooperatinglistBd .cooperatinglistBdBoxTime h1 {
    position: relative;
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-color-grey);
}

.cooperatinglist .cooperatinglistBd .cooperatinglistBdBoxTime span {
    font-size: 30px;
    color: var(--text-color-grey);
    transition: all .3s;
    cursor: pointer;
}

.cooperatinglist .cooperatinglistBd .cooperatinglistBdBoxTitle {
    overflow: hidden;
    text-overflow: ellipsis;
}

.cooperatinglist .cooperatinglistBd .cooperatinglistBdBoxTitle h1 {
    font-size: 24px;
    color: #333;
    font-weight: 400;
    margin-bottom: 10px;
}

.cooperatinglist .cooperatinglistBd .cooperatinglistBdBoxTitle p {
    font-size: 16px;
}

/* 合作伙伴悬停动画 */
.cooperatinglist .cooperatinglistBd .cooperatinglistBdBox:hover::after {
    transform: translateX(0);
}

.cooperatinglist .cooperatinglistBd .cooperatinglistBdBox:hover .cooperatinglistBdBoxTime h1 {
    color: var(--background-color);
    opacity: 0.7;
}

.cooperatinglist .cooperatinglistBd .cooperatinglistBdBox:hover .cooperatinglistBdBoxTime span {
    padding: 6px 8px;
    color: #FFF;
    border-radius: 3px;
    background-color: var(--background-color);
}

.cooperatinglist .cooperatinglistBd .cooperatinglistBdBox:hover .cooperatinglistBdBoxTime h1::after {
    width: 50px;
}

.cooperatinglist .cooperatinglistBd .cooperatinglistBdBox:hover .cooperatinglistBdBoxTitle {
    transform: translateX(16px);
}

/* 查看更多 */
.Seemore {
    display: block;
    width: 180px;
    height: 50px;
    line-height: 50px;
    margin: auto;
    text-align: center;
    background-color: var(--deep-background);
    border-radius: 6px;
    color: var(--text-deep);
    font-size: 18px;
}

/* 联系我们 */
.contactus {
    padding-top: 30px;
    padding-bottom: 30px;
}
.cuBd {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    gap: 1em;
}

/* 图 */
.chart {
    position: relative;
    overflow: hidden;
}

.chart img {
    height: 100%;
	width: -webkit-fill-available;
}

.chartText {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    flex-direction: column;
    color: #fff;
    font-size: 1.5em;
    gap: 1em;
}

.chartText h1 {
    font-size: 38px;
    color: #FFF;
    font-weight: 400;
}

.chartText a {
    display: inline-block;
    border: 2px solid #FFF;
    text-align: center;
    padding: 2px 7px;
    margin: 0 0.5em;
    font-size: 14px;
    color: #FFF;
}

/* 底部 */
footer {
    background-color: #333;
}

.footer {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
}

.footer .forHelp {
    display: flex;
    flex-direction: column;
    gap: 1em;
    flex: 1;
}

.footer .forHelp dl dt {
    font-size: 16px;
    color: #FFF;
}

.footer .forHelp dl dd {
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    row-gap: 0;
}

.footer .forDetails {
    display: flex;
    width: 285px;
}

.footer .forDetails dl {
    line-height: 1.8;
}

.footer .forDetails i {
    font-size: 18px;
    vertical-align: sub;
}

.footer .forDetails dl dt {
    font-size: 16px;
    color: #FFF;
}

.footer .forDetails dl dd {
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.footer .forDetails dl dd div {
    line-height: normal;
    display: flex;
    gap: 0.5em;
}
.footer .forDetails dl dd img {
    margin: 10px 20px 10px 0;
}

.FooterSeparate {
    margin: 0 30px;
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.FooterSeparate .content {
    display: flex;
    align-items: center;
}

.footerLogo {
    width: 150px;
    text-align: center;
}

.FooterSeparate .footerLogo h1 {
    font-size: 45px;
    color: #FFF;
    font-weight: 500;
    opacity: 0.3;
}

.FooterSeparate .footerLogo h1 img {
    height: 1.8rem;
}

.FooterSeparate .footrCopyright p {
    font-size: 14px;
}

.FooterSeparate .footrCopyright a {
    font-size: 14px;
}

/* goBack制作 */
.goBack {
    display: none;
    position: fixed;
    right: 30px;
    bottom: 150px;
    width: 35px;
    height: 40px;
    border-radius: 4px;
    background-color: var(--background-color);
    cursor: pointer;
}
.goBack span {
    display: block;
    font-size: 26px;
    color: #fff;
    text-align: center;
    margin: 0 auto;
}

/* 面包屑 */
.crumbs {
    margin: 15px auto;
    font-size: 16px;
    vertical-align: middle;
}

.crumbs > * {
    font-size: 16px;
}

.crumbs span {
    font-size: 20px;
    padding-right: 10px;
}

/* 网页适配 */
@media screen and (max-width: 1100px) {
    .footer {
        flex-direction: column;
        gap: 1em;
    }
    .footer .forDetails  {
        width: auto;
    }
    .content {
        height: auto;
    }
    .hScroll {
        height: auto;
    }
    .chart .chartText p {
        padding: 0 1em;
        font-size: 0.8em;
    }
    /* 取消移动端长按高亮背景显示 这里设置为透明 */
    * {
        -webkit-tap-highlight-color: transparent;
    }
    .footer .forHelp dl {
        line-height: 1.8;
    }

    /* 单独设置服务卡片宽度 */
    /* .service .seBd .seBdBox {
        width: 540px;
    } */

    /*在移动端浏览器默认的外观在iOS上加上这个属性才能给按钮和输入框自定义样式*/
    input {
        -webkit-appearance: none;
    }

    /* 禁用长按页面时弹出的菜单 */
    img,a {
        -webkit-touch-callout: none;
    }
    
    nav {
        height: 70px;
    }
    nav .content {
        position: relative;
        height: 100%;
    }
    nav .content .nav {
        display: none;
    }

    /* logo */
    nav .content .logo {
        height: 100%;
    }
    nav .content .logo img {
        height: 30px;
    }

    /* 汉堡按钮 */
    .burger {
        /* position: absolute;
        top: 70px;
        right: 30px;
        display: block;
        width: 20px;
        height: 6px;
        z-index: 999;
        cursor: pointer; */
        position: absolute;
        top: 35px;
        right: 30px;
        display: block;
        width: 20px;
        height: 6px;
        z-index: 999;
        cursor: pointer;
    }

    .burger .top-line,
    .burger .middle-line,
    .burger .bottom-line {
        width: 25px;
        height: 2px;
        background-color: var(--text-deep);
    }

    .burger .top-line {
        position: absolute;
        top: -6px;
    }

    .burger .middle-line {
        width: 15px;
    }

    .burger .bottom-line {
        position: absolute;
        top: 6px;
    }

    /* 被点击以后的样式 */
    header.open .top-line,
    header.open .middle-line,
    header.open .bottom-line {
        transition: .4s ease;
    }

    /* 第一条线 */
    header.open .top-line {
        transform: rotate(45deg) translate(3px, 5px);
    }

    /* 第二条线 */
    header.open .middle-line {
        transform: translateX(5px);
        opacity: 0;
    }

    /* 第三条线 */
    header.open .bottom-line {
        transform: rotate(-45deg) translate(3px, -5px);
    }

    /* nav样式 */
    header.open nav .content .nav {
        position: relative;
        display: block;
        z-index: 999;
        width: 100vw;
        /* height: calc(100vh - 92px); */
        /* margin-top: -1px; */
        margin-top: 1px;
        background-color: #FFF;
        /* 下滑效果 */
        animation: slideDown .6s ease-in-out forwards;
    }

    @keyframes slideDown {
        from {
            width: 0;
            height: 0;
        }

        to {
            height: 100vh;
            padding-left: 20px;
            opacity: 1;
        }
    }

    nav .content {
        display: block;
    }

    header.open nav .content .nav ul {
        display: flex;
        flex-direction: column;
    }

    header.open nav .content .nav>* {
        font-size: 18px;
        color: var(--text-shallow);
        opacity: 0;
        animation: showMenu 0.5s linear forwards 0.4s;
    }

    @keyframes showMenu {
        from {
            opacity: 0;
            transform: translateY(-1vh);
        }

        to {
            opacity: 1;
        }
    }

    /* 文字适应 */
    .textTop p {
        font-size: 16px;
        margin: 0 20px;
    }



    nav .content .logo {
        font-size: 24px;
        margin: 0 20px;
    }

    .swiper-slide .bannerText {
        margin: 0 26px;
    }

    .swiper-slide .bannerText h1 {
        font-size: 40px;
    }

    /* 案例赏析 */
    .case .caseBd .caseBdBigMask .caseBdBigMaskText {
        width: 80%;
        height: 66%;
    }

    /* .case .caseBd .caseBdBigMask .caseBdBigMaskText a {
        top: 38px;
    } */

    /* 文字说明图 */
    .chartText {
        flex-direction: column;
        gap: 1em;
    }

    .chartText h1 {
        font-size: 30px;
    }

    .chartText a {
        margin: 0 16px;
        line-height: 33px;
        font-size: 18px;
    }
}

@media screen and (min-width: 835px) and (max-width: 1099px) {
    .service .seBd .seBdBox:nth-child(3)  {
        order: 4;
    }
    .service .seBd .seBdBox:nth-child(4)  {
        order: 3;
    }
    /* 流程箭头 */
    .service .seBd .seBdBox.arrow.w835to1099t::after  {
        transform: rotate(-135deg) translateX(calc(-50% + 25px));
        top: -7px;
        left: 50%;
    }
    .service .seBd .seBdBox.arrow.r.w835to1099b::after  {
        transform: rotate(45deg) translateX(-50%);
        top: calc(100% + 12.5px);
        left: 50%;
    }
}

@media screen and (max-width: 834px) {
    .service .seBd .seBdBox:nth-child(4)  {
        order: 6;
    }
    .service .seBd .seBdBox:nth-child(6)  {
        order: 4;
    }
    .service .seBd .seBdBox.arrow.r::after {
        transform: rotate(45deg) translateX(-50%);
        top: calc(100% + 12.5px);
        left: 50%;
    }
    .service .seBd .seBdBox.arrow.l::after {
        transform: rotate(45deg) translateX(-50%);
        top: calc(100% + 12.5px);
        left: 50%;
    }
    .service .seBd .seBdBox:nth-child(4)::after {
        display: none;
    }
}

@media screen and (min-width: 541px) and (max-width: 1099px) {
    .content {
        height: auto;
    }
    .service .seBd .seBdBox {
        width: 400px;
    }
}

@media screen and (max-width: 540px) {
    @import url(../css/normalize.css);

    .content {
        height: auto;
    }
    /* 关于我们Hd变化 */
    .aboutus .abHd h1 {
        font-size: 32px;
        line-height: 100px;
        margin-top: 35px;
    }
    
    .aboutus .abHd h1 span {
        top: -15px;
    }

    .swiper-slide .bannerText p:last-child {
        /* display: none!important; */
        line-height: 40px;
        font-size: 16px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: normal;
    }

    .swiper-slide .bannerText p:last-child > .invoice-input,.swiper-slide .bannerText p:last-child > a {
        width: 100%;
    }

    .case .caseBd .caseBdBig {
        height: auto;
        margin: 10px;
    }
    .chartText {
        flex-direction: column;
        gap: 0.5em;
        align-items: start;
    }

    /* 汉堡按钮位置 */
    .burger {
        top: 33px;
    }

    /* 小屏宽度下nav重载 */
    .textTop {
        height: 28px;
        line-height: 28px;
    }

    .textTop p {
        font-size: 14px;
    }

    nav {
        height: 66px;
        line-height: 66px;
    }

    /* 轮播图高度重置 */
    .banner .swiper-slide {
        height: calc(100vh - 94px);
    }

    /* 轮播图边距重置 */
    /* .swiper-slide .bannerText {
        margin: 0 26px;
    } */
    .swiper-slide .bannerText h1 {
        font-size: 26px;
    }

    .aboutus {
        flex-direction: column;
    }

    .aboutus .hd {
        display: block;
    }

     /* 单独设置服务卡片宽度 */
    .service .seBd .seBdBox {
        width: 80%;
    }

    /* 文字说明图 */
    .chartText h1 {
        font-size: 18px;
    }

    .chartText a {
        font-size: 16px;
        margin: 0 10px;
        line-height: 30px;
    }

    .navlist .navlistBd .navlistBdBoxTime h1::after {
        display: none;
    }

    .cooperatinglist .cooperatinglistBd .cooperatinglistBdBoxTime h1::after {
        display: none;
    }

    /* 底部 */
    .footer {
        flex-wrap: wrap;
        display: none;
    }

    .footer .forHelp {
        flex-direction: column;
    }
    
    .FooterSeparate .content h1 {
        display: none;
    }

    .footerLogo {
        width: 0;
    }
    
    .footrCopyright {
        margin: auto;
        padding: 1em;
    }

    /* 公司新闻 */

    .navlist .navlistBd .navlistBdBox {
        height: 125px;
        margin: 10px;
    }

    .navlist .navlistBd .navlistBdBoxTime h1,
    .navlist .navlistBd .navlistBdBoxTime span {
        font-size: 26px;
    }

    .navlist .navlistBd .navlistBdBoxTitle h1 {
        font-size: 20px;
    }

    .navlist .navlistBd .navlistBdBoxTitle p {
        font-size: 16px;
    }

    /* 客户 */
    .cooperatinglist .cooperatinglistBd{
        gap: 2px;
    }
    .cooperatinglist .cooperatinglistBd .cooperatinglistBdBox {
        /* height: 125px;
        width: 40%;
        margin: 10px; */
        height: 50px;
        width: 17%;
        margin: 4px;
    }

    .cooperatinglist .cooperatinglistBd .cooperatinglistBdBoxTime h1,
    .cooperatinglist .cooperatinglistBd .cooperatinglistBdBoxTime span {
        font-size: 26px;
    }

    .cooperatinglist .cooperatinglistBd .cooperatinglistBdBoxTitle h1 {
        font-size: 20px;
    }

    .cooperatinglist .cooperatinglistBd .cooperatinglistBdBoxTitle p {
        font-size: 16px;
    }

    .Seemore {
        width: 150px;
        height: 45px;
        line-height: 45px;
        font-size: 16px;
    }

    /* 底部 */

    .FooterSeparate {
        margin: 0 10px;
    }

    .FooterSeparate .footrCopyright p,
    .FooterSeparate .footrCopyright a {
        display: block;
        font-size: 14px;
        text-align: center;
        text-align: left;
    }
/* 
    .hd h1 span {
        left: 33%;
    } */

    .goBack {
        width: 45px;
        height: 45px;
        right: 20px;
        bottom: 50px;
    }

    .goBack span {
        font-size: 30px;
    }
}

/* 子页面 */
main.subpage {
    min-height: 600px;
    padding: 20px 0; 
    background: #ffffff;
}
.etaxpro-input {
    border: 1px solid ;
}

.etaxpro-table {
    border-collapse: collapse;
    width: 100%;
}

.etaxpro-table th,
.etaxpro-table td {
border: 1px solid var(--table-border-color);
padding: 8px;
text-align: left;
}

.etaxpro-table th {
    background-color: #fafafa;
    color: #666;
}

/* 鼠标悬浮时的样式 */
.custom-table tr:hover {
    background-color: #f2f2f2;
}