* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.ub-main {
    width: 100%;
    height: 100%;
}


/* 头部导航 */
a {
    text-decoration: none;
    color: black;
    background: none;
}

body {
    overflow-x: hidden;
    min-width: 1300px;
}

.ub-header {
    width: 100%;
    height: 58px;
    position: fixed;
    top: 0;
    z-index: 99;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.10) 100%);
    background-size: 100% 100%;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 6px 0 #003b6814, inset 0 -1px 1px 0 #ffffffc2;
}

.ub-header>div>div:first-child {
    height: calc(100%);
}

.ub-w1200 {
    width: 1200px;
    margin: auto;
    height: 100%;
}

.ub-header-justify {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ub-header-flex {
    display: flex;
}

.ub-logo {
    width: 250px;
    display: flex;
    align-items: center;
}



.ub-header-nav {
    width: 480px;
    margin-left: 48px;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    font-size: 16px;
}

.ub-header-nav>li {
    height: 100%;
    /* display: flex; */
    align-items: center;
    position: relative;
    transition: 0.2s all linear;
    cursor: pointer;
    list-style: none;
}

.foucs::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #CB1E2A;
}

.ub-header-nav>li>a::before {
    content: "";
    position: absolute;
    top: -2px;
    right: 0;
    width: 100%;
    height: 100%;
    border-bottom: 2px solid #CB1E2A;
    transform: scaleX(0);
    transition: 0.2s all linear;
}

.ub-header-nav>li>a:hover::before {
    transform: scaleX(1);
}

.ub-header-nav>li>a:hover~li::before {
    right: 0;
}

.ub-header-nav>li>a:active {
    /* background: #CB1E2A; */
    color: #fff;
}

.ub-header-nav>li>a {
    color: #fff;
    height: calc(100% - 2px);
    transition: all 1s ease 0s;
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* .ub-header-nav>li.active>a {
	font-weight: bold;
	border-bottom: 2px solid #fff;
	text-decoration: none;
} */

/* .ub-header-nav>li:hover>a {
	font-weight: bold;
	border-bottom: 2px solid #fff;
} */

.ub-header-nav-slider {
    width: 100%;
    height: 362px;
    position: absolute;
    left: 0;
    top: 58px;
    background: #FFFFFF;
    box-shadow: 0 10px 20px 0 rgba(210, 222, 247, 0.80);
    display: none;
}

.ub-header-nav-block {
    width: 588px;
    height: 100%;
}

.ub-header-block-title {
    font-size: 18px;
    color: #111;
    padding: 31px 0 11px 0;
    margin-bottom: 32px;
    border-bottom: 1px solid #D3DAEC;
}

.ub-header-block-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ub-header-block-nav {
    width: 272px;
    margin-bottom: 32px;
}

.ub-header-block-nav-title:hover p {
    color: #0579FF !important;
    transition: all 0.8s ease;
}

.ub-header-block-nav a {
    display: block;
    font-size: 0;
    display: flex;
    justify-content: space-between;
}

.ub-header-block-nav-title {
    width: 226px;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    justify-content: space-around;
}

.ub-header-block-nav-title p {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ub-header-block-nav-title>p:nth-child(1) {
    font-weight: bold;
    font-size: 14px;
    color: #25272E;
    transition: all 0.8s ease;
}

.ub-header-block-nav-title>p:nth-child(2) {
    font-size: 12px;
    color: #7E96AD;
    letter-spacing: 0.75px;
    text-align: justify;
    transition: all 0.8s ease;
}

.ub-header-tel {
    width: 208px;
    height: 40px;
    background: rgba(255, 255, 255, 0.20);
    border: 1px solid rgba(255, 255, 255, 0.80);
    border-radius: 3px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ub-header-tel {
    font-size: 16px;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.ub-header-tel img {
    margin-right: 8px;
}

.ub-index-block-title {
    padding-top: 90.51px;
    font-size: 46px;
    color: #333;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ub-index-block-title:before {
    content: "";
    width: 36px;
    height: 6.09px;
    background: linear-gradient(-43deg, #006EFF 0%, #2AAAFF 100%);
    border-radius: 16px;
    border-radius: 5px;
    margin-right: 24px;
}

.ub-index-block-title::after {
    content: "";
    width: 36px;
    height: 6.09px;
    background-image: linear-gradient(223deg, #2AAAFF 0%, #006EFF 100%);
    border-radius: 16px;
    border-radius: 5px;
    margin-left: 24px;
}

.ub-header-nav-color .ub-header-nav>li>a {
    color: #333;
}

.ub-header-nav-color .ub-header-tel {
    color: #0579FF;
}

.ub-header-nav-color .ub-header-nav>li.active>a {
    font-weight: bold;
    border-bottom: 2px solid #333;
}

.ub-aboutNav {
    position: absolute;
    top: 58px;
    left: -90px;
    display: none;
    width: 250px;
    background: #fff;
    box-shadow: 0px 4px 4px 0px rgb(10 4 8 / 23%)
}

.ub-aboutNav>ul {
    display: flex;
    flex-wrap: wrap;
}

.ub-aboutNav>ul>li {
    width: 125px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
}

.ub-aboutNav>ul>li:hover {
    background: #f2f2f2;
}

li {
    list-style: none;
}

.ub-aboutNav>ul>li>a {
    color: #666;
}


/* 底部区域 */
.ub-footer {
    height: 220px;
    background: #263555;
}

.ub-footer .ub-footer-flex {
    width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-around;
}

.ub-footer .ub-footer-nav {
    padding-top: 40px;
    color: #fff;
    /* margin-right: 150px; */
}

.ub-footer .ub-footer-nav p {
    font-size: 18px;
    color: #FFFFFF;
    letter-spacing: 1.35px;
    margin-bottom: 16px;
}

.ub-footer .ub-footer-nav ul li {
    margin-bottom: 10px;
    list-style: none;
}

.ub-footer .ub-footer-nav ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    letter-spacing: 0.9px;
    text-decoration: none;
    transition: all 0.8s ease;
}

.ub-footer .ub-footer-nav ul li:hover a {
    color: #0070FF;
    transition: all 0.8s ease;
}

.ub-footer .ub-footer-nav-case ul {
    width: 110px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ub-footer .ub-footer-nav-case ul li {
    width: 26px;
    margin-right: 16px;
}

.ub-footer .ub-footer-nav-case ul li:nth-child(3),
.ub-footer .ub-footer-nav-case ul li:nth-child(6),
.ub-footer .ub-footer-nav-case ul li:nth-child(9),
.ub-footer .ub-footer-nav-case ul li:nth-child(12) {
    margin-right: 0;
}

.ub-footer .ub-footer-nav ul li a {
    display: flex;
    align-items: center;
}

.ub-footer .ub-footer-nav ul li a img {
    margin-right: 8px;
    width: 17px;
}

.ub-footer .ub-footer-nav:last-child {
    text-align: center;
}

.ub-foot-img img {
    width: 91px;
}

/* 版权 */
.ub-index-copyright {
    height: 48px;
    background-image: linear-gradient(225deg, #F2F6FD 0%, #F5F9FE 45%, #EEF2FA 100%);
    font-size: 12px;
    color: #596A7B;
}

.ub-index-copyright-flex {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ub-index-copyright span {
    padding: 0 10px;
}

.ub-index-copyright a {
    color: #596A7B;
    text-decoration: none;
}

/* 回到顶部 */
.ub-returnTop {
    width: 116px;
    height: 306px;
    position: fixed;
    top: 40%;
    right: 16px;
    /* transform: translateY(-50%); */
    z-index: 9999999;
    box-sizing: content-box;
}

.ub-returnTop .ub-returnTop-box1 {
    width: 100px;
    height: 226px;
    background-color: #F6F8FC;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 8px 20px 0 rgba(159, 194, 255, 0.40);
    box-sizing: content-box;
}

.ub-returnTop-box1 .ub-returnTop-qq {
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px 0 rgba(207, 225, 255, 0.17);
    box-sizing: content-box;
}

.ub-returnTop-box1 .ub-returnTop-qq:hover img {
    transform: scale(1.2);
}

.ub-returnTop-box1 .ub-returnTop-qq img {
    width: 44px;
    height: 44px;
    margin: 15px 28px 7px;
    box-sizing: content-box;
    transition: all 0.5s;
}

.ub-returnTop-box1 .ub-returnTop-qq p {
    text-align: center;
    font-family: PingFangSC-Heavy;
    font-weight: 900;
    font-size: 12px;
    color: #444753;
    box-sizing: content-box;
}

.ub-returnTop-box1 .ub-returnTop-customer {
    width: 100px;
    height: 48px;
    background-color: #fff;
    margin: 8px 0px;
    padding-top: 7px;
    border-radius: 4px;
    box-shadow: 0 2px 4px 0 rgba(207, 225, 255, 0.17);
    box-sizing: content-box;
}

.ub-returnTop-box1 .ub-returnTop-customer .ub-returnTop-customer-text {
    margin-left: 14px;
    margin-bottom: 4px;
    box-sizing: content-box;
}

.ub-returnTop-box1 .ub-returnTop-customer .ub-returnTop-customer-text img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 4.12px;
    box-sizing: content-box;
}

.ub-returnTop-box1 .ub-returnTop-customer .ub-returnTop-customer-text span {
    font-family: PingFangSC-Heavy;
    font-weight: 900;
    font-size: 12px;
    color: #444753;
    box-sizing: content-box;
}

.ub-returnTop-box1 .ub-returnTop-customer p {
    text-align: center;
    font-family: PingFangSC-Bold;
    font-weight: 700;
    font-size: 12px;
    color: #E60000;
    box-sizing: content-box;
}

.ub-returnTop-box1 .ub-returnTop-phone {
    width: 100px;
    height: 48px;
    padding-top: 7px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px 0 rgba(207, 225, 255, 0.17);
    box-sizing: content-box;
}

.ub-returnTop-box1 .ub-returnTop-phone .ub-returnTop-phone-text {
    margin-left: 18px;
    margin-bottom: 4px;
    box-sizing: content-box;
}

.ub-returnTop-box1 .ub-returnTop-phone .ub-returnTop-phone-text img {
    width: 12px;
    height: 19px;
    vertical-align: middle;
    margin-right: 4.12px;
    box-sizing: content-box;
}

.ub-returnTop-box1 .ub-returnTop-phone .ub-returnTop-phone-text span {
    font-family: PingFangSC-Heavy;
    font-weight: 900;
    font-size: 12px;
    color: #444753;
    box-sizing: content-box;
}

.ub-returnTop-box1 .ub-returnTop-phone p {
    text-align: center;
    font-family: PingFangSC-Bold;
    font-weight: 700;
    font-size: 12px;
    color: #E60000;
    box-sizing: content-box;
}

.ub-returnTop-box {
    margin: 16px auto 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 4px 13px 0 rgba(159, 194, 255, 0.40);
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: content-box;
    cursor: pointer;
}

.ub-returnTop .ub-returnTop-box img {
    width: 24px;
    height: 24px;
    cursor: pointer;
    box-sizing: content-box;
}


/* 一些动画的css样式 */
/* 呼吸 */
.ub-huxi {
    visibility: visible;
    animation-duration: 1500ms;
    animation-iteration-count: infinite;
    animation-name: pulse;
    animation-duration: 5s !important;
}

.fadeInDown {
    visibility: visible;
    animation-duration: 1s;
    animation-name: fadeInDown;
}

.fadeInUp {
    visibility: visible;
    animation-duration: 1s;
    animation-name: fadeInUp;
}

.fadeInRight {
    visibility: visible;
    animation-duration: 1s;
    animation-name: fadeInRight;
}

.fadeInLeft {
    visibility: visible;
    animation-duration: 1s;
    animation-name: fadeInLeft;
}

/* 介绍阴影 */
.introductionShadow {
    box-shadow: 0 10px 16px 0 rgba(210, 222, 247, 0.38);
    border-radius: 8px;
}